diff --git a/argopy/data_fetchers/erddap_data.py b/argopy/data_fetchers/erddap_data.py index 111d29c3..7f9e59d6 100644 --- a/argopy/data_fetchers/erddap_data.py +++ b/argopy/data_fetchers/erddap_data.py @@ -620,7 +620,6 @@ def getNfromncHeader(url): N += getNfromncHeader(url) return N - def post_process( self, this_ds, add_dm: bool = True, URI: list = None ): # noqa: C901 diff --git a/argopy/data_fetchers/erddap_refdata.py b/argopy/data_fetchers/erddap_refdata.py index c9d4c039..d02652d8 100644 --- a/argopy/data_fetchers/erddap_refdata.py +++ b/argopy/data_fetchers/erddap_refdata.py @@ -110,7 +110,6 @@ def _add_attributes(self, this): # noqa: C901 return this - @property def _minimal_vlist(self): """Return the minimal list of variables to retrieve measurements for""" diff --git a/argopy/errors.py b/argopy/errors.py index 17558784..1e81af68 100644 --- a/argopy/errors.py +++ b/argopy/errors.py @@ -194,4 +194,3 @@ def __init__(self, reason: str = None, version: str = None, ignore_caller: List else: raise TypeError(repr(type(reason))) - diff --git a/argopy/fetchers.py b/argopy/fetchers.py index 4eae80dc..dd748545 100755 --- a/argopy/fetchers.py +++ b/argopy/fetchers.py @@ -16,16 +16,16 @@ import logging from .options import OPTIONS, _VALIDATORS -from .errors import InvalidFetcherAccessPoint, InvalidFetcher, OptionValueError, OptionDeprecatedWarning +from .errors import ( + InvalidFetcherAccessPoint, + InvalidFetcher, + OptionValueError, + OptionDeprecatedWarning, +) from .related import ( get_coriolis_profile_id, ) -from .utils.checkers import ( - is_box, - is_indexbox, - check_wmo, - check_cyc -) +from .utils.checkers import is_box, is_indexbox, check_wmo, check_cyc from .utils.lists import ( list_available_data_src, list_available_index_src, @@ -166,12 +166,15 @@ def __init__(self, mode: str = "", src: str = "", ds: str = "", **fetcher_kwargs if self._src == "argovis" and ( self._mode == "expert" or self._mode == "research" ): - raise OptionValueError("The 'argovis' data source fetching is only available in 'standard' user mode") + raise OptionValueError( + "The 'argovis' data source fetching is only available in 'standard' user mode" + ) if self._src == "gdac" and "ftp" in self.fetcher_kwargs: - OptionDeprecatedWarning(reason="The GDAC 'ftp' argument is deprecated, it will be replaced by 'gdac' in versions >= 0.1.18", - version="v0.0.17") - + OptionDeprecatedWarning( + reason="The GDAC 'ftp' argument is deprecated, it will be replaced by 'gdac' in versions >= 0.1.18", + version="v0.0.17", + ) def __repr__(self): para = ( @@ -306,7 +309,7 @@ def domain(self): @property def mission(self): - if self._dataset_id == 'bgc': + if self._dataset_id == "bgc": return "BGC" else: return "core+deep" @@ -530,6 +533,7 @@ def to_index(self, full: bool = False, coriolis_id: bool = False): :class:`pandas.DataFrame` Argo-like index of fetched data """ + def prt(txt): msg = [txt] if self._request != self.__repr__(): @@ -537,11 +541,13 @@ def prt(txt): log.debug("\n".join(msg)) def add_coriolis(this_df): - if 'id' not in this_df: + if "id" not in this_df: this_df["id"] = None def fc(row): - row["id"] = get_coriolis_profile_id(row["wmo"], row["cyc"])["ID"].values[0] + row["id"] = get_coriolis_profile_id(row["wmo"], row["cyc"])[ + "ID" + ].values[0] return row this_df = this_df.apply(fc, axis=1) @@ -550,7 +556,9 @@ 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 self._dataset_id == "bgc") or ( + self._src == "gdac" + ): prt("to_index working with fetcher ArgoIndex instance") idx = self.fetcher.indexfs if self._AccessPoint == "region": @@ -564,7 +572,9 @@ def fc(row): if self._AccessPoint == "float": idx.search_wmo(self._AccessPoint_data["wmo"]) if self._AccessPoint == "profile": - idx.search_wmo_cyc(self._AccessPoint_data["wmo"], self._AccessPoint_data["cyc"]) + idx.search_wmo_cyc( + self._AccessPoint_data["wmo"], self._AccessPoint_data["cyc"] + ) # Then export search result to Index dataframe: df = idx.to_dataframe() @@ -611,14 +621,14 @@ def fc(row): df = add_coriolis(df) if coriolis_id else df # Possibly replace the light index with the full version: - if 'profiler_code' not in df or self._request == self.__repr__(): + if "profiler_code" not in df or self._request == self.__repr__(): prt("to_index replaced the light index with the full version") self._index = df return df def load(self, force: bool = False, **kwargs): - """ Fetch data (and compute a profile index) if not already in memory + """Fetch data (and compute a profile index) if not already in memory Apply the default to_xarray() and to_index() methods and store results in memory. You can access loaded measurements structure with the `data` and `index` properties. @@ -752,11 +762,6 @@ def __init__( _VALIDATORS["src"](self._src) # Load data source access points: - if self._src == "localftp": - raise ValueError( - "The 'localftp' data source is deprecated. It's been replaced by 'gdac'." - ) - if self._src not in AVAILABLE_INDEX_SOURCES: raise InvalidFetcher( "Requested index fetcher '%s' not available ! " diff --git a/argopy/options.py b/argopy/options.py index e54c4ab0..1d016b63 100644 --- a/argopy/options.py +++ b/argopy/options.py @@ -4,6 +4,7 @@ # Like always, largely inspired by xarray code: # https://github.com/pydata/xarray/blob/cafab46aac8f7a073a32ec5aa47e213a9810ed54/xarray/core/options.py """ + import os import warnings import logging @@ -11,7 +12,12 @@ from fsspec.core import split_protocol from socket import gaierror from urllib.parse import urlparse -from .errors import OptionValueError, FtpPathError, ErddapPathError, OptionDeprecatedWarning +from .errors import ( + OptionValueError, + FtpPathError, + ErddapPathError, + OptionDeprecatedWarning, +) # Define a logger log = logging.getLogger("argopy.options") @@ -19,7 +25,7 @@ # Define option names as seen by users: DATA_SOURCE = "src" FTP = "ftp" -ERDDAP = 'erddap' +ERDDAP = "erddap" DATASET = "dataset" CACHE_FOLDER = "cachedir" CACHE_EXPIRATION = "cache_expiration" @@ -62,7 +68,7 @@ def _positive_integer(value): def validate_ftp(this_path): if this_path != "-": - return check_gdac_path(this_path, errors='raise') + return check_gdac_path(this_path, errors="raise") else: log.debug("OPTIONS['%s'] is not defined" % FTP) return False @@ -70,7 +76,7 @@ def validate_ftp(this_path): def validate_http(this_path): if this_path != "-": - return check_erddap_path(this_path, errors='raise') + return check_erddap_path(this_path, errors="raise") else: log.debug("OPTIONS['%s'] is not defined" % ERDDAP) return False @@ -186,16 +192,20 @@ def __init__(self, **kwargs): raise OptionValueError(f"option {k!r} given an invalid value: {v!r}") self.old[k] = OPTIONS[k] - if k == 'dataset': - OptionDeprecatedWarning(reason="The 'dataset' option is deprecated, it will be replaced by 'ds' in " - "versions >= 0.1.18", - version="v0.0.17", - ignore_caller='test_opt_dataset') + if k == "dataset": + OptionDeprecatedWarning( + reason="The 'dataset' option is deprecated, it will be replaced by 'ds' in " + "versions >= 0.1.18", + version="v0.0.17", + ignore_caller="test_opt_dataset", + ) - if k == 'ftp': - OptionDeprecatedWarning(reason="The 'ftp' option is deprecated, it will be replaced by 'gdac' in " - "versions >= 0.1.18", - version="v0.0.17") + if k == "ftp": + OptionDeprecatedWarning( + reason="The 'ftp' option is deprecated, it will be replaced by 'gdac' in " + "versions >= 0.1.18", + version="v0.0.17", + ) self._apply_update(kwargs) @@ -214,9 +224,9 @@ def reset_options(): set_options(**DEFAULT) -def check_erddap_path(path, errors='ignore'): +def check_erddap_path(path, errors="ignore"): """Check if an url points to an ERDDAP server""" - fs = fsspec.filesystem('http', ssl=False) + fs = fsspec.filesystem("http", ssl=False) check1 = fs.exists(path + "/info/index.json") if check1: return True @@ -230,52 +240,52 @@ def check_erddap_path(path, errors='ignore'): return False -def check_gdac_path(path, errors='ignore'): # noqa: C901 - """ Check if a path has the expected GDAC ftp structure - - Check if a path is structured like: - . - └── dac - ├── aoml - ├── ... - ├── coriolis - ├── ... - ├── meds - └── nmdis - - Examples: - >>> check_gdac_path("https://data-argo.ifremer.fr") # True - >>> check_gdac_path("ftp://ftp.ifremer.fr/ifremer/argo") # True - >>> check_gdac_path("ftp://usgodae.org/pub/outgoing/argo") # True - >>> check_gdac_path("/home/ref-argo/gdac") # True - >>> check_gdac_path("https://www.ifremer.fr") # False - >>> check_gdac_path("ftp://usgodae.org/pub/outgoing") # False - - Parameters - ---------- - path: str - Path name to check, including access protocol - errors: str - "ignore" or "raise" (or "warn") - - Returns - ------- - checked: boolean - True if at least one DAC folder is found under path/dac/ - False otherwise +def check_gdac_path(path, errors="ignore"): # noqa: C901 + """Check if a path has the expected GDAC ftp structure + + Check if a path is structured like: + . + └── dac + ├── aoml + ├── ... + ├── coriolis + ├── ... + ├── meds + └── nmdis + + Examples: + >>> check_gdac_path("https://data-argo.ifremer.fr") # True + >>> check_gdac_path("ftp://ftp.ifremer.fr/ifremer/argo") # True + >>> check_gdac_path("ftp://usgodae.org/pub/outgoing/argo") # True + >>> check_gdac_path("/home/ref-argo/gdac") # True + >>> check_gdac_path("https://www.ifremer.fr") # False + >>> check_gdac_path("ftp://usgodae.org/pub/outgoing") # False + + Parameters + ---------- + path: str + Path name to check, including access protocol + errors: str + "ignore" or "raise" (or "warn") + + Returns + ------- + checked: boolean + True if at least one DAC folder is found under path/dac/ + False otherwise """ # Create a file system for this path if split_protocol(path)[0] is None: - fs = fsspec.filesystem('file') - elif split_protocol(path)[0] in ['https', 'http']: - fs = fsspec.filesystem('http') - elif 'ftp' in split_protocol(path)[0]: + fs = fsspec.filesystem("file") + elif split_protocol(path)[0] in ["https", "http"]: + fs = fsspec.filesystem("http") + elif "ftp" in split_protocol(path)[0]: try: host = urlparse(path).hostname port = 0 if urlparse(path).port is None else urlparse(path).port - fs = fsspec.filesystem('ftp', host=host, port=port) + fs = fsspec.filesystem("ftp", host=host, port=port) except gaierror: - if errors == 'raise': + if errors == "raise": raise FtpPathError("Can't get address info (GAIerror) on '%s'" % host) elif errors == "warn": warnings.warn("Can't get address info (GAIerror) on '%s'" % host) @@ -283,7 +293,9 @@ def check_gdac_path(path, errors='ignore'): # noqa: C901 else: return False else: - raise FtpPathError("Unknown protocol for an Argo GDAC host: %s" % split_protocol(path)[0]) + raise FtpPathError( + "Unknown protocol for an Argo GDAC host: %s" % split_protocol(path)[0] + ) # dacs = [ # "aoml", @@ -310,7 +322,10 @@ def check_gdac_path(path, errors='ignore'): # noqa: C901 return True elif errors == "raise": - raise FtpPathError("This path is not GDAC compliant (no `dac` folder with legitimate sub-folder):\n%s" % path) + raise FtpPathError( + "This path is not GDAC compliant (no `dac` folder with legitimate sub-folder):\n%s" + % path + ) elif errors == "warn": warnings.warn("This path is not GDAC compliant:\n%s" % path) diff --git a/argopy/related/argo_documentation.py b/argopy/related/argo_documentation.py index edfbd318..e209d13e 100644 --- a/argopy/related/argo_documentation.py +++ b/argopy/related/argo_documentation.py @@ -75,7 +75,7 @@ def parse(self, file): else: # print("-", line) record[tag].append(line) - except UnboundLocalError as e: + except UnboundLocalError: pass elif len(line) == 2: record[line] = [] diff --git a/argopy/related/reference_tables.py b/argopy/related/reference_tables.py index 32dcc256..d7b29aee 100644 --- a/argopy/related/reference_tables.py +++ b/argopy/related/reference_tables.py @@ -31,9 +31,6 @@ class ArgoNVSReferenceTables: valid_ref = [ "R01", - "RR2", - "RD2", - "RP2", "R03", "R04", "R05", @@ -46,8 +43,6 @@ class ArgoNVSReferenceTables: "R12", "R13", "R15", - "RMC", - "RTV", "R16", "R18", "R19", @@ -60,9 +55,12 @@ class ArgoNVSReferenceTables: "R26", "R27", "R28", - "R29", - "R30", "R40", + "RD2", + "RMC", + "RP2", + "RR2", + "RTV", ] """List of all available Reference Tables""" diff --git a/argopy/static/assets/admt_documentation_catalogue.json b/argopy/static/assets/admt_documentation_catalogue.json index 73764d40..3adcdb87 100644 --- a/argopy/static/assets/admt_documentation_catalogue.json +++ b/argopy/static/assets/admt_documentation_catalogue.json @@ -1,7 +1,7 @@ { "name": "ADMT documentation catalogue", "long_name": "Titles and DOIs of all the official ADMT documentation", - "last_update": "2023-12-21T15:21:36.774525+00:00", + "last_update": "2024-09-20T09:27:55.161297+00:00", "data": { "catalogue": [ { diff --git a/argopy/static/assets/api_coriolis_parameter_codes.json b/argopy/static/assets/api_coriolis_parameter_codes.json index cd956388..344b0d39 100644 --- a/argopy/static/assets/api_coriolis_parameter_codes.json +++ b/argopy/static/assets/api_coriolis_parameter_codes.json @@ -1,7 +1,7 @@ { "name": "parameters", "long_name": "All valid requests to https://api-coriolis.ifremer.fr/legacy/parameter?code={code}", - "last_update": "2023-10-20T12:58:00.620292+00:00", + "last_update": "2024-09-20T09:27:55.145057+00:00", "data": { "valid_codes": [ "9", @@ -520,7 +520,15 @@ "772", "773", "774", - "775" + "775", + "776", + "777", + "778", + "779", + "780", + "781", + "782", + "783" ], "valid_params": [ "DEPH", @@ -1029,7 +1037,15 @@ "SIGT", "VMSP", "FLUO_ADJUSTED", - "FLUO_ADJUSTED_ERROR" + "FLUO_ADJUSTED_ERROR", + "EWCT_WS", + "NSCT_WS", + "WS_TYPE_OF_PROCESSING", + "EXT_779", + "EXT_780", + "EXT_781", + "EXT_782", + "EXT_783" ], "codes": { "9": { @@ -6101,6 +6117,86 @@ "parent_code": "63", "label": "Chlorophyll-a fluorescence adjusted error", "param_type": "D" + }, + "776": { + "unit": "meter/second", + "time_sampling": "", + "code": "776", + "gf3_strict_name": "", + "gf3_extended_name": "EWCT_WS", + "parent_code": "13", + "label": "West-east current wind slippage correction at the drogue depth", + "param_type": "D" + }, + "777": { + "unit": "meter/second", + "time_sampling": "", + "code": "777", + "gf3_strict_name": "", + "gf3_extended_name": "NSCT_WS", + "parent_code": "20", + "label": "South-north current wind slippage correction at the drogue depth", + "param_type": "D" + }, + "778": { + "unit": "none", + "time_sampling": "", + "code": "778", + "gf3_strict_name": "", + "gf3_extended_name": "WS_TYPE_OF_PROCESSING", + "parent_code": "0", + "label": "Wind slippage correction method", + "param_type": "T" + }, + "779": { + "unit": "count", + "time_sampling": "", + "code": "779", + "gf3_strict_name": "", + "gf3_extended_name": "EXT_779", + "parent_code": "0", + "label": "Drifting buoy drogue sensor count", + "param_type": "T" + }, + "780": { + "unit": "count", + "time_sampling": "", + "code": "780", + "gf3_strict_name": "", + "gf3_extended_name": "EXT_780", + "parent_code": "0", + "label": "Drifting buoy sensor 4 count", + "param_type": "T" + }, + "781": { + "unit": "count", + "time_sampling": "", + "code": "781", + "gf3_strict_name": "", + "gf3_extended_name": "EXT_781", + "parent_code": "0", + "label": "Drifting buoy sensor 5 count", + "param_type": "T" + }, + "782": { + "unit": "count", + "time_sampling": "", + "code": "782", + "gf3_strict_name": "", + "gf3_extended_name": "EXT_782", + "parent_code": "0", + "label": "Drifting buoy sensor 6 count", + "param_type": "T" + }, + "783": { + "unit": "count", + "time_sampling": "", + "code": "783", + "gf3_strict_name": "", + "gf3_extended_name": "EXT_783", + "parent_code": "0", + "label": "Biodiversity phytoplankton count", + "param_type": "E" } }, "params": { @@ -11173,6 +11269,86 @@ "parent_code": "63", "label": "Chlorophyll-a fluorescence adjusted error", "param_type": "D" + }, + "EWCT_WS": { + "unit": "meter/second", + "time_sampling": "", + "code": "776", + "gf3_strict_name": "", + "gf3_extended_name": "EWCT_WS", + "parent_code": "13", + "label": "West-east current wind slippage correction at the drogue depth", + "param_type": "D" + }, + "NSCT_WS": { + "unit": "meter/second", + "time_sampling": "", + "code": "777", + "gf3_strict_name": "", + "gf3_extended_name": "NSCT_WS", + "parent_code": "20", + "label": "South-north current wind slippage correction at the drogue depth", + "param_type": "D" + }, + "WS_TYPE_OF_PROCESSING": { + "unit": "none", + "time_sampling": "", + "code": "778", + "gf3_strict_name": "", + "gf3_extended_name": "WS_TYPE_OF_PROCESSING", + "parent_code": "0", + "label": "Wind slippage correction method", + "param_type": "T" + }, + "EXT_779": { + "unit": "count", + "time_sampling": "", + "code": "779", + "gf3_strict_name": "", + "gf3_extended_name": "EXT_779", + "parent_code": "0", + "label": "Drifting buoy drogue sensor count", + "param_type": "T" + }, + "EXT_780": { + "unit": "count", + "time_sampling": "", + "code": "780", + "gf3_strict_name": "", + "gf3_extended_name": "EXT_780", + "parent_code": "0", + "label": "Drifting buoy sensor 4 count", + "param_type": "T" + }, + "EXT_781": { + "unit": "count", + "time_sampling": "", + "code": "781", + "gf3_strict_name": "", + "gf3_extended_name": "EXT_781", + "parent_code": "0", + "label": "Drifting buoy sensor 5 count", + "param_type": "T" + }, + "EXT_782": { + "unit": "count", + "time_sampling": "", + "code": "782", + "gf3_strict_name": "", + "gf3_extended_name": "EXT_782", + "parent_code": "0", + "label": "Drifting buoy sensor 6 count", + "param_type": "T" + }, + "EXT_783": { + "unit": "count", + "time_sampling": "", + "code": "783", + "gf3_strict_name": "", + "gf3_extended_name": "EXT_783", + "parent_code": "0", + "label": "Biodiversity phytoplankton count", + "param_type": "E" } } } diff --git a/argopy/static/assets/data_types.json b/argopy/static/assets/data_types.json index 9ae7185b..acfba83b 100644 --- a/argopy/static/assets/data_types.json +++ b/argopy/static/assets/data_types.json @@ -1,7 +1,7 @@ { "name": "data_types", "long_name": "Expected data types of Argo variables", - "last_update": "2023-10-20T12:57:34.009529+00:00", + "last_update": "2024-09-20T09:26:28.473595+00:00", "data": { "str": [ "PLATFORM_NUMBER", @@ -80,204 +80,204 @@ "PREDEPLOYMENT_CALIB_EQUATION", "PREDEPLOYMENT_CALIB_COEFFICIENT", "PREDEPLOYMENT_CALIB_COMMENT", - "PROFILE_BBP_QC", - "PROFILE_BBP470_QC", - "PROFILE_BBP532_QC", - "PROFILE_BBP700_QC", - "PROFILE_BETA_BACKSCATTERING_QC", - "PROFILE_BETA_BACKSCATTERING470_QC", - "PROFILE_BETA_BACKSCATTERING532_QC", - "PROFILE_BETA_BACKSCATTERING700_QC", - "PROFILE_BISULFIDE_QC", - "PROFILE_BPHASE_DOXY_QC", - "PROFILE_C1PHASE_DOXY_QC", - "PROFILE_C2PHASE_DOXY_QC", - "PROFILE_CDOM_QC", - "PROFILE_CHLA_QC", + "PROFILE_NB_SAMPLE_MCOMS_QC", + "PROFILE_NB_SAMPLE_OPTODE_QC", "PROFILE_CHLA_FLUORESCENCE_QC", + "PROFILE_NB_SAMPLE_SUNA_QC", + "PROFILE_NB_SAMPLE_CYC_QC", + "PROFILE_NB_SAMPLE_DURAFET_QC", + "PROFILE_NB_SAMPLE_CTD_QC", + "PROFILE_NB_SAMPLE_OCR_QC", + "PROFILE_NB_SAMPLE_STM_QC", + "PROFILE_NB_SAMPLE_ECO_QC", + "PROFILE_NB_SAMPLE_CROVER_QC", + "PROFILE_NB_SAMPLE_ISUS_QC", + "PROFILE_TEMP_CNDC_QC", + "PROFILE_PH_IN_SITU_FREE_QC", + "PROFILE_PH_IN_SITU_TOTAL_QC", + "PROFILE_PH_IN_SITU_SEAWATER_QC", + "PROFILE_DOWNWELLING_PAR_QC", + "PROFILE_TEMP_VOLTAGE_DOXY_QC", + "PROFILE_VRS_PH_QC", + "PROFILE_VK_PH_QC", + "PROFILE_VOLTAGE_DOXY_QC", + "PROFILE_IK_PH_QC", + "PROFILE_IB_PH_QC", + "PROFILE_PHASE_DELAY_DOXY_QC", + "PROFILE_PPOX_DOXY_QC", + "PROFILE_PRES_QC", "PROFILE_CNDC_QC", - "PROFILE_COUNT_DOXY_QC", - "PROFILE_CP_QC", + "PROFILE_MTIME_QC", "PROFILE_CP660_QC", - "PROFILE_DOWNWELLING_PAR_QC", + "PROFILE_CP_QC", + "PROFILE_UP_RADIANCE555_QC", + "PROFILE_UP_RADIANCE_QC", + "PROFILE_UP_RADIANCE443_QC", + "PROFILE_UP_RADIANCE412_QC", + "PROFILE_UP_RADIANCE490_QC", + "PROFILE_CDOM_QC", "PROFILE_DOWN_IRRADIANCE_QC", - "PROFILE_DOWN_IRRADIANCE380_QC", "PROFILE_DOWN_IRRADIANCE412_QC", - "PROFILE_DOWN_IRRADIANCE443_QC", "PROFILE_DOWN_IRRADIANCE490_QC", + "PROFILE_DOWN_IRRADIANCE443_QC", + "PROFILE_DOWN_IRRADIANCE380_QC", "PROFILE_DOWN_IRRADIANCE555_QC", - "PROFILE_DOXY_QC", - "PROFILE_DPHASE_DOXY_QC", - "PROFILE_FIT_ERROR_NITRATE_QC", - "PROFILE_FLUORESCENCE_CDOM_QC", - "PROFILE_FLUORESCENCE_CHLA_QC", "PROFILE_FREQUENCY_DOXY_QC", + "PROFILE_BBP700_QC", + "PROFILE_BBP_QC", + "PROFILE_BBP532_QC", + "PROFILE_BBP470_QC", + "PROFILE_TEMP_SPECTROPHOTOMETER_NITRATE_QC", + "PROFILE_TEMP_DOXY_QC", + "PROFILE_TEMP_PH_QC", + "PROFILE_TEMP_NITRATE_QC", "PROFILE_HUMIDITY_NITRATE_QC", - "PROFILE_IB_PH_QC", - "PROFILE_IK_PH_QC", - "PROFILE_LED_FLASHING_COUNT_DOXY_QC", - "PROFILE_MLPL_DOXY_QC", + "PROFILE_C1PHASE_DOXY_QC", + "PROFILE_TPHASE_DOXY_QC", + "PROFILE_TILT_QC", + "PROFILE_C2PHASE_DOXY_QC", + "PROFILE_RPHASE_DOXY_QC", + "PROFILE_BPHASE_DOXY_QC", + "PROFILE_DPHASE_DOXY_QC", "PROFILE_MOLAR_DOXY_QC", "PROFILE_MOLAR_NITRATE_QC", - "PROFILE_MTIME_QC", - "PROFILE_NB_SAMPLE_QC", - "PROFILE_NB_SAMPLE_CROVER_QC", - "PROFILE_NB_SAMPLE_CTD_QC", - "PROFILE_NB_SAMPLE_CYC_QC", - "PROFILE_NB_SAMPLE_DURAFET_QC", - "PROFILE_NB_SAMPLE_ECO_QC", - "PROFILE_NB_SAMPLE_ISUS_QC", - "PROFILE_NB_SAMPLE_MCOMS_QC", - "PROFILE_NB_SAMPLE_OCR_QC", - "PROFILE_NB_SAMPLE_OPTODE_QC", - "PROFILE_NB_SAMPLE_STM_QC", - "PROFILE_NB_SAMPLE_SUNA_QC", - "PROFILE_NITRATE_QC", - "PROFILE_PHASE_DELAY_DOXY_QC", - "PROFILE_PH_IN_SITU_FREE_QC", - "PROFILE_PH_IN_SITU_SEAWATER_QC", - "PROFILE_PH_IN_SITU_TOTAL_QC", - "PROFILE_PPOX_DOXY_QC", - "PROFILE_PRES_QC", + "PROFILE_BETA_BACKSCATTERING700_QC", + "PROFILE_BETA_BACKSCATTERING470_QC", + "PROFILE_SIDE_SCATTERING_TURBIDITY_QC", "PROFILE_PSAL_QC", - "PROFILE_RAW_DOWNWELLING_IRRADIANCE_QC", + "PROFILE_TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION_QC", + "PROFILE_RAW_UPWELLING_RADIANCE412_QC", + "PROFILE_COUNT_DOXY_QC", + "PROFILE_RAW_DOWNWELLING_IRRADIANCE490_QC", + "PROFILE_TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660_QC", + "PROFILE_UV_INTENSITY_DARK_NITRATE_QC", + "PROFILE_LED_FLASHING_COUNT_DOXY_QC", + "PROFILE_UV_INTENSITY_NITRATE_QC", + "PROFILE_FLUORESCENCE_CDOM_QC", + "PROFILE_RAW_UPWELLING_RADIANCE555_QC", + "PROFILE_NB_SAMPLE_QC", "PROFILE_RAW_DOWNWELLING_IRRADIANCE380_QC", "PROFILE_RAW_DOWNWELLING_IRRADIANCE412_QC", - "PROFILE_RAW_DOWNWELLING_IRRADIANCE443_QC", - "PROFILE_RAW_DOWNWELLING_IRRADIANCE490_QC", - "PROFILE_RAW_DOWNWELLING_IRRADIANCE555_QC", - "PROFILE_RAW_DOWNWELLING_PAR_QC", + "PROFILE_RAW_DOWNWELLING_IRRADIANCE_QC", + "PROFILE_BETA_BACKSCATTERING_QC", "PROFILE_RAW_UPWELLING_RADIANCE_QC", - "PROFILE_RAW_UPWELLING_RADIANCE412_QC", "PROFILE_RAW_UPWELLING_RADIANCE443_QC", - "PROFILE_RAW_UPWELLING_RADIANCE490_QC", - "PROFILE_RAW_UPWELLING_RADIANCE555_QC", - "PROFILE_RPHASE_DOXY_QC", - "PROFILE_SIDE_SCATTERING_TURBIDITY_QC", - "PROFILE_TEMP_QC", - "PROFILE_TEMP_CNDC_QC", + "PROFILE_RAW_DOWNWELLING_IRRADIANCE443_QC", + "PROFILE_UV_INTENSITY_DARK_SEAWATER_NITRATE_QC", + "PROFILE_FLUORESCENCE_CHLA_QC", + "PROFILE_FIT_ERROR_NITRATE_QC", + "PROFILE_RAW_DOWNWELLING_PAR_QC", + "PROFILE_RAW_DOWNWELLING_IRRADIANCE555_QC", "PROFILE_TEMP_COUNT_DOXY_QC", + "PROFILE_RAW_UPWELLING_RADIANCE490_QC", + "PROFILE_BETA_BACKSCATTERING532_QC", "PROFILE_TEMP_CPU_CHLA_QC", - "PROFILE_TEMP_DOXY_QC", - "PROFILE_TEMP_NITRATE_QC", - "PROFILE_TEMP_PH_QC", - "PROFILE_TEMP_SPECTROPHOTOMETER_NITRATE_QC", - "PROFILE_TEMP_VOLTAGE_DOXY_QC", - "PROFILE_TILT_QC", - "PROFILE_TPHASE_DOXY_QC", - "PROFILE_TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION_QC", - "PROFILE_TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660_QC", + "PROFILE_DOXY_QC", + "PROFILE_NITRATE_QC", + "PROFILE_BISULFIDE_QC", + "PROFILE_MLPL_DOXY_QC", "PROFILE_TURBIDITY_QC", - "PROFILE_UP_RADIANCE_QC", - "PROFILE_UP_RADIANCE412_QC", - "PROFILE_UP_RADIANCE443_QC", - "PROFILE_UP_RADIANCE490_QC", - "PROFILE_UP_RADIANCE555_QC", - "PROFILE_UV_INTENSITY_DARK_NITRATE_QC", - "PROFILE_UV_INTENSITY_DARK_SEAWATER_NITRATE_QC", - "PROFILE_UV_INTENSITY_NITRATE_QC", - "PROFILE_VK_PH_QC", - "PROFILE_VOLTAGE_DOXY_QC", - "PROFILE_VRS_PH_QC", - "BBP_DATA_MODE", - "BBP470_DATA_MODE", - "BBP532_DATA_MODE", - "BBP700_DATA_MODE", - "BETA_BACKSCATTERING_DATA_MODE", - "BETA_BACKSCATTERING470_DATA_MODE", - "BETA_BACKSCATTERING532_DATA_MODE", - "BETA_BACKSCATTERING700_DATA_MODE", - "BISULFIDE_DATA_MODE", - "BPHASE_DOXY_DATA_MODE", - "C1PHASE_DOXY_DATA_MODE", - "C2PHASE_DOXY_DATA_MODE", - "CDOM_DATA_MODE", - "CHLA_DATA_MODE", + "PROFILE_CHLA_QC", + "PROFILE_TEMP_QC", + "NB_SAMPLE_MCOMS_DATA_MODE", + "NB_SAMPLE_OPTODE_DATA_MODE", "CHLA_FLUORESCENCE_DATA_MODE", + "NB_SAMPLE_SUNA_DATA_MODE", + "NB_SAMPLE_CYC_DATA_MODE", + "NB_SAMPLE_DURAFET_DATA_MODE", + "NB_SAMPLE_CTD_DATA_MODE", + "NB_SAMPLE_OCR_DATA_MODE", + "NB_SAMPLE_STM_DATA_MODE", + "NB_SAMPLE_ECO_DATA_MODE", + "NB_SAMPLE_CROVER_DATA_MODE", + "NB_SAMPLE_ISUS_DATA_MODE", + "TEMP_CNDC_DATA_MODE", + "PH_IN_SITU_FREE_DATA_MODE", + "PH_IN_SITU_TOTAL_DATA_MODE", + "PH_IN_SITU_SEAWATER_DATA_MODE", + "DOWNWELLING_PAR_DATA_MODE", + "TEMP_VOLTAGE_DOXY_DATA_MODE", + "VRS_PH_DATA_MODE", + "VK_PH_DATA_MODE", + "VOLTAGE_DOXY_DATA_MODE", + "IK_PH_DATA_MODE", + "IB_PH_DATA_MODE", + "PHASE_DELAY_DOXY_DATA_MODE", + "PPOX_DOXY_DATA_MODE", + "PRES_DATA_MODE", "CNDC_DATA_MODE", - "COUNT_DOXY_DATA_MODE", - "CP_DATA_MODE", + "MTIME_DATA_MODE", "CP660_DATA_MODE", - "DOWNWELLING_PAR_DATA_MODE", + "CP_DATA_MODE", + "UP_RADIANCE555_DATA_MODE", + "UP_RADIANCE_DATA_MODE", + "UP_RADIANCE443_DATA_MODE", + "UP_RADIANCE412_DATA_MODE", + "UP_RADIANCE490_DATA_MODE", + "CDOM_DATA_MODE", "DOWN_IRRADIANCE_DATA_MODE", - "DOWN_IRRADIANCE380_DATA_MODE", "DOWN_IRRADIANCE412_DATA_MODE", - "DOWN_IRRADIANCE443_DATA_MODE", "DOWN_IRRADIANCE490_DATA_MODE", + "DOWN_IRRADIANCE443_DATA_MODE", + "DOWN_IRRADIANCE380_DATA_MODE", "DOWN_IRRADIANCE555_DATA_MODE", - "DOXY_DATA_MODE", - "DPHASE_DOXY_DATA_MODE", - "FIT_ERROR_NITRATE_DATA_MODE", - "FLUORESCENCE_CDOM_DATA_MODE", - "FLUORESCENCE_CHLA_DATA_MODE", "FREQUENCY_DOXY_DATA_MODE", + "BBP700_DATA_MODE", + "BBP_DATA_MODE", + "BBP532_DATA_MODE", + "BBP470_DATA_MODE", + "TEMP_SPECTROPHOTOMETER_NITRATE_DATA_MODE", + "TEMP_DOXY_DATA_MODE", + "TEMP_PH_DATA_MODE", + "TEMP_NITRATE_DATA_MODE", "HUMIDITY_NITRATE_DATA_MODE", - "IB_PH_DATA_MODE", - "IK_PH_DATA_MODE", - "LED_FLASHING_COUNT_DOXY_DATA_MODE", - "MLPL_DOXY_DATA_MODE", + "C1PHASE_DOXY_DATA_MODE", + "TPHASE_DOXY_DATA_MODE", + "TILT_DATA_MODE", + "C2PHASE_DOXY_DATA_MODE", + "RPHASE_DOXY_DATA_MODE", + "BPHASE_DOXY_DATA_MODE", + "DPHASE_DOXY_DATA_MODE", "MOLAR_DOXY_DATA_MODE", "MOLAR_NITRATE_DATA_MODE", - "MTIME_DATA_MODE", - "NB_SAMPLE_DATA_MODE", - "NB_SAMPLE_CROVER_DATA_MODE", - "NB_SAMPLE_CTD_DATA_MODE", - "NB_SAMPLE_CYC_DATA_MODE", - "NB_SAMPLE_DURAFET_DATA_MODE", - "NB_SAMPLE_ECO_DATA_MODE", - "NB_SAMPLE_ISUS_DATA_MODE", - "NB_SAMPLE_MCOMS_DATA_MODE", - "NB_SAMPLE_OCR_DATA_MODE", - "NB_SAMPLE_OPTODE_DATA_MODE", - "NB_SAMPLE_STM_DATA_MODE", - "NB_SAMPLE_SUNA_DATA_MODE", - "NITRATE_DATA_MODE", - "PHASE_DELAY_DOXY_DATA_MODE", - "PH_IN_SITU_FREE_DATA_MODE", - "PH_IN_SITU_SEAWATER_DATA_MODE", - "PH_IN_SITU_TOTAL_DATA_MODE", - "PPOX_DOXY_DATA_MODE", - "PRES_DATA_MODE", + "BETA_BACKSCATTERING700_DATA_MODE", + "BETA_BACKSCATTERING470_DATA_MODE", + "SIDE_SCATTERING_TURBIDITY_DATA_MODE", "PSAL_DATA_MODE", - "RAW_DOWNWELLING_IRRADIANCE_DATA_MODE", + "TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION_DATA_MODE", + "RAW_UPWELLING_RADIANCE412_DATA_MODE", + "COUNT_DOXY_DATA_MODE", + "RAW_DOWNWELLING_IRRADIANCE490_DATA_MODE", + "TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660_DATA_MODE", + "UV_INTENSITY_DARK_NITRATE_DATA_MODE", + "LED_FLASHING_COUNT_DOXY_DATA_MODE", + "UV_INTENSITY_NITRATE_DATA_MODE", + "FLUORESCENCE_CDOM_DATA_MODE", + "RAW_UPWELLING_RADIANCE555_DATA_MODE", + "NB_SAMPLE_DATA_MODE", "RAW_DOWNWELLING_IRRADIANCE380_DATA_MODE", "RAW_DOWNWELLING_IRRADIANCE412_DATA_MODE", - "RAW_DOWNWELLING_IRRADIANCE443_DATA_MODE", - "RAW_DOWNWELLING_IRRADIANCE490_DATA_MODE", - "RAW_DOWNWELLING_IRRADIANCE555_DATA_MODE", - "RAW_DOWNWELLING_PAR_DATA_MODE", + "RAW_DOWNWELLING_IRRADIANCE_DATA_MODE", + "BETA_BACKSCATTERING_DATA_MODE", "RAW_UPWELLING_RADIANCE_DATA_MODE", - "RAW_UPWELLING_RADIANCE412_DATA_MODE", "RAW_UPWELLING_RADIANCE443_DATA_MODE", - "RAW_UPWELLING_RADIANCE490_DATA_MODE", - "RAW_UPWELLING_RADIANCE555_DATA_MODE", - "RPHASE_DOXY_DATA_MODE", - "SIDE_SCATTERING_TURBIDITY_DATA_MODE", - "TEMP_DATA_MODE", - "TEMP_CNDC_DATA_MODE", + "RAW_DOWNWELLING_IRRADIANCE443_DATA_MODE", + "UV_INTENSITY_DARK_SEAWATER_NITRATE_DATA_MODE", + "FLUORESCENCE_CHLA_DATA_MODE", + "FIT_ERROR_NITRATE_DATA_MODE", + "RAW_DOWNWELLING_PAR_DATA_MODE", + "RAW_DOWNWELLING_IRRADIANCE555_DATA_MODE", "TEMP_COUNT_DOXY_DATA_MODE", + "RAW_UPWELLING_RADIANCE490_DATA_MODE", + "BETA_BACKSCATTERING532_DATA_MODE", "TEMP_CPU_CHLA_DATA_MODE", - "TEMP_DOXY_DATA_MODE", - "TEMP_NITRATE_DATA_MODE", - "TEMP_PH_DATA_MODE", - "TEMP_SPECTROPHOTOMETER_NITRATE_DATA_MODE", - "TEMP_VOLTAGE_DOXY_DATA_MODE", - "TILT_DATA_MODE", - "TPHASE_DOXY_DATA_MODE", - "TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION_DATA_MODE", - "TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660_DATA_MODE", + "DOXY_DATA_MODE", + "NITRATE_DATA_MODE", + "BISULFIDE_DATA_MODE", + "MLPL_DOXY_DATA_MODE", "TURBIDITY_DATA_MODE", - "UP_RADIANCE_DATA_MODE", - "UP_RADIANCE412_DATA_MODE", - "UP_RADIANCE443_DATA_MODE", - "UP_RADIANCE490_DATA_MODE", - "UP_RADIANCE555_DATA_MODE", - "UV_INTENSITY_DARK_NITRATE_DATA_MODE", - "UV_INTENSITY_DARK_SEAWATER_NITRATE_DATA_MODE", - "UV_INTENSITY_NITRATE_DATA_MODE", - "VK_PH_DATA_MODE", - "VOLTAGE_DOXY_DATA_MODE", - "VRS_PH_DATA_MODE" + "CHLA_DATA_MODE", + "TEMP_DATA_MODE" ], "int": [ "PLATFORM_NUMBER", diff --git a/argopy/static/assets/institutions.json b/argopy/static/assets/institutions.json index 604d80e0..19ba7544 100644 --- a/argopy/static/assets/institutions.json +++ b/argopy/static/assets/institutions.json @@ -1,35 +1,35 @@ { "name": "institutions", "long_name": "Institution names from Argo reference table 4", - "last_update": "2023-10-20T12:57:34.039003+00:00", + "last_update": "2024-09-20T09:26:28.990073+00:00", "data": { "institutions": { - "AO": "AOML, USA", - "BO": "BODC, United Kingdom", - "CI": "Institute of Ocean Sciences, Canada", - "CS": "CSIRO, Australia", - "GE": "BSH, Germany", - "GT": "GTS : used for data coming from WMO GTS network", - "HZ": "CSIO, China Second Institute of Oceanography", - "IF": "Ifremer, France", - "IN": "INCOIS, India", + "PL": "IOPAN, Institute of Oceanology Polish Academy of Science", + "NA": "NAVO, USA", "JA": "JMA, Japan", + "RU": "Russia", + "UW": "University of Washington, USA", + "BO": "BODC, United Kingdom", + "SP": "Spain", + "VL": "Far Eastern Regional Hydrometeorological Research Institute of Vladivostock, Russia", + "KO": "KORDI, Korea", "JM": "Jamstec, Japan", + "AO": "AOML, USA", "KM": "KMA, Korea", - "KO": "KORDI, Korea", - "LV": "Laboratoire Oc\u00e9anographique de Villefranche, Sorbonne University", + "GT": "GTS : used for data coming from WMO GTS network", "MB": "MBARI, USA", - "ME": "MEDS, Canada", - "NA": "NAVO, USA", "NM": "NMDIS, China", - "PL": "IOPAN, Institute of Oceanology Polish Academy of Science", + "LV": "Laboratoire Oc\u00e9anographique de Villefranche, Sorbonne University", + "IF": "Ifremer, France", + "HZ": "CSIO, China Second Institute of Oceanography", "PM": "PMEL, USA", - "RU": "Russia", + "WH": "Woods Hole Oceanographic Institution, USA", + "GE": "BSH, Germany", + "IN": "INCOIS, India", "SI": "SIO, Scripps, USA", - "SP": "Spain", - "UW": "University of Washington, USA", - "VL": "Far Eastern Regional Hydrometeorological Research Institute of Vladivostock, Russia", - "WH": "Woods Hole Oceanographic Institution, USA" + "CI": "Institute of Ocean Sciences, Canada", + "CS": "CSIRO, Australia", + "ME": "MEDS, Canada" } } } \ No newline at end of file diff --git a/argopy/static/assets/profilers.json b/argopy/static/assets/profilers.json index b84fb385..803ef23b 100644 --- a/argopy/static/assets/profilers.json +++ b/argopy/static/assets/profilers.json @@ -1,58 +1,60 @@ { "name": "profilers", "long_name": "Profiler codes and description from Argo reference table 8", - "last_update": "2023-10-20T12:57:34.066062+00:00", + "last_update": "2024-09-20T09:26:30.350138+00:00", "data": { "profilers": { + "841": "PROVOR float with SBE conductivity sensor", + "838": "ARVOR-D deep float with SBE conductivity sensor", "831": "PALACE float", - "834": "PROVOR V SBE", + "887": "SOLO_BGC_MRV, RBR", + "880": "S2A float with RBR conductivity sensor", + "877": "APEX float with RBR conductivity sensor", + "881": "HM4000", + "851": "SOLO float with SBE conductivity sensor", + "847": "Teledyne Webb Research float with FSI conductivity sensor", + "848": "APEX-EM float with SBE conductivity sensor", "835": "PROVOR IV", - "836": "PROVOR III", "837": "ARVOR-C float with SBE conductivity sensor", - "838": "ARVOR-D deep float with SBE conductivity sensor", - "839": "PROVOR-II float with SBE conductivity sensor", - "840": "PROVOR float with no conductivity sensor", - "841": "PROVOR float with SBE conductivity sensor", - "842": "PROVOR float with FSI conductivity sensor", + "883": "APEX_D deep float with RBR conductivity sensor", + "879": "SOLO-II with RBR conductivity sensor", + "885": "SOLO_BGC, RBR", + "859": "NEMO float with no conductivity", + "861": "NEMO float with FSI conductivity sensor", + "858": "NINJA float with TSK conductivity sensor", + "836": "PROVOR III", "843": "POPS ice platform using PROVOR float with SBE conductivity sensor", + "878": "ARVOR float with RBR conductivity sensor", + "889": "PROVOR_V - Jumbo, RBR", + "888": "PROVOR_V - Jumbo, SBE", + "834": "PROVOR V SBE", + "863": "Navis-A float with SBE conductivity sensor", "844": "ARVOR float with SBE conductivity sensor", + "886": "SOLO_BGC_MRV, SBE", + "853": "SOLO-II float with SBE conductivity sensor", + "864": "NINJA-D deep float with SBE conductivity sensor", + "842": "PROVOR float with FSI conductivity sensor", "845": "Teledyne Webb Research float with no conductivity sensor", - "846": "Teledyne Webb Research float with SBE conductivity sensor", - "847": "Teledyne Webb Research float with FSI conductivity sensor", - "848": "APEX-EM float with SBE conductivity sensor", - "849": "APEX-D deep float with SBE conductivity sensor", - "850": "SOLO float with no conductivity sensor", - "851": "SOLO float with SBE conductivity sensor", + "890": "PROVOR_III - Jumbo, SBE", + "875": "ALTO float with RBR conductivity sensor", "852": "SOLO float with FSI conductivity sensor", - "853": "SOLO-II float with SBE conductivity sensor", - "854": "S2A float with SBE conductivity sensor", - "855": "NINJA float with no conductivity sensor", "856": "NINJA float with SBE conductivity sensor", - "857": "NINJA float with FSI conductivity sensor", - "858": "NINJA float with TSK conductivity sensor", - "859": "NEMO float with no conductivity", - "860": "NEMO float with SBE conductivity sensor", - "861": "NEMO float with FSI conductivity sensor", + "884": "SOLO_BGC, SBE", "862": "SOLO-D deep float with SBE conductivity sensor", - "863": "Navis-A float with SBE conductivity sensor", - "864": "NINJA-D deep float with SBE conductivity sensor", + "854": "S2A float with SBE conductivity sensor", + "840": "PROVOR float with no conductivity sensor", "865": "NOVA float with SBE conductivity sensor", - "875": "ALTO float with RBR conductivity sensor", + "872": "S2X", + "846": "Teledyne Webb Research float with SBE conductivity sensor", + "891": "PROVOR_III - Jumbo, RBR", + "850": "SOLO float with no conductivity sensor", + "839": "PROVOR-II float with SBE conductivity sensor", "876": "ALTO float with SBE conductivity sensor", - "877": "APEX float with RBR conductivity sensor", - "878": "ARVOR float with RBR conductivity sensor", - "879": "SOLO-II with RBR conductivity sensor", - "880": "S2A float with RBR conductivity sensor", - "881": "HM4000", "882": "XUANWU", - "884": "SOLO_BGC, SBE", - "885": "SOLO_BGC, RBR", - "886": "SOLO_BGC_MRV, SBE", - "887": "SOLO_BGC_MRV, RBR", - "888": "PROVOR_V - Jumbo, SBE", - "889": "PROVOR_V - Jumbo, RBR", - "890": "PROVOR_III - Jumbo, SBE", - "891": "PROVOR_III - Jumbo, RBR" + "857": "NINJA float with FSI conductivity sensor", + "860": "NEMO float with SBE conductivity sensor", + "849": "APEX-D deep float with SBE conductivity sensor", + "855": "NINJA float with no conductivity sensor" } } } \ No newline at end of file diff --git a/argopy/static/assets/variables_bgc_synthetic.json b/argopy/static/assets/variables_bgc_synthetic.json new file mode 100644 index 00000000..b43660f6 --- /dev/null +++ b/argopy/static/assets/variables_bgc_synthetic.json @@ -0,0 +1,204 @@ +{ + "name": "BGC synthetic netcdf files variables", + "long_name": "Variables from the Ifremer Erddap ArgoFloats-synthetic-BGC dataset based on GDAC synthetic netcdf files", + "last_update": "2024-09-20T09:27:55.354835+00:00", + "data": { + "variables": [ + "BBP470", + "BBP470_ADJUSTED", + "BBP470_ADJUSTED_ERROR", + "BBP470_ADJUSTED_QC", + "BBP470_QC", + "BBP532", + "BBP532_ADJUSTED", + "BBP532_ADJUSTED_ERROR", + "BBP532_ADJUSTED_QC", + "BBP532_QC", + "BBP700", + "BBP700_2", + "BBP700_2_ADJUSTED", + "BBP700_2_ADJUSTED_ERROR", + "BBP700_2_ADJUSTED_QC", + "BBP700_2_QC", + "BBP700_ADJUSTED", + "BBP700_ADJUSTED_ERROR", + "BBP700_ADJUSTED_QC", + "BBP700_QC", + "BISULFIDE", + "BISULFIDE_ADJUSTED", + "BISULFIDE_ADJUSTED_ERROR", + "BISULFIDE_ADJUSTED_QC", + "BISULFIDE_QC", + "CDOM", + "CDOM_ADJUSTED", + "CDOM_ADJUSTED_ERROR", + "CDOM_ADJUSTED_QC", + "CDOM_QC", + "CHLA", + "CHLA_ADJUSTED", + "CHLA_ADJUSTED_ERROR", + "CHLA_ADJUSTED_QC", + "CHLA_QC", + "CNDC", + "CNDC_ADJUSTED", + "CNDC_ADJUSTED_ERROR", + "CNDC_ADJUSTED_QC", + "CNDC_QC", + "CONFIG_MISSION_NUMBER", + "CP660", + "CP660_ADJUSTED", + "CP660_ADJUSTED_ERROR", + "CP660_ADJUSTED_QC", + "CP660_QC", + "CYCLE_NUMBER", + "DATA_CENTRE", + "DATA_TYPE", + "DATE_UPDATE", + "DIRECTION", + "DOWNWELLING_PAR", + "DOWNWELLING_PAR_ADJUSTED", + "DOWNWELLING_PAR_ADJUSTED_ERROR", + "DOWNWELLING_PAR_ADJUSTED_QC", + "DOWNWELLING_PAR_QC", + "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_IRRADIANCE443", + "DOWN_IRRADIANCE443_ADJUSTED", + "DOWN_IRRADIANCE443_ADJUSTED_ERROR", + "DOWN_IRRADIANCE443_ADJUSTED_QC", + "DOWN_IRRADIANCE443_QC", + "DOWN_IRRADIANCE490", + "DOWN_IRRADIANCE490_ADJUSTED", + "DOWN_IRRADIANCE490_ADJUSTED_ERROR", + "DOWN_IRRADIANCE490_ADJUSTED_QC", + "DOWN_IRRADIANCE490_QC", + "DOWN_IRRADIANCE555", + "DOWN_IRRADIANCE555_ADJUSTED", + "DOWN_IRRADIANCE555_ADJUSTED_ERROR", + "DOWN_IRRADIANCE555_ADJUSTED_QC", + "DOWN_IRRADIANCE555_QC", + "DOWN_IRRADIANCE665", + "DOWN_IRRADIANCE665_ADJUSTED", + "DOWN_IRRADIANCE665_ADJUSTED_ERROR", + "DOWN_IRRADIANCE665_ADJUSTED_QC", + "DOWN_IRRADIANCE665_QC", + "DOWN_IRRADIANCE670", + "DOWN_IRRADIANCE670_ADJUSTED", + "DOWN_IRRADIANCE670_ADJUSTED_ERROR", + "DOWN_IRRADIANCE670_ADJUSTED_QC", + "DOWN_IRRADIANCE670_QC", + "DOXY", + "DOXY2", + "DOXY2_ADJUSTED", + "DOXY2_ADJUSTED_ERROR", + "DOXY2_ADJUSTED_QC", + "DOXY2_QC", + "DOXY3", + "DOXY3_ADJUSTED", + "DOXY3_ADJUSTED_ERROR", + "DOXY3_ADJUSTED_QC", + "DOXY3_QC", + "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", + "PI_NAME", + "PLATFORM_NUMBER", + "PLATFORM_TYPE", + "POSITION_QC", + "PRES", + "PRES_ADJUSTED", + "PRES_ADJUSTED_ERROR", + "PRES_ADJUSTED_QC", + "PRES_QC", + "PROFILE_BBP470_QC", + "PROFILE_BBP532_QC", + "PROFILE_BBP700_2_QC", + "PROFILE_BBP700_QC", + "PROFILE_BISULFIDE_QC", + "PROFILE_CDOM_QC", + "PROFILE_CHLA_QC", + "PROFILE_CNDC_QC", + "PROFILE_CP660_QC", + "PROFILE_DOWNWELLING_PAR_QC", + "PROFILE_DOWN_IRRADIANCE380_QC", + "PROFILE_DOWN_IRRADIANCE412_QC", + "PROFILE_DOWN_IRRADIANCE443_QC", + "PROFILE_DOWN_IRRADIANCE490_QC", + "PROFILE_DOWN_IRRADIANCE555_QC", + "PROFILE_DOWN_IRRADIANCE665_QC", + "PROFILE_DOWN_IRRADIANCE670_QC", + "PROFILE_DOXY2_QC", + "PROFILE_DOXY3_QC", + "PROFILE_DOXY_QC", + "PROFILE_NITRATE_QC", + "PROFILE_PH_IN_SITU_TOTAL_QC", + "PROFILE_PRES_QC", + "PROFILE_PSAL_QC", + "PROFILE_TEMP_QC", + "PROFILE_TURBIDITY_QC", + "PROFILE_UP_RADIANCE412_QC", + "PROFILE_UP_RADIANCE443_QC", + "PROFILE_UP_RADIANCE490_QC", + "PROFILE_UP_RADIANCE555_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", + "TURBIDITY", + "TURBIDITY_ADJUSTED", + "TURBIDITY_ADJUSTED_ERROR", + "TURBIDITY_ADJUSTED_QC", + "TURBIDITY_QC", + "UP_RADIANCE412", + "UP_RADIANCE412_ADJUSTED", + "UP_RADIANCE412_ADJUSTED_ERROR", + "UP_RADIANCE412_ADJUSTED_QC", + "UP_RADIANCE412_QC", + "UP_RADIANCE443", + "UP_RADIANCE443_ADJUSTED", + "UP_RADIANCE443_ADJUSTED_ERROR", + "UP_RADIANCE443_ADJUSTED_QC", + "UP_RADIANCE443_QC", + "UP_RADIANCE490", + "UP_RADIANCE490_ADJUSTED", + "UP_RADIANCE490_ADJUSTED_ERROR", + "UP_RADIANCE490_ADJUSTED_QC", + "UP_RADIANCE490_QC", + "UP_RADIANCE555", + "UP_RADIANCE555_ADJUSTED", + "UP_RADIANCE555_ADJUSTED_ERROR", + "UP_RADIANCE555_ADJUSTED_QC", + "UP_RADIANCE555_QC", + "WMO_INST_TYPE" + ] + } +} \ No newline at end of file diff --git a/argopy/tests/test_data/005e01b45d4b791bbb790b1927363294b55f6f89d69cf552d146a0698ff2f7de.ncHeader b/argopy/tests/test_data/005e01b45d4b791bbb790b1927363294b55f6f89d69cf552d146a0698ff2f7de.ncHeader index f1c8799f..f607e96a 100644 --- a/argopy/tests/test_data/005e01b45d4b791bbb790b1927363294b55f6f89d69cf552d146a0698ff2f7de.ncHeader +++ b/argopy/tests/test_data/005e01b45d4b791bbb790b1927363294b55f6f89d69cf552d146a0698ff2f7de.ncHeader @@ -303,8 +303,8 @@ netcdf ArgoFloats_fb70_b178_b6ad.nc { :geospatial_lon_max = 142.722; // double :geospatial_lon_min = -85.606; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-22T12:04:34Z (local files) -2024-08-22T12:04:34Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~%221901393%7C6902746%22&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-20T09:17:44Z (local files) +2024-09-20T09:17:44Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~%221901393%7C6902746%22&distinct()&orderBy(%22time,pres%22)"; :id = "ArgoFloats"; :infoUrl = "https://argo.ucsd.edu/"; :institution = "Argo"; diff --git a/argopy/tests/test_data/031fe8ac8e497b428558e7780b976d5edfed829e4eab5ecf7377ec8c21b5f8c8.ncHeader b/argopy/tests/test_data/031fe8ac8e497b428558e7780b976d5edfed829e4eab5ecf7377ec8c21b5f8c8.ncHeader index e2996837..1b53a4d8 100644 --- a/argopy/tests/test_data/031fe8ac8e497b428558e7780b976d5edfed829e4eab5ecf7377ec8c21b5f8c8.ncHeader +++ b/argopy/tests/test_data/031fe8ac8e497b428558e7780b976d5edfed829e4eab5ecf7377ec8c21b5f8c8.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_7f1b_c66c_336b.nc { :long_name = "Quality on date and time"; char direction(row=26107, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_7f1b_c66c_336b.nc { :long_name = "Float cycle number"; int config_mission_number(row=26107); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 1; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_7f1b_c66c_336b.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.358001f, 322.7896f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_7f1b_c66c_336b.nc { :valid_min = -5.0f; // float char doxy_qc(row=26107, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 167.5023f, 352.5889f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_7f1b_c66c_336b.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=26107, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.025068f, 16.03393f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_7f1b_c66c_336b.nc { :units = "micromole/kg"; float pres(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 3.4f, 2009.7f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_7f1b_c66c_336b.nc { :valid_min = 0.0f; // float char pres_qc(row=26107, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.3f, 2010.0f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_7f1b_c66c_336b.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=26107, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.4f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_7f1b_c66c_336b.nc { :units = "decibar"; float psal(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.231f, 34.796f; // float :C_format = "%.4f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_7f1b_c66c_336b.nc { :valid_min = 2.0f; // float char psal_qc(row=26107, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.66283f, 34.7961f; // float :C_format = "%.4f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_7f1b_c66c_336b.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=26107, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01f, 0.0155498f; // float :C_format = "%.4f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_7f1b_c66c_336b.nc { :units = "psu"; float temp(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.046f, 10.132f; // float :C_format = "%.3f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_7f1b_c66c_336b.nc { :valid_min = -2.5f; // float char temp_qc(row=26107, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.046f, 10.132f; // float :C_format = "%.3f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_7f1b_c66c_336b.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=26107, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_7f1b_c66c_336b.nc { :geospatial_lon_max = 179.96; // double :geospatial_lon_min = -179.717; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T07:38:35Z (local files) -2024-08-23T07:38:35Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:26:32Z (local files) +2024-09-20T11:26:32Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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"; diff --git a/argopy/tests/test_data/05c1dd2e89c619af221fa155a81c3cd4a262131187f8eb3a8eda266ae2706d53.gz b/argopy/tests/test_data/05c1dd2e89c619af221fa155a81c3cd4a262131187f8eb3a8eda266ae2706d53.gz index b1e9f4b5..bda8205e 100644 Binary files a/argopy/tests/test_data/05c1dd2e89c619af221fa155a81c3cd4a262131187f8eb3a8eda266ae2706d53.gz and b/argopy/tests/test_data/05c1dd2e89c619af221fa155a81c3cd4a262131187f8eb3a8eda266ae2706d53.gz differ diff --git a/argopy/tests/test_data/08485a4e4c250f56b7231214a30c605fd7585c180f4ddefaa3bdc6e74e1dcbd0.nc b/argopy/tests/test_data/08485a4e4c250f56b7231214a30c605fd7585c180f4ddefaa3bdc6e74e1dcbd0.nc index 3f357537..148b51d2 100644 Binary files a/argopy/tests/test_data/08485a4e4c250f56b7231214a30c605fd7585c180f4ddefaa3bdc6e74e1dcbd0.nc and b/argopy/tests/test_data/08485a4e4c250f56b7231214a30c605fd7585c180f4ddefaa3bdc6e74e1dcbd0.nc differ diff --git a/argopy/tests/test_data/08a080aa0bf2db9bf74dc3284afbf9ef9b8701d4dfedad2681bd2f96d2b41c2b.nc b/argopy/tests/test_data/08a080aa0bf2db9bf74dc3284afbf9ef9b8701d4dfedad2681bd2f96d2b41c2b.nc index 973f6189..3a2f0d09 100644 Binary files a/argopy/tests/test_data/08a080aa0bf2db9bf74dc3284afbf9ef9b8701d4dfedad2681bd2f96d2b41c2b.nc and b/argopy/tests/test_data/08a080aa0bf2db9bf74dc3284afbf9ef9b8701d4dfedad2681bd2f96d2b41c2b.nc differ diff --git a/argopy/tests/test_data/0a42f0cc5b07b6bd02f6f2b257dc755f6c06be5559352bba7b8f231bc565de27.nc b/argopy/tests/test_data/0a42f0cc5b07b6bd02f6f2b257dc755f6c06be5559352bba7b8f231bc565de27.nc index ee6fb26b..b9bb2583 100644 Binary files a/argopy/tests/test_data/0a42f0cc5b07b6bd02f6f2b257dc755f6c06be5559352bba7b8f231bc565de27.nc and b/argopy/tests/test_data/0a42f0cc5b07b6bd02f6f2b257dc755f6c06be5559352bba7b8f231bc565de27.nc differ diff --git a/argopy/tests/test_data/0a6b66400575b6b32fb4d029770c70ba4ff0b973e79237e41beea72a624aef06.json b/argopy/tests/test_data/0a6b66400575b6b32fb4d029770c70ba4ff0b973e79237e41beea72a624aef06.json index cb688384..2fe079c4 100644 --- a/argopy/tests/test_data/0a6b66400575b6b32fb4d029770c70ba4ff0b973e79237e41beea72a624aef06.json +++ b/argopy/tests/test_data/0a6b66400575b6b32fb4d029770c70ba4ff0b973e79237e41beea72a624aef06.json @@ -1 +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":"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":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":"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902630"}],"total":139} \ No newline at end of file +{"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/109e79b4798289619a901d65865b957fe8064f390d06d4e7ee9eb40657bab444.gz b/argopy/tests/test_data/109e79b4798289619a901d65865b957fe8064f390d06d4e7ee9eb40657bab444.gz index e9dbaa80..9996a445 100644 Binary files a/argopy/tests/test_data/109e79b4798289619a901d65865b957fe8064f390d06d4e7ee9eb40657bab444.gz and b/argopy/tests/test_data/109e79b4798289619a901d65865b957fe8064f390d06d4e7ee9eb40657bab444.gz differ diff --git a/argopy/tests/test_data/13c7577d5b3baf2559d640c67b3f163377121b4005b80ef78ebcd5cb3ff75a56.nc b/argopy/tests/test_data/13c7577d5b3baf2559d640c67b3f163377121b4005b80ef78ebcd5cb3ff75a56.nc index 56e8c0e3..76239053 100644 Binary files a/argopy/tests/test_data/13c7577d5b3baf2559d640c67b3f163377121b4005b80ef78ebcd5cb3ff75a56.nc and b/argopy/tests/test_data/13c7577d5b3baf2559d640c67b3f163377121b4005b80ef78ebcd5cb3ff75a56.nc differ diff --git a/argopy/tests/test_data/13e4baafd53a08bad82395f9f8fe3f16ad8d8a4fed87e3f694da780f5dfd4006.nc b/argopy/tests/test_data/13e4baafd53a08bad82395f9f8fe3f16ad8d8a4fed87e3f694da780f5dfd4006.nc index 79c86618..c618365c 100644 Binary files a/argopy/tests/test_data/13e4baafd53a08bad82395f9f8fe3f16ad8d8a4fed87e3f694da780f5dfd4006.nc and b/argopy/tests/test_data/13e4baafd53a08bad82395f9f8fe3f16ad8d8a4fed87e3f694da780f5dfd4006.nc differ diff --git a/argopy/tests/test_data/13ede145ffeb1deaa7b445a4c094da587e03eb6bb9aac7bb95f3a567a56ef45c.html b/argopy/tests/test_data/13ede145ffeb1deaa7b445a4c094da587e03eb6bb9aac7bb95f3a567a56ef45c.html index 14052019..7ceb0781 100644 --- a/argopy/tests/test_data/13ede145ffeb1deaa7b445a4c094da587e03eb6bb9aac7bb95f3a567a56ef45c.html +++ b/argopy/tests/test_data/13ede145ffeb1deaa7b445a4c094da587e03eb6bb9aac7bb95f3a567a56ef45c.html @@ -13,4 +13,4 @@
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/140d2bc8fe636c5238ea5e8db31d06d2222cd6a15deeb86498ae5719f2ac2567.ncHeader b/argopy/tests/test_data/140d2bc8fe636c5238ea5e8db31d06d2222cd6a15deeb86498ae5719f2ac2567.ncHeader index 43574346..5f19de73 100644 --- a/argopy/tests/test_data/140d2bc8fe636c5238ea5e8db31d06d2222cd6a15deeb86498ae5719f2ac2567.ncHeader +++ b/argopy/tests/test_data/140d2bc8fe636c5238ea5e8db31d06d2222cd6a15deeb86498ae5719f2ac2567.ncHeader @@ -303,8 +303,8 @@ netcdf ArgoFloats_e5e2_1f60_f81e.nc { :geospatial_lon_max = -58.11900000000003; // double :geospatial_lon_min = -58.11900000000003; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-22T12:04:39Z (local files) -2024-08-22T12:04:39Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~%226902746%22&cycle_number=~%2234%22&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-20T08:42:02Z (local files) +2024-09-20T08:42:02Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~%226902746%22&cycle_number=~%2234%22&distinct()&orderBy(%22time,pres%22)"; :id = "ArgoFloats"; :infoUrl = "https://argo.ucsd.edu/"; :institution = "Argo"; diff --git a/argopy/tests/test_data/153b4d3ac7f427e3bbeea9ec3b0a93c487fda47873f47ec33452fb61ff1ab605.html b/argopy/tests/test_data/153b4d3ac7f427e3bbeea9ec3b0a93c487fda47873f47ec33452fb61ff1ab605.html index 79d396cb..e262c08e 100644 --- a/argopy/tests/test_data/153b4d3ac7f427e3bbeea9ec3b0a93c487fda47873f47ec33452fb61ff1ab605.html +++ b/argopy/tests/test_data/153b4d3ac7f427e3bbeea9ec3b0a93c487fda47873f47ec33452fb61ff1ab605.html @@ -14,4 +14,4 @@
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 index 9cc72fa9..2059549a 100644 --- a/argopy/tests/test_data/1555ff843864b325ce6547cc4608ca86db5770ca2955d99c48da940563e932e2.json +++ b/argopy/tests/test_data/1555ff843864b325ce6547cc4608ca86db5770ca2955d99c48da940563e932e2.json @@ -405,15 +405,15 @@ { "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/" }, - { - "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/" - }, { "@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/" }, @@ -954,6 +954,9 @@ { "@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/" }, diff --git a/argopy/tests/test_data/16ff9fb5ff16da1346a2240c6434a1b56e1242541b1b9bbe7413a36aa67a08a4.nc b/argopy/tests/test_data/16ff9fb5ff16da1346a2240c6434a1b56e1242541b1b9bbe7413a36aa67a08a4.nc index 359b9f78..06fcfe65 100644 Binary files a/argopy/tests/test_data/16ff9fb5ff16da1346a2240c6434a1b56e1242541b1b9bbe7413a36aa67a08a4.nc and b/argopy/tests/test_data/16ff9fb5ff16da1346a2240c6434a1b56e1242541b1b9bbe7413a36aa67a08a4.nc differ diff --git a/argopy/tests/test_data/1895345abe65f3c5caacc66beda5d25205aaebdf0808d2b5916a8dc44fd8780e.ncHeader b/argopy/tests/test_data/1895345abe65f3c5caacc66beda5d25205aaebdf0808d2b5916a8dc44fd8780e.ncHeader index a4bd3ae5..13785c87 100644 --- a/argopy/tests/test_data/1895345abe65f3c5caacc66beda5d25205aaebdf0808d2b5916a8dc44fd8780e.ncHeader +++ b/argopy/tests/test_data/1895345abe65f3c5caacc66beda5d25205aaebdf0808d2b5916a8dc44fd8780e.ncHeader @@ -87,7 +87,7 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :long_name = "Quality on date and time"; char direction(row=732, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -112,7 +112,7 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :long_name = "Float cycle number"; int config_mission_number(row=732); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 9; // int :colorBarMaximum = 100.0; // double @@ -122,7 +122,7 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :long_name = "Unique number denoting the missions performed by the float"; float bbp700(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002184519f, 0.005617575f; // float :C_format = "%.7f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :valid_min = NaNf; // float char bbp700_qc(row=732, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002184519f, 0.005617575f; // float :C_format = "%.7f"; @@ -152,13 +152,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :units = "m-1"; char bbp700_adjusted_qc(row=732, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.7f"; :FORTRAN_format = "F.7"; @@ -167,7 +167,7 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :units = "m-1"; float cdom(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.073775f, 0.724f; // float :C_format = "%.3f"; @@ -181,13 +181,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :valid_min = NaNf; // float char cdom_qc(row=732, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -196,13 +196,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :units = "ppb"; char cdom_adjusted_qc(row=732, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -211,7 +211,7 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :units = "ppb"; float chla(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.3338091f, 1.605407f; // float :C_format = "%.4f"; @@ -226,13 +226,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :valid_min = NaNf; // float char chla_qc(row=732, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.4818f, 1.56585f; // float :C_format = "%.4f"; @@ -243,13 +243,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :units = "mg/m3"; char chla_adjusted_qc(row=732, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -280,7 +280,7 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :actual_range = 99999.0f, 99999.0f; // float float downwelling_par(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 211.6906f, 1309.106f; // float :C_format = "%.3f"; @@ -295,13 +295,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :valid_min = NaNf; // float char downwelling_par_qc(row=732, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 211.224f, 1308.671f; // float :C_format = "%.3f"; @@ -312,13 +312,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :units = "microMoleQuanta/m^2/sec"; char downwelling_par_adjusted_qc(row=732, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 10.5612f, 65.43353f; // float :C_format = "%.3f"; @@ -328,7 +328,7 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :units = "microMoleQuanta/m^2/sec"; float down_irradiance380(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.04950013f, 0.472008f; // float :C_format = "%.6f"; @@ -342,13 +342,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :valid_min = NaNf; // float char down_irradiance380_qc(row=732, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.04933397f, 0.4718581f; // float :C_format = "%.6f"; @@ -358,13 +358,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :units = "W/m^2/nm"; char down_irradiance380_adjusted_qc(row=732, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 9.866795E-4f, 0.009437162f; // float :C_format = "%.6f"; @@ -374,7 +374,7 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :units = "W/m^2/nm"; float down_irradiance412(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.1373402f, 0.8742672f; // float :C_format = "%.6f"; @@ -388,13 +388,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :valid_min = NaNf; // float char down_irradiance412_qc(row=732, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.1372784f, 0.8742118f; // float :C_format = "%.6f"; @@ -404,13 +404,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :units = "W/m^2/nm"; char down_irradiance412_adjusted_qc(row=732, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002745568f, 0.01748424f; // float :C_format = "%.6f"; @@ -420,7 +420,7 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :units = "W/m^2/nm"; float down_irradiance490(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.3044119f, 1.255575f; // float :C_format = "%.6f"; @@ -434,13 +434,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :valid_min = NaNf; // float char down_irradiance490_qc(row=732, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.3044299f, 1.255584f; // float :C_format = "%.6f"; @@ -450,13 +450,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :units = "W/m^2/nm"; char down_irradiance490_adjusted_qc(row=732, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.006088599f, 0.02511167f; // float :C_format = "%.6f"; @@ -466,7 +466,7 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :units = "W/m^2/nm"; float doxy(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 248.6568f, 288.2258f; // float :C_format = "%.3f"; @@ -481,13 +481,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :valid_min = -5.0f; // float char doxy_qc(row=732, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 269.7927f, 308.8627f; // float :C_format = "%.3f"; @@ -500,13 +500,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=732, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 8.415855f, 16.55767f; // float :C_format = "%.3f"; @@ -516,101 +516,51 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :units = "micromole/kg"; float nitrate(row=732); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 3.829968f, 5.665306f; // float - :C_format = "%.3f"; :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :FORTRAN_format = "F.3"; :long_name = "Nitrate"; - :resolution = 0.001f; // float :sdn_parameter_urn = "SDN:P01::MDMAP005"; - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; :units = "micromole/kg"; :valid_max = NaNf; // float :valid_min = NaNf; // float char nitrate_qc(row=732, nitrate_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 0.9696299f, 2.804968f; // float - :C_format = "%.3f"; - :FORTRAN_format = "F.3"; - :long_name = "Nitrate"; - :resolution = 0.001f; // float - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :units = "micromole/kg"; + :actual_range = 0.9696299f, 99999.0f; // float char nitrate_adjusted_qc(row=732, nitrate_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 5.0f, 5.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 = "micromole/kg"; + :actual_range = 5.0f, 99999.0f; // float float ph_in_situ_total(row=732); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 8.114964f, 8.152939f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float char ph_in_situ_total_qc(row=732, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float char ph_in_situ_total_adjusted_qc(row=732, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float float pres(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float @@ -627,13 +577,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :valid_min = 0.0f; // float char pres_qc(row=732, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.0f, 9.9f; // float :axis = "Z"; @@ -647,13 +597,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=732, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.000083f, 2.004125f; // float :C_format = "%.3f"; @@ -663,7 +613,7 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :units = "decibar"; float psal(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 31.927f, 34.478f; // float :C_format = "%.4f"; @@ -678,13 +628,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :valid_min = 2.0f; // float char psal_qc(row=732, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 31.96201f, 34.488f; // float :C_format = "%.4f"; @@ -697,13 +647,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=732, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.004f, 0.004f; // float :C_format = "%.4f"; @@ -713,7 +663,7 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :units = "psu"; float temp(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 8.247f, 11.566f; // float :C_format = "%.3f"; @@ -728,13 +678,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :valid_min = -2.5f; // float char temp_qc(row=732, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 8.278f, 11.566f; // float :C_format = "%.3f"; @@ -747,13 +697,13 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=732, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -780,9 +730,9 @@ netcdf ArgoFloats-synthetic-BGC_09c6_7067_bdfe.nc { :geospatial_lon_max = -47.62549666666666; // double :geospatial_lon_min = -54.40875833333333; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:11:05Z (local files) -2024-08-23T08:11:05Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:31:47Z (local files) +2024-09-20T11:31:47Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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"; diff --git a/argopy/tests/test_data/1a3436d8b1777ffc553e84cff2cb882d62d25ae02130ca154667e196855d0450.nc b/argopy/tests/test_data/1a3436d8b1777ffc553e84cff2cb882d62d25ae02130ca154667e196855d0450.nc index ee5f1bf2..bb1ebdbf 100644 Binary files a/argopy/tests/test_data/1a3436d8b1777ffc553e84cff2cb882d62d25ae02130ca154667e196855d0450.nc and b/argopy/tests/test_data/1a3436d8b1777ffc553e84cff2cb882d62d25ae02130ca154667e196855d0450.nc differ diff --git a/argopy/tests/test_data/1d16184686cce8f1b47b0170491f9ce23c3f58fa654beee9aece9158ed2f7d68.nc b/argopy/tests/test_data/1d16184686cce8f1b47b0170491f9ce23c3f58fa654beee9aece9158ed2f7d68.nc index 59617947..7b45d63d 100644 Binary files a/argopy/tests/test_data/1d16184686cce8f1b47b0170491f9ce23c3f58fa654beee9aece9158ed2f7d68.nc and b/argopy/tests/test_data/1d16184686cce8f1b47b0170491f9ce23c3f58fa654beee9aece9158ed2f7d68.nc differ diff --git a/argopy/tests/test_data/20b613c1e4e8e03229397ae5c28fd2101c6889cf345afae8cd774a5c0f3c6fb3.nc b/argopy/tests/test_data/20b613c1e4e8e03229397ae5c28fd2101c6889cf345afae8cd774a5c0f3c6fb3.nc index 4c0f3bd4..5c36c74e 100644 Binary files a/argopy/tests/test_data/20b613c1e4e8e03229397ae5c28fd2101c6889cf345afae8cd774a5c0f3c6fb3.nc and b/argopy/tests/test_data/20b613c1e4e8e03229397ae5c28fd2101c6889cf345afae8cd774a5c0f3c6fb3.nc differ diff --git a/argopy/tests/test_data/210ae117281f44939303e772d03b83f3280f86523ddff392e89ae66d5e8f3fd5.html b/argopy/tests/test_data/210ae117281f44939303e772d03b83f3280f86523ddff392e89ae66d5e8f3fd5.html index 3036c948..9d4bd4ac 100644 --- a/argopy/tests/test_data/210ae117281f44939303e772d03b83f3280f86523ddff392e89ae66d5e8f3fd5.html +++ b/argopy/tests/test_data/210ae117281f44939303e772d03b83f3280f86523ddff392e89ae66d5e8f3fd5.html @@ -16,4 +16,4 @@
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/237ec57996b0c89599212910ad056d4977d2391cfd4f6739b5b864450448d0f7.json b/argopy/tests/test_data/237ec57996b0c89599212910ad056d4977d2391cfd4f6739b5b864450448d0f7.json index 9ca046f9..702cbb06 100644 --- a/argopy/tests/test_data/237ec57996b0c89599212910ad056d4977d2391cfd4f6739b5b864450448d0f7.json +++ b/argopy/tests/test_data/237ec57996b0c89599212910ad056d4977d2391cfd4f6739b5b864450448d0f7.json @@ -1 +1 @@ -[{"id":4667721,"cvNumber":47,"coordinate":{"lat":62.621,"lon":-58.0},"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":4466214,"cvNumber":11,"coordinate":{"lat":63.291,"lon":-28.733},"level":0},{"id":4485149,"cvNumber":14,"coordinate":{"lat":64.922,"lon":-29.399},"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":4687493,"cvNumber":51,"coordinate":{"lat":61.666,"lon":-59.266},"level":0},{"id":5353723,"cvNumber":167,"coordinate":{"lat":42.582,"lon":-28.94},"level":0},{"id":5187028,"cvNumber":136,"coordinate":{"lat":44.053,"lon":-32.204},"level":0},{"id":5336175,"cvNumber":164,"coordinate":{"lat":42.433,"lon":-28.868},"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":5085770,"cvNumber":121,"coordinate":{"lat":44.19,"lon":-37.816},"level":0},{"id":5112540,"cvNumber":125,"coordinate":{"lat":43.166,"lon":-35.577},"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":5008382,"cvNumber":107,"coordinate":{"lat":45.442,"lon":-40.264},"level":0},{"id":5045909,"cvNumber":114,"coordinate":{"lat":43.514,"lon":-42.258},"level":0},{"id":4947310,"cvNumber":97,"coordinate":{"lat":50.05,"lon":-48.968},"level":0},{"id":4994954,"cvNumber":105,"coordinate":{"lat":46.559,"lon":-43.702},"level":0},{"id":5207645,"cvNumber":140,"coordinate":{"lat":41.911,"lon":-32.311},"level":0},{"id":4433235,"cvNumber":5,"coordinate":{"lat":60.128,"lon":-30.479},"level":0},{"id":4421901,"cvNumber":3,"coordinate":{"lat":59.723,"lon":-31.235},"level":0},{"id":4425848,"cvNumber":4,"coordinate":{"lat":60.078,"lon":-31.016},"level":0},{"id":4898231,"cvNumber":88,"coordinate":{"lat":57.231,"lon":-58.753},"level":0},{"id":4868961,"cvNumber":82,"coordinate":{"lat":61.359,"lon":-60.692},"level":0},{"id":4583668,"cvNumber":33,"coordinate":{"lat":61.668,"lon":-51.234},"level":0},{"id":4956012,"cvNumber":98,"coordinate":{"lat":49.219,"lon":-48.974},"level":0},{"id":4779493,"cvNumber":66,"coordinate":{"lat":63.103,"lon":-57.71},"level":0},{"id":5329719,"cvNumber":163,"coordinate":{"lat":42.201,"lon":-29.316},"level":0},{"id":5310330,"cvNumber":160,"coordinate":{"lat":41.354,"lon":-30.468},"level":0},{"id":5123178,"cvNumber":127,"coordinate":{"lat":43.002,"lon":-34.992},"level":0},{"id":5229565,"cvNumber":144,"coordinate":{"lat":41.394,"lon":-30.687},"level":0},{"id":5197923,"cvNumber":138,"coordinate":{"lat":43.05,"lon":-31.665},"level":0},{"id":5099512,"cvNumber":123,"coordinate":{"lat":43.518,"lon":-36.272},"level":0},{"id":5041090,"cvNumber":113,"coordinate":{"lat":43.432,"lon":-41.272},"level":0},{"id":5014569,"cvNumber":108,"coordinate":{"lat":44.237,"lon":-40.529},"level":0},{"id":5408118,"cvNumber":176,"coordinate":{"lat":43.413,"lon":-28.408},"level":0},{"id":4616044,"cvNumber":38,"coordinate":{"lat":62.404,"lon":-53.102},"level":0},{"id":4774146,"cvNumber":65,"coordinate":{"lat":62.648,"lon":-57.522},"level":0},{"id":4497229,"cvNumber":16,"coordinate":{"lat":64.863,"lon":-33.037},"level":0},{"id":4504062,"cvNumber":17,"coordinate":{"lat":64.479,"lon":-34.902},"level":0},{"id":5261462,"cvNumber":150,"coordinate":{"lat":42.897,"lon":-31.811},"level":0},{"id":5255956,"cvNumber":149,"coordinate":{"lat":42.7,"lon":-31.155},"level":0},{"id":5301134,"cvNumber":158,"coordinate":{"lat":40.735,"lon":-31.761},"level":0},{"id":4602682,"cvNumber":36,"coordinate":{"lat":62.342,"lon":-53.829},"level":0},{"id":5245964,"cvNumber":147,"coordinate":{"lat":42.176,"lon":-30.284},"level":0},{"id":5217126,"cvNumber":142,"coordinate":{"lat":41.184,"lon":-31.448},"level":0},{"id":5176518,"cvNumber":134,"coordinate":{"lat":44.496,"lon":-33.513},"level":0},{"id":5403026,"cvNumber":175,"coordinate":{"lat":43.33,"lon":-28.119},"level":0},{"id":5341406,"cvNumber":165,"coordinate":{"lat":42.37,"lon":-29.104},"level":0},{"id":5397342,"cvNumber":174,"coordinate":{"lat":43.28,"lon":-27.971},"level":0},{"id":5390546,"cvNumber":173,"coordinate":{"lat":43.228,"lon":-27.749},"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":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":4707532,"cvNumber":54,"coordinate":{"lat":61.626,"lon":-59.143},"level":0},{"id":4748996,"cvNumber":61,"coordinate":{"lat":61.792,"lon":-58.15},"level":0},{"id":4873922,"cvNumber":83,"coordinate":{"lat":60.517,"lon":-61.338},"level":0},{"id":4438625,"cvNumber":6,"coordinate":{"lat":60.743,"lon":-30.443},"level":0},{"id":4589152,"cvNumber":34,"coordinate":{"lat":61.249,"lon":-51.966},"level":0},{"id":4471199,"cvNumber":12,"coordinate":{"lat":63.679,"lon":-28.807},"level":0},{"id":4461302,"cvNumber":10,"coordinate":{"lat":62.781,"lon":-28.811},"level":0},{"id":4989782,"cvNumber":104,"coordinate":{"lat":46.576,"lon":-43.234},"level":0},{"id":5068203,"cvNumber":118,"coordinate":{"lat":43.96,"lon":-38.843},"level":0},{"id":5025438,"cvNumber":110,"coordinate":{"lat":43.665,"lon":-44.155},"level":0},{"id":5050765,"cvNumber":115,"coordinate":{"lat":44.072,"lon":-40.791},"level":0},{"id":4627338,"cvNumber":40,"coordinate":{"lat":62.48,"lon":-52.733},"level":0},{"id":5073244,"cvNumber":119,"coordinate":{"lat":44.066,"lon":-38.502},"level":0},{"id":5170289,"cvNumber":133,"coordinate":{"lat":44.021,"lon":-34.12},"level":0},{"id":5118247,"cvNumber":126,"coordinate":{"lat":43.014,"lon":-35.424},"level":0},{"id":5035808,"cvNumber":112,"coordinate":{"lat":43.601,"lon":-42.924},"level":0},{"id":4672440,"cvNumber":48,"coordinate":{"lat":62.408,"lon":-58.977},"level":0},{"id":4692541,"cvNumber":52,"coordinate":{"lat":61.656,"lon":-59.171},"level":0},{"id":4698233,"cvNumber":53,"coordinate":{"lat":61.515,"lon":-59.568},"level":0},{"id":4768824,"cvNumber":64,"coordinate":{"lat":62.77,"lon":-57.112},"level":0},{"id":4595811,"cvNumber":35,"coordinate":{"lat":61.425,"lon":-52.451},"level":0},{"id":4527975,"cvNumber":22,"coordinate":{"lat":59.362,"lon":-44.774},"level":0},{"id":4448926,"cvNumber":8,"coordinate":{"lat":61.552,"lon":-28.913},"level":0},{"id":4444146,"cvNumber":7,"coordinate":{"lat":60.942,"lon":-29.669},"level":0},{"id":4454883,"cvNumber":9,"coordinate":{"lat":62.487,"lon":-28.776},"level":0},{"id":4490460,"cvNumber":15,"coordinate":{"lat":65.042,"lon":-31.326},"level":0},{"id":4533033,"cvNumber":23,"coordinate":{"lat":59.823,"lon":-47.78},"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":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":4609737,"cvNumber":37,"coordinate":{"lat":61.951,"lon":-51.733},"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":4553170,"cvNumber":27,"coordinate":{"lat":62.345,"lon":-52.583},"level":0},{"id":4621230,"cvNumber":39,"coordinate":{"lat":62.584,"lon":-53.053},"level":0},{"id":4508512,"cvNumber":18,"coordinate":{"lat":62.848,"lon":-39.684},"level":0},{"id":4518240,"cvNumber":20,"coordinate":{"lat":61.291,"lon":-40.908},"level":0},{"id":4513357,"cvNumber":19,"coordinate":{"lat":62.112,"lon":-39.622},"level":0},{"id":4548083,"cvNumber":26,"coordinate":{"lat":61.829,"lon":-52.726},"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":4477040,"cvNumber":13,"coordinate":{"lat":64.113,"lon":-28.994},"level":0},{"id":4523289,"cvNumber":21,"coordinate":{"lat":59.406,"lon":-42.383},"level":0},{"id":4578425,"cvNumber":32,"coordinate":{"lat":61.926,"lon":-52.74},"level":0},{"id":4712959,"cvNumber":55,"coordinate":{"lat":61.884,"lon":-57.831},"level":0},{"id":4661544,"cvNumber":46,"coordinate":{"lat":62.766,"lon":-56.999},"level":0},{"id":4648901,"cvNumber":44,"coordinate":{"lat":62.446,"lon":-56.453},"level":0},{"id":4643653,"cvNumber":43,"coordinate":{"lat":62.435,"lon":-55.062},"level":0},{"id":4682472,"cvNumber":50,"coordinate":{"lat":61.675,"lon":-59.867},"level":0},{"id":4677513,"cvNumber":49,"coordinate":{"lat":62.189,"lon":-59.694},"level":0},{"id":4654731,"cvNumber":45,"coordinate":{"lat":62.411,"lon":-55.622},"level":0},{"id":4935749,"cvNumber":95,"coordinate":{"lat":52.65,"lon":-50.301},"level":0},{"id":5092205,"cvNumber":122,"coordinate":{"lat":43.912,"lon":-36.964},"level":0},{"id":4742557,"cvNumber":60,"coordinate":{"lat":62.267,"lon":-57.253},"level":0},{"id":4826420,"cvNumber":75,"coordinate":{"lat":63.657,"lon":-58.391},"level":0},{"id":4984300,"cvNumber":103,"coordinate":{"lat":47.096,"lon":-43.182},"level":0},{"id":4978701,"cvNumber":102,"coordinate":{"lat":48.49,"lon":-44.234},"level":0},{"id":4961427,"cvNumber":99,"coordinate":{"lat":48.693,"lon":-48.517},"level":0},{"id":4730371,"cvNumber":58,"coordinate":{"lat":62.207,"lon":-57.227},"level":0},{"id":4736172,"cvNumber":59,"coordinate":{"lat":62.455,"lon":-56.201},"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":4755992,"cvNumber":62,"coordinate":{"lat":61.8,"lon":-56.987},"level":0},{"id":5240972,"cvNumber":146,"coordinate":{"lat":41.786,"lon":-29.888},"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":5365791,"cvNumber":169,"coordinate":{"lat":43.132,"lon":-28.169},"level":0},{"id":5359798,"cvNumber":168,"coordinate":{"lat":42.914,"lon":-28.536},"level":0},{"id":5270819,"cvNumber":152,"coordinate":{"lat":42.63,"lon":-33.362},"level":0},{"id":5286642,"cvNumber":155,"coordinate":{"lat":40.85,"lon":-32.777},"level":0},{"id":5291052,"cvNumber":156,"coordinate":{"lat":40.689,"lon":-32.554},"level":0},{"id":5020659,"cvNumber":109,"coordinate":{"lat":44.56,"lon":-42.49},"level":0},{"id":5306027,"cvNumber":159,"coordinate":{"lat":41.12,"lon":-31.071},"level":0},{"id":5296351,"cvNumber":157,"coordinate":{"lat":40.706,"lon":-32.384},"level":0},{"id":5107014,"cvNumber":124,"coordinate":{"lat":43.332,"lon":-35.946},"level":0},{"id":5224430,"cvNumber":143,"coordinate":{"lat":41.261,"lon":-31.118},"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":5265724,"cvNumber":151,"coordinate":{"lat":42.975,"lon":-32.676},"level":0},{"id":5001697,"cvNumber":106,"coordinate":{"lat":46.397,"lon":-42.521},"level":0},{"id":5030475,"cvNumber":111,"coordinate":{"lat":42.872,"lon":-41.553},"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":4795980,"cvNumber":69,"coordinate":{"lat":63.292,"lon":-57.673},"level":0},{"id":4801121,"cvNumber":70,"coordinate":{"lat":63.306,"lon":-57.496},"level":0},{"id":4789904,"cvNumber":68,"coordinate":{"lat":63.257,"lon":-57.275},"level":0},{"id":5055992,"cvNumber":116,"coordinate":{"lat":44.314,"lon":-39.584},"level":0},{"id":4888182,"cvNumber":86,"coordinate":{"lat":58.772,"lon":-59.918},"level":0},{"id":4878914,"cvNumber":84,"coordinate":{"lat":59.758,"lon":-60.473},"level":0},{"id":4883583,"cvNumber":85,"coordinate":{"lat":59.321,"lon":-60.226},"level":0},{"id":4930406,"cvNumber":94,"coordinate":{"lat":53.846,"lon":-51.436},"level":0},{"id":5371774,"cvNumber":170,"coordinate":{"lat":43.117,"lon":-28.193},"level":0},{"id":5348162,"cvNumber":166,"coordinate":{"lat":42.402,"lon":-29.173},"level":0},{"id":5251261,"cvNumber":148,"coordinate":{"lat":42.434,"lon":-30.798},"level":0},{"id":5276072,"cvNumber":153,"coordinate":{"lat":42.179,"lon":-33.359},"level":0},{"id":5281215,"cvNumber":154,"coordinate":{"lat":41.53,"lon":-33.254},"level":0},{"id":5412510,"cvNumber":177,"coordinate":{"lat":43.811,"lon":-28.851},"level":0},{"id":5129734,"cvNumber":128,"coordinate":{"lat":43.113,"lon":-34.755},"level":0},{"id":5181294,"cvNumber":135,"coordinate":{"lat":44.501,"lon":-32.674},"level":0},{"id":5136426,"cvNumber":129,"coordinate":{"lat":43.033,"lon":-34.65},"level":0},{"id":5145877,"cvNumber":130,"coordinate":{"lat":42.935,"lon":-34.549},"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":5191712,"cvNumber":137,"coordinate":{"lat":43.398,"lon":-31.766},"level":0},{"id":5061836,"cvNumber":117,"coordinate":{"lat":43.969,"lon":-38.958},"level":0},{"id":5163371,"cvNumber":132,"coordinate":{"lat":43.379,"lon":-34.497},"level":0},{"id":5078835,"cvNumber":120,"coordinate":{"lat":44.198,"lon":-38.098},"level":0},{"id":4914208,"cvNumber":91,"coordinate":{"lat":55.629,"lon":-54.661},"level":0},{"id":4919396,"cvNumber":92,"coordinate":{"lat":55.159,"lon":-52.132},"level":0},{"id":4762955,"cvNumber":63,"coordinate":{"lat":61.907,"lon":-56.659},"level":0},{"id":4837325,"cvNumber":77,"coordinate":{"lat":62.941,"lon":-59.183},"level":0},{"id":4831766,"cvNumber":76,"coordinate":{"lat":63.117,"lon":-58.66},"level":0},{"id":4892900,"cvNumber":87,"coordinate":{"lat":57.964,"lon":-59.466},"level":0},{"id":4816555,"cvNumber":73,"coordinate":{"lat":63.708,"lon":-57.849},"level":0},{"id":4821618,"cvNumber":74,"coordinate":{"lat":63.616,"lon":-58.26},"level":0},{"id":5323543,"cvNumber":162,"coordinate":{"lat":41.741,"lon":-29.842},"level":0},{"id":5316559,"cvNumber":161,"coordinate":{"lat":41.429,"lon":-30.195},"level":0}] \ No newline at end of file +[{"id":4672440,"cvNumber":48,"coordinate":{"lat":62.408,"lon":-58.977},"level":0},{"id":4730371,"cvNumber":58,"coordinate":{"lat":62.207,"lon":-57.227},"level":0},{"id":4724330,"cvNumber":57,"coordinate":{"lat":61.916,"lon":-58.259},"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":4578425,"cvNumber":32,"coordinate":{"lat":61.926,"lon":-52.74},"level":0},{"id":4616044,"cvNumber":38,"coordinate":{"lat":62.404,"lon":-53.102},"level":0},{"id":5397342,"cvNumber":174,"coordinate":{"lat":43.28,"lon":-27.971},"level":0},{"id":5281215,"cvNumber":154,"coordinate":{"lat":41.53,"lon":-33.254},"level":0},{"id":5235643,"cvNumber":145,"coordinate":{"lat":41.429,"lon":-30.19},"level":0},{"id":5245964,"cvNumber":147,"coordinate":{"lat":42.176,"lon":-30.284},"level":0},{"id":5136426,"cvNumber":129,"coordinate":{"lat":43.033,"lon":-34.65},"level":0},{"id":4863415,"cvNumber":81,"coordinate":{"lat":62.04,"lon":-60.589},"level":0},{"id":4868961,"cvNumber":82,"coordinate":{"lat":61.359,"lon":-60.692},"level":0},{"id":5212301,"cvNumber":141,"coordinate":{"lat":41.247,"lon":-32.211},"level":0},{"id":5197923,"cvNumber":138,"coordinate":{"lat":43.05,"lon":-31.665},"level":0},{"id":4433235,"cvNumber":5,"coordinate":{"lat":60.128,"lon":-30.479},"level":0},{"id":5068203,"cvNumber":118,"coordinate":{"lat":43.96,"lon":-38.843},"level":0},{"id":4847895,"cvNumber":79,"coordinate":{"lat":62.733,"lon":-60.485},"level":0},{"id":5265724,"cvNumber":151,"coordinate":{"lat":42.975,"lon":-32.676},"level":0},{"id":5229565,"cvNumber":144,"coordinate":{"lat":41.394,"lon":-30.687},"level":0},{"id":4736172,"cvNumber":59,"coordinate":{"lat":62.455,"lon":-56.201},"level":0},{"id":5296351,"cvNumber":157,"coordinate":{"lat":40.706,"lon":-32.384},"level":0},{"id":5323543,"cvNumber":162,"coordinate":{"lat":41.741,"lon":-29.842},"level":0},{"id":5291052,"cvNumber":156,"coordinate":{"lat":40.689,"lon":-32.554},"level":0},{"id":4643653,"cvNumber":43,"coordinate":{"lat":62.435,"lon":-55.062},"level":0},{"id":4542520,"cvNumber":25,"coordinate":{"lat":61.335,"lon":-52.812},"level":0},{"id":4661544,"cvNumber":46,"coordinate":{"lat":62.766,"lon":-56.999},"level":0},{"id":4508512,"cvNumber":18,"coordinate":{"lat":62.848,"lon":-39.684},"level":0},{"id":4504062,"cvNumber":17,"coordinate":{"lat":64.479,"lon":-34.902},"level":0},{"id":5191712,"cvNumber":137,"coordinate":{"lat":43.398,"lon":-31.766},"level":0},{"id":5073244,"cvNumber":119,"coordinate":{"lat":44.066,"lon":-38.502},"level":0},{"id":5118247,"cvNumber":126,"coordinate":{"lat":43.014,"lon":-35.424},"level":0},{"id":4712959,"cvNumber":55,"coordinate":{"lat":61.884,"lon":-57.831},"level":0},{"id":4553170,"cvNumber":27,"coordinate":{"lat":62.345,"lon":-52.583},"level":0},{"id":4811796,"cvNumber":72,"coordinate":{"lat":63.37,"lon":-57.979},"level":0},{"id":5008382,"cvNumber":107,"coordinate":{"lat":45.442,"lon":-40.264},"level":0},{"id":5329719,"cvNumber":163,"coordinate":{"lat":42.201,"lon":-29.316},"level":0},{"id":4425848,"cvNumber":4,"coordinate":{"lat":60.078,"lon":-31.016},"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":4444146,"cvNumber":7,"coordinate":{"lat":60.942,"lon":-29.669},"level":0},{"id":5251261,"cvNumber":148,"coordinate":{"lat":42.434,"lon":-30.798},"level":0},{"id":4589152,"cvNumber":34,"coordinate":{"lat":61.249,"lon":-51.966},"level":0},{"id":4638066,"cvNumber":42,"coordinate":{"lat":62.714,"lon":-53.906},"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":4762955,"cvNumber":63,"coordinate":{"lat":61.907,"lon":-56.659},"level":0},{"id":4537800,"cvNumber":24,"coordinate":{"lat":60.912,"lon":-50.922},"level":0},{"id":5078835,"cvNumber":120,"coordinate":{"lat":44.198,"lon":-38.098},"level":0},{"id":4707532,"cvNumber":54,"coordinate":{"lat":61.626,"lon":-59.143},"level":0},{"id":5035808,"cvNumber":112,"coordinate":{"lat":43.601,"lon":-42.924},"level":0},{"id":5276072,"cvNumber":153,"coordinate":{"lat":42.179,"lon":-33.359},"level":0},{"id":5107014,"cvNumber":124,"coordinate":{"lat":43.332,"lon":-35.946},"level":0},{"id":4466214,"cvNumber":11,"coordinate":{"lat":63.291,"lon":-28.733},"level":0},{"id":5384466,"cvNumber":172,"coordinate":{"lat":43.03,"lon":-27.777},"level":0},{"id":5403026,"cvNumber":175,"coordinate":{"lat":43.33,"lon":-28.119},"level":0},{"id":4888182,"cvNumber":86,"coordinate":{"lat":58.772,"lon":-59.918},"level":0},{"id":4883583,"cvNumber":85,"coordinate":{"lat":59.321,"lon":-60.226},"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":4978701,"cvNumber":102,"coordinate":{"lat":48.49,"lon":-44.234},"level":0},{"id":5170289,"cvNumber":133,"coordinate":{"lat":44.021,"lon":-34.12},"level":0},{"id":5145877,"cvNumber":130,"coordinate":{"lat":42.935,"lon":-34.549},"level":0},{"id":4789904,"cvNumber":68,"coordinate":{"lat":63.257,"lon":-57.275},"level":0},{"id":4497229,"cvNumber":16,"coordinate":{"lat":64.863,"lon":-33.037},"level":0},{"id":4654731,"cvNumber":45,"coordinate":{"lat":62.411,"lon":-55.622},"level":0},{"id":4485149,"cvNumber":14,"coordinate":{"lat":64.922,"lon":-29.399},"level":0},{"id":4568728,"cvNumber":30,"coordinate":{"lat":62.005,"lon":-51.931},"level":0},{"id":4563378,"cvNumber":29,"coordinate":{"lat":61.108,"lon":-51.707},"level":0},{"id":4583668,"cvNumber":33,"coordinate":{"lat":61.668,"lon":-51.234},"level":0},{"id":4454883,"cvNumber":9,"coordinate":{"lat":62.487,"lon":-28.776},"level":0},{"id":4518240,"cvNumber":20,"coordinate":{"lat":61.291,"lon":-40.908},"level":0},{"id":5348162,"cvNumber":166,"coordinate":{"lat":42.402,"lon":-29.173},"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":5371774,"cvNumber":170,"coordinate":{"lat":43.117,"lon":-28.193},"level":0},{"id":4438625,"cvNumber":6,"coordinate":{"lat":60.743,"lon":-30.443},"level":0},{"id":4523289,"cvNumber":21,"coordinate":{"lat":59.406,"lon":-42.383},"level":0},{"id":4774146,"cvNumber":65,"coordinate":{"lat":62.648,"lon":-57.522},"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":4898231,"cvNumber":88,"coordinate":{"lat":57.231,"lon":-58.753},"level":0},{"id":4904212,"cvNumber":89,"coordinate":{"lat":56.696,"lon":-58.201},"level":0},{"id":5202818,"cvNumber":139,"coordinate":{"lat":42.643,"lon":-31.887},"level":0},{"id":5310330,"cvNumber":160,"coordinate":{"lat":41.354,"lon":-30.468},"level":0},{"id":4768824,"cvNumber":64,"coordinate":{"lat":62.77,"lon":-57.112},"level":0},{"id":4627338,"cvNumber":40,"coordinate":{"lat":62.48,"lon":-52.733},"level":0},{"id":4801121,"cvNumber":70,"coordinate":{"lat":63.306,"lon":-57.496},"level":0},{"id":4779493,"cvNumber":66,"coordinate":{"lat":63.103,"lon":-57.71},"level":0},{"id":4687493,"cvNumber":51,"coordinate":{"lat":61.666,"lon":-59.266},"level":0},{"id":4609737,"cvNumber":37,"coordinate":{"lat":61.951,"lon":-51.733},"level":0},{"id":5378369,"cvNumber":171,"coordinate":{"lat":43.039,"lon":-27.961},"level":0},{"id":4448926,"cvNumber":8,"coordinate":{"lat":61.552,"lon":-28.913},"level":0},{"id":4421901,"cvNumber":3,"coordinate":{"lat":59.723,"lon":-31.235},"level":0},{"id":4490460,"cvNumber":15,"coordinate":{"lat":65.042,"lon":-31.326},"level":0},{"id":4527975,"cvNumber":22,"coordinate":{"lat":59.362,"lon":-44.774},"level":0},{"id":4533033,"cvNumber":23,"coordinate":{"lat":59.823,"lon":-47.78},"level":0},{"id":4558346,"cvNumber":28,"coordinate":{"lat":61.513,"lon":-51.286},"level":0},{"id":4573554,"cvNumber":31,"coordinate":{"lat":61.777,"lon":-53.244},"level":0},{"id":4477040,"cvNumber":13,"coordinate":{"lat":64.113,"lon":-28.994},"level":0},{"id":4513357,"cvNumber":19,"coordinate":{"lat":62.112,"lon":-39.622},"level":0},{"id":4471199,"cvNumber":12,"coordinate":{"lat":63.679,"lon":-28.807},"level":0},{"id":4461302,"cvNumber":10,"coordinate":{"lat":62.781,"lon":-28.811},"level":0},{"id":4856234,"cvNumber":80,"coordinate":{"lat":62.525,"lon":-60.608},"level":0},{"id":5112540,"cvNumber":125,"coordinate":{"lat":43.166,"lon":-35.577},"level":0},{"id":4648901,"cvNumber":44,"coordinate":{"lat":62.446,"lon":-56.453},"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":5045909,"cvNumber":114,"coordinate":{"lat":43.514,"lon":-42.258},"level":0},{"id":5207645,"cvNumber":140,"coordinate":{"lat":41.911,"lon":-32.311},"level":0},{"id":5217126,"cvNumber":142,"coordinate":{"lat":41.184,"lon":-31.448},"level":0},{"id":4989782,"cvNumber":104,"coordinate":{"lat":46.576,"lon":-43.234},"level":0},{"id":4984300,"cvNumber":103,"coordinate":{"lat":47.096,"lon":-43.182},"level":0},{"id":5163371,"cvNumber":132,"coordinate":{"lat":43.379,"lon":-34.497},"level":0},{"id":5014569,"cvNumber":108,"coordinate":{"lat":44.237,"lon":-40.529},"level":0},{"id":5240972,"cvNumber":146,"coordinate":{"lat":41.786,"lon":-29.888},"level":0},{"id":4956012,"cvNumber":98,"coordinate":{"lat":49.219,"lon":-48.974},"level":0},{"id":4961427,"cvNumber":99,"coordinate":{"lat":48.693,"lon":-48.517},"level":0},{"id":4925062,"cvNumber":93,"coordinate":{"lat":54.704,"lon":-51.681},"level":0},{"id":4919396,"cvNumber":92,"coordinate":{"lat":55.159,"lon":-52.132},"level":0},{"id":4914208,"cvNumber":91,"coordinate":{"lat":55.629,"lon":-54.661},"level":0},{"id":4909042,"cvNumber":90,"coordinate":{"lat":55.967,"lon":-56.82},"level":0},{"id":4806943,"cvNumber":71,"coordinate":{"lat":63.214,"lon":-57.614},"level":0},{"id":4795980,"cvNumber":69,"coordinate":{"lat":63.292,"lon":-57.673},"level":0},{"id":4941779,"cvNumber":96,"coordinate":{"lat":51.236,"lon":-49.246},"level":0},{"id":4667721,"cvNumber":47,"coordinate":{"lat":62.621,"lon":-58.0},"level":0},{"id":5261462,"cvNumber":150,"coordinate":{"lat":42.897,"lon":-31.811},"level":0},{"id":5255956,"cvNumber":149,"coordinate":{"lat":42.7,"lon":-31.155},"level":0},{"id":5286642,"cvNumber":155,"coordinate":{"lat":40.85,"lon":-32.777},"level":0},{"id":5123178,"cvNumber":127,"coordinate":{"lat":43.002,"lon":-34.992},"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":5055992,"cvNumber":116,"coordinate":{"lat":44.314,"lon":-39.584},"level":0},{"id":5061836,"cvNumber":117,"coordinate":{"lat":43.969,"lon":-38.958},"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":5030475,"cvNumber":111,"coordinate":{"lat":42.872,"lon":-41.553},"level":0},{"id":4930406,"cvNumber":94,"coordinate":{"lat":53.846,"lon":-51.436},"level":0},{"id":4935749,"cvNumber":95,"coordinate":{"lat":52.65,"lon":-50.301},"level":0},{"id":4677513,"cvNumber":49,"coordinate":{"lat":62.189,"lon":-59.694},"level":0},{"id":4892900,"cvNumber":87,"coordinate":{"lat":57.964,"lon":-59.466},"level":0},{"id":4692541,"cvNumber":52,"coordinate":{"lat":61.656,"lon":-59.171},"level":0},{"id":5129734,"cvNumber":128,"coordinate":{"lat":43.113,"lon":-34.755},"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":5155843,"cvNumber":131,"coordinate":{"lat":43.153,"lon":-34.531},"level":0},{"id":5187028,"cvNumber":136,"coordinate":{"lat":44.053,"lon":-32.204},"level":0},{"id":4632835,"cvNumber":41,"coordinate":{"lat":62.742,"lon":-53.84},"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":4831766,"cvNumber":76,"coordinate":{"lat":63.117,"lon":-58.66},"level":0},{"id":4682472,"cvNumber":50,"coordinate":{"lat":61.675,"lon":-59.867},"level":0},{"id":4698233,"cvNumber":53,"coordinate":{"lat":61.515,"lon":-59.568},"level":0},{"id":4742557,"cvNumber":60,"coordinate":{"lat":62.267,"lon":-57.253},"level":0},{"id":5336175,"cvNumber":164,"coordinate":{"lat":42.433,"lon":-28.868},"level":0},{"id":5316559,"cvNumber":161,"coordinate":{"lat":41.429,"lon":-30.195},"level":0},{"id":5341406,"cvNumber":165,"coordinate":{"lat":42.37,"lon":-29.104},"level":0},{"id":4595811,"cvNumber":35,"coordinate":{"lat":61.425,"lon":-52.451},"level":0},{"id":4621230,"cvNumber":39,"coordinate":{"lat":62.584,"lon":-53.053},"level":0},{"id":4602682,"cvNumber":36,"coordinate":{"lat":62.342,"lon":-53.829},"level":0},{"id":4548083,"cvNumber":26,"coordinate":{"lat":61.829,"lon":-52.726},"level":0},{"id":5092205,"cvNumber":122,"coordinate":{"lat":43.912,"lon":-36.964},"level":0},{"id":5041090,"cvNumber":113,"coordinate":{"lat":43.432,"lon":-41.272},"level":0},{"id":5085770,"cvNumber":121,"coordinate":{"lat":44.19,"lon":-37.816},"level":0},{"id":5050765,"cvNumber":115,"coordinate":{"lat":44.072,"lon":-40.791},"level":0},{"id":5099512,"cvNumber":123,"coordinate":{"lat":43.518,"lon":-36.272},"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":4837325,"cvNumber":77,"coordinate":{"lat":62.941,"lon":-59.183},"level":0},{"id":4947310,"cvNumber":97,"coordinate":{"lat":50.05,"lon":-48.968},"level":0},{"id":5270819,"cvNumber":152,"coordinate":{"lat":42.63,"lon":-33.362},"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":5224430,"cvNumber":143,"coordinate":{"lat":41.261,"lon":-31.118},"level":0},{"id":5390546,"cvNumber":173,"coordinate":{"lat":43.228,"lon":-27.749},"level":0},{"id":5365791,"cvNumber":169,"coordinate":{"lat":43.132,"lon":-28.169},"level":0}] \ No newline at end of file diff --git a/argopy/tests/test_data/23de8192682a13edbf2bc2007658e8059afc3fef10438b87bdd415c7e0a29e4d.ncHeader b/argopy/tests/test_data/23de8192682a13edbf2bc2007658e8059afc3fef10438b87bdd415c7e0a29e4d.ncHeader index 32b0ca19..b260bd2c 100644 --- a/argopy/tests/test_data/23de8192682a13edbf2bc2007658e8059afc3fef10438b87bdd415c7e0a29e4d.ncHeader +++ b/argopy/tests/test_data/23de8192682a13edbf2bc2007658e8059afc3fef10438b87bdd415c7e0a29e4d.ncHeader @@ -87,7 +87,7 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :long_name = "Quality on date and time"; char direction(row=982, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -112,7 +112,7 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :long_name = "Float cycle number"; int config_mission_number(row=982); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 2, 16; // int :colorBarMaximum = 100.0; // double @@ -122,7 +122,7 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :long_name = "Unique number denoting the missions performed by the float"; float bbp700(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.586057E-4f, 0.01046f; // float :C_format = "%.7f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :valid_min = NaNf; // float char bbp700_qc(row=982, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.586057E-4f, 0.01046f; // float :C_format = "%.7f"; @@ -152,13 +152,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :units = "m-1"; char bbp700_adjusted_qc(row=982, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.7f"; :FORTRAN_format = "F.7"; @@ -167,7 +167,7 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :units = "m-1"; float cdom(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.645969f, 2.564167f; // float :C_format = "%.3f"; @@ -181,13 +181,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :valid_min = NaNf; // float char cdom_qc(row=982, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -196,13 +196,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :units = "ppb"; char cdom_adjusted_qc(row=982, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -211,7 +211,7 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :units = "ppb"; float chla(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.1015917f, 6.2123f; // float :C_format = "%.4f"; @@ -226,13 +226,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :valid_min = NaNf; // float char chla_qc(row=982, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.12775f, 3.25215f; // float :C_format = "%.4f"; @@ -243,13 +243,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :units = "mg/m3"; char chla_adjusted_qc(row=982, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -280,7 +280,7 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :actual_range = 99999.0f, 99999.0f; // float float downwelling_par(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.002103709f, 1113.864f; // float :C_format = "%.3f"; @@ -295,13 +295,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :valid_min = NaNf; // float char downwelling_par_qc(row=982, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 53.80022f, 298.1838f; // float :C_format = "%.3f"; @@ -312,13 +312,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :units = "microMoleQuanta/m^2/sec"; char downwelling_par_adjusted_qc(row=982, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.690011f, 14.90919f; // float :C_format = "%.3f"; @@ -328,7 +328,7 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :units = "microMoleQuanta/m^2/sec"; float down_irradiance380(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.105011E-4f, 0.5660256f; // float :C_format = "%.6f"; @@ -342,13 +342,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :valid_min = NaNf; // float char down_irradiance380_qc(row=982, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01874982f, 0.1274856f; // float :C_format = "%.6f"; @@ -358,13 +358,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :units = "W/m^2/nm"; char down_irradiance380_adjusted_qc(row=982, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.749964E-4f, 0.002549712f; // float :C_format = "%.6f"; @@ -374,7 +374,7 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :units = "W/m^2/nm"; float down_irradiance412(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 6.57517E-5f, 1.100864f; // float :C_format = "%.6f"; @@ -388,13 +388,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :valid_min = NaNf; // float char down_irradiance412_qc(row=982, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.03692814f, 0.2209459f; // float :C_format = "%.6f"; @@ -404,13 +404,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :units = "W/m^2/nm"; char down_irradiance412_adjusted_qc(row=982, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 7.385628E-4f, 0.004418917f; // float :C_format = "%.6f"; @@ -420,7 +420,7 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :units = "W/m^2/nm"; float down_irradiance490(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.618431E-4f, 0.9016092f; // float :C_format = "%.6f"; @@ -434,13 +434,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :valid_min = NaNf; // float char down_irradiance490_qc(row=982, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.0705514f, 0.2641845f; // float :C_format = "%.6f"; @@ -450,13 +450,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :units = "W/m^2/nm"; char down_irradiance490_adjusted_qc(row=982, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.001411028f, 0.00528369f; // float :C_format = "%.6f"; @@ -466,7 +466,7 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :units = "W/m^2/nm"; float doxy(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 292.8637f, 349.3434f; // float :C_format = "%.3f"; @@ -481,13 +481,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :valid_min = -5.0f; // float char doxy_qc(row=982, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 308.0967f, 370.1293f; // float :C_format = "%.3f"; @@ -500,13 +500,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=982, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 15.25045f, 31.84704f; // float :C_format = "%.3f"; @@ -516,101 +516,51 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :units = "micromole/kg"; float nitrate(row=982); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 10.34654f, 10.41807f; // float - :C_format = "%.3f"; :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :FORTRAN_format = "F.3"; :long_name = "Nitrate"; - :resolution = 0.001f; // float :sdn_parameter_urn = "SDN:P01::MDMAP005"; - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; :units = "micromole/kg"; :valid_max = NaNf; // float :valid_min = NaNf; // float char nitrate_qc(row=982, nitrate_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 7.486197f, 7.557733f; // float - :C_format = "%.3f"; - :FORTRAN_format = "F.3"; - :long_name = "Nitrate"; - :resolution = 0.001f; // float - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :units = "micromole/kg"; + :actual_range = 7.486197f, 99999.0f; // float char nitrate_adjusted_qc(row=982, nitrate_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 5.0f, 5.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 = "micromole/kg"; + :actual_range = 5.0f, 99999.0f; // float float ph_in_situ_total(row=982); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 7.990134f, 8.165861f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float char ph_in_situ_total_qc(row=982, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float char ph_in_situ_total_adjusted_qc(row=982, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float float pres(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float @@ -627,13 +577,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :valid_min = 0.0f; // float char pres_qc(row=982, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.128737E-9f, 10.0f; // float :axis = "Z"; @@ -647,13 +597,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=982, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.0f, 2.004083f; // float :C_format = "%.3f"; @@ -663,7 +613,7 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :units = "decibar"; float psal(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.868f, 34.767f; // float :C_format = "%.4f"; @@ -678,13 +628,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :valid_min = 2.0f; // float char psal_qc(row=982, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.868f, 34.7755f; // float :C_format = "%.4f"; @@ -697,13 +647,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=982, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.004f, 0.004f; // float :C_format = "%.4f"; @@ -713,7 +663,7 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :units = "psu"; float temp(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.471667f, 8.0442f; // float :C_format = "%.3f"; @@ -728,13 +678,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :valid_min = -2.5f; // float char temp_qc(row=982, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.471667f, 6.826f; // float :C_format = "%.3f"; @@ -747,13 +697,13 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=982, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -780,9 +730,9 @@ netcdf ArgoFloats-synthetic-BGC_a716_70cd_e5bf.nc { :geospatial_lon_max = -47.178141000000004; // double :geospatial_lon_min = -54.31517; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:11:50Z (local files) -2024-08-23T08:11:50Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:32:28Z (local files) +2024-09-20T11:32:28Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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"; diff --git a/argopy/tests/test_data/25dc4d665bd2e5d000424f6774f63f425ab662b8f1aff472aa863a48ab508add.nc b/argopy/tests/test_data/25dc4d665bd2e5d000424f6774f63f425ab662b8f1aff472aa863a48ab508add.nc index e06ab321..bb53550f 100644 Binary files a/argopy/tests/test_data/25dc4d665bd2e5d000424f6774f63f425ab662b8f1aff472aa863a48ab508add.nc and b/argopy/tests/test_data/25dc4d665bd2e5d000424f6774f63f425ab662b8f1aff472aa863a48ab508add.nc differ diff --git a/argopy/tests/test_data/2760c40d91dba69459083d7dff53c2ba8ecaa360776146baf52b94237f9ccd6c.ncHeader b/argopy/tests/test_data/2760c40d91dba69459083d7dff53c2ba8ecaa360776146baf52b94237f9ccd6c.ncHeader index 0b7db00d..4a36dacb 100644 --- a/argopy/tests/test_data/2760c40d91dba69459083d7dff53c2ba8ecaa360776146baf52b94237f9ccd6c.ncHeader +++ b/argopy/tests/test_data/2760c40d91dba69459083d7dff53c2ba8ecaa360776146baf52b94237f9ccd6c.ncHeader @@ -87,7 +87,7 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :long_name = "Quality on date and time"; char direction(row=3, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -112,7 +112,7 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :long_name = "Float cycle number"; int config_mission_number(row=3); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 10; // int :colorBarMaximum = 100.0; // double @@ -122,7 +122,7 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :long_name = "Unique number denoting the missions performed by the float"; float bbp700(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002384938f, 0.003944034f; // float :C_format = "%.7f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :valid_min = NaNf; // float char bbp700_qc(row=3, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002384938f, 0.003944034f; // float :C_format = "%.7f"; @@ -152,13 +152,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :units = "m-1"; char bbp700_adjusted_qc(row=3, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.7f"; :FORTRAN_format = "F.7"; @@ -167,7 +167,7 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :units = "m-1"; float cdom(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.6335f, 0.6335f; // float :C_format = "%.3f"; @@ -181,13 +181,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :valid_min = NaNf; // float char cdom_qc(row=3, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -196,13 +196,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :units = "ppb"; char cdom_adjusted_qc(row=3, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -211,7 +211,7 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :units = "ppb"; float chla(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.289667f, 3.7522f; // float :C_format = "%.4f"; @@ -226,13 +226,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :valid_min = NaNf; // float char chla_qc(row=3, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.6411833f, 2.5623f; // float :C_format = "%.4f"; @@ -243,13 +243,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :units = "mg/m3"; char chla_adjusted_qc(row=3, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -280,7 +280,7 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :actual_range = 99999.0f, 99999.0f; // float float downwelling_par(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.549602f, 73.07629f; // float :C_format = "%.3f"; @@ -295,13 +295,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :valid_min = NaNf; // float char downwelling_par_qc(row=3, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.001552966f, 72.57328f; // float :C_format = "%.3f"; @@ -312,13 +312,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :units = "microMoleQuanta/m^2/sec"; char downwelling_par_adjusted_qc(row=3, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.03f, 3.628664f; // float :C_format = "%.3f"; @@ -328,7 +328,7 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :units = "microMoleQuanta/m^2/sec"; float down_irradiance380(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.018019E-4f, 0.02969852f; // float :C_format = "%.6f"; @@ -342,13 +342,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :valid_min = NaNf; // float char down_irradiance380_qc(row=3, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -8.968674E-6f, 0.02952597f; // float :C_format = "%.6f"; @@ -358,13 +358,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :units = "W/m^2/nm"; char down_irradiance380_adjusted_qc(row=3, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 5.905195E-4f; // float :C_format = "%.6f"; @@ -374,7 +374,7 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :units = "W/m^2/nm"; float down_irradiance412(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 9.396438E-5f, 0.05550002f; // float :C_format = "%.6f"; @@ -388,13 +388,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :valid_min = NaNf; // float char down_irradiance412_qc(row=3, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 9.439454E-6f, 0.05543612f; // float :C_format = "%.6f"; @@ -404,13 +404,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :units = "W/m^2/nm"; char down_irradiance412_adjusted_qc(row=3, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.001108722f; // float :C_format = "%.6f"; @@ -420,7 +420,7 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :units = "W/m^2/nm"; float down_irradiance490(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -6.496038E-5f, 0.09151518f; // float :C_format = "%.6f"; @@ -434,13 +434,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :valid_min = NaNf; // float char down_irradiance490_qc(row=3, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.68296E-5f, 0.0915398f; // float :C_format = "%.6f"; @@ -450,13 +450,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :units = "W/m^2/nm"; char down_irradiance490_adjusted_qc(row=3, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.001830796f; // float :C_format = "%.6f"; @@ -466,7 +466,7 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :units = "W/m^2/nm"; float doxy(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 309.3528f, 324.3129f; // float :C_format = "%.3f"; @@ -481,13 +481,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :valid_min = -5.0f; // float char doxy_qc(row=3, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 314.7974f, 330.0208f; // float :C_format = "%.3f"; @@ -500,13 +500,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=3, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 15.04538f, 15.63656f; // float :C_format = "%.3f"; @@ -516,101 +516,51 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :units = "micromole/kg"; float nitrate(row=3); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 7.597777f, 10.41807f; // float - :C_format = "%.3f"; :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :FORTRAN_format = "F.3"; :long_name = "Nitrate"; - :resolution = 0.001f; // float :sdn_parameter_urn = "SDN:P01::MDMAP005"; - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; :units = "micromole/kg"; :valid_max = NaNf; // float :valid_min = NaNf; // float char nitrate_qc(row=3, nitrate_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float :actual_range = 5.109423f, 7.557733f; // float - :C_format = "%.3f"; - :FORTRAN_format = "F.3"; - :long_name = "Nitrate"; - :resolution = 0.001f; // float - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :units = "micromole/kg"; char nitrate_adjusted_qc(row=3, nitrate_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float :actual_range = 5.0f, 5.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 = "micromole/kg"; float ph_in_situ_total(row=3); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 7.991419f, 8.191917f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float char ph_in_situ_total_qc(row=3, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float char ph_in_situ_total_adjusted_qc(row=3, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float float pres(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 2.035f, 7.435f; // float @@ -627,13 +577,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :valid_min = 0.0f; // float char pres_qc(row=3, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.51f, 7.33f; // float :axis = "Z"; @@ -647,13 +597,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=3, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -662,7 +612,7 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :units = "decibar"; float psal(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.602f, 34.724f; // float :C_format = "%.4f"; @@ -677,13 +627,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :valid_min = 2.0f; // float char psal_qc(row=3, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.60173f, 34.724f; // float :C_format = "%.4f"; @@ -696,13 +646,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=3, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -711,7 +661,7 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :units = "psu"; float temp(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.854624f, 6.5618f; // float :C_format = "%.3f"; @@ -726,13 +676,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :valid_min = -2.5f; // float char temp_qc(row=3, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.853f, 6.56089f; // float :C_format = "%.3f"; @@ -745,13 +695,13 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=3, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -777,9 +727,9 @@ netcdf ArgoFloats-synthetic-BGC_d497_d476_f077.nc { :geospatial_lon_max = -47.178141000000004; // double :geospatial_lon_min = -52.355689166666664; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:09:15Z (local files) -2024-08-23T08:09:15Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:30:00Z (local files) +2024-09-20T11:30:00Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; :id = "https://doi.org/10.17882/42182"; :infoUrl = "http://www.argodatamgt.org/Documentation"; :institution = "Argo"; diff --git a/argopy/tests/test_data/27d7b1ef7aaa76798f7f8eedc7fec0eb510c808949d926dc2ffa754fe958b870.json b/argopy/tests/test_data/27d7b1ef7aaa76798f7f8eedc7fec0eb510c808949d926dc2ffa754fe958b870.json index 9685711f..ca7f9f35 100644 --- a/argopy/tests/test_data/27d7b1ef7aaa76798f7f8eedc7fec0eb510c808949d926dc2ffa754fe958b870.json +++ b/argopy/tests/test_data/27d7b1ef7aaa76798f7f8eedc7fec0eb510c808949d926dc2ffa754fe958b870.json @@ -1011,43 +1011,6 @@ }, "pav:authoredOn": "2023-10-05 14:42: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/" - }, - "@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/WETLABS/" - }, - "pav:version": "2", - "dce:identifier": "SDN:R27::ECO_FLBBFL", - "pav:hasCurrentVersion": { - "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/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", @@ -2443,6 +2406,48 @@ }, "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": { @@ -4810,9 +4815,6 @@ { "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/" }, - { - "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/" - }, { "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MP40_C_2000_G/" }, @@ -4930,6 +4932,9 @@ { "@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/" }, diff --git a/argopy/tests/test_data/28a3d6682b41b12fa25eac5ca11b15de5abcb970ee991efe14d51712dd90405f.nc b/argopy/tests/test_data/28a3d6682b41b12fa25eac5ca11b15de5abcb970ee991efe14d51712dd90405f.nc index 68d93b77..252cb740 100644 Binary files a/argopy/tests/test_data/28a3d6682b41b12fa25eac5ca11b15de5abcb970ee991efe14d51712dd90405f.nc 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 index 0f7eb541..0e09d773 100644 --- a/argopy/tests/test_data/28aa9ecc6cc62f53304aabc5d4514cd7607d986887509485bd0ffe2806f3d1a2.json +++ b/argopy/tests/test_data/28aa9ecc6cc62f53304aabc5d4514cd7607d986887509485bd0ffe2806f3d1a2.json @@ -1 +1 @@ -[{"id":5440694,"cvNumber":240,"coordinate":{"lat":-49.443,"lon":-126.542},"level":0},{"id":4875064,"cvNumber":141,"coordinate":{"lat":-54.898,"lon":166.181},"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":4858029,"cvNumber":138,"coordinate":{"lat":-54.529,"lon":164.638},"level":0},{"id":4597910,"cvNumber":93,"coordinate":{"lat":-46.979,"lon":135.484},"level":0},{"id":5384029,"cvNumber":230,"coordinate":{"lat":-49.823,"lon":-128.817},"level":0},{"id":5353870,"cvNumber":225,"coordinate":{"lat":-49.872,"lon":-130.638},"level":0},{"id":4792339,"cvNumber":126,"coordinate":{"lat":-53.441,"lon":155.364},"level":0},{"id":5235459,"cvNumber":203,"coordinate":{"lat":-49.631,"lon":-137.718},"level":0},{"id":4979994,"cvNumber":160,"coordinate":{"lat":-48.811,"lon":-179.33},"level":0},{"id":5061945,"cvNumber":175,"coordinate":{"lat":-50.575,"lon":-165.053},"level":0},{"id":5046636,"cvNumber":172,"coordinate":{"lat":-49.099,"lon":-164.52},"level":0},{"id":4634534,"cvNumber":99,"coordinate":{"lat":-47.676,"lon":136.33},"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":4719988,"cvNumber":114,"coordinate":{"lat":-50.618,"lon":147.713},"level":0},{"id":5672134,"cvNumber":275,"coordinate":{"lat":-46.48,"lon":-124.997},"level":0},{"id":5714459,"cvNumber":282,"coordinate":{"lat":-47.581,"lon":-127.313},"level":0},{"id":4849540,"cvNumber":137,"coordinate":{"lat":-53.819,"lon":161.807},"level":0},{"id":4963049,"cvNumber":157,"coordinate":{"lat":-50.143,"lon":176.745},"level":0},{"id":4758049,"cvNumber":120,"coordinate":{"lat":-50.064,"lon":152.358},"level":0},{"id":5026228,"cvNumber":168,"coordinate":{"lat":-49.166,"lon":-176.239},"level":0},{"id":5073876,"cvNumber":177,"coordinate":{"lat":-49.536,"lon":-164.122},"level":0},{"id":4879968,"cvNumber":142,"coordinate":{"lat":-55.091,"lon":166.365},"level":0},{"id":4942785,"cvNumber":154,"coordinate":{"lat":-54.79,"lon":170.238},"level":0},{"id":5403136,"cvNumber":233,"coordinate":{"lat":-49.156,"lon":-127.61},"level":0},{"id":5435455,"cvNumber":239,"coordinate":{"lat":-50.145,"lon":-127.046},"level":0},{"id":5136408,"cvNumber":187,"coordinate":{"lat":-50.43,"lon":-153.171},"level":0},{"id":5516151,"cvNumber":251,"coordinate":{"lat":-48.932,"lon":-124.909},"level":0},{"id":5654833,"cvNumber":272,"coordinate":{"lat":-45.786,"lon":-125.146},"level":0},{"id":5187021,"cvNumber":194,"coordinate":{"lat":-48.942,"lon":-149.123},"level":0},{"id":5176688,"cvNumber":192,"coordinate":{"lat":-51.066,"lon":-149.484},"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":5528768,"cvNumber":253,"coordinate":{"lat":-49.046,"lon":-125.253},"level":0},{"id":5347796,"cvNumber":224,"coordinate":{"lat":-50.28,"lon":-131.592},"level":0},{"id":5310694,"cvNumber":218,"coordinate":{"lat":-48.337,"lon":-132.262},"level":0},{"id":5296159,"cvNumber":215,"coordinate":{"lat":-47.804,"lon":-132.768},"level":0},{"id":5155832,"cvNumber":189,"coordinate":{"lat":-51.834,"lon":-151.769},"level":0},{"id":5240774,"cvNumber":204,"coordinate":{"lat":-49.006,"lon":-137.565},"level":0},{"id":4833140,"cvNumber":134,"coordinate":{"lat":-52.416,"lon":156.776},"level":0},{"id":5163794,"cvNumber":190,"coordinate":{"lat":-52.227,"lon":-150.882},"level":0},{"id":5118214,"cvNumber":184,"coordinate":{"lat":-50.431,"lon":-153.09},"level":0},{"id":5202748,"cvNumber":197,"coordinate":{"lat":-51.231,"lon":-144.769},"level":0},{"id":5413202,"cvNumber":235,"coordinate":{"lat":-49.416,"lon":-127.38},"level":0},{"id":5660242,"cvNumber":273,"coordinate":{"lat":-46.094,"lon":-125.013},"level":0},{"id":5597470,"cvNumber":263,"coordinate":{"lat":-46.19,"lon":-126.789},"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":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":4560018,"cvNumber":86,"coordinate":{"lat":-47.71,"lon":134.96},"level":0},{"id":4515016,"cvNumber":77,"coordinate":{"lat":-49.201,"lon":132.888},"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":4539518,"cvNumber":82,"coordinate":{"lat":-47.794,"lon":135.154},"level":0},{"id":4535266,"cvNumber":81,"coordinate":{"lat":-47.896,"lon":135.233},"level":0},{"id":4499850,"cvNumber":74,"coordinate":{"lat":-48.93,"lon":132.927},"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":4544703,"cvNumber":83,"coordinate":{"lat":-47.726,"lon":134.975},"level":0},{"id":4590906,"cvNumber":92,"coordinate":{"lat":-46.898,"lon":135.637},"level":0},{"id":4153622,"cvNumber":42,"coordinate":{"lat":-45.73,"lon":94.517},"level":0},{"id":4148511,"cvNumber":41,"coordinate":{"lat":-45.465,"lon":93.604},"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":4088111,"cvNumber":30,"coordinate":{"lat":-45.875,"lon":91.329},"level":0},{"id":4173387,"cvNumber":46,"coordinate":{"lat":-45.676,"lon":101.417},"level":0},{"id":4168110,"cvNumber":45,"coordinate":{"lat":-45.206,"lon":98.719},"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":4121771,"cvNumber":36,"coordinate":{"lat":-46.323,"lon":91.912},"level":0},{"id":4132708,"cvNumber":38,"coordinate":{"lat":-46.212,"lon":92.412},"level":0},{"id":4127497,"cvNumber":37,"coordinate":{"lat":-46.347,"lon":92.153},"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":4103941,"cvNumber":33,"coordinate":{"lat":-45.979,"lon":90.468},"level":0},{"id":4143895,"cvNumber":40,"coordinate":{"lat":-45.56,"lon":92.734},"level":0},{"id":4138263,"cvNumber":39,"coordinate":{"lat":-45.814,"lon":92.562},"level":0},{"id":4158516,"cvNumber":43,"coordinate":{"lat":-45.911,"lon":95.906},"level":0},{"id":4041213,"cvNumber":22,"coordinate":{"lat":-46.1,"lon":86.939},"level":0},{"id":4020368,"cvNumber":18,"coordinate":{"lat":-44.898,"lon":84.266},"level":0},{"id":4025102,"cvNumber":19,"coordinate":{"lat":-45.316,"lon":83.907},"level":0},{"id":3991043,"cvNumber":12,"coordinate":{"lat":-43.432,"lon":83.153},"level":0},{"id":4010708,"cvNumber":16,"coordinate":{"lat":-46.018,"lon":84.092},"level":0},{"id":4067755,"cvNumber":26,"coordinate":{"lat":-44.653,"lon":89.046},"level":0},{"id":3995592,"cvNumber":13,"coordinate":{"lat":-44.23,"lon":82.576},"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":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":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":4451654,"cvNumber":66,"coordinate":{"lat":-47.394,"lon":121.966},"level":0},{"id":4457094,"cvNumber":67,"coordinate":{"lat":-47.312,"lon":124.43},"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":3983622,"cvNumber":11,"coordinate":{"lat":-43.576,"lon":83.609},"level":0},{"id":3958540,"cvNumber":6,"coordinate":{"lat":-43.277,"lon":83.033},"level":0},{"id":3963532,"cvNumber":7,"coordinate":{"lat":-43.594,"lon":83.661},"level":0},{"id":3937267,"cvNumber":2,"coordinate":{"lat":-43.199,"lon":78.471},"level":0},{"id":3942697,"cvNumber":3,"coordinate":{"lat":-42.788,"lon":79.531},"level":0},{"id":3953467,"cvNumber":5,"coordinate":{"lat":-42.95,"lon":81.785},"level":0},{"id":3968326,"cvNumber":8,"coordinate":{"lat":-43.853,"lon":83.862},"level":0},{"id":3978514,"cvNumber":10,"coordinate":{"lat":-44.188,"lon":84.132},"level":0},{"id":3973557,"cvNumber":9,"coordinate":{"lat":-43.945,"lon":84.19},"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":4193913,"cvNumber":50,"coordinate":{"lat":-45.186,"lon":109.149},"level":0},{"id":4188546,"cvNumber":49,"coordinate":{"lat":-46.204,"lon":106.972},"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":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":4445765,"cvNumber":65,"coordinate":{"lat":-47.337,"lon":120.067},"level":0},{"id":4440139,"cvNumber":64,"coordinate":{"lat":-46.396,"lon":120.198},"level":0},{"id":3947818,"cvNumber":4,"coordinate":{"lat":-42.566,"lon":80.634},"level":0},{"id":3933268,"cvNumber":1,"coordinate":{"lat":-43.014,"lon":77.544},"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":4404118,"cvNumber":57,"coordinate":{"lat":-45.693,"lon":113.347},"level":0},{"id":4399107,"cvNumber":56,"coordinate":{"lat":-45.279,"lon":112.556},"level":0},{"id":4394272,"cvNumber":55,"coordinate":{"lat":-45.091,"lon":111.856},"level":0},{"id":4957086,"cvNumber":156,"coordinate":{"lat":-51.214,"lon":175.449},"level":0},{"id":4732199,"cvNumber":116,"coordinate":{"lat":-50.163,"lon":147.319},"level":0},{"id":4689156,"cvNumber":109,"coordinate":{"lat":-49.603,"lon":144.185},"level":0},{"id":4683893,"cvNumber":108,"coordinate":{"lat":-49.342,"lon":142.283},"level":0},{"id":4709072,"cvNumber":112,"coordinate":{"lat":-51.627,"lon":146.471},"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":4679067,"cvNumber":107,"coordinate":{"lat":-49.789,"lon":139.72},"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":4726044,"cvNumber":115,"coordinate":{"lat":-49.689,"lon":145.409},"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":4639761,"cvNumber":100,"coordinate":{"lat":-47.953,"lon":136.434},"level":0},{"id":5430256,"cvNumber":238,"coordinate":{"lat":-50.106,"lon":-127.613},"level":0},{"id":4990654,"cvNumber":162,"coordinate":{"lat":-48.615,"lon":-179.273},"level":0},{"id":5424675,"cvNumber":237,"coordinate":{"lat":-49.775,"lon":-127.663},"level":0},{"id":5371216,"cvNumber":228,"coordinate":{"lat":-49.614,"lon":-129.979},"level":0},{"id":5378032,"cvNumber":229,"coordinate":{"lat":-50.096,"lon":-129.398},"level":0},{"id":5408355,"cvNumber":234,"coordinate":{"lat":-49.315,"lon":-127.469},"level":0},{"id":5112629,"cvNumber":183,"coordinate":{"lat":-49.903,"lon":-154.165},"level":0},{"id":5041753,"cvNumber":171,"coordinate":{"lat":-50.423,"lon":-166.401},"level":0},{"id":5329287,"cvNumber":221,"coordinate":{"lat":-49.038,"lon":-132.872},"level":0},{"id":5677502,"cvNumber":276,"coordinate":{"lat":-46.647,"lon":-125.142},"level":0},{"id":5683171,"cvNumber":277,"coordinate":{"lat":-46.915,"lon":-125.372},"level":0},{"id":5565407,"cvNumber":258,"coordinate":{"lat":-47.855,"lon":-126.15},"level":0},{"id":5628401,"cvNumber":269,"coordinate":{"lat":-45.083,"lon":-125.988},"level":0},{"id":5101481,"cvNumber":181,"coordinate":{"lat":-51.234,"lon":-158.902},"level":0},{"id":5170208,"cvNumber":191,"coordinate":{"lat":-51.909,"lon":-150.058},"level":0},{"id":5613669,"cvNumber":266,"coordinate":{"lat":-45.143,"lon":-126.431},"level":0},{"id":5536440,"cvNumber":254,"coordinate":{"lat":-49.028,"lon":-125.275},"level":0},{"id":5224273,"cvNumber":201,"coordinate":{"lat":-50.998,"lon":-137.647},"level":0},{"id":5230107,"cvNumber":202,"coordinate":{"lat":-50.098,"lon":-137.979},"level":0},{"id":5271056,"cvNumber":210,"coordinate":{"lat":-48.898,"lon":-135.77},"level":0},{"id":5245810,"cvNumber":205,"coordinate":{"lat":-48.446,"lon":-137.383},"level":0},{"id":5106994,"cvNumber":182,"coordinate":{"lat":-50.77,"lon":-156.176},"level":0},{"id":5592203,"cvNumber":262,"coordinate":{"lat":-46.655,"lon":-127.012},"level":0},{"id":4948348,"cvNumber":155,"coordinate":{"lat":-53.49,"lon":174.078},"level":0},{"id":5015477,"cvNumber":166,"coordinate":{"lat":-47.956,"lon":-177.076},"level":0},{"id":4985201,"cvNumber":161,"coordinate":{"lat":-49.12,"lon":-179.585},"level":0},{"id":4770363,"cvNumber":122,"coordinate":{"lat":-52.533,"lon":152.127},"level":0},{"id":4714565,"cvNumber":113,"coordinate":{"lat":-51.576,"lon":148.006},"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":4884591,"cvNumber":143,"coordinate":{"lat":-55.656,"lon":166.111},"level":0},{"id":4915190,"cvNumber":149,"coordinate":{"lat":-56.95,"lon":170.296},"level":0},{"id":4816379,"cvNumber":130,"coordinate":{"lat":-52.729,"lon":154.304},"level":0},{"id":4931504,"cvNumber":152,"coordinate":{"lat":-56.435,"lon":167.417},"level":0},{"id":5396893,"cvNumber":232,"coordinate":{"lat":-49.035,"lon":-127.869},"level":0},{"id":5300945,"cvNumber":216,"coordinate":{"lat":-47.696,"lon":-132.315},"level":0},{"id":5305675,"cvNumber":217,"coordinate":{"lat":-47.919,"lon":-132.209},"level":0},{"id":5021086,"cvNumber":167,"coordinate":{"lat":-49.238,"lon":-177.301},"level":0},{"id":5051379,"cvNumber":173,"coordinate":{"lat":-48.319,"lon":-166.294},"level":0},{"id":5207552,"cvNumber":198,"coordinate":{"lat":-51.525,"lon":-143.354},"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":4802373,"cvNumber":128,"coordinate":{"lat":-52.964,"lon":155.618},"level":0},{"id":4969156,"cvNumber":158,"coordinate":{"lat":-49.755,"lon":-179.398},"level":0},{"id":4974241,"cvNumber":159,"coordinate":{"lat":-49.257,"lon":-179.145},"level":0},{"id":5323210,"cvNumber":220,"coordinate":{"lat":-48.744,"lon":-132.579},"level":0},{"id":5291420,"cvNumber":214,"coordinate":{"lat":-48.355,"lon":-133.302},"level":0},{"id":5286508,"cvNumber":213,"coordinate":{"lat":-48.827,"lon":-133.701},"level":0},{"id":4865054,"cvNumber":139,"coordinate":{"lat":-55.013,"lon":165.759},"level":0},{"id":4764569,"cvNumber":121,"coordinate":{"lat":-51.644,"lon":152.604},"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":4870058,"cvNumber":140,"coordinate":{"lat":-54.941,"lon":165.975},"level":0},{"id":4808280,"cvNumber":129,"coordinate":{"lat":-52.8,"lon":154.074},"level":0},{"id":4737607,"cvNumber":117,"coordinate":{"lat":-51.332,"lon":147.13},"level":0},{"id":4843823,"cvNumber":136,"coordinate":{"lat":-53.1,"lon":158.961},"level":0},{"id":4797450,"cvNumber":127,"coordinate":{"lat":-52.804,"lon":155.021},"level":0},{"id":5056667,"cvNumber":174,"coordinate":{"lat":-49.86,"lon":-167.348},"level":0},{"id":4995966,"cvNumber":163,"coordinate":{"lat":-48.282,"lon":-179.229},"level":0},{"id":5068724,"cvNumber":176,"coordinate":{"lat":-50.7,"lon":-164.217},"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":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":5213046,"cvNumber":199,"coordinate":{"lat":-51.086,"lon":-141.639},"level":0},{"id":5146281,"cvNumber":188,"coordinate":{"lat":-50.985,"lon":-152.447},"level":0},{"id":5197818,"cvNumber":196,"coordinate":{"lat":-50.421,"lon":-146.906},"level":0},{"id":5192342,"cvNumber":195,"coordinate":{"lat":-49.55,"lon":-148.137},"level":0},{"id":5217558,"cvNumber":200,"coordinate":{"lat":-51.686,"lon":-139.049},"level":0},{"id":4775658,"cvNumber":123,"coordinate":{"lat":-53.787,"lon":152.898},"level":0},{"id":5079030,"cvNumber":178,"coordinate":{"lat":-49.47,"lon":-164.412},"level":0},{"id":4889110,"cvNumber":144,"coordinate":{"lat":-56.77,"lon":171.185},"level":0},{"id":4786376,"cvNumber":125,"coordinate":{"lat":-54.156,"lon":155.665},"level":0},{"id":4781077,"cvNumber":124,"coordinate":{"lat":-55.089,"lon":154.821},"level":0},{"id":5001927,"cvNumber":164,"coordinate":{"lat":-47.6,"lon":-178.595},"level":0},{"id":5009541,"cvNumber":165,"coordinate":{"lat":-47.166,"lon":-176.692},"level":0},{"id":4936690,"cvNumber":153,"coordinate":{"lat":-55.855,"lon":167.444},"level":0},{"id":5086460,"cvNumber":179,"coordinate":{"lat":-49.616,"lon":-163.315},"level":0},{"id":5092136,"cvNumber":180,"coordinate":{"lat":-49.477,"lon":-160.417},"level":0},{"id":5181795,"cvNumber":193,"coordinate":{"lat":-49.664,"lon":-149.601},"level":0},{"id":5130440,"cvNumber":186,"coordinate":{"lat":-50.464,"lon":-153.6},"level":0},{"id":5123730,"cvNumber":185,"coordinate":{"lat":-50.537,"lon":-153.52},"level":0},{"id":4817935,"cvNumber":131,"coordinate":{"lat":-52.193,"lon":153.733},"level":0},{"id":4822852,"cvNumber":132,"coordinate":{"lat":-52.481,"lon":154.933},"level":0},{"id":4921003,"cvNumber":150,"coordinate":{"lat":-56.676,"lon":170.239},"level":0},{"id":4926104,"cvNumber":151,"coordinate":{"lat":-57.11,"lon":167.813},"level":0},{"id":5316817,"cvNumber":219,"coordinate":{"lat":-48.533,"lon":-132.398},"level":0},{"id":5341622,"cvNumber":223,"coordinate":{"lat":-50.128,"lon":-132.872},"level":0},{"id":5281831,"cvNumber":212,"coordinate":{"lat":-48.958,"lon":-134.163},"level":0},{"id":5266005,"cvNumber":209,"coordinate":{"lat":-49.011,"lon":-135.678},"level":0},{"id":5256402,"cvNumber":207,"coordinate":{"lat":-48.48,"lon":-135.923},"level":0},{"id":5250932,"cvNumber":206,"coordinate":{"lat":-48.342,"lon":-136.662},"level":0},{"id":5261314,"cvNumber":208,"coordinate":{"lat":-48.861,"lon":-135.55},"level":0},{"id":5335391,"cvNumber":222,"coordinate":{"lat":-49.462,"lon":-133.538},"level":0},{"id":5553842,"cvNumber":256,"coordinate":{"lat":-48.682,"lon":-125.503},"level":0},{"id":5559776,"cvNumber":257,"coordinate":{"lat":-48.315,"lon":-125.658},"level":0},{"id":5450791,"cvNumber":242,"coordinate":{"lat":-49.097,"lon":-126.894},"level":0},{"id":5455570,"cvNumber":243,"coordinate":{"lat":-49.029,"lon":-126.666},"level":0},{"id":5460981,"cvNumber":244,"coordinate":{"lat":-49.078,"lon":-126.489},"level":0},{"id":5587122,"cvNumber":261,"coordinate":{"lat":-46.894,"lon":-127.246},"level":0},{"id":5505789,"cvNumber":249,"coordinate":{"lat":-49.177,"lon":-124.598},"level":0},{"id":5476322,"cvNumber":247,"coordinate":{"lat":-49.383,"lon":-125.497},"level":0},{"id":5365849,"cvNumber":227,"coordinate":{"lat":-49.594,"lon":-130.674},"level":0},{"id":5359470,"cvNumber":226,"coordinate":{"lat":-50.121,"lon":-130.526},"level":0},{"id":5466530,"cvNumber":245,"coordinate":{"lat":-49.14,"lon":-126.063},"level":0},{"id":5602926,"cvNumber":264,"coordinate":{"lat":-45.746,"lon":-126.664},"level":0},{"id":5729015,"cvNumber":283,"coordinate":{"lat":-47.657,"lon":-127.581},"level":0},{"id":5471526,"cvNumber":246,"coordinate":{"lat":-49.233,"lon":-125.893},"level":0},{"id":5390117,"cvNumber":231,"coordinate":{"lat":-49.316,"lon":-128.392},"level":0},{"id":5608329,"cvNumber":265,"coordinate":{"lat":-45.385,"lon":-126.681},"level":0},{"id":5688839,"cvNumber":278,"coordinate":{"lat":-47.164,"lon":-125.676},"level":0},{"id":5665662,"cvNumber":274,"coordinate":{"lat":-46.298,"lon":-124.95},"level":0},{"id":5418662,"cvNumber":236,"coordinate":{"lat":-49.551,"lon":-127.446},"level":0},{"id":5481253,"cvNumber":248,"coordinate":{"lat":-49.347,"lon":-124.883},"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":5523671,"cvNumber":252,"coordinate":{"lat":-48.953,"lon":-125.165},"level":0},{"id":5581532,"cvNumber":260,"coordinate":{"lat":-46.928,"lon":-126.895},"level":0},{"id":5623526,"cvNumber":268,"coordinate":{"lat":-44.946,"lon":-126.022},"level":0},{"id":5618729,"cvNumber":267,"coordinate":{"lat":-44.878,"lon":-126.189},"level":0},{"id":5649901,"cvNumber":271,"coordinate":{"lat":-45.516,"lon":-125.421},"level":0},{"id":5633559,"cvNumber":270,"coordinate":{"lat":-45.281,"lon":-125.796},"level":0},{"id":5694751,"cvNumber":279,"coordinate":{"lat":-47.37,"lon":-126.092},"level":0},{"id":5699557,"cvNumber":280,"coordinate":{"lat":-47.503,"lon":-126.588},"level":0},{"id":5705128,"cvNumber":281,"coordinate":{"lat":-47.572,"lon":-126.99},"level":0}] \ No newline at end of file +[{"id":4193913,"cvNumber":50,"coordinate":{"lat":-45.186,"lon":109.149},"level":0},{"id":4199300,"cvNumber":51,"coordinate":{"lat":-44.616,"lon":108.546},"level":0},{"id":4440139,"cvNumber":64,"coordinate":{"lat":-46.396,"lon":120.198},"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":4451654,"cvNumber":66,"coordinate":{"lat":-47.394,"lon":121.966},"level":0},{"id":4445765,"cvNumber":65,"coordinate":{"lat":-47.337,"lon":120.067},"level":0},{"id":3947818,"cvNumber":4,"coordinate":{"lat":-42.566,"lon":80.634},"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":4173387,"cvNumber":46,"coordinate":{"lat":-45.676,"lon":101.417},"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":4457094,"cvNumber":67,"coordinate":{"lat":-47.312,"lon":124.43},"level":0},{"id":4462780,"cvNumber":68,"coordinate":{"lat":-49.43,"lon":123.756},"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":3963532,"cvNumber":7,"coordinate":{"lat":-43.594,"lon":83.661},"level":0},{"id":3968326,"cvNumber":8,"coordinate":{"lat":-43.853,"lon":83.862},"level":0},{"id":4088111,"cvNumber":30,"coordinate":{"lat":-45.875,"lon":91.329},"level":0},{"id":4143895,"cvNumber":40,"coordinate":{"lat":-45.56,"lon":92.734},"level":0},{"id":4138263,"cvNumber":39,"coordinate":{"lat":-45.814,"lon":92.562},"level":0},{"id":4067755,"cvNumber":26,"coordinate":{"lat":-44.653,"lon":89.046},"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":4103941,"cvNumber":33,"coordinate":{"lat":-45.979,"lon":90.468},"level":0},{"id":4109630,"cvNumber":34,"coordinate":{"lat":-46.216,"lon":90.826},"level":0},{"id":4121771,"cvNumber":36,"coordinate":{"lat":-46.323,"lon":91.912},"level":0},{"id":4499850,"cvNumber":74,"coordinate":{"lat":-48.93,"lon":132.927},"level":0},{"id":4494208,"cvNumber":73,"coordinate":{"lat":-49.271,"lon":133.052},"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":4539518,"cvNumber":82,"coordinate":{"lat":-47.794,"lon":135.154},"level":0},{"id":4535266,"cvNumber":81,"coordinate":{"lat":-47.896,"lon":135.233},"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":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":4560018,"cvNumber":86,"coordinate":{"lat":-47.71,"lon":134.96},"level":0},{"id":4515016,"cvNumber":77,"coordinate":{"lat":-49.201,"lon":132.888},"level":0},{"id":3991043,"cvNumber":12,"coordinate":{"lat":-43.432,"lon":83.153},"level":0},{"id":4010708,"cvNumber":16,"coordinate":{"lat":-46.018,"lon":84.092},"level":0},{"id":4041213,"cvNumber":22,"coordinate":{"lat":-46.1,"lon":86.939},"level":0},{"id":3978514,"cvNumber":10,"coordinate":{"lat":-44.188,"lon":84.132},"level":0},{"id":3973557,"cvNumber":9,"coordinate":{"lat":-43.945,"lon":84.19},"level":0},{"id":3942697,"cvNumber":3,"coordinate":{"lat":-42.788,"lon":79.531},"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":3933268,"cvNumber":1,"coordinate":{"lat":-43.014,"lon":77.544},"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":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":4188546,"cvNumber":49,"coordinate":{"lat":-46.204,"lon":106.972},"level":0},{"id":4132708,"cvNumber":38,"coordinate":{"lat":-46.212,"lon":92.412},"level":0},{"id":4127497,"cvNumber":37,"coordinate":{"lat":-46.347,"lon":92.153},"level":0},{"id":4163297,"cvNumber":44,"coordinate":{"lat":-45.359,"lon":97.036},"level":0},{"id":4153622,"cvNumber":42,"coordinate":{"lat":-45.73,"lon":94.517},"level":0},{"id":4148511,"cvNumber":41,"coordinate":{"lat":-45.465,"lon":93.604},"level":0},{"id":4115844,"cvNumber":35,"coordinate":{"lat":-46.25,"lon":91.427},"level":0},{"id":4168110,"cvNumber":45,"coordinate":{"lat":-45.206,"lon":98.719},"level":0},{"id":4481840,"cvNumber":71,"coordinate":{"lat":-49.204,"lon":131.291},"level":0},{"id":4487368,"cvNumber":72,"coordinate":{"lat":-49.862,"lon":132.484},"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":3937267,"cvNumber":2,"coordinate":{"lat":-43.199,"lon":78.471},"level":0},{"id":3958540,"cvNumber":6,"coordinate":{"lat":-43.277,"lon":83.033},"level":0},{"id":3995592,"cvNumber":13,"coordinate":{"lat":-44.23,"lon":82.576},"level":0},{"id":3983622,"cvNumber":11,"coordinate":{"lat":-43.576,"lon":83.609},"level":0},{"id":4612388,"cvNumber":95,"coordinate":{"lat":-47.292,"lon":135.364},"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":4870058,"cvNumber":140,"coordinate":{"lat":-54.941,"lon":165.975},"level":0},{"id":5106994,"cvNumber":182,"coordinate":{"lat":-50.77,"lon":-156.176},"level":0},{"id":5112629,"cvNumber":183,"coordinate":{"lat":-49.903,"lon":-154.165},"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":5051379,"cvNumber":173,"coordinate":{"lat":-48.319,"lon":-166.294},"level":0},{"id":5046636,"cvNumber":172,"coordinate":{"lat":-49.099,"lon":-164.52},"level":0},{"id":5207552,"cvNumber":198,"coordinate":{"lat":-51.525,"lon":-143.354},"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":4990654,"cvNumber":162,"coordinate":{"lat":-48.615,"lon":-179.273},"level":0},{"id":4985201,"cvNumber":161,"coordinate":{"lat":-49.12,"lon":-179.585},"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":5240774,"cvNumber":204,"coordinate":{"lat":-49.006,"lon":-137.565},"level":0},{"id":5235459,"cvNumber":203,"coordinate":{"lat":-49.631,"lon":-137.718},"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":4963049,"cvNumber":157,"coordinate":{"lat":-50.143,"lon":176.745},"level":0},{"id":4921003,"cvNumber":150,"coordinate":{"lat":-56.676,"lon":170.239},"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":4915190,"cvNumber":149,"coordinate":{"lat":-56.95,"lon":170.296},"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":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":4808280,"cvNumber":129,"coordinate":{"lat":-52.8,"lon":154.074},"level":0},{"id":4797450,"cvNumber":127,"coordinate":{"lat":-52.804,"lon":155.021},"level":0},{"id":4802373,"cvNumber":128,"coordinate":{"lat":-52.964,"lon":155.618},"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":4948348,"cvNumber":155,"coordinate":{"lat":-53.49,"lon":174.078},"level":0},{"id":4668822,"cvNumber":105,"coordinate":{"lat":-48.687,"lon":139.28},"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":5261314,"cvNumber":208,"coordinate":{"lat":-48.861,"lon":-135.55},"level":0},{"id":5300945,"cvNumber":216,"coordinate":{"lat":-47.696,"lon":-132.315},"level":0},{"id":5305675,"cvNumber":217,"coordinate":{"lat":-47.919,"lon":-132.209},"level":0},{"id":5371216,"cvNumber":228,"coordinate":{"lat":-49.614,"lon":-129.979},"level":0},{"id":5365849,"cvNumber":227,"coordinate":{"lat":-49.594,"lon":-130.674},"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":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":5316817,"cvNumber":219,"coordinate":{"lat":-48.533,"lon":-132.398},"level":0},{"id":5323210,"cvNumber":220,"coordinate":{"lat":-48.744,"lon":-132.579},"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":5390117,"cvNumber":231,"coordinate":{"lat":-49.316,"lon":-128.392},"level":0},{"id":5123730,"cvNumber":185,"coordinate":{"lat":-50.537,"lon":-153.52},"level":0},{"id":5118214,"cvNumber":184,"coordinate":{"lat":-50.431,"lon":-153.09},"level":0},{"id":5271056,"cvNumber":210,"coordinate":{"lat":-48.898,"lon":-135.77},"level":0},{"id":5418662,"cvNumber":236,"coordinate":{"lat":-49.551,"lon":-127.446},"level":0},{"id":5061945,"cvNumber":175,"coordinate":{"lat":-50.575,"lon":-165.053},"level":0},{"id":4750956,"cvNumber":119,"coordinate":{"lat":-51.471,"lon":150.122},"level":0},{"id":4974241,"cvNumber":159,"coordinate":{"lat":-49.257,"lon":-179.145},"level":0},{"id":4979994,"cvNumber":160,"coordinate":{"lat":-48.811,"lon":-179.33},"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":4879968,"cvNumber":142,"coordinate":{"lat":-55.091,"lon":166.365},"level":0},{"id":4875064,"cvNumber":141,"coordinate":{"lat":-54.898,"lon":166.181},"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":5026228,"cvNumber":168,"coordinate":{"lat":-49.166,"lon":-176.239},"level":0},{"id":4931504,"cvNumber":152,"coordinate":{"lat":-56.435,"lon":167.417},"level":0},{"id":4936690,"cvNumber":153,"coordinate":{"lat":-55.855,"lon":167.444},"level":0},{"id":5021086,"cvNumber":167,"coordinate":{"lat":-49.238,"lon":-177.301},"level":0},{"id":5041753,"cvNumber":171,"coordinate":{"lat":-50.423,"lon":-166.401},"level":0},{"id":5031265,"cvNumber":169,"coordinate":{"lat":-48.579,"lon":-173.523},"level":0},{"id":5413202,"cvNumber":235,"coordinate":{"lat":-49.416,"lon":-127.38},"level":0},{"id":4889110,"cvNumber":144,"coordinate":{"lat":-56.77,"lon":171.185},"level":0},{"id":4884591,"cvNumber":143,"coordinate":{"lat":-55.656,"lon":166.111},"level":0},{"id":4792339,"cvNumber":126,"coordinate":{"lat":-53.441,"lon":155.364},"level":0},{"id":4786376,"cvNumber":125,"coordinate":{"lat":-54.156,"lon":155.665},"level":0},{"id":4673863,"cvNumber":106,"coordinate":{"lat":-48.969,"lon":138.753},"level":0},{"id":4732199,"cvNumber":116,"coordinate":{"lat":-50.163,"lon":147.319},"level":0},{"id":4726044,"cvNumber":115,"coordinate":{"lat":-49.689,"lon":145.409},"level":0},{"id":4893994,"cvNumber":145,"coordinate":{"lat":-56.109,"lon":170.652},"level":0},{"id":4689156,"cvNumber":109,"coordinate":{"lat":-49.603,"lon":144.185},"level":0},{"id":4744645,"cvNumber":118,"coordinate":{"lat":-52.428,"lon":148.606},"level":0},{"id":4714565,"cvNumber":113,"coordinate":{"lat":-51.576,"lon":148.006},"level":0},{"id":4899245,"cvNumber":146,"coordinate":{"lat":-58.189,"lon":170.055},"level":0},{"id":5130440,"cvNumber":186,"coordinate":{"lat":-50.464,"lon":-153.6},"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":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":5155832,"cvNumber":189,"coordinate":{"lat":-51.834,"lon":-151.769},"level":0},{"id":5146281,"cvNumber":188,"coordinate":{"lat":-50.985,"lon":-152.447},"level":0},{"id":5187021,"cvNumber":194,"coordinate":{"lat":-48.942,"lon":-149.123},"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":4158516,"cvNumber":43,"coordinate":{"lat":-45.911,"lon":95.906},"level":0},{"id":4387615,"cvNumber":54,"coordinate":{"lat":-45.1,"lon":110.894},"level":0},{"id":4404118,"cvNumber":57,"coordinate":{"lat":-45.693,"lon":113.347},"level":0},{"id":4399107,"cvNumber":56,"coordinate":{"lat":-45.279,"lon":112.556},"level":0},{"id":4394272,"cvNumber":55,"coordinate":{"lat":-45.091,"lon":111.856},"level":0},{"id":4827680,"cvNumber":133,"coordinate":{"lat":-51.635,"lon":156.501},"level":0},{"id":4822852,"cvNumber":132,"coordinate":{"lat":-52.481,"lon":154.933},"level":0},{"id":4833140,"cvNumber":134,"coordinate":{"lat":-52.416,"lon":156.776},"level":0},{"id":4700367,"cvNumber":111,"coordinate":{"lat":-50.442,"lon":144.253},"level":0},{"id":4679067,"cvNumber":107,"coordinate":{"lat":-49.789,"lon":139.72},"level":0},{"id":4683893,"cvNumber":108,"coordinate":{"lat":-49.342,"lon":142.283},"level":0},{"id":5245810,"cvNumber":205,"coordinate":{"lat":-48.446,"lon":-137.383},"level":0},{"id":5250932,"cvNumber":206,"coordinate":{"lat":-48.342,"lon":-136.662},"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":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":5310694,"cvNumber":218,"coordinate":{"lat":-48.337,"lon":-132.262},"level":0},{"id":4590906,"cvNumber":92,"coordinate":{"lat":-46.898,"lon":135.637},"level":0},{"id":4605776,"cvNumber":94,"coordinate":{"lat":-47.154,"lon":135.325},"level":0},{"id":4623279,"cvNumber":97,"coordinate":{"lat":-47.555,"lon":135.766},"level":0},{"id":4597910,"cvNumber":93,"coordinate":{"lat":-46.979,"lon":135.484},"level":0},{"id":4634534,"cvNumber":99,"coordinate":{"lat":-47.676,"lon":136.33},"level":0},{"id":4544703,"cvNumber":83,"coordinate":{"lat":-47.726,"lon":134.975},"level":0},{"id":4617896,"cvNumber":96,"coordinate":{"lat":-47.432,"lon":135.436},"level":0},{"id":5056667,"cvNumber":174,"coordinate":{"lat":-49.86,"lon":-167.348},"level":0},{"id":5036586,"cvNumber":170,"coordinate":{"lat":-49.212,"lon":-169.776},"level":0},{"id":5136408,"cvNumber":187,"coordinate":{"lat":-50.43,"lon":-153.171},"level":0},{"id":5092136,"cvNumber":180,"coordinate":{"lat":-49.477,"lon":-160.417},"level":0},{"id":5101481,"cvNumber":181,"coordinate":{"lat":-51.234,"lon":-158.902},"level":0},{"id":4737607,"cvNumber":117,"coordinate":{"lat":-51.332,"lon":147.13},"level":0},{"id":4758049,"cvNumber":120,"coordinate":{"lat":-50.064,"lon":152.358},"level":0},{"id":4709072,"cvNumber":112,"coordinate":{"lat":-51.627,"lon":146.471},"level":0},{"id":4719988,"cvNumber":114,"coordinate":{"lat":-50.618,"lon":147.713},"level":0},{"id":4639761,"cvNumber":100,"coordinate":{"lat":-47.953,"lon":136.434},"level":0},{"id":4694016,"cvNumber":110,"coordinate":{"lat":-49.28,"lon":143.726},"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":4942785,"cvNumber":154,"coordinate":{"lat":-54.79,"lon":170.238},"level":0},{"id":4838479,"cvNumber":135,"coordinate":{"lat":-53.125,"lon":158.639},"level":0},{"id":4926104,"cvNumber":151,"coordinate":{"lat":-57.11,"lon":167.813},"level":0},{"id":4957086,"cvNumber":156,"coordinate":{"lat":-51.214,"lon":175.449},"level":0},{"id":4969156,"cvNumber":158,"coordinate":{"lat":-49.755,"lon":-179.398},"level":0},{"id":5192342,"cvNumber":195,"coordinate":{"lat":-49.55,"lon":-148.137},"level":0},{"id":5266005,"cvNumber":209,"coordinate":{"lat":-49.011,"lon":-135.678},"level":0},{"id":5256402,"cvNumber":207,"coordinate":{"lat":-48.48,"lon":-135.923},"level":0},{"id":5430256,"cvNumber":238,"coordinate":{"lat":-50.106,"lon":-127.613},"level":0},{"id":5424675,"cvNumber":237,"coordinate":{"lat":-49.775,"lon":-127.663},"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":5353870,"cvNumber":225,"coordinate":{"lat":-49.872,"lon":-130.638},"level":0},{"id":5359470,"cvNumber":226,"coordinate":{"lat":-50.121,"lon":-130.526},"level":0},{"id":5435455,"cvNumber":239,"coordinate":{"lat":-50.145,"lon":-127.046},"level":0},{"id":5440694,"cvNumber":240,"coordinate":{"lat":-49.443,"lon":-126.542},"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":5408355,"cvNumber":234,"coordinate":{"lat":-49.315,"lon":-127.469},"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":5633559,"cvNumber":270,"coordinate":{"lat":-45.281,"lon":-125.796},"level":0},{"id":5450791,"cvNumber":242,"coordinate":{"lat":-49.097,"lon":-126.894},"level":0},{"id":5455570,"cvNumber":243,"coordinate":{"lat":-49.029,"lon":-126.666},"level":0},{"id":5445713,"cvNumber":241,"coordinate":{"lat":-49.165,"lon":-126.84},"level":0},{"id":5665662,"cvNumber":274,"coordinate":{"lat":-46.298,"lon":-124.95},"level":0},{"id":5672134,"cvNumber":275,"coordinate":{"lat":-46.48,"lon":-124.997},"level":0},{"id":5660242,"cvNumber":273,"coordinate":{"lat":-46.094,"lon":-125.013},"level":0},{"id":5466530,"cvNumber":245,"coordinate":{"lat":-49.14,"lon":-126.063},"level":0},{"id":5460981,"cvNumber":244,"coordinate":{"lat":-49.078,"lon":-126.489},"level":0},{"id":5608329,"cvNumber":265,"coordinate":{"lat":-45.385,"lon":-126.681},"level":0},{"id":5602926,"cvNumber":264,"coordinate":{"lat":-45.746,"lon":-126.664},"level":0},{"id":5592203,"cvNumber":262,"coordinate":{"lat":-46.655,"lon":-127.012},"level":0},{"id":5597470,"cvNumber":263,"coordinate":{"lat":-46.19,"lon":-126.789},"level":0},{"id":5505789,"cvNumber":249,"coordinate":{"lat":-49.177,"lon":-124.598},"level":0},{"id":5511406,"cvNumber":250,"coordinate":{"lat":-49.05,"lon":-124.741},"level":0},{"id":5481253,"cvNumber":248,"coordinate":{"lat":-49.347,"lon":-124.883},"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":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":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":5553842,"cvNumber":256,"coordinate":{"lat":-48.682,"lon":-125.503},"level":0},{"id":5559776,"cvNumber":257,"coordinate":{"lat":-48.315,"lon":-125.658},"level":0},{"id":5471526,"cvNumber":246,"coordinate":{"lat":-49.233,"lon":-125.893},"level":0},{"id":5476322,"cvNumber":247,"coordinate":{"lat":-49.383,"lon":-125.497},"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":5714459,"cvNumber":282,"coordinate":{"lat":-47.581,"lon":-127.313},"level":0},{"id":5613669,"cvNumber":266,"coordinate":{"lat":-45.143,"lon":-126.431},"level":0},{"id":5618729,"cvNumber":267,"coordinate":{"lat":-44.878,"lon":-126.189},"level":0},{"id":5705128,"cvNumber":281,"coordinate":{"lat":-47.572,"lon":-126.99},"level":0},{"id":5628401,"cvNumber":269,"coordinate":{"lat":-45.083,"lon":-125.988},"level":0},{"id":5699557,"cvNumber":280,"coordinate":{"lat":-47.503,"lon":-126.588},"level":0},{"id":5733876,"cvNumber":284,"coordinate":{"lat":-47.893,"lon":-127.83},"level":0},{"id":5729015,"cvNumber":283,"coordinate":{"lat":-47.657,"lon":-127.581},"level":0},{"id":5623526,"cvNumber":268,"coordinate":{"lat":-44.946,"lon":-126.022},"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":5565407,"cvNumber":258,"coordinate":{"lat":-47.855,"lon":-126.15},"level":0},{"id":5581532,"cvNumber":260,"coordinate":{"lat":-46.928,"lon":-126.895},"level":0},{"id":5587122,"cvNumber":261,"coordinate":{"lat":-46.894,"lon":-127.246},"level":0},{"id":5677502,"cvNumber":276,"coordinate":{"lat":-46.647,"lon":-125.142},"level":0},{"id":5683171,"cvNumber":277,"coordinate":{"lat":-46.915,"lon":-125.372},"level":0}] \ No newline at end of file diff --git a/argopy/tests/test_data/296c3b60bc8ba178ad98f1a9dfd3393f9f804cab19f1032fd759bf4f4758d5ce.ncHeader b/argopy/tests/test_data/296c3b60bc8ba178ad98f1a9dfd3393f9f804cab19f1032fd759bf4f4758d5ce.ncHeader index 6e7e7392..dbc48902 100644 --- a/argopy/tests/test_data/296c3b60bc8ba178ad98f1a9dfd3393f9f804cab19f1032fd759bf4f4758d5ce.ncHeader +++ b/argopy/tests/test_data/296c3b60bc8ba178ad98f1a9dfd3393f9f804cab19f1032fd759bf4f4758d5ce.ncHeader @@ -85,7 +85,7 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :long_name = "Quality on date and time"; char direction(row=998, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -110,7 +110,7 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :long_name = "Float cycle number"; int config_mission_number(row=998); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 2, 15; // int :colorBarMaximum = 100.0; // double @@ -120,7 +120,7 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :long_name = "Unique number denoting the missions performed by the float"; float bbp700(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.016987E-4f, 0.002435538f; // float :C_format = "%.7f"; @@ -134,13 +134,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :valid_min = NaNf; // float char bbp700_qc(row=998, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.016987E-4f, 0.002435538f; // float :C_format = "%.7f"; @@ -150,13 +150,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :units = "m-1"; char bbp700_adjusted_qc(row=998, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted_error(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.7f"; :FORTRAN_format = "F.7"; @@ -165,7 +165,7 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :units = "m-1"; float cdom(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.012117f, 1.562482f; // float :C_format = "%.3f"; @@ -179,13 +179,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :valid_min = NaNf; // float char cdom_qc(row=998, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -194,13 +194,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :units = "ppb"; char cdom_adjusted_qc(row=998, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted_error(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -209,7 +209,7 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :units = "ppb"; float chla(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.0438f, 0.5548f; // float :C_format = "%.4f"; @@ -224,13 +224,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :valid_min = NaNf; // float char chla_qc(row=998, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.0803f, 0.25915f; // float :C_format = "%.4f"; @@ -241,13 +241,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :units = "mg/m3"; char chla_adjusted_qc(row=998, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted_error(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -278,7 +278,7 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :actual_range = 99999.0f, 99999.0f; // float float downwelling_par(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.01326383f, 707.0339f; // float :C_format = "%.3f"; @@ -293,13 +293,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :valid_min = NaNf; // float char downwelling_par_qc(row=998, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -309,13 +309,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :units = "microMoleQuanta/m^2/sec"; char downwelling_par_adjusted_qc(row=998, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted_error(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -324,7 +324,7 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :units = "microMoleQuanta/m^2/sec"; float down_irradiance380(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.320905E-4f, 0.2058976f; // float :C_format = "%.6f"; @@ -338,13 +338,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :valid_min = NaNf; // float char down_irradiance380_qc(row=998, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -353,13 +353,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :units = "W/m^2/nm"; char down_irradiance380_adjusted_qc(row=998, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted_error(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -368,7 +368,7 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :units = "W/m^2/nm"; float down_irradiance412(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 6.83386E-5f, 0.3800927f; // float :C_format = "%.6f"; @@ -382,13 +382,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :valid_min = NaNf; // float char down_irradiance412_qc(row=998, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -397,13 +397,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :units = "W/m^2/nm"; char down_irradiance412_adjusted_qc(row=998, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted_error(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -412,7 +412,7 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :units = "W/m^2/nm"; float down_irradiance490(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.480935E-4f, 0.689051f; // float :C_format = "%.6f"; @@ -426,13 +426,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :valid_min = NaNf; // float char down_irradiance490_qc(row=998, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -441,13 +441,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :units = "W/m^2/nm"; char down_irradiance490_adjusted_qc(row=998, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted_error(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -456,7 +456,7 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :units = "W/m^2/nm"; float doxy(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1526.135f, 11356.0f; // float :C_format = "%.3f"; @@ -471,13 +471,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :valid_min = -5.0f; // float char doxy_qc(row=998, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1655.856f, 12321.26f; // float :C_format = "%.3f"; @@ -490,13 +490,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=998, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 10.54354f, 19.24935f; // float :C_format = "%.3f"; @@ -506,53 +506,29 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :units = "micromole/kg"; float ph_in_situ_total(row=998); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 8.054143f, 8.077708f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float char ph_in_situ_total_qc(row=998, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted(row=998); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float char ph_in_situ_total_adjusted_qc(row=998, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted_error(row=998); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float float pres(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float @@ -569,13 +545,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :valid_min = 0.0f; // float char pres_qc(row=998, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float :axis = "Z"; @@ -589,13 +565,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=998, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.0f, 2.004083f; // float :C_format = "%.3f"; @@ -605,7 +581,7 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :units = "decibar"; float psal(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.598f, 34.762f; // float :C_format = "%.4f"; @@ -620,13 +596,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :valid_min = 2.0f; // float char psal_qc(row=998, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.598f, 34.769f; // float :C_format = "%.4f"; @@ -639,13 +615,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=998, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.004f, 0.004f; // float :C_format = "%.4f"; @@ -655,7 +631,7 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :units = "psu"; float temp(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.918f, 3.395f; // float :C_format = "%.3f"; @@ -670,13 +646,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :valid_min = -2.5f; // float char temp_qc(row=998, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.918f, 3.395f; // float :C_format = "%.3f"; @@ -689,13 +665,13 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=998, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -722,9 +698,9 @@ netcdf ArgoFloats-synthetic-BGC_c9c0_a09d_7ad5.nc { :geospatial_lon_max = -47.119708333333335; // double :geospatial_lon_min = -53.414445; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:11:36Z (local files) -2024-08-23T08:11:36Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:32:14Z (local files) +2024-09-20T11:32:14Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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"; diff --git a/argopy/tests/test_data/2bc7b34edc2e090b601d17702fc0a18b70b34b00d3ceaec40873f78807da1d1e.ncHeader b/argopy/tests/test_data/2bc7b34edc2e090b601d17702fc0a18b70b34b00d3ceaec40873f78807da1d1e.ncHeader index be4b0afe..a8b84285 100644 --- a/argopy/tests/test_data/2bc7b34edc2e090b601d17702fc0a18b70b34b00d3ceaec40873f78807da1d1e.ncHeader +++ b/argopy/tests/test_data/2bc7b34edc2e090b601d17702fc0a18b70b34b00d3ceaec40873f78807da1d1e.ncHeader @@ -1,6 +1,6 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { dimensions: - row = 22688; + row = 22799; data_mode_strlen = 1; position_qc_strlen = 1; time_qc_strlen = 1; @@ -14,13 +14,13 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { temp_adjusted_qc_strlen = 1; psal_adjusted_qc_strlen = 1; variables: - char data_mode(row=22688, data_mode_strlen=1); + 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"; - double latitude(row=22688); + double latitude(row=22799); :_CoordinateAxisType = "Lat"; :_FillValue = 99999.0; // double :actual_range = 3.2E-4, 1.0; // double @@ -34,7 +34,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :valid_max = 90.0; // double :valid_min = -90.0; // double - double longitude(row=22688); + double longitude(row=22799); :_CoordinateAxisType = "Lon"; :_FillValue = 99999.0; // double :actual_range = -19.996963333333333, -16.009000000000015; // double @@ -48,7 +48,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :valid_max = 180.0; // double :valid_min = -180.0; // double - char position_qc(row=22688, position_qc_strlen=1); + char position_qc(row=22799, position_qc_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double @@ -56,9 +56,9 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :ioos_category = "Quality"; :long_name = "Quality on position (latitude and longitude)"; - double time(row=22688); + double time(row=22799); :_CoordinateAxisType = "Time"; - :actual_range = 8.7020658E8, 1.723668256E9; // double + :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"; @@ -66,7 +66,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :time_origin = "01-JAN-1970 00:00:00"; :units = "seconds since 1970-01-01T00:00:00Z"; - char time_qc(row=22688, time_qc_strlen=1); + char time_qc(row=22799, time_qc_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double @@ -74,7 +74,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :ioos_category = "Quality"; :long_name = "Quality on date and time"; - char direction(row=22688, direction_strlen=1); + char direction(row=22799, direction_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -82,14 +82,14 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :ioos_category = "Currents"; :long_name = "Direction of the station profiles"; - char platform_number(row=22688, platform_number_strlen=7); + 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"; - int cycle_number(row=22688); + int cycle_number(row=22799); :_FillValue = 99999; // int :actual_range = 0, 326; // int :cf_role = "profile_id"; @@ -99,7 +99,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :ioos_category = "Statistics"; :long_name = "Float cycle number"; - int config_mission_number(row=22688); + int config_mission_number(row=22799); :_FillValue = 99999; // int :actual_range = 1, 21; // int :colorBarMaximum = 100.0; // double @@ -108,13 +108,13 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :ioos_category = "Statistics"; :long_name = "Unique number denoting the missions performed by the float"; - char vertical_sampling_scheme(row=22688, vertical_sampling_scheme_strlen=209); + 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"; - float pres(row=22688); + float pres(row=22799); :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 100.0f; // float @@ -131,7 +131,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :valid_max = 12000.0f; // float :valid_min = 0.0f; // float - float temp(row=22688); + float temp(row=22799); :_FillValue = 99999.0f; // float :actual_range = 14.222f, 30.476f; // float :C_format = "%9.3f"; @@ -146,7 +146,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :valid_max = 40.0f; // float :valid_min = -2.5f; // float - float psal(row=22688); + float psal(row=22799); :_FillValue = 99999.0f; // float :actual_range = 0.0f, 41.972f; // float :C_format = "%9.3f"; @@ -161,7 +161,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :valid_max = 41.0f; // float :valid_min = 2.0f; // float - char pres_qc(row=22688, pres_qc_strlen=1); + char pres_qc(row=22799, pres_qc_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double @@ -169,7 +169,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :ioos_category = "Quality"; :long_name = "quality flag"; - char temp_qc(row=22688, temp_qc_strlen=1); + char temp_qc(row=22799, temp_qc_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double @@ -177,7 +177,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :ioos_category = "Quality"; :long_name = "quality flag"; - char psal_qc(row=22688, psal_qc_strlen=1); + char psal_qc(row=22799, psal_qc_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double @@ -185,7 +185,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :ioos_category = "Quality"; :long_name = "quality flag"; - float pres_adjusted(row=22688); + float pres_adjusted(row=22799); :_FillValue = 99999.0f; // float :actual_range = -1.1f, 100.0f; // float :axis = "Z"; @@ -200,7 +200,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :valid_max = 12000.0f; // float :valid_min = 0.0f; // float - float temp_adjusted(row=22688); + float temp_adjusted(row=22799); :_FillValue = 99999.0f; // float :actual_range = 14.222f, 30.476f; // float :C_format = "%9.3f"; @@ -214,7 +214,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :valid_max = 40.0f; // float :valid_min = -2.5f; // float - float psal_adjusted(row=22688); + float psal_adjusted(row=22799); :_FillValue = 99999.0f; // float :actual_range = 18.3306f, 36.8f; // float :C_format = "%9.3f"; @@ -228,7 +228,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :valid_max = 41.0f; // float :valid_min = 2.0f; // float - char pres_adjusted_qc(row=22688, pres_adjusted_qc_strlen=1); + char pres_adjusted_qc(row=22799, pres_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double @@ -236,7 +236,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :ioos_category = "Quality"; :long_name = "quality flag"; - char temp_adjusted_qc(row=22688, temp_adjusted_qc_strlen=1); + char temp_adjusted_qc(row=22799, temp_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double @@ -244,7 +244,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :ioos_category = "Quality"; :long_name = "quality flag"; - char psal_adjusted_qc(row=22688, psal_adjusted_qc_strlen=1); + char psal_adjusted_qc(row=22799, psal_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double @@ -252,7 +252,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :ioos_category = "Quality"; :long_name = "quality flag"; - float pres_adjusted_error(row=22688); + float pres_adjusted_error(row=22799); :_FillValue = 99999.0f; // float :actual_range = 2.001f, 5.0f; // float :C_format = "%7.1f"; @@ -263,7 +263,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; :units = "decibar"; - float temp_adjusted_error(row=22688); + float temp_adjusted_error(row=22799); :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.01f; // float :C_format = "%9.3f"; @@ -274,7 +274,7 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; :units = "degree_Celsius"; - float psal_adjusted_error(row=22688); + float psal_adjusted_error(row=22799); :_FillValue = 99999.0f; // float :actual_range = 0.004f, 0.08984f; // float :C_format = "%9.3f"; @@ -303,8 +303,8 @@ netcdf ArgoFloats_2cfc_0697_34dc.nc { :geospatial_lon_max = -16.009000000000015; // double :geospatial_lon_min = -19.996963333333333; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-22T12:04:42Z (local files) -2024-08-22T12:04:42Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude%3E=-20&longitude%3C=-16.0&latitude%3E=0&latitude%3C=1&pres%3E=0&pres%3C=100.0&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-20T09:18:24Z (local files) +2024-09-20T09:18:24Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude%3E=-20&longitude%3C=-16.0&latitude%3E=0&latitude%3C=1&pres%3E=0&pres%3C=100.0&distinct()&orderBy(%22time,pres%22)"; :id = "ArgoFloats"; :infoUrl = "https://argo.ucsd.edu/"; :institution = "Argo"; @@ -335,7 +335,7 @@ 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-08-14T20:44:16Z"; + :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"; diff --git a/argopy/tests/test_data/2c4bddae9401c2abf9fbb856d905b06e72db05b808a3c964f4ccbc182888c8d7.ncHeader b/argopy/tests/test_data/2c4bddae9401c2abf9fbb856d905b06e72db05b808a3c964f4ccbc182888c8d7.ncHeader index c2ea3e5e..05425d20 100644 --- a/argopy/tests/test_data/2c4bddae9401c2abf9fbb856d905b06e72db05b808a3c964f4ccbc182888c8d7.ncHeader +++ b/argopy/tests/test_data/2c4bddae9401c2abf9fbb856d905b06e72db05b808a3c964f4ccbc182888c8d7.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_0737_1fd6_0dc6.nc { :long_name = "Quality on date and time"; char direction(row=141, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_0737_1fd6_0dc6.nc { :long_name = "Float cycle number"; int config_mission_number(row=141); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 1; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_0737_1fd6_0dc6.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 157.9978f, 306.8305f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_0737_1fd6_0dc6.nc { :valid_min = -5.0f; // float char doxy_qc(row=141, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 172.5826f, 335.1566f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_0737_1fd6_0dc6.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=141, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.177477f, 10.0547f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_0737_1fd6_0dc6.nc { :units = "micromole/kg"; float pres(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 4.6f, 2005.1f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_0737_1fd6_0dc6.nc { :valid_min = 0.0f; // float char pres_qc(row=141, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 4.7f, 2005.1f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_0737_1fd6_0dc6.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=141, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.4f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_0737_1fd6_0dc6.nc { :units = "decibar"; float psal(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.715f, 34.745f; // float :C_format = "%.4f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_0737_1fd6_0dc6.nc { :valid_min = 2.0f; // float char psal_qc(row=141, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.72545f, 34.74495f; // float :C_format = "%.4f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_0737_1fd6_0dc6.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=141, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01f, 0.01158624f; // float :C_format = "%.4f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_0737_1fd6_0dc6.nc { :units = "psu"; float temp(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.576f, 4.475f; // float :C_format = "%.3f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_0737_1fd6_0dc6.nc { :valid_min = -2.5f; // float char temp_qc(row=141, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.576f, 4.475f; // float :C_format = "%.3f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_0737_1fd6_0dc6.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=141, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_0737_1fd6_0dc6.nc { :geospatial_lon_max = 149.71; // double :geospatial_lon_min = 144.484; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:04:48Z (local files) -2024-08-23T08:04:48Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&cycle_number=~%221%7C12%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:27:04Z (local files) +2024-09-20T11:27:04Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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"; diff --git a/argopy/tests/test_data/2dd1ce221e25128b947dacb8ea904de17ce1b12384f8aef909396aa8ae4c5957.json b/argopy/tests/test_data/2dd1ce221e25128b947dacb8ea904de17ce1b12384f8aef909396aa8ae4c5957.json index 21aae571..e4f16d53 100644 --- a/argopy/tests/test_data/2dd1ce221e25128b947dacb8ea904de17ce1b12384f8aef909396aa8ae4c5957.json +++ b/argopy/tests/test_data/2dd1ce221e25128b947dacb8ea904de17ce1b12384f8aef909396aa8ae4c5957.json @@ -1 +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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":"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":"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":"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_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":"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":337} \ No newline at end of file +{"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 index e69efc52..c71b7504 100644 --- a/argopy/tests/test_data/2e1d8835d1da66e42d095c30534b23959d1b22fda466b397f285025f138ec229.html +++ b/argopy/tests/test_data/2e1d8835d1da66e42d095c30534b23959d1b22fda466b397f285025f138ec229.html @@ -12,4 +12,4 @@
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/2ea500dbb9b752fd02afb0d600c6c412d52699689c59a985b2a303fa6cbfef3b.ncHeader b/argopy/tests/test_data/2ea500dbb9b752fd02afb0d600c6c412d52699689c59a985b2a303fa6cbfef3b.ncHeader index 085faad1..d7638c8a 100644 --- a/argopy/tests/test_data/2ea500dbb9b752fd02afb0d600c6c412d52699689c59a985b2a303fa6cbfef3b.ncHeader +++ b/argopy/tests/test_data/2ea500dbb9b752fd02afb0d600c6c412d52699689c59a985b2a303fa6cbfef3b.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_925f_8eb9_f114.nc { :long_name = "Quality on date and time"; char direction(row=70, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_925f_8eb9_f114.nc { :long_name = "Float cycle number"; int config_mission_number(row=70); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 1; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_925f_8eb9_f114.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 160.4252f, 303.8724f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_925f_8eb9_f114.nc { :valid_min = -5.0f; // float char doxy_qc(row=70, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 175.2335f, 331.919f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_925f_8eb9_f114.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=70, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.257005f, 9.957571f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_925f_8eb9_f114.nc { :units = "micromole/kg"; float pres(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 4.3f, 1999.6f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_925f_8eb9_f114.nc { :valid_min = 0.0f; // float char pres_qc(row=70, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 4.2f, 1999.5f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_925f_8eb9_f114.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=70, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.4f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_925f_8eb9_f114.nc { :units = "decibar"; float psal(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.852f, 34.74f; // float :C_format = "%.4f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_925f_8eb9_f114.nc { :valid_min = 2.0f; // float char psal_qc(row=70, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.85463f, 34.7401f; // float :C_format = "%.4f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_925f_8eb9_f114.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=70, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01f, 0.01f; // float :C_format = "%.4f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_925f_8eb9_f114.nc { :units = "psu"; float temp(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.158f, 4.301f; // float :C_format = "%.3f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_925f_8eb9_f114.nc { :valid_min = -2.5f; // float char temp_qc(row=70, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.158f, 4.301f; // float :C_format = "%.3f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_925f_8eb9_f114.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=70, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_925f_8eb9_f114.nc { :geospatial_lon_max = 161.893; // double :geospatial_lon_min = 161.893; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:04:46Z (local files) -2024-08-23T08:04:46Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&cycle_number=~%2234%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:27:02Z (local files) +2024-09-20T11:27:02Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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"; diff --git a/argopy/tests/test_data/32d1c5feaaf75f908ea8573410a390871d6a6e44770cfb84141edb49a133f118.json b/argopy/tests/test_data/32d1c5feaaf75f908ea8573410a390871d6a6e44770cfb84141edb49a133f118.json index 0d974d0b..c9002df9 100644 --- a/argopy/tests/test_data/32d1c5feaaf75f908ea8573410a390871d6a6e44770cfb84141edb49a133f118.json +++ b/argopy/tests/test_data/32d1c5feaaf75f908ea8573410a390871d6a6e44770cfb84141edb49a133f118.json @@ -291,6 +291,37 @@ }, "@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", @@ -1538,6 +1569,9 @@ { "@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/" }, @@ -1634,8 +1668,8 @@ "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": "7", - "dc:date": "2024-04-26 03:00:10.0", + "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", diff --git a/argopy/tests/test_data/3390b51587135ad525d8886aaaac3ed55587b5e4a76004671fc568166beb5670.json b/argopy/tests/test_data/3390b51587135ad525d8886aaaac3ed55587b5e4a76004671fc568166beb5670.json index 9294d768..1d825b4d 100644 --- a/argopy/tests/test_data/3390b51587135ad525d8886aaaac3ed55587b5e4a76004671fc568166beb5670.json +++ b/argopy/tests/test_data/3390b51587135ad525d8886aaaac3ed55587b5e4a76004671fc568166beb5670.json @@ -21,7 +21,7 @@ ["", "", "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 (Julian 1950 time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Measurement latitude, degrees_north)\nlongitude (Measurement longitude, degrees_east)\nTIME_QC (Quality flag)\nJULD_QC (Quality flag)\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 (Uncertainty, PSU)\nTEMP_UNCERTAINTY (Uncertainty, degree_Celsius)\nCNDC_UNCERTAINTY (Uncertainty, mhos/m)\nPRES_UNCERTAINTY (Uncertainty, decibar)\nMOLAR_DOXY (Uncompensated (pressure and salinity) oxygen concentration reported by the oxygen sensor, micromole/l)\nTEMP_DOXY (Sea temperature from oxygen sensor ITS-90 scale, degree_Celsius)\nBPHASE_DOXY\nDPHASE_DOXY\nRPHASE_DOXY\nMOLAR_DOXY_QC (Quality flag)\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/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"], diff --git a/argopy/tests/test_data/347252dde63598d6f080f178f0cb55686b25d3147cb4e079835f858b5cfed3e1.nc b/argopy/tests/test_data/347252dde63598d6f080f178f0cb55686b25d3147cb4e079835f858b5cfed3e1.nc index 1104357c..b5234173 100644 Binary files a/argopy/tests/test_data/347252dde63598d6f080f178f0cb55686b25d3147cb4e079835f858b5cfed3e1.nc and b/argopy/tests/test_data/347252dde63598d6f080f178f0cb55686b25d3147cb4e079835f858b5cfed3e1.nc differ diff --git a/argopy/tests/test_data/37b4fe616c2f98f48939f6dd7e69b4d52ebb965d9b5fddd9091c0898b4acd73a.nc b/argopy/tests/test_data/37b4fe616c2f98f48939f6dd7e69b4d52ebb965d9b5fddd9091c0898b4acd73a.nc index bd926d97..0f8d3798 100644 Binary files a/argopy/tests/test_data/37b4fe616c2f98f48939f6dd7e69b4d52ebb965d9b5fddd9091c0898b4acd73a.nc and b/argopy/tests/test_data/37b4fe616c2f98f48939f6dd7e69b4d52ebb965d9b5fddd9091c0898b4acd73a.nc differ diff --git a/argopy/tests/test_data/39355008875080930830ce994ccec162ba924d3570b3e703acb32bfb2fe0f009.json b/argopy/tests/test_data/39355008875080930830ce994ccec162ba924d3570b3e703acb32bfb2fe0f009.json index e25d73b9..338e7abe 100644 --- a/argopy/tests/test_data/39355008875080930830ce994ccec162ba924d3570b3e703acb32bfb2fe0f009.json +++ b/argopy/tests/test_data/39355008875080930830ce994ccec162ba924d3570b3e703acb32bfb2fe0f009.json @@ -21,7 +21,7 @@ ["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-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile))"], + ["attribute", "NC_GLOBAL", "history", "String", "2024-09-17T15:18:19Z 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"], @@ -38,13 +38,13 @@ ["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-08-20T08:33:20Z"], + ["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", "133, 4"], + ["attribute", "wmo_inst_type", "_ChunkSizes", "int", "42, 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"], @@ -55,13 +55,13 @@ ["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.724156076E9"], + ["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", "133, 64"], + ["attribute", "pi_name", "_ChunkSizes", "int", "42, 64"], ["attribute", "pi_name", "ioos_category", "String", "Identifier"], ["attribute", "pi_name", "long_name", "String", "Name of the principal investigator"], ["variable", "bbp470", "", "float", ""], @@ -92,7 +92,7 @@ ["variable", "bbp532_adjusted_qc", "", "String", ""], ["variable", "bbp532_adjusted_error", "", "float", ""], ["variable", "bbp700", "", "float", ""], - ["attribute", "bbp700", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "bbp700", "_ChunkSizes", "int", "42, 751"], ["attribute", "bbp700", "_FillValue", "float", "99999.0"], ["attribute", "bbp700", "actual_range", "float", "-1.550486E7, 1.146227E33"], ["attribute", "bbp700", "C_format", "String", "%.7f"], @@ -105,11 +105,11 @@ ["attribute", "bbp700", "valid_max", "float", "NaN"], ["attribute", "bbp700", "valid_min", "float", "NaN"], ["variable", "bbp700_qc", "", "String", ""], - ["attribute", "bbp700_qc", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "bbp700_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "bbp700_adjusted", "_ChunkSizes", "int", "42, 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"], @@ -118,11 +118,11 @@ ["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", "133, 1591"], + ["attribute", "bbp700_adjusted_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "bbp700_adjusted_error", "_ChunkSizes", "int", "42, 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"], @@ -145,7 +145,7 @@ ["variable", "bbp700_2_adjusted_error", "", "float", ""], ["variable", "bisulfide", "", "float", ""], ["attribute", "bisulfide", "_FillValue", "float", "99999.0"], - ["attribute", "bisulfide", "actual_range", "float", "-3.086484, 376.5333"], + ["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"], @@ -157,7 +157,7 @@ ["variable", "bisulfide_adjusted_qc", "", "String", ""], ["variable", "bisulfide_adjusted_error", "", "float", ""], ["variable", "cdom", "", "float", ""], - ["attribute", "cdom", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "cdom", "_ChunkSizes", "int", "42, 751"], ["attribute", "cdom", "_FillValue", "float", "99999.0"], ["attribute", "cdom", "actual_range", "float", "-24.8148, 64808.86"], ["attribute", "cdom", "C_format", "String", "%.3f"], @@ -170,11 +170,11 @@ ["attribute", "cdom", "valid_max", "float", "NaN"], ["attribute", "cdom", "valid_min", "float", "NaN"], ["variable", "cdom_qc", "", "String", ""], - ["attribute", "cdom_qc", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "cdom_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "cdom_adjusted", "_ChunkSizes", "int", "42, 751"], ["attribute", "cdom_adjusted", "_FillValue", "float", "99999.0"], ["attribute", "cdom_adjusted", "C_format", "String", "%.3f"], ["attribute", "cdom_adjusted", "FORTRAN_format", "String", "F.3"], @@ -182,11 +182,11 @@ ["attribute", "cdom_adjusted", "resolution", "float", "0.001"], ["attribute", "cdom_adjusted", "units", "String", "ppb"], ["variable", "cdom_adjusted_qc", "", "String", ""], - ["attribute", "cdom_adjusted_qc", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "cdom_adjusted_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "cdom_adjusted_error", "_ChunkSizes", "int", "42, 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"], @@ -194,7 +194,7 @@ ["attribute", "cdom_adjusted_error", "resolution", "float", "0.001"], ["attribute", "cdom_adjusted_error", "units", "String", "ppb"], ["variable", "chla", "", "float", ""], - ["attribute", "chla", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "chla", "_ChunkSizes", "int", "42, 751"], ["attribute", "chla", "_FillValue", "float", "99999.0"], ["attribute", "chla", "actual_range", "float", "-4.9608, 33553.33"], ["attribute", "chla", "C_format", "String", "%.4f"], @@ -208,11 +208,11 @@ ["attribute", "chla", "valid_max", "float", "NaN"], ["attribute", "chla", "valid_min", "float", "NaN"], ["variable", "chla_qc", "", "String", ""], - ["attribute", "chla_qc", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "chla_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "chla_adjusted", "_ChunkSizes", "int", "42, 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"], @@ -222,11 +222,11 @@ ["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", "133, 1591"], + ["attribute", "chla_adjusted_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "chla_adjusted_error", "_ChunkSizes", "int", "42, 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"], @@ -260,7 +260,7 @@ ["variable", "cp660_adjusted_qc", "", "String", ""], ["variable", "cp660_adjusted_error", "", "float", ""], ["variable", "downwelling_par", "", "float", ""], - ["attribute", "downwelling_par", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "downwelling_par", "_ChunkSizes", "int", "42, 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"], @@ -274,11 +274,11 @@ ["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", "133, 1591"], + ["attribute", "downwelling_par_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "downwelling_par_adjusted", "_ChunkSizes", "int", "42, 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"], @@ -288,11 +288,11 @@ ["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", "133, 1591"], + ["attribute", "downwelling_par_adjusted_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "downwelling_par_adjusted_error", "_ChunkSizes", "int", "42, 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"], @@ -301,7 +301,7 @@ ["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", "133, 1591"], + ["attribute", "down_irradiance380", "_ChunkSizes", "int", "42, 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"], @@ -314,24 +314,24 @@ ["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", "133, 1591"], + ["attribute", "down_irradiance380_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "down_irradiance380_adjusted", "_ChunkSizes", "int", "42, 751"], ["attribute", "down_irradiance380_adjusted", "_FillValue", "float", "99999.0"], - ["attribute", "down_irradiance380_adjusted", "actual_range", "float", "-9.246055E-5, 1.332115"], + ["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", "133, 1591"], + ["attribute", "down_irradiance380_adjusted_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "down_irradiance380_adjusted_error", "_ChunkSizes", "int", "42, 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"], @@ -340,7 +340,7 @@ ["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", "133, 1591"], + ["attribute", "down_irradiance412", "_ChunkSizes", "int", "42, 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"], @@ -353,11 +353,11 @@ ["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", "133, 1591"], + ["attribute", "down_irradiance412_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "down_irradiance412_adjusted", "_ChunkSizes", "int", "42, 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"], @@ -366,11 +366,11 @@ ["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", "133, 1591"], + ["attribute", "down_irradiance412_adjusted_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "down_irradiance412_adjusted_error", "_ChunkSizes", "int", "42, 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"], @@ -392,7 +392,7 @@ ["variable", "down_irradiance443_adjusted_qc", "", "String", ""], ["variable", "down_irradiance443_adjusted_error", "", "float", ""], ["variable", "down_irradiance490", "", "float", ""], - ["attribute", "down_irradiance490", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "down_irradiance490", "_ChunkSizes", "int", "42, 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"], @@ -405,11 +405,11 @@ ["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", "133, 1591"], + ["attribute", "down_irradiance490_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "down_irradiance490_adjusted", "_ChunkSizes", "int", "42, 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"], @@ -418,11 +418,11 @@ ["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", "133, 1591"], + ["attribute", "down_irradiance490_adjusted_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "down_irradiance490_adjusted_error", "_ChunkSizes", "int", "42, 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"], @@ -432,7 +432,7 @@ ["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.832466"], + ["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"], @@ -470,7 +470,7 @@ ["variable", "down_irradiance670_adjusted_qc", "", "String", ""], ["variable", "down_irradiance670_adjusted_error", "", "float", ""], ["variable", "doxy", "", "float", ""], - ["attribute", "doxy", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "doxy", "_ChunkSizes", "int", "42, 751"], ["attribute", "doxy", "_FillValue", "float", "99999.0"], ["attribute", "doxy", "actual_range", "float", "-1.505E8, 3.83667E7"], ["attribute", "doxy", "C_format", "String", "%.3f"], @@ -484,11 +484,11 @@ ["attribute", "doxy", "valid_max", "float", "600.0"], ["attribute", "doxy", "valid_min", "float", "-5.0"], ["variable", "doxy_qc", "", "String", ""], - ["attribute", "doxy_qc", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "doxy_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "doxy_adjusted", "_ChunkSizes", "int", "42, 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"], @@ -500,11 +500,11 @@ ["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", "133, 1591"], + ["attribute", "doxy_adjusted_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "doxy_adjusted_error", "_ChunkSizes", "int", "42, 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"], @@ -543,89 +543,37 @@ ["variable", "doxy3_adjusted_error", "", "float", ""], ["attribute", "doxy3_adjusted_error", "actual_range", "float", "8.0, 9.0"], ["variable", "nitrate", "", "float", ""], - ["attribute", "nitrate", "_ChunkSizes", "int", "133, 1591"], ["attribute", "nitrate", "_FillValue", "float", "99999.0"], ["attribute", "nitrate", "actual_range", "float", "-2440.82, 2203.922"], - ["attribute", "nitrate", "C_format", "String", "%.3f"], ["attribute", "nitrate", "cf_standard_name", "String", "moles_of_nitrate_per_unit_mass_in_sea_water"], - ["attribute", "nitrate", "FORTRAN_format", "String", "F.3"], ["attribute", "nitrate", "long_name", "String", "Nitrate"], - ["attribute", "nitrate", "resolution", "float", "0.001"], ["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"], ["attribute", "nitrate", "valid_max", "float", "NaN"], ["attribute", "nitrate", "valid_min", "float", "NaN"], ["variable", "nitrate_qc", "", "String", ""], - ["attribute", "nitrate_qc", "_ChunkSizes", "int", "133, 1591"], - ["attribute", "nitrate_qc", "conventions", "String", "Argo reference table 2"], - ["attribute", "nitrate_qc", "long_name", "String", "quality flag"], ["variable", "nitrate_adjusted", "", "float", ""], - ["attribute", "nitrate_adjusted", "_ChunkSizes", "int", "133, 1591"], - ["attribute", "nitrate_adjusted", "_FillValue", "float", "99999.0"], - ["attribute", "nitrate_adjusted", "actual_range", "float", "-393.3362, 521.4208"], - ["attribute", "nitrate_adjusted", "C_format", "String", "%.3f"], - ["attribute", "nitrate_adjusted", "FORTRAN_format", "String", "F.3"], - ["attribute", "nitrate_adjusted", "long_name", "String", "Nitrate"], - ["attribute", "nitrate_adjusted", "resolution", "float", "0.001"], - ["attribute", "nitrate_adjusted", "standard_name", "String", "moles_of_nitrate_per_unit_mass_in_sea_water"], - ["attribute", "nitrate_adjusted", "units", "String", "micromole/kg"], + ["attribute", "nitrate_adjusted", "actual_range", "float", "-393.3362, 557.9073"], ["variable", "nitrate_adjusted_qc", "", "String", ""], - ["attribute", "nitrate_adjusted_qc", "_ChunkSizes", "int", "133, 1591"], - ["attribute", "nitrate_adjusted_qc", "conventions", "String", "Argo reference table 2"], - ["attribute", "nitrate_adjusted_qc", "long_name", "String", "quality flag"], ["variable", "nitrate_adjusted_error", "", "float", ""], - ["attribute", "nitrate_adjusted_error", "_ChunkSizes", "int", "133, 1591"], - ["attribute", "nitrate_adjusted_error", "_FillValue", "float", "99999.0"], ["attribute", "nitrate_adjusted_error", "actual_range", "float", "-1.115299, 10001.9"], - ["attribute", "nitrate_adjusted_error", "C_format", "String", "%.3f"], - ["attribute", "nitrate_adjusted_error", "FORTRAN_format", "String", "F.3"], - ["attribute", "nitrate_adjusted_error", "long_name", "String", "Contains the error on the adjusted values as determined by the delayed mode QC process"], - ["attribute", "nitrate_adjusted_error", "resolution", "float", "0.001"], - ["attribute", "nitrate_adjusted_error", "units", "String", "micromole/kg"], ["variable", "ph_in_situ_total", "", "float", ""], - ["attribute", "ph_in_situ_total", "_ChunkSizes", "int", "133, 1591"], ["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", "C_format", "String", "%.4f"], ["attribute", "ph_in_situ_total", "cf_standard_name", "String", "sea_water_ph_reported_on_total_scale"], - ["attribute", "ph_in_situ_total", "FORTRAN_format", "String", "F.4"], ["attribute", "ph_in_situ_total", "long_name", "String", "pH"], - ["attribute", "ph_in_situ_total", "resolution", "float", "1.0E-4"], ["attribute", "ph_in_situ_total", "sdn_parameter_urn", "String", "SDN:P01::PHMASSXX"], - ["attribute", "ph_in_situ_total", "standard_name", "String", "sea_water_ph_reported_on_total_scale"], ["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", ""], - ["attribute", "ph_in_situ_total_qc", "_ChunkSizes", "int", "133, 1591"], - ["attribute", "ph_in_situ_total_qc", "conventions", "String", "Argo reference table 2"], - ["attribute", "ph_in_situ_total_qc", "long_name", "String", "quality flag"], ["variable", "ph_in_situ_total_adjusted", "", "float", ""], - ["attribute", "ph_in_situ_total_adjusted", "_ChunkSizes", "int", "133, 1591"], - ["attribute", "ph_in_situ_total_adjusted", "_FillValue", "float", "99999.0"], ["attribute", "ph_in_situ_total_adjusted", "actual_range", "float", "-714.0168, 1352.24"], - ["attribute", "ph_in_situ_total_adjusted", "C_format", "String", "%.4f"], - ["attribute", "ph_in_situ_total_adjusted", "FORTRAN_format", "String", "F.4"], - ["attribute", "ph_in_situ_total_adjusted", "long_name", "String", "pH"], - ["attribute", "ph_in_situ_total_adjusted", "resolution", "float", "1.0E-4"], - ["attribute", "ph_in_situ_total_adjusted", "standard_name", "String", "sea_water_ph_reported_on_total_scale"], - ["attribute", "ph_in_situ_total_adjusted", "units", "String", "dimensionless"], ["variable", "ph_in_situ_total_adjusted_qc", "", "String", ""], - ["attribute", "ph_in_situ_total_adjusted_qc", "_ChunkSizes", "int", "133, 1591"], - ["attribute", "ph_in_situ_total_adjusted_qc", "conventions", "String", "Argo reference table 2"], - ["attribute", "ph_in_situ_total_adjusted_qc", "long_name", "String", "quality flag"], ["variable", "ph_in_situ_total_adjusted_error", "", "float", ""], - ["attribute", "ph_in_situ_total_adjusted_error", "_ChunkSizes", "int", "133, 1591"], - ["attribute", "ph_in_situ_total_adjusted_error", "_FillValue", "float", "99999.0"], - ["attribute", "ph_in_situ_total_adjusted_error", "actual_range", "float", "-0.05696383, 160.0384"], - ["attribute", "ph_in_situ_total_adjusted_error", "C_format", "String", "%.4f"], - ["attribute", "ph_in_situ_total_adjusted_error", "FORTRAN_format", "String", "F.4"], - ["attribute", "ph_in_situ_total_adjusted_error", "long_name", "String", "Contains the error on the adjusted values as determined by the delayed mode QC process"], - ["attribute", "ph_in_situ_total_adjusted_error", "resolution", "float", "1.0E-4"], - ["attribute", "ph_in_situ_total_adjusted_error", "units", "String", "dimensionless"], + ["attribute", "ph_in_situ_total_adjusted_error", "actual_range", "float", "-0.05696383, 160.0694"], ["variable", "pres", "", "float", ""], - ["attribute", "pres", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "pres", "_ChunkSizes", "int", "42, 751"], ["attribute", "pres", "_CoordinateAxisType", "String", "Height"], ["attribute", "pres", "_FillValue", "float", "99999.0"], ["attribute", "pres", "actual_range", "float", "-5.3, 10000.0"], @@ -641,11 +589,11 @@ ["attribute", "pres", "valid_max", "float", "12000.0"], ["attribute", "pres", "valid_min", "float", "0.0"], ["variable", "pres_qc", "", "String", ""], - ["attribute", "pres_qc", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "pres_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "pres_adjusted", "_ChunkSizes", "int", "42, 751"], ["attribute", "pres_adjusted", "_FillValue", "float", "99999.0"], ["attribute", "pres_adjusted", "actual_range", "float", "-557.6254, 10000.5"], ["attribute", "pres_adjusted", "axis", "String", "Z"], @@ -658,11 +606,11 @@ ["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", "133, 1591"], + ["attribute", "pres_adjusted_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "pres_adjusted_error", "_ChunkSizes", "int", "42, 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"], @@ -671,7 +619,7 @@ ["attribute", "pres_adjusted_error", "resolution", "float", "0.001"], ["attribute", "pres_adjusted_error", "units", "String", "decibar"], ["variable", "psal", "", "float", ""], - ["attribute", "psal", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "psal", "_ChunkSizes", "int", "42, 751"], ["attribute", "psal", "_FillValue", "float", "99999.0"], ["attribute", "psal", "actual_range", "float", "-249.898, 175.11"], ["attribute", "psal", "C_format", "String", "%.4f"], @@ -685,11 +633,11 @@ ["attribute", "psal", "valid_max", "float", "41.0"], ["attribute", "psal", "valid_min", "float", "2.0"], ["variable", "psal_qc", "", "String", ""], - ["attribute", "psal_qc", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "psal_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "psal_adjusted", "_ChunkSizes", "int", "42, 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"], @@ -701,11 +649,11 @@ ["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", "133, 1591"], + ["attribute", "psal_adjusted_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "psal_adjusted_error", "_ChunkSizes", "int", "42, 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"], @@ -714,7 +662,7 @@ ["attribute", "psal_adjusted_error", "resolution", "float", "1.0E-4"], ["attribute", "psal_adjusted_error", "units", "String", "psu"], ["variable", "temp", "", "float", ""], - ["attribute", "temp", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "temp", "_ChunkSizes", "int", "42, 751"], ["attribute", "temp", "_FillValue", "float", "99999.0"], ["attribute", "temp", "actual_range", "float", "-9.9, 693233.6"], ["attribute", "temp", "C_format", "String", "%.3f"], @@ -728,11 +676,11 @@ ["attribute", "temp", "valid_max", "float", "40.0"], ["attribute", "temp", "valid_min", "float", "-2.5"], ["variable", "temp_qc", "", "String", ""], - ["attribute", "temp_qc", "_ChunkSizes", "int", "133, 1591"], + ["attribute", "temp_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "temp_adjusted", "_ChunkSizes", "int", "42, 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"], @@ -744,11 +692,11 @@ ["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", "133, 1591"], + ["attribute", "temp_adjusted_qc", "_ChunkSizes", "int", "42, 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", "133, 1591"], + ["attribute", "temp_adjusted_error", "_ChunkSizes", "int", "42, 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"], @@ -855,7 +803,7 @@ ["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.7241428E9"], + ["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"], @@ -871,7 +819,7 @@ ["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", "133"], + ["attribute", "direction", "_ChunkSizes", "int", "42"], ["attribute", "direction", "colorBarMaximum", "double", "360.0"], ["attribute", "direction", "colorBarMinimum", "double", "0.0"], ["attribute", "direction", "conventions", "String", "A: ascending profiles, D: descending profiles"], @@ -883,7 +831,7 @@ ["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", "133, 32"], + ["attribute", "platform_type", "_ChunkSizes", "int", "42, 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"], @@ -896,7 +844,7 @@ ["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", "133"], + ["attribute", "config_mission_number", "_ChunkSizes", "int", "42"], ["attribute", "config_mission_number", "_FillValue", "int", "99999"], ["attribute", "config_mission_number", "actual_range", "int", "-1, 999"], ["attribute", "config_mission_number", "colorBarMaximum", "double", "100.0"], @@ -905,7 +853,7 @@ ["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", "133, 2"], + ["attribute", "data_centre", "_ChunkSizes", "int", "42, 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"], @@ -922,7 +870,7 @@ ["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", "133"], + ["attribute", "profile_bbp700_qc", "_ChunkSizes", "int", "42"], ["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"], @@ -933,14 +881,14 @@ ["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", "133"], + ["attribute", "profile_cdom_qc", "_ChunkSizes", "int", "42"], ["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", "133"], + ["attribute", "profile_chla_qc", "_ChunkSizes", "int", "42"], ["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"], @@ -983,14 +931,14 @@ ["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", "133"], + ["attribute", "profile_downwelling_par_qc", "_ChunkSizes", "int", "42"], ["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", "133"], + ["attribute", "profile_doxy_qc", "_ChunkSizes", "int", "42"], ["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"], @@ -1005,35 +953,29 @@ ["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", "_ChunkSizes", "int", "133"], ["attribute", "profile_nitrate_qc", "colorBarMaximum", "double", "150.0"], ["attribute", "profile_nitrate_qc", "colorBarMinimum", "double", "0.0"], - ["attribute", "profile_nitrate_qc", "conventions", "String", "Argo reference table 2a"], ["attribute", "profile_nitrate_qc", "ioos_category", "String", "Quality"], - ["attribute", "profile_nitrate_qc", "long_name", "String", "Global quality flag of NITRATE profile"], ["variable", "profile_ph_in_situ_total_qc", "", "String", ""], - ["attribute", "profile_ph_in_situ_total_qc", "_ChunkSizes", "int", "133"], ["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", "conventions", "String", "Argo reference table 2a"], ["attribute", "profile_ph_in_situ_total_qc", "ioos_category", "String", "Quality"], - ["attribute", "profile_ph_in_situ_total_qc", "long_name", "String", "Global quality flag of PH_IN_SITU_TOTAL profile"], ["variable", "profile_pres_qc", "", "String", ""], - ["attribute", "profile_pres_qc", "_ChunkSizes", "int", "133"], + ["attribute", "profile_pres_qc", "_ChunkSizes", "int", "42"], ["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", "133"], + ["attribute", "profile_psal_qc", "_ChunkSizes", "int", "42"], ["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", "133"], + ["attribute", "profile_temp_qc", "_ChunkSizes", "int", "42"], ["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"], diff --git a/argopy/tests/test_data/3958d42fb2f0ac5a77a5eb8d63044251f65e9185f1827a7b5467d9feb9a85e7b.nc b/argopy/tests/test_data/3958d42fb2f0ac5a77a5eb8d63044251f65e9185f1827a7b5467d9feb9a85e7b.nc index 86541a98..653c7d41 100644 Binary files a/argopy/tests/test_data/3958d42fb2f0ac5a77a5eb8d63044251f65e9185f1827a7b5467d9feb9a85e7b.nc and b/argopy/tests/test_data/3958d42fb2f0ac5a77a5eb8d63044251f65e9185f1827a7b5467d9feb9a85e7b.nc differ diff --git a/argopy/tests/test_data/3a34c7adc3d711dd8b0f8aad7c4674124011f2119c6f4e78d71df1c34f7f6606.nc b/argopy/tests/test_data/3a34c7adc3d711dd8b0f8aad7c4674124011f2119c6f4e78d71df1c34f7f6606.nc index d9211a4c..23ea9c6d 100644 Binary files a/argopy/tests/test_data/3a34c7adc3d711dd8b0f8aad7c4674124011f2119c6f4e78d71df1c34f7f6606.nc and b/argopy/tests/test_data/3a34c7adc3d711dd8b0f8aad7c4674124011f2119c6f4e78d71df1c34f7f6606.nc differ diff --git a/argopy/tests/test_data/3c0d46e0e115812606b9796f2d51a57b2ef226bd4c046afb67d2dc617c0ee6dd.json b/argopy/tests/test_data/3c0d46e0e115812606b9796f2d51a57b2ef226bd4c046afb67d2dc617c0ee6dd.json index c0526861..228ce7c5 100644 --- a/argopy/tests/test_data/3c0d46e0e115812606b9796f2d51a57b2ef226bd4c046afb67d2dc617c0ee6dd.json +++ b/argopy/tests/test_data/3c0d46e0e115812606b9796f2d51a57b2ef226bd4c046afb67d2dc617c0ee6dd.json @@ -1 +1 @@ -{"schemaVersion": 1, "label": "Argo BGC profiles", "message": "?" } +{"schemaVersion": 1, "label": "Argo BGC profiles", "message": "324367" } diff --git a/argopy/tests/test_data/3c16609cd4c11dda82abcb41f3a501ddc15c502e80507c41417fa61daa712b51.nc b/argopy/tests/test_data/3c16609cd4c11dda82abcb41f3a501ddc15c502e80507c41417fa61daa712b51.nc index a82dd269..416068fc 100644 Binary files a/argopy/tests/test_data/3c16609cd4c11dda82abcb41f3a501ddc15c502e80507c41417fa61daa712b51.nc and b/argopy/tests/test_data/3c16609cd4c11dda82abcb41f3a501ddc15c502e80507c41417fa61daa712b51.nc differ diff --git a/argopy/tests/test_data/3d6aa407feabc6128d30f54845ff1d78012f0e05a5e791bcf7ed21dedd551a2c.nc b/argopy/tests/test_data/3d6aa407feabc6128d30f54845ff1d78012f0e05a5e791bcf7ed21dedd551a2c.nc index d78463e9..08615ede 100644 Binary files a/argopy/tests/test_data/3d6aa407feabc6128d30f54845ff1d78012f0e05a5e791bcf7ed21dedd551a2c.nc and b/argopy/tests/test_data/3d6aa407feabc6128d30f54845ff1d78012f0e05a5e791bcf7ed21dedd551a2c.nc differ diff --git a/argopy/tests/test_data/3d7710fcb9c3dab5ddca509245504a1434dc5d56c4da86cd1ca57e181895e9df.ncHeader b/argopy/tests/test_data/3d7710fcb9c3dab5ddca509245504a1434dc5d56c4da86cd1ca57e181895e9df.ncHeader index 4775586e..29a120f0 100644 --- a/argopy/tests/test_data/3d7710fcb9c3dab5ddca509245504a1434dc5d56c4da86cd1ca57e181895e9df.ncHeader +++ b/argopy/tests/test_data/3d7710fcb9c3dab5ddca509245504a1434dc5d56c4da86cd1ca57e181895e9df.ncHeader @@ -1,6 +1,6 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { dimensions: - row = 29907; + row = 30120; data_mode_strlen = 1; position_qc_strlen = 1; time_qc_strlen = 1; @@ -14,13 +14,13 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { temp_adjusted_qc_strlen = 1; psal_adjusted_qc_strlen = 1; variables: - char data_mode(row=29907, data_mode_strlen=1); + char data_mode(row=30120, 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"; - double latitude(row=29907); + double latitude(row=30120); :_CoordinateAxisType = "Lat"; :_FillValue = 99999.0; // double :actual_range = 40.00062, 44.96799850463867; // double @@ -34,7 +34,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :valid_max = 90.0; // double :valid_min = -90.0; // double - double longitude(row=29907); + double longitude(row=30120); :_CoordinateAxisType = "Lon"; :_FillValue = 99999.0; // double :actual_range = -59.99700927734375, -55.00059509277344; // double @@ -48,7 +48,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :valid_max = 180.0; // double :valid_min = -180.0; // double - char position_qc(row=29907, position_qc_strlen=1); + char position_qc(row=30120, position_qc_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double @@ -56,9 +56,9 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :ioos_category = "Quality"; :long_name = "Quality on position (latitude and longitude)"; - double time(row=29907); + double time(row=30120); :_CoordinateAxisType = "Time"; - :actual_range = 1.00546218E9, 1.724312726E9; // double + :actual_range = 1.00546218E9, 1.72658226E9; // double :axis = "T"; :ioos_category = "Time"; :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; @@ -66,7 +66,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :time_origin = "01-JAN-1970 00:00:00"; :units = "seconds since 1970-01-01T00:00:00Z"; - char time_qc(row=29907, time_qc_strlen=1); + char time_qc(row=30120, time_qc_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double @@ -74,7 +74,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :ioos_category = "Quality"; :long_name = "Quality on date and time"; - char direction(row=29907, direction_strlen=1); + char direction(row=30120, direction_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -82,16 +82,16 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :ioos_category = "Currents"; :long_name = "Direction of the station profiles"; - char platform_number(row=29907, platform_number_strlen=7); + char platform_number(row=30120, 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"; - int cycle_number(row=29907); + int cycle_number(row=30120); :_FillValue = 99999; // int - :actual_range = 0, 875; // int + :actual_range = 0, 879; // int :cf_role = "profile_id"; :colorBarMaximum = 200.0; // double :colorBarMinimum = 0.0; // double @@ -99,7 +99,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :ioos_category = "Statistics"; :long_name = "Float cycle number"; - int config_mission_number(row=29907); + int config_mission_number(row=30120); :_FillValue = 99999; // int :actual_range = -1, 538976288; // int :colorBarMaximum = 100.0; // double @@ -108,13 +108,13 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :ioos_category = "Statistics"; :long_name = "Unique number denoting the missions performed by the float"; - char vertical_sampling_scheme(row=29907, vertical_sampling_scheme_strlen=212); + char vertical_sampling_scheme(row=30120, vertical_sampling_scheme_strlen=212); :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 16"; :ioos_category = "Unknown"; :long_name = "Vertical sampling scheme"; - float pres(row=29907); + float pres(row=30120); :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 20.0f; // float @@ -131,7 +131,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :valid_max = 12000.0f; // float :valid_min = 0.0f; // float - float temp(row=29907); + float temp(row=30120); :_FillValue = 99999.0f; // float :actual_range = -0.41f, 60.472f; // float :C_format = "%9.3f"; @@ -146,7 +146,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :valid_max = 40.0f; // float :valid_min = -2.5f; // float - float psal(row=29907); + float psal(row=30120); :_FillValue = 99999.0f; // float :actual_range = 0.065f, 74.521f; // float :C_format = "%9.3f"; @@ -161,7 +161,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :valid_max = 41.0f; // float :valid_min = 2.0f; // float - char pres_qc(row=29907, pres_qc_strlen=1); + char pres_qc(row=30120, pres_qc_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double @@ -169,7 +169,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :ioos_category = "Quality"; :long_name = "quality flag"; - char temp_qc(row=29907, temp_qc_strlen=1); + char temp_qc(row=30120, temp_qc_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double @@ -177,7 +177,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :ioos_category = "Quality"; :long_name = "quality flag"; - char psal_qc(row=29907, psal_qc_strlen=1); + char psal_qc(row=30120, psal_qc_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double @@ -185,7 +185,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :ioos_category = "Quality"; :long_name = "quality flag"; - float pres_adjusted(row=29907); + float pres_adjusted(row=30120); :_FillValue = 99999.0f; // float :actual_range = 0.0f, 20.7f; // float :axis = "Z"; @@ -200,7 +200,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :valid_max = 12000.0f; // float :valid_min = 0.0f; // float - float temp_adjusted(row=29907); + float temp_adjusted(row=30120); :_FillValue = 99999.0f; // float :actual_range = -0.41f, 32.782f; // float :C_format = "%9.3f"; @@ -214,7 +214,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :valid_max = 40.0f; // float :valid_min = -2.5f; // float - float psal_adjusted(row=29907); + float psal_adjusted(row=30120); :_FillValue = 99999.0f; // float :actual_range = 0.116f, 36.77397f; // float :C_format = "%9.3f"; @@ -228,7 +228,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :valid_max = 41.0f; // float :valid_min = 2.0f; // float - char pres_adjusted_qc(row=29907, pres_adjusted_qc_strlen=1); + char pres_adjusted_qc(row=30120, pres_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double @@ -236,7 +236,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :ioos_category = "Quality"; :long_name = "quality flag"; - char temp_adjusted_qc(row=29907, temp_adjusted_qc_strlen=1); + char temp_adjusted_qc(row=30120, temp_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double @@ -244,7 +244,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :ioos_category = "Quality"; :long_name = "quality flag"; - char psal_adjusted_qc(row=29907, psal_adjusted_qc_strlen=1); + char psal_adjusted_qc(row=30120, psal_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double @@ -252,7 +252,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :ioos_category = "Quality"; :long_name = "quality flag"; - float pres_adjusted_error(row=29907); + float pres_adjusted_error(row=30120); :_FillValue = 99999.0f; // float :actual_range = 2.4f, 20.0f; // float :C_format = "%7.1f"; @@ -263,7 +263,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; :units = "decibar"; - float temp_adjusted_error(row=29907); + float temp_adjusted_error(row=30120); :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.01f; // float :C_format = "%9.3f"; @@ -274,7 +274,7 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; :units = "degree_Celsius"; - float psal_adjusted_error(row=29907); + float psal_adjusted_error(row=30120); :_FillValue = 99999.0f; // float :actual_range = 0.004f, 0.25234f; // float :C_format = "%9.3f"; @@ -303,8 +303,8 @@ netcdf ArgoFloats_5586_a326_ffcc.nc { :geospatial_lon_max = -55.00059509277344; // double :geospatial_lon_min = -59.99700927734375; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-22T12:05:50Z (local files) -2024-08-22T12:05:50Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude%3E=-60&longitude%3C=-55&latitude%3E=40.0&latitude%3C=45.0&pres%3E=0.0&pres%3C=20.0&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-20T09:19:56Z (local files) +2024-09-20T09:19:56Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude%3E=-60&longitude%3C=-55&latitude%3E=40.0&latitude%3C=45.0&pres%3E=0.0&pres%3C=20.0&distinct()&orderBy(%22time,pres%22)"; :id = "ArgoFloats"; :infoUrl = "https://argo.ucsd.edu/"; :institution = "Argo"; @@ -335,7 +335,7 @@ 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-08-22T07:45:26Z"; + :time_coverage_end = "2024-09-17T14:11:00Z"; :time_coverage_start = "2001-11-11T07:03:00Z"; :title = "Argo Float Measurements"; :user_manual_version = "3.1"; diff --git a/argopy/tests/test_data/3e3f92db448873a6f28b69c1d89d1b128bf44f383d5fbe31411316c478282ba9.ncHeader b/argopy/tests/test_data/3e3f92db448873a6f28b69c1d89d1b128bf44f383d5fbe31411316c478282ba9.ncHeader index 0785eeaa..47093d17 100644 --- a/argopy/tests/test_data/3e3f92db448873a6f28b69c1d89d1b128bf44f383d5fbe31411316c478282ba9.ncHeader +++ b/argopy/tests/test_data/3e3f92db448873a6f28b69c1d89d1b128bf44f383d5fbe31411316c478282ba9.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_ee01_aeaf_cae7.nc { :long_name = "Quality on date and time"; char direction(row=141, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_ee01_aeaf_cae7.nc { :long_name = "Float cycle number"; int config_mission_number(row=141); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 1; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_ee01_aeaf_cae7.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 157.9978f, 306.8305f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_ee01_aeaf_cae7.nc { :valid_min = -5.0f; // float char doxy_qc(row=141, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 172.5826f, 335.1566f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_ee01_aeaf_cae7.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=141, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.177477f, 10.0547f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_ee01_aeaf_cae7.nc { :units = "micromole/kg"; float pres(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 4.6f, 2005.1f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_ee01_aeaf_cae7.nc { :valid_min = 0.0f; // float char pres_qc(row=141, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 4.7f, 2005.1f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_ee01_aeaf_cae7.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=141, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.4f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_ee01_aeaf_cae7.nc { :units = "decibar"; float psal(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.715f, 34.745f; // float :C_format = "%.4f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_ee01_aeaf_cae7.nc { :valid_min = 2.0f; // float char psal_qc(row=141, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.72545f, 34.74495f; // float :C_format = "%.4f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_ee01_aeaf_cae7.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=141, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01f, 0.01158624f; // float :C_format = "%.4f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_ee01_aeaf_cae7.nc { :units = "psu"; float temp(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.576f, 4.475f; // float :C_format = "%.3f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_ee01_aeaf_cae7.nc { :valid_min = -2.5f; // float char temp_qc(row=141, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.576f, 4.475f; // float :C_format = "%.3f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_ee01_aeaf_cae7.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=141, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_ee01_aeaf_cae7.nc { :geospatial_lon_max = 149.71; // double :geospatial_lon_min = 144.484; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:09:14Z (local files) -2024-08-23T08:09:14Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&cycle_number=~%221%7C12%22&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:29:58Z (local files) +2024-09-20T11:29:58Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&cycle_number=~%221%7C12%22&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; :id = "https://doi.org/10.17882/42182"; :infoUrl = "http://www.argodatamgt.org/Documentation"; :institution = "Argo"; diff --git a/argopy/tests/test_data/3e96e7c1df4044a0b2f0425301e780e3d7db9aaee244868badff3115d5d71b83.ncHeader b/argopy/tests/test_data/3e96e7c1df4044a0b2f0425301e780e3d7db9aaee244868badff3115d5d71b83.ncHeader index 21313f66..207cd49e 100644 --- a/argopy/tests/test_data/3e96e7c1df4044a0b2f0425301e780e3d7db9aaee244868badff3115d5d71b83.ncHeader +++ b/argopy/tests/test_data/3e96e7c1df4044a0b2f0425301e780e3d7db9aaee244868badff3115d5d71b83.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_47bc_997a_e35a.nc { :long_name = "Quality on date and time"; char direction(row=998, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_47bc_997a_e35a.nc { :long_name = "Float cycle number"; int config_mission_number(row=998); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 2, 15; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_47bc_997a_e35a.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1526.135f, 11356.0f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_47bc_997a_e35a.nc { :valid_min = -5.0f; // float char doxy_qc(row=998, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1655.856f, 12321.26f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_47bc_997a_e35a.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=998, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 10.54354f, 19.24935f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_47bc_997a_e35a.nc { :units = "micromole/kg"; float pres(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_47bc_997a_e35a.nc { :valid_min = 0.0f; // float char pres_qc(row=998, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_47bc_997a_e35a.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=998, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.0f, 2.004083f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_47bc_997a_e35a.nc { :units = "decibar"; float temp(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.918f, 3.395f; // float :C_format = "%.3f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_47bc_997a_e35a.nc { :valid_min = -2.5f; // float char temp_qc(row=998, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.918f, 3.395f; // float :C_format = "%.3f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_47bc_997a_e35a.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=998, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_47bc_997a_e35a.nc { :units = "degree_Celsius"; float psal(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.598f, 34.762f; // float :C_format = "%.4f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_47bc_997a_e35a.nc { :valid_min = 2.0f; // float char psal_qc(row=998, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.598f, 34.769f; // float :C_format = "%.4f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_47bc_997a_e35a.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=998, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=998); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.004f, 0.004f; // float :C_format = "%.4f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_47bc_997a_e35a.nc { :geospatial_lon_max = -47.119708333333335; // double :geospatial_lon_min = -53.414445; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:12:47Z (local files) -2024-08-23T08:12:47Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:33:27Z (local files) +2024-09-20T11:33:27Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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"; diff --git a/argopy/tests/test_data/4079371c713ae21beb2b6141495eb9815bdfd06dc2021c049fd301a7a63a74aa.ncHeader b/argopy/tests/test_data/4079371c713ae21beb2b6141495eb9815bdfd06dc2021c049fd301a7a63a74aa.ncHeader index 3dcb2190..31658304 100644 --- a/argopy/tests/test_data/4079371c713ae21beb2b6141495eb9815bdfd06dc2021c049fd301a7a63a74aa.ncHeader +++ b/argopy/tests/test_data/4079371c713ae21beb2b6141495eb9815bdfd06dc2021c049fd301a7a63a74aa.ncHeader @@ -1,6 +1,6 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { dimensions: - row = 121713; + row = 124600; direction_strlen = 1; platform_number_strlen = 7; doxy_qc_strlen = 1; @@ -12,7 +12,7 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { psal_qc_strlen = 1; psal_adjusted_qc_strlen = 1; variables: - double latitude(row=121713); + double latitude(row=124600); :_CoordinateAxisType = "Lat"; :_FillValue = 99999.0; // double :actual_range = 57.097543166666675, 62.656471833333335; // double @@ -26,7 +26,7 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { :valid_max = 90.0; // double :valid_min = -90.0; // double - double longitude(row=121713); + double longitude(row=124600); :_CoordinateAxisType = "Lon"; :_FillValue = 99999.0; // double :actual_range = -51.75795016666666, -30.635311333333334; // double @@ -40,16 +40,16 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { :valid_max = 180.0; // double :valid_min = -180.0; // double - char position_qc(row=121713); + char position_qc(row=124600); :actual_range = "11"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double :conventions = "Argo reference table 2"; :long_name = "Quality on position (latitude and longitude)"; - double time(row=121713); + double time(row=124600); :_CoordinateAxisType = "Time"; - :actual_range = 1.653144082985E9, 1.724335911038E9; // double + :actual_range = 1.653144082985E9, 1.726063791038E9; // double :axis = "T"; :conventions = "Relative julian days with decimal part (as parts of day)"; :ioos_category = "Time"; @@ -59,15 +59,15 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { :time_origin = "01-JAN-1970 00:00:00"; :units = "seconds since 1970-01-01T00:00:00Z"; - char time_qc(row=121713); + char time_qc(row=124600); :actual_range = "11"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double :conventions = "Argo reference table 2"; :long_name = "Quality on date and time"; - char direction(row=121713, direction_strlen=1); - :_ChunkSizes = 133; // int + char direction(row=124600, direction_strlen=1); + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -75,24 +75,24 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { :ioos_category = "Currents"; :long_name = "Direction of the station profiles"; - char platform_number(row=121713, platform_number_strlen=7); + char platform_number(row=124600, 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"; - int cycle_number(row=121713); + int cycle_number(row=124600); :_FillValue = 99999; // int - :actual_range = 1, 85; // int + :actual_range = 1, 87; // 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"; - int config_mission_number(row=121713); - :_ChunkSizes = 133; // int + int config_mission_number(row=124600); + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 16; // int :colorBarMaximum = 100.0; // double @@ -101,8 +101,8 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { :ioos_category = "Statistics"; :long_name = "Unique number denoting the missions performed by the float"; - float doxy(row=121713); - :_ChunkSizes = 133, 1591; // int + float doxy(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 217.6861f, 341.608f; // float :C_format = "%.3f"; @@ -116,14 +116,14 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { :valid_max = 600.0f; // float :valid_min = -5.0f; // float - char doxy_qc(row=121713, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char doxy_qc(row=124600, doxy_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float doxy_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int + float doxy_adjusted(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 231.0956f, 362.6511f; // float :C_format = "%.3f"; @@ -135,24 +135,24 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { :valid_max = 600.0f; // float :valid_min = -5.0f; // float - char doxy_adjusted_qc(row=121713, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char doxy_adjusted_qc(row=124600, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float doxy_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // int + float doxy_adjusted_error(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float - :actual_range = 12.56249f, 17.35151f; // 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"; - float pres(row=121713); - :_ChunkSizes = 133, 1591; // int + float pres(row=124600); + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = -0.29f, 2011.203f; // float @@ -168,14 +168,14 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { :valid_max = 12000.0f; // float :valid_min = 0.0f; // float - char pres_qc(row=121713, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char pres_qc(row=124600, pres_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float pres_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int + float pres_adjusted(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.181f, 2006.433f; // float :axis = "Z"; @@ -188,14 +188,14 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { :valid_max = 12000.0f; // float :valid_min = 0.0f; // float - char pres_adjusted_qc(row=121713, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char pres_adjusted_qc(row=124600, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float pres_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // int + float pres_adjusted_error(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -203,8 +203,8 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { :resolution = 0.001f; // float :units = "decibar"; - float temp(row=121713); - :_ChunkSizes = 133, 1591; // int + float temp(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.124f, 11.983f; // float :C_format = "%.3f"; @@ -218,14 +218,14 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { :valid_max = 40.0f; // float :valid_min = -2.5f; // float - char temp_qc(row=121713, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char temp_qc(row=124600, temp_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float temp_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int + float temp_adjusted(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.12f, 11.983f; // float :C_format = "%.3f"; @@ -237,14 +237,14 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { :valid_max = 40.0f; // float :valid_min = -2.5f; // float - char temp_adjusted_qc(row=121713, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char temp_adjusted_qc(row=124600, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float temp_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // int + float temp_adjusted_error(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -252,8 +252,8 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { :resolution = 0.001f; // float :units = "degree_Celsius"; - float psal(row=121713); - :_ChunkSizes = 133, 1591; // int + float psal(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.488f, 35.137f; // float :C_format = "%.4f"; @@ -267,14 +267,14 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { :valid_max = 41.0f; // float :valid_min = 2.0f; // float - char psal_qc(row=121713, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char psal_qc(row=124600, psal_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float psal_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int + float psal_adjusted(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.13953f, 35.1359f; // float :C_format = "%.4f"; @@ -286,14 +286,14 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { :valid_max = 41.0f; // float :valid_min = 2.0f; // float - char psal_adjusted_qc(row=121713, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char psal_adjusted_qc(row=124600, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float psal_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // int + float psal_adjusted_error(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -319,9 +319,9 @@ netcdf ArgoFloats-synthetic-BGC_2a02_0c85_0305.nc { :geospatial_lon_max = -30.635311333333334; // double :geospatial_lon_min = -51.75795016666666; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:07:02Z (local files) -2024-08-23T08:07:02Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~%226904240%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:27:37Z (local files) +2024-09-20T11:27:37Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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"; @@ -344,7 +344,7 @@ completeness, or usefulness, of this information."; :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-08-22T14:11:51Z"; + :time_coverage_end = "2024-09-11T14:09:51Z"; :time_coverage_start = "2022-05-21T14:41:22Z"; :title = "Argo float synthetic vertical profiles : BGC data"; :user_manual_version = "1.0"; diff --git a/argopy/tests/test_data/40fd4997660cf5b89a50139c7b931810371acb774849aa4f4c170669a1a3f8a5.nc b/argopy/tests/test_data/40fd4997660cf5b89a50139c7b931810371acb774849aa4f4c170669a1a3f8a5.nc index e7bf9d00..9703b532 100644 Binary files a/argopy/tests/test_data/40fd4997660cf5b89a50139c7b931810371acb774849aa4f4c170669a1a3f8a5.nc and b/argopy/tests/test_data/40fd4997660cf5b89a50139c7b931810371acb774849aa4f4c170669a1a3f8a5.nc differ diff --git a/argopy/tests/test_data/41845d3a93d737f5845ff42678732da5d8dffd8c9fef68a0132ab66f85c579dc.ncHeader b/argopy/tests/test_data/41845d3a93d737f5845ff42678732da5d8dffd8c9fef68a0132ab66f85c579dc.ncHeader index 22b3b911..b5cd65a4 100644 --- a/argopy/tests/test_data/41845d3a93d737f5845ff42678732da5d8dffd8c9fef68a0132ab66f85c579dc.ncHeader +++ b/argopy/tests/test_data/41845d3a93d737f5845ff42678732da5d8dffd8c9fef68a0132ab66f85c579dc.ncHeader @@ -87,7 +87,7 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :long_name = "Quality on date and time"; char direction(row=83, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -112,7 +112,7 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :long_name = "Float cycle number"; int config_mission_number(row=83); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 7; // int :colorBarMaximum = 100.0; // double @@ -122,7 +122,7 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :long_name = "Unique number denoting the missions performed by the float"; float bbp700(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.427302E-4f, 0.005720566f; // float :C_format = "%.7f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :valid_min = NaNf; // float char bbp700_qc(row=83, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.427302E-4f, 0.005720566f; // float :C_format = "%.7f"; @@ -152,13 +152,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :units = "m-1"; char bbp700_adjusted_qc(row=83, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted_error(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.7f"; :FORTRAN_format = "F.7"; @@ -167,7 +167,7 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :units = "m-1"; float cdom(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.5069667f, 0.6356f; // float :C_format = "%.3f"; @@ -181,13 +181,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :valid_min = NaNf; // float char cdom_qc(row=83, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -196,13 +196,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :units = "ppb"; char cdom_adjusted_qc(row=83, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted_error(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -211,7 +211,7 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :units = "ppb"; float chla(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.0219f, 7.396806f; // float :C_format = "%.4f"; @@ -226,13 +226,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :valid_min = NaNf; // float char chla_qc(row=83, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.00365f, 1.396125f; // float :C_format = "%.4f"; @@ -243,13 +243,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :units = "mg/m3"; char chla_adjusted_qc(row=83, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted_error(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -280,7 +280,7 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :actual_range = 99999.0f, 99999.0f; // float float downwelling_par(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.2024502f, 333.1479f; // float :C_format = "%.3f"; @@ -295,13 +295,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :valid_min = NaNf; // float char downwelling_par_qc(row=83, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -311,13 +311,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :units = "microMoleQuanta/m^2/sec"; char downwelling_par_adjusted_qc(row=83, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted_error(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -326,7 +326,7 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :units = "microMoleQuanta/m^2/sec"; float down_irradiance380(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.397621E-4f, 0.08281219f; // float :C_format = "%.6f"; @@ -340,13 +340,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :valid_min = NaNf; // float char down_irradiance380_qc(row=83, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -355,13 +355,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :units = "W/m^2/nm"; char down_irradiance380_adjusted_qc(row=83, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted_error(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -370,7 +370,7 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :units = "W/m^2/nm"; float down_irradiance412(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 6.100766E-4f, 0.2214915f; // float :C_format = "%.6f"; @@ -384,13 +384,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :valid_min = NaNf; // float char down_irradiance412_qc(row=83, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -399,13 +399,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :units = "W/m^2/nm"; char down_irradiance412_adjusted_qc(row=83, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted_error(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -414,7 +414,7 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :units = "W/m^2/nm"; float down_irradiance490(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.470069E-4f, 0.5381957f; // float :C_format = "%.6f"; @@ -428,13 +428,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :valid_min = NaNf; // float char down_irradiance490_qc(row=83, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -443,13 +443,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :units = "W/m^2/nm"; char down_irradiance490_adjusted_qc(row=83, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted_error(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -458,7 +458,7 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :units = "W/m^2/nm"; float doxy(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 273.0065f, 336.6577f; // float :C_format = "%.3f"; @@ -473,13 +473,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :valid_min = -5.0f; // float char doxy_qc(row=83, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 289.8237f, 357.3958f; // float :C_format = "%.3f"; @@ -492,13 +492,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=83, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 13.73871f, 15.24438f; // float :C_format = "%.3f"; @@ -508,101 +508,51 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :units = "micromole/kg"; float nitrate(row=83); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 2.467793f, 18.00161f; // float - :C_format = "%.3f"; :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :FORTRAN_format = "F.3"; :long_name = "Nitrate"; - :resolution = 0.001f; // float :sdn_parameter_urn = "SDN:P01::MDMAP005"; - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; :units = "micromole/kg"; :valid_max = NaNf; // float :valid_min = NaNf; // float char nitrate_qc(row=83, nitrate_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted(row=83); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float :actual_range = 0.2774979f, 15.69237f; // float - :C_format = "%.3f"; - :FORTRAN_format = "F.3"; - :long_name = "Nitrate"; - :resolution = 0.001f; // float - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :units = "micromole/kg"; char nitrate_adjusted_qc(row=83, nitrate_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted_error(row=83); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float :actual_range = 5.0f, 5.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 = "micromole/kg"; float ph_in_situ_total(row=83); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 5.735233f, 8.074761f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float char ph_in_situ_total_qc(row=83, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted(row=83); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float char ph_in_situ_total_adjusted_qc(row=83, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted_error(row=83); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float float pres(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 2.2f, 292.1f; // float @@ -619,13 +569,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :valid_min = 0.0f; // float char pres_qc(row=83, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.05f, 290.8111f; // float :axis = "Z"; @@ -639,13 +589,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=83, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -654,7 +604,7 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :units = "decibar"; float psal(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.194f, 34.84285f; // float :C_format = "%.4f"; @@ -669,13 +619,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :valid_min = 2.0f; // float char psal_qc(row=83, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.15514f, 34.84213f; // float :C_format = "%.4f"; @@ -688,13 +638,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=83, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -703,7 +653,7 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :units = "psu"; float temp(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.293306f, 9.370089f; // float :C_format = "%.3f"; @@ -718,13 +668,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :valid_min = -2.5f; // float char temp_qc(row=83, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.301745f, 9.372142f; // float :C_format = "%.3f"; @@ -737,13 +687,13 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=83, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=83); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -769,9 +719,9 @@ netcdf ArgoFloats-synthetic-BGC_575a_19b5_2479.nc { :geospatial_lon_max = -48.020473666666675; // double :geospatial_lon_min = -50.42435333333333; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:09:06Z (local files) -2024-08-23T08:09:06Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%226904240%22&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:29:49Z (local files) +2024-09-20T11:29:49Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%226904240%22&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; :id = "https://doi.org/10.17882/42182"; :infoUrl = "http://www.argodatamgt.org/Documentation"; :institution = "Argo"; diff --git a/argopy/tests/test_data/42b50394f9d7ae7d8677901958611a17e7c73870504361aa6b4dab7b90e4ce5d.ncHeader b/argopy/tests/test_data/42b50394f9d7ae7d8677901958611a17e7c73870504361aa6b4dab7b90e4ce5d.ncHeader index 61f2f0f9..892505f7 100644 --- a/argopy/tests/test_data/42b50394f9d7ae7d8677901958611a17e7c73870504361aa6b4dab7b90e4ce5d.ncHeader +++ b/argopy/tests/test_data/42b50394f9d7ae7d8677901958611a17e7c73870504361aa6b4dab7b90e4ce5d.ncHeader @@ -96,8 +96,8 @@ netcdf ArgoFloats-reference_0d8f_0936_95dc.nc { :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-08-22T12:05:23Z (local files) -2024-08-22T12:05:23Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.nc?latitude,longitude,time,platform_number,cycle_number,pres,temp,psal,ptmp&longitude%3E=-25&longitude%3C=-10&latitude%3E=36&latitude%3C=40&pres%3E=0&pres%3C=10.0&distinct()&orderBy(%22time,pres%22)"; +2024-09-20T09:19:21Z (local files) +2024-09-20T09:19:21Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.nc?latitude,longitude,time,platform_number,cycle_number,pres,temp,psal,ptmp&longitude%3E=-25&longitude%3C=-10&latitude%3E=36&latitude%3C=40&pres%3E=0&pres%3C=10.0&distinct()&orderBy(%22time,pres%22)"; :id = "ArgoFloats-reference"; :infoUrl = "http://www.argodatamgt.org/DMQC/Reference-data-base"; :institution = "Argo"; diff --git a/argopy/tests/test_data/4381d1587f5d53b090a9a115dd77e69cb83f4a8ea6bdd9e29fc69dd36070dd6e.ncHeader b/argopy/tests/test_data/4381d1587f5d53b090a9a115dd77e69cb83f4a8ea6bdd9e29fc69dd36070dd6e.ncHeader index 09553a7c..7e8679e1 100644 --- a/argopy/tests/test_data/4381d1587f5d53b090a9a115dd77e69cb83f4a8ea6bdd9e29fc69dd36070dd6e.ncHeader +++ b/argopy/tests/test_data/4381d1587f5d53b090a9a115dd77e69cb83f4a8ea6bdd9e29fc69dd36070dd6e.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_1f0c_5393_35fe.nc { :long_name = "Quality on date and time"; char direction(row=141, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_1f0c_5393_35fe.nc { :long_name = "Float cycle number"; int config_mission_number(row=141); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 1; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_1f0c_5393_35fe.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 159.7738f, 309.8683f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_1f0c_5393_35fe.nc { :valid_min = -5.0f; // float char doxy_qc(row=141, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 174.5238f, 338.4748f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_1f0c_5393_35fe.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=141, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.235715f, 10.15425f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_1f0c_5393_35fe.nc { :units = "micromole/kg"; float pres(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 4.6f, 2001.9f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_1f0c_5393_35fe.nc { :valid_min = 0.0f; // float char pres_qc(row=141, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 4.8f, 2002.1f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_1f0c_5393_35fe.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=141, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.4f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_1f0c_5393_35fe.nc { :units = "decibar"; float temp(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.053f, 2.246f; // float :C_format = "%.3f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_1f0c_5393_35fe.nc { :valid_min = -2.5f; // float char temp_qc(row=141, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.054f, 2.246f; // float :C_format = "%.3f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_1f0c_5393_35fe.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=141, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_1f0c_5393_35fe.nc { :units = "degree_Celsius"; float psal(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.738f, 34.745f; // float :C_format = "%.4f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_1f0c_5393_35fe.nc { :valid_min = 2.0f; // float char psal_qc(row=141, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.73788f, 34.74495f; // float :C_format = "%.4f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_1f0c_5393_35fe.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=141, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01f, 0.01f; // float :C_format = "%.4f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_1f0c_5393_35fe.nc { :geospatial_lon_max = 149.71; // double :geospatial_lon_min = 149.635; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:07:17Z (local files) -2024-08-23T08:07:17Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~%225903248%22&cycle_number=~%2212%7C13%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:27:50Z (local files) +2024-09-20T11:27:50Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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"; diff --git a/argopy/tests/test_data/442c404a3a8c39fdb023df1022c3ea3d44aa19ad4f5bf26563f9d55a6ab9fe53.html b/argopy/tests/test_data/442c404a3a8c39fdb023df1022c3ea3d44aa19ad4f5bf26563f9d55a6ab9fe53.html index 4c505138..afa588b4 100644 --- a/argopy/tests/test_data/442c404a3a8c39fdb023df1022c3ea3d44aa19ad4f5bf26563f9d55a6ab9fe53.html +++ b/argopy/tests/test_data/442c404a3a8c39fdb023df1022c3ea3d44aa19ad4f5bf26563f9d55a6ab9fe53.html @@ -13,4 +13,4 @@
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/44b40e93c90a6f895ad18418f8150b43e504812c8fc5f4db7d6146225709a786.nc b/argopy/tests/test_data/44b40e93c90a6f895ad18418f8150b43e504812c8fc5f4db7d6146225709a786.nc index ceb4ffc8..e30fa6ec 100644 Binary files a/argopy/tests/test_data/44b40e93c90a6f895ad18418f8150b43e504812c8fc5f4db7d6146225709a786.nc and b/argopy/tests/test_data/44b40e93c90a6f895ad18418f8150b43e504812c8fc5f4db7d6146225709a786.nc differ diff --git a/argopy/tests/test_data/44cd4faa933a86d8833096fc987432a596715c33db7b44cdd140d9b8b5308295.nc b/argopy/tests/test_data/44cd4faa933a86d8833096fc987432a596715c33db7b44cdd140d9b8b5308295.nc index e1da843a..ec3a46ae 100644 Binary files a/argopy/tests/test_data/44cd4faa933a86d8833096fc987432a596715c33db7b44cdd140d9b8b5308295.nc and b/argopy/tests/test_data/44cd4faa933a86d8833096fc987432a596715c33db7b44cdd140d9b8b5308295.nc differ diff --git a/argopy/tests/test_data/45754a9104f96f5ec071d4b93de1f1bb596a469292e31ceb9675b36f07493556.ncHeader b/argopy/tests/test_data/45754a9104f96f5ec071d4b93de1f1bb596a469292e31ceb9675b36f07493556.ncHeader index 2f59cc7b..2f995eb0 100644 --- a/argopy/tests/test_data/45754a9104f96f5ec071d4b93de1f1bb596a469292e31ceb9675b36f07493556.ncHeader +++ b/argopy/tests/test_data/45754a9104f96f5ec071d4b93de1f1bb596a469292e31ceb9675b36f07493556.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_0d4a_b224_7e6b.nc { :long_name = "Quality on date and time"; char direction(row=83615, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_0d4a_b224_7e6b.nc { :long_name = "Float cycle number"; int config_mission_number(row=83615); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 12; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_0d4a_b224_7e6b.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 259.8413f, 344.439f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_0d4a_b224_7e6b.nc { :valid_min = -5.0f; // float char doxy_qc(row=83615, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 264.4146f, 350.5012f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_0d4a_b224_7e6b.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=83615, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 12.55041f, 17.08033f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_0d4a_b224_7e6b.nc { :units = "micromole/kg"; float pres(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = -0.29f, 2005.056f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_0d4a_b224_7e6b.nc { :valid_min = 0.0f; // float char pres_qc(row=83615, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.054f, 2003.352f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_0d4a_b224_7e6b.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=83615, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -204,7 +204,7 @@ netcdf ArgoFloats-synthetic-BGC_0d4a_b224_7e6b.nc { :units = "decibar"; float temp(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.139f, 12.609f; // float :C_format = "%.3f"; @@ -219,13 +219,13 @@ netcdf ArgoFloats-synthetic-BGC_0d4a_b224_7e6b.nc { :valid_min = -2.5f; // float char temp_qc(row=83615, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.139f, 12.609f; // float :C_format = "%.3f"; @@ -238,13 +238,13 @@ netcdf ArgoFloats-synthetic-BGC_0d4a_b224_7e6b.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=83615, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -253,7 +253,7 @@ netcdf ArgoFloats-synthetic-BGC_0d4a_b224_7e6b.nc { :units = "degree_Celsius"; float psal(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 27.411f, 34.936f; // float :C_format = "%.4f"; @@ -268,13 +268,13 @@ netcdf ArgoFloats-synthetic-BGC_0d4a_b224_7e6b.nc { :valid_min = 2.0f; // float char psal_qc(row=83615, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.20806f, 34.93495f; // float :C_format = "%.4f"; @@ -287,13 +287,13 @@ netcdf ArgoFloats-synthetic-BGC_0d4a_b224_7e6b.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=83615, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -319,9 +319,9 @@ netcdf ArgoFloats-synthetic-BGC_0d4a_b224_7e6b.nc { :geospatial_lon_max = -43.740898; // double :geospatial_lon_min = -53.10385516666667; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:07:09Z (local files) -2024-08-23T08:07:09Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~%226904241%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:27:45Z (local files) +2024-09-20T11:27:45Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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"; diff --git a/argopy/tests/test_data/45c022974dcc6a475b2659026de56e6ddf8158507975b77b4fcf8d63ed00ed83.ncHeader b/argopy/tests/test_data/45c022974dcc6a475b2659026de56e6ddf8158507975b77b4fcf8d63ed00ed83.ncHeader index f8cb42ec..f5981b53 100644 --- a/argopy/tests/test_data/45c022974dcc6a475b2659026de56e6ddf8158507975b77b4fcf8d63ed00ed83.ncHeader +++ b/argopy/tests/test_data/45c022974dcc6a475b2659026de56e6ddf8158507975b77b4fcf8d63ed00ed83.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_aa64_28a9_333d.nc { :long_name = "Quality on date and time"; char direction(row=26107, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_aa64_28a9_333d.nc { :long_name = "Float cycle number"; int config_mission_number(row=26107); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 1; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_aa64_28a9_333d.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.358001f, 322.7896f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_aa64_28a9_333d.nc { :valid_min = -5.0f; // float char doxy_qc(row=26107, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 167.5023f, 352.5889f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_aa64_28a9_333d.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=26107, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.025068f, 16.03393f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_aa64_28a9_333d.nc { :units = "micromole/kg"; float pres(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 3.4f, 2009.7f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_aa64_28a9_333d.nc { :valid_min = 0.0f; // float char pres_qc(row=26107, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.3f, 2010.0f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_aa64_28a9_333d.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=26107, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.4f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_aa64_28a9_333d.nc { :units = "decibar"; float temp(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.046f, 10.132f; // float :C_format = "%.3f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_aa64_28a9_333d.nc { :valid_min = -2.5f; // float char temp_qc(row=26107, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.046f, 10.132f; // float :C_format = "%.3f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_aa64_28a9_333d.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=26107, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_aa64_28a9_333d.nc { :units = "degree_Celsius"; float psal(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.231f, 34.796f; // float :C_format = "%.4f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_aa64_28a9_333d.nc { :valid_min = 2.0f; // float char psal_qc(row=26107, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.66283f, 34.7961f; // float :C_format = "%.4f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_aa64_28a9_333d.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=26107, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=26107); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01f, 0.0155498f; // float :C_format = "%.4f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_aa64_28a9_333d.nc { :geospatial_lon_max = 179.96; // double :geospatial_lon_min = -179.717; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:07:01Z (local files) -2024-08-23T08:07:01Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~%225903248%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:27:35Z (local files) +2024-09-20T11:27:35Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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"; diff --git a/argopy/tests/test_data/46e42f93a3bf7484f3f870b84b71a446abceac03d357ee79c1b610e469d2432b.nc b/argopy/tests/test_data/46e42f93a3bf7484f3f870b84b71a446abceac03d357ee79c1b610e469d2432b.nc index 4393265e..629be6cc 100644 Binary files a/argopy/tests/test_data/46e42f93a3bf7484f3f870b84b71a446abceac03d357ee79c1b610e469d2432b.nc and b/argopy/tests/test_data/46e42f93a3bf7484f3f870b84b71a446abceac03d357ee79c1b610e469d2432b.nc differ diff --git a/argopy/tests/test_data/4a9e3960df6073af92d2ceb35525c5c2b656726fc92e66851c903c7cf5ac2eda.json b/argopy/tests/test_data/4a9e3960df6073af92d2ceb35525c5c2b656726fc92e66851c903c7cf5ac2eda.json index b7cdb3bf..e74bedf0 100644 --- a/argopy/tests/test_data/4a9e3960df6073af92d2ceb35525c5c2b656726fc92e66851c903c7cf5ac2eda.json +++ b/argopy/tests/test_data/4a9e3960df6073af92d2ceb35525c5c2b656726fc92e66851c903c7cf5ac2eda.json @@ -1 +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":"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902630"}],"total":3086} \ No newline at end of file +{"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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/4b9e6c396a112619839a055109cde9c2f16949415d76d196687c2262856b2492.ncHeader b/argopy/tests/test_data/4b9e6c396a112619839a055109cde9c2f16949415d76d196687c2262856b2492.ncHeader index c8ce5b5e..dea69da6 100644 --- a/argopy/tests/test_data/4b9e6c396a112619839a055109cde9c2f16949415d76d196687c2262856b2492.ncHeader +++ b/argopy/tests/test_data/4b9e6c396a112619839a055109cde9c2f16949415d76d196687c2262856b2492.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_585a_8c75_e571.nc { :long_name = "Quality on date and time"; char direction(row=982, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_585a_8c75_e571.nc { :long_name = "Float cycle number"; int config_mission_number(row=982); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 2, 16; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_585a_8c75_e571.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 292.8637f, 349.3434f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_585a_8c75_e571.nc { :valid_min = -5.0f; // float char doxy_qc(row=982, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 308.0967f, 370.1293f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_585a_8c75_e571.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=982, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 15.25045f, 31.84704f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_585a_8c75_e571.nc { :units = "micromole/kg"; float pres(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_585a_8c75_e571.nc { :valid_min = 0.0f; // float char pres_qc(row=982, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.128737E-9f, 10.0f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_585a_8c75_e571.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=982, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.0f, 2.004083f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_585a_8c75_e571.nc { :units = "decibar"; float temp(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.471667f, 8.0442f; // float :C_format = "%.3f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_585a_8c75_e571.nc { :valid_min = -2.5f; // float char temp_qc(row=982, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.471667f, 6.826f; // float :C_format = "%.3f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_585a_8c75_e571.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=982, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_585a_8c75_e571.nc { :units = "degree_Celsius"; float psal(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.868f, 34.767f; // float :C_format = "%.4f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_585a_8c75_e571.nc { :valid_min = 2.0f; // float char psal_qc(row=982, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.868f, 34.7755f; // float :C_format = "%.4f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_585a_8c75_e571.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=982, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=982); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.004f, 0.004f; // float :C_format = "%.4f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_585a_8c75_e571.nc { :geospatial_lon_max = -47.178141000000004; // double :geospatial_lon_min = -54.31517; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:12:59Z (local files) -2024-08-23T08:12:59Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:33:41Z (local files) +2024-09-20T11:33:41Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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"; diff --git a/argopy/tests/test_data/4d585d52cc490b76766865ae932294e9d345a6aef95c9d22a0bc7cc01e9ff21a.nc b/argopy/tests/test_data/4d585d52cc490b76766865ae932294e9d345a6aef95c9d22a0bc7cc01e9ff21a.nc index 800d821d..93725177 100644 Binary files a/argopy/tests/test_data/4d585d52cc490b76766865ae932294e9d345a6aef95c9d22a0bc7cc01e9ff21a.nc and b/argopy/tests/test_data/4d585d52cc490b76766865ae932294e9d345a6aef95c9d22a0bc7cc01e9ff21a.nc differ diff --git a/argopy/tests/test_data/4ddbd2087dc56c95fbfc49ac218e5548bd17f5377e94cc7ebe2053020cb8b237.ncHeader b/argopy/tests/test_data/4ddbd2087dc56c95fbfc49ac218e5548bd17f5377e94cc7ebe2053020cb8b237.ncHeader index 40fdc389..0e79985a 100644 --- a/argopy/tests/test_data/4ddbd2087dc56c95fbfc49ac218e5548bd17f5377e94cc7ebe2053020cb8b237.ncHeader +++ b/argopy/tests/test_data/4ddbd2087dc56c95fbfc49ac218e5548bd17f5377e94cc7ebe2053020cb8b237.ncHeader @@ -303,8 +303,8 @@ netcdf ArgoFloats_6079_3397_86db.nc { :geospatial_lon_max = -16.115000000000002; // double :geospatial_lon_min = -16.391000000000002; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-22T12:05:10Z (local files) -2024-08-22T12:05:10Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&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&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-20T09:19:17Z (local files) +2024-09-20T09:19:17Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&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&distinct()&orderBy(%22time,pres%22)"; :id = "ArgoFloats"; :infoUrl = "https://argo.ucsd.edu/"; :institution = "Argo"; diff --git a/argopy/tests/test_data/4ea9af1eb501d466018a02be11a2ff829abb53c747293570da404d33f9ea3300.nc b/argopy/tests/test_data/4ea9af1eb501d466018a02be11a2ff829abb53c747293570da404d33f9ea3300.nc index 62b45ed2..8dfa28df 100644 Binary files a/argopy/tests/test_data/4ea9af1eb501d466018a02be11a2ff829abb53c747293570da404d33f9ea3300.nc and b/argopy/tests/test_data/4ea9af1eb501d466018a02be11a2ff829abb53c747293570da404d33f9ea3300.nc differ diff --git a/argopy/tests/test_data/5234844dd54404a9d6c8a13eed24817fde317dbd386f1b586906fa9b6a613be8.ncHeader b/argopy/tests/test_data/5234844dd54404a9d6c8a13eed24817fde317dbd386f1b586906fa9b6a613be8.ncHeader index c617707c..c1debcfb 100644 --- a/argopy/tests/test_data/5234844dd54404a9d6c8a13eed24817fde317dbd386f1b586906fa9b6a613be8.ncHeader +++ b/argopy/tests/test_data/5234844dd54404a9d6c8a13eed24817fde317dbd386f1b586906fa9b6a613be8.ncHeader @@ -87,7 +87,7 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :long_name = "Quality on date and time"; char direction(row=171, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -112,7 +112,7 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :long_name = "Float cycle number"; int config_mission_number(row=171); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 12; // int :colorBarMaximum = 100.0; // double @@ -122,7 +122,7 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :long_name = "Unique number denoting the missions performed by the float"; float bbp700(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.61459E-4f, 0.005222703f; // float :C_format = "%.7f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :valid_min = NaNf; // float char bbp700_qc(row=171, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.61459E-4f, 0.005222703f; // float :C_format = "%.7f"; @@ -152,13 +152,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :units = "m-1"; char bbp700_adjusted_qc(row=171, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted_error(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.7f"; :FORTRAN_format = "F.7"; @@ -167,7 +167,7 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :units = "m-1"; float cdom(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.4525f, 0.724f; // float :C_format = "%.3f"; @@ -181,13 +181,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :valid_min = NaNf; // float char cdom_qc(row=171, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -196,13 +196,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :units = "ppb"; char cdom_adjusted_qc(row=171, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted_error(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -211,7 +211,7 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :units = "ppb"; float chla(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.009417f, 4.75595f; // float :C_format = "%.4f"; @@ -226,13 +226,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :valid_min = NaNf; // float char chla_qc(row=171, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.0010585f, 2.8397f; // float :C_format = "%.4f"; @@ -243,13 +243,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :units = "mg/m3"; char chla_adjusted_qc(row=171, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted_error(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -280,7 +280,7 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :actual_range = 99999.0f, 99999.0f; // float float downwelling_par(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.5304626f, 592.7224f; // float :C_format = "%.3f"; @@ -295,13 +295,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :valid_min = NaNf; // float char downwelling_par_qc(row=171, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.03590203f, 592.1444f; // float :C_format = "%.3f"; @@ -312,13 +312,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :units = "microMoleQuanta/m^2/sec"; char downwelling_par_adjusted_qc(row=171, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted_error(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.03f, 29.60722f; // float :C_format = "%.3f"; @@ -328,7 +328,7 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :units = "microMoleQuanta/m^2/sec"; float down_irradiance380(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.785339E-4f, 0.236071f; // float :C_format = "%.6f"; @@ -342,13 +342,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :valid_min = NaNf; // float char down_irradiance380_qc(row=171, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.547078E-5f, 0.2358558f; // float :C_format = "%.6f"; @@ -358,13 +358,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :units = "W/m^2/nm"; char down_irradiance380_adjusted_qc(row=171, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted_error(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.004717116f; // float :C_format = "%.6f"; @@ -374,7 +374,7 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :units = "W/m^2/nm"; float down_irradiance412(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.501238E-5f, 0.4535296f; // float :C_format = "%.6f"; @@ -388,13 +388,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :valid_min = NaNf; // float char down_irradiance412_qc(row=171, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.256245E-5f, 0.4534539f; // float :C_format = "%.6f"; @@ -404,13 +404,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :units = "W/m^2/nm"; char down_irradiance412_adjusted_qc(row=171, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted_error(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.009069078f; // float :C_format = "%.6f"; @@ -420,7 +420,7 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :units = "W/m^2/nm"; float down_irradiance490(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -8.08818E-5f, 0.614393f; // float :C_format = "%.6f"; @@ -434,13 +434,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :valid_min = NaNf; // float char down_irradiance490_qc(row=171, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -3.701603E-5f, 0.6144422f; // float :C_format = "%.6f"; @@ -450,13 +450,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :units = "W/m^2/nm"; char down_irradiance490_adjusted_qc(row=171, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted_error(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.01228885f; // float :C_format = "%.6f"; @@ -466,7 +466,7 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :units = "W/m^2/nm"; float doxy(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 261.4532f, 324.3129f; // float :C_format = "%.3f"; @@ -481,13 +481,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :valid_min = -5.0f; // float char doxy_qc(row=171, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 266.0548f, 330.0208f; // float :C_format = "%.3f"; @@ -500,13 +500,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=171, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 13.52312f, 16.79053f; // float :C_format = "%.3f"; @@ -516,101 +516,51 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :units = "micromole/kg"; float nitrate(row=171); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 3.932498f, 20.45407f; // float - :C_format = "%.3f"; :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :FORTRAN_format = "F.3"; :long_name = "Nitrate"; - :resolution = 0.001f; // float :sdn_parameter_urn = "SDN:P01::MDMAP005"; - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; :units = "micromole/kg"; :valid_max = NaNf; // float :valid_min = NaNf; // float char nitrate_qc(row=171, nitrate_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted(row=171); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float :actual_range = 1.07216f, 17.59373f; // float - :C_format = "%.3f"; - :FORTRAN_format = "F.3"; - :long_name = "Nitrate"; - :resolution = 0.001f; // float - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :units = "micromole/kg"; char nitrate_adjusted_qc(row=171, nitrate_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted_error(row=171); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float :actual_range = 5.0f, 5.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 = "micromole/kg"; float ph_in_situ_total(row=171); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 7.056608f, 8.191917f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float char ph_in_situ_total_qc(row=171, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted(row=171); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float char ph_in_situ_total_adjusted_qc(row=171, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted_error(row=171); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float float pres(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 2.035f, 293.31f; // float @@ -627,13 +577,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :valid_min = 0.0f; // float char pres_qc(row=171, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.51f, 292.8471f; // float :axis = "Z"; @@ -647,13 +597,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=171, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -662,7 +612,7 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :units = "decibar"; float psal(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.23468f, 34.887f; // float :C_format = "%.4f"; @@ -677,13 +627,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :valid_min = 2.0f; // float char psal_qc(row=171, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.23463f, 34.887f; // float :C_format = "%.4f"; @@ -696,13 +646,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=171, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -711,7 +661,7 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :units = "psu"; float temp(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.280663f, 12.31667f; // float :C_format = "%.3f"; @@ -726,13 +676,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :valid_min = -2.5f; // float char temp_qc(row=171, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.28f, 12.31639f; // float :C_format = "%.3f"; @@ -745,13 +695,13 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=171, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=171); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -777,9 +727,9 @@ netcdf ArgoFloats-synthetic-BGC_22ec_80ba_701f.nc { :geospatial_lon_max = -44.65775083333333; // double :geospatial_lon_min = -53.10385516666667; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:09:10Z (local files) -2024-08-23T08:09:10Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%226904241%22&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:29:53Z (local files) +2024-09-20T11:29:53Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%226904241%22&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; :id = "https://doi.org/10.17882/42182"; :infoUrl = "http://www.argodatamgt.org/Documentation"; :institution = "Argo"; diff --git a/argopy/tests/test_data/54178ef5aab2a9dcd6cf5e81e30b09cd7f5d45a492e65bf516a0a4102408dd1a.html b/argopy/tests/test_data/54178ef5aab2a9dcd6cf5e81e30b09cd7f5d45a492e65bf516a0a4102408dd1a.html index 8b6916e6..cd345624 100644 --- a/argopy/tests/test_data/54178ef5aab2a9dcd6cf5e81e30b09cd7f5d45a492e65bf516a0a4102408dd1a.html +++ b/argopy/tests/test_data/54178ef5aab2a9dcd6cf5e81e30b09cd7f5d45a492e65bf516a0a4102408dd1a.html @@ -11,4 +11,4 @@
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/564a516cd24e656d25e5c5d201fd7294f5b63b2f38f50d0c81eb61c4bbc88c96.ncHeader b/argopy/tests/test_data/564a516cd24e656d25e5c5d201fd7294f5b63b2f38f50d0c81eb61c4bbc88c96.ncHeader index 58c394d1..391c9a89 100644 --- a/argopy/tests/test_data/564a516cd24e656d25e5c5d201fd7294f5b63b2f38f50d0c81eb61c4bbc88c96.ncHeader +++ b/argopy/tests/test_data/564a516cd24e656d25e5c5d201fd7294f5b63b2f38f50d0c81eb61c4bbc88c96.ncHeader @@ -96,8 +96,8 @@ netcdf ArgoFloats-reference_21d4_ab1f_6ad4.nc { :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-08-22T12:05:29Z (local files) -2024-08-22T12:05:29Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.nc?latitude,longitude,time,platform_number,cycle_number,pres,temp,psal,ptmp&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&distinct()&orderBy(%22time,pres%22)"; +2024-09-20T09:19:35Z (local files) +2024-09-20T09:19:35Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.nc?latitude,longitude,time,platform_number,cycle_number,pres,temp,psal,ptmp&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&distinct()&orderBy(%22time,pres%22)"; :id = "ArgoFloats-reference"; :infoUrl = "http://www.argodatamgt.org/DMQC/Reference-data-base"; :institution = "Argo"; diff --git a/argopy/tests/test_data/577127670305b7a06ab3ea77e5ac5e2aa693fe288e4eb711c181347f94725a7d.html b/argopy/tests/test_data/577127670305b7a06ab3ea77e5ac5e2aa693fe288e4eb711c181347f94725a7d.html index 0be920e4..91960e57 100644 --- a/argopy/tests/test_data/577127670305b7a06ab3ea77e5ac5e2aa693fe288e4eb711c181347f94725a7d.html +++ b/argopy/tests/test_data/577127670305b7a06ab3ea77e5ac5e2aa693fe288e4eb711c181347f94725a7d.html @@ -14,4 +14,4 @@
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 index 36498f73..aab16ffa 100644 --- a/argopy/tests/test_data/5923f2965a8cf88a261e179203ab1699fe4fed43d8cd8767304633614c07a61f.json +++ b/argopy/tests/test_data/5923f2965a8cf88a261e179203ab1699fe4fed43d8cd8767304633614c07a61f.json @@ -1 +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":"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906248"},{"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902630"}],"total":250} \ No newline at end of file +{"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/5944bbc69f14776e0748db79a07eeb769a18e48ed0f1f8cb0336c1d7a520a943.nc b/argopy/tests/test_data/5944bbc69f14776e0748db79a07eeb769a18e48ed0f1f8cb0336c1d7a520a943.nc index 98965170..e2fd2b28 100644 Binary files a/argopy/tests/test_data/5944bbc69f14776e0748db79a07eeb769a18e48ed0f1f8cb0336c1d7a520a943.nc and b/argopy/tests/test_data/5944bbc69f14776e0748db79a07eeb769a18e48ed0f1f8cb0336c1d7a520a943.nc differ diff --git a/argopy/tests/test_data/5a5ba4173ec3e86eb130b8f7d02a17f4d1ad65d959186d6e308ef6f824e936e1.json b/argopy/tests/test_data/5a5ba4173ec3e86eb130b8f7d02a17f4d1ad65d959186d6e308ef6f824e936e1.json index 69d4da77..89468915 100644 --- a/argopy/tests/test_data/5a5ba4173ec3e86eb130b8f7d02a17f4d1ad65d959186d6e308ef6f824e936e1.json +++ b/argopy/tests/test_data/5a5ba4173ec3e86eb130b8f7d02a17f4d1ad65d959186d6e308ef6f824e936e1.json @@ -2,16 +2,19 @@ "@graph": [ { "@id": "http://vocab.nerc.ac.uk/collection/R13/current/I/", - "pav:authoredOn": "2020-04-07 22:59:46.0", - "pav:hasCurrentVersion": { + "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": "1", + "pav:version": "2", "skos:notation": "SDN:R13::I", "skos:altLabel": "I", - "dc:date": "2020-04-07 22:59:46.0", - "owl:versionInfo": "1", + "dc:date": "2024-09-11 11:40:41.0", + "owl:versionInfo": "2", "skos:prefLabel": { "@language": "en", "@value": "Indian ocean area" @@ -27,22 +30,25 @@ }, "skos:definition": { "@language": "en", - "@value": "The Indian/Atlantic oceans boundary is at 20 deg E, whereas the Indian/Pacific oceans boundary is at 145 deg E." + "@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:authoredOn": "2020-04-07 22:59:46.0", - "pav:hasCurrentVersion": { + "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": "1", + "pav:version": "2", "skos:notation": "SDN:R13::A", "skos:altLabel": "A", - "dc:date": "2020-04-07 22:59:46.0", - "owl:versionInfo": "1", + "dc:date": "2024-09-11 11:40:41.0", + "owl:versionInfo": "2", "skos:prefLabel": { "@language": "en", "@value": "Atlantic ocean area" @@ -58,22 +64,25 @@ }, "skos:definition": { "@language": "en", - "@value": "The Atlantic/Pacific oceans boundary is at 70 deg W, whereas the Atlantic/Indian oceans boundary is at 20 deg E." + "@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:authoredOn": "2020-04-07 22:59:46.0", - "pav:hasCurrentVersion": { + "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": "1", + "pav:version": "2", "skos:notation": "SDN:R13::P", "skos:altLabel": "P", - "dc:date": "2020-04-07 22:59:46.0", - "owl:versionInfo": "1", + "dc:date": "2024-09-11 11:40:41.0", + "owl:versionInfo": "2", "skos:prefLabel": { "@language": "en", "@value": "Pacific ocean area" @@ -89,7 +98,7 @@ }, "skos:definition": { "@language": "en", - "@value": "The Pacific/Indian oceans boundary is at 145 deg E, whereas the Pacific/Atlantic oceans boundary is at 70 deg W." + "@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" }, @@ -111,8 +120,8 @@ "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": "1", - "dc:date": "2020-04-08 03:00:04.0", + "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", diff --git a/argopy/tests/test_data/5b8f0d384e59569823737dd0b88a8f7df3da65f432766857574bddd4e87dfad7.ncHeader b/argopy/tests/test_data/5b8f0d384e59569823737dd0b88a8f7df3da65f432766857574bddd4e87dfad7.ncHeader index ea06264d..44d0da18 100644 --- a/argopy/tests/test_data/5b8f0d384e59569823737dd0b88a8f7df3da65f432766857574bddd4e87dfad7.ncHeader +++ b/argopy/tests/test_data/5b8f0d384e59569823737dd0b88a8f7df3da65f432766857574bddd4e87dfad7.ncHeader @@ -1,6 +1,6 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { dimensions: - row = 29677; + row = 29532; direction_strlen = 1; platform_number_strlen = 7; bbp700_qc_strlen = 1; @@ -32,7 +32,7 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { temp_qc_strlen = 1; temp_adjusted_qc_strlen = 1; variables: - double latitude(row=29677); + double latitude(row=29532); :_CoordinateAxisType = "Lat"; :_FillValue = 99999.0; // double :actual_range = 55.00095666666667, 56.99997; // double @@ -46,7 +46,7 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = 90.0; // double :valid_min = -90.0; // double - double longitude(row=29677); + double longitude(row=29532); :_CoordinateAxisType = "Lon"; :_FillValue = 99999.0; // double :actual_range = -54.999, -47.00874350000001; // double @@ -60,16 +60,16 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = 180.0; // double :valid_min = -180.0; // double - char position_qc(row=29677); + char position_qc(row=29532); :actual_range = "18"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double :conventions = "Argo reference table 2"; :long_name = "Quality on position (latitude and longitude)"; - double time(row=29677); + double time(row=29532); :_CoordinateAxisType = "Time"; - :actual_range = 1.063557316224E9, 1.72432578E9; // double + :actual_range = 1.063557316224E9, 1.72674504E9; // double :axis = "T"; :conventions = "Relative julian days with decimal part (as parts of day)"; :ioos_category = "Time"; @@ -79,15 +79,15 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :time_origin = "01-JAN-1970 00:00:00"; :units = "seconds since 1970-01-01T00:00:00Z"; - char time_qc(row=29677); + char time_qc(row=29532); :actual_range = "11"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double :conventions = "Argo reference table 2"; :long_name = "Quality on date and time"; - char direction(row=29677, direction_strlen=1); - :_ChunkSizes = 133; // int + char direction(row=29532, direction_strlen=1); + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -95,14 +95,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :ioos_category = "Currents"; :long_name = "Direction of the station profiles"; - char platform_number(row=29677, platform_number_strlen=7); + char platform_number(row=29532, 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"; - int cycle_number(row=29677); + int cycle_number(row=29532); :_FillValue = 99999; // int :actual_range = 0, 367; // int :cf_role = "profile_id"; @@ -111,8 +111,8 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; :long_name = "Float cycle number"; - int config_mission_number(row=29677); - :_ChunkSizes = 133; // int + int config_mission_number(row=29532); + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 0, 65; // int :colorBarMaximum = 100.0; // double @@ -121,8 +121,8 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :ioos_category = "Statistics"; :long_name = "Unique number denoting the missions performed by the float"; - float bbp700(row=29677); - :_ChunkSizes = 133, 1591; // int + float bbp700(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.953782E-4f, 0.04400722f; // float :C_format = "%.7f"; @@ -135,14 +135,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char bbp700_qc(row=29677, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char bbp700_qc(row=29532, bbp700_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float bbp700_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int + float bbp700_adjusted(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 4.475482E-5f, 0.04400722f; // float :C_format = "%.7f"; @@ -151,14 +151,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :resolution = 1.0E-7f; // float :units = "m-1"; - char bbp700_adjusted_qc(row=29677, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char bbp700_adjusted_qc(row=29532, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float bbp700_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // int + float bbp700_adjusted_error(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 8.950965E-6f, 0.002592091f; // float :C_format = "%.7f"; @@ -167,8 +167,8 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :resolution = 1.0E-7f; // float :units = "m-1"; - float cdom(row=29677); - :_ChunkSizes = 133, 1591; // int + float cdom(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.8832f, 18.4705f; // float :C_format = "%.3f"; @@ -181,14 +181,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char cdom_qc(row=29677, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char cdom_qc(row=29532, cdom_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float cdom_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int + float cdom_adjusted(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -196,14 +196,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :resolution = 0.001f; // float :units = "ppb"; - char cdom_adjusted_qc(row=29677, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char cdom_adjusted_qc(row=29532, cdom_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float cdom_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // int + float cdom_adjusted_error(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -211,10 +211,10 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :resolution = 0.001f; // float :units = "ppb"; - float chla(row=29677); - :_ChunkSizes = 133, 1591; // int + float chla(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float - :actual_range = -0.1728f, 471.2328f; // 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"; @@ -226,14 +226,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char chla_qc(row=29677, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char chla_qc(row=29532, chla_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float chla_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int + float chla_adjusted(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.04015f, 4.0661f; // float :C_format = "%.4f"; @@ -243,14 +243,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; :units = "mg/m3"; - char chla_adjusted_qc(row=29677, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char chla_adjusted_qc(row=29532, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float chla_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // int + float chla_adjusted_error(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -258,7 +258,7 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :resolution = 0.025f; // float :units = "mg/m3"; - float cp660(row=29677); + float cp660(row=29532); :_FillValue = 99999.0f; // float :actual_range = 0.1697397f, 19.58223f; // float :cf_standard_name = "-"; @@ -268,20 +268,20 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char cp660_qc(row=29677, cp660_qc_strlen=1); + char cp660_qc(row=29532, cp660_qc_strlen=1); :_Encoding = "ISO-8859-1"; - float cp660_adjusted(row=29677); + float cp660_adjusted(row=29532); :actual_range = 99999.0f, 99999.0f; // float - char cp660_adjusted_qc(row=29677, cp660_adjusted_qc_strlen=1); + char cp660_adjusted_qc(row=29532, cp660_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; - float cp660_adjusted_error(row=29677); + float cp660_adjusted_error(row=29532); :actual_range = 99999.0f, 99999.0f; // float - float downwelling_par(row=29677); - :_ChunkSizes = 133, 1591; // int + float downwelling_par(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.01326383f, 1939.872f; // float :C_format = "%.3f"; @@ -295,14 +295,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char downwelling_par_qc(row=29677, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char downwelling_par_qc(row=29532, downwelling_par_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float downwelling_par_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int + float downwelling_par_adjusted(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.03640744f, 1509.441f; // float :C_format = "%.3f"; @@ -312,14 +312,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; :units = "microMoleQuanta/m^2/sec"; - char downwelling_par_adjusted_qc(row=29677, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char downwelling_par_adjusted_qc(row=29532, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float downwelling_par_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // int + float downwelling_par_adjusted_error(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.03f, 75.47203f; // float :C_format = "%.3f"; @@ -328,8 +328,8 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :resolution = 0.001f; // float :units = "microMoleQuanta/m^2/sec"; - float down_irradiance380(row=29677); - :_ChunkSizes = 133, 1591; // int + float down_irradiance380(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 4.040283E-5f, 0.6385083f; // float :C_format = "%.6f"; @@ -342,14 +342,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char down_irradiance380_qc(row=29677, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance380_qc(row=29532, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance380_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int + float down_irradiance380_adjusted(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.40309E-5f, 0.6381621f; // float :C_format = "%.6f"; @@ -358,14 +358,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - char down_irradiance380_adjusted_qc(row=29677, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance380_adjusted_qc(row=29532, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance380_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // int + float down_irradiance380_adjusted_error(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.01276324f; // float :C_format = "%.6f"; @@ -374,10 +374,10 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - float down_irradiance412(row=29677); - :_ChunkSizes = 133, 1591; // int + float down_irradiance412(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float - :actual_range = -1.152559E-4f, 1.227665f; // float + :actual_range = -1.153E-4f, 1.227665f; // float :C_format = "%.6f"; :cf_standard_name = "-"; :FORTRAN_format = "F.6"; @@ -388,14 +388,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char down_irradiance412_qc(row=29677, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance412_qc(row=29532, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance412_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int + float down_irradiance412_adjusted(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.226209E-5f, 1.075224f; // float :C_format = "%.6f"; @@ -404,14 +404,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - char down_irradiance412_adjusted_qc(row=29677, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance412_adjusted_qc(row=29532, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance412_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // int + float down_irradiance412_adjusted_error(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.02150448f; // float :C_format = "%.6f"; @@ -420,10 +420,10 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - float down_irradiance490(row=29677); - :_ChunkSizes = 133, 1591; // int + float down_irradiance490(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float - :actual_range = -1.273489E-4f, 1.711586f; // float + :actual_range = -1.273E-4f, 1.711586f; // float :C_format = "%.6f"; :cf_standard_name = "-"; :FORTRAN_format = "F.6"; @@ -434,14 +434,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char down_irradiance490_qc(row=29677, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance490_qc(row=29532, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance490_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int + float down_irradiance490_adjusted(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.264853E-5f, 1.310853f; // float :C_format = "%.6f"; @@ -450,14 +450,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - char down_irradiance490_adjusted_qc(row=29677, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance490_adjusted_qc(row=29532, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance490_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // int + float down_irradiance490_adjusted_error(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.02621705f; // float :C_format = "%.6f"; @@ -466,8 +466,8 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - float doxy(row=29677); - :_ChunkSizes = 133, 1591; // int + float doxy(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1526.135f, 11356.0f; // float :C_format = "%.3f"; @@ -481,14 +481,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = 600.0f; // float :valid_min = -5.0f; // float - char doxy_qc(row=29677, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char doxy_qc(row=29532, doxy_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float doxy_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int + float doxy_adjusted(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1655.856f, 12321.26f; // float :C_format = "%.3f"; @@ -500,14 +500,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = 600.0f; // float :valid_min = -5.0f; // float - char doxy_adjusted_qc(row=29677, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char doxy_adjusted_qc(row=29532, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float doxy_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // int + float doxy_adjusted_error(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.630909f, 31.84704f; // float :C_format = "%.3f"; @@ -516,102 +516,52 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :resolution = 0.001f; // float :units = "micromole/kg"; - float nitrate(row=29677); - :_ChunkSizes = 133, 1591; // int + float nitrate(row=29532); :_FillValue = 99999.0f; // float :actual_range = 3.829968f, 12.175f; // float - :C_format = "%.3f"; :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :FORTRAN_format = "F.3"; :long_name = "Nitrate"; - :resolution = 0.001f; // float :sdn_parameter_urn = "SDN:P01::MDMAP005"; - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; :units = "micromole/kg"; :valid_max = NaNf; // float :valid_min = NaNf; // float - char nitrate_qc(row=29677, nitrate_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char nitrate_qc(row=29532, nitrate_qc_strlen=1); :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; - float nitrate_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 0.9696299f, 14.5594f; // float - :C_format = "%.3f"; - :FORTRAN_format = "F.3"; - :long_name = "Nitrate"; - :resolution = 0.001f; // float - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :units = "micromole/kg"; + float nitrate_adjusted(row=29532); + :actual_range = 0.9696299f, 99999.0f; // float - char nitrate_adjusted_qc(row=29677, nitrate_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char nitrate_adjusted_qc(row=29532, nitrate_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; - float nitrate_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 0.7363588f, 5.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 = "micromole/kg"; + float nitrate_adjusted_error(row=29532); + :actual_range = 0.7363588f, 99999.0f; // float - float ph_in_situ_total(row=29677); - :_ChunkSizes = 133, 1591; // int + float ph_in_situ_total(row=29532); :_FillValue = 99999.0f; // float :actual_range = 5.686137f, 8.225677f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float - char ph_in_situ_total_qc(row=29677, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char ph_in_situ_total_qc(row=29532, ph_in_situ_total_qc_strlen=1); :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; - float ph_in_situ_total_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + float ph_in_situ_total_adjusted(row=29532); + :actual_range = 99999.0f, 99999.0f; // float - char ph_in_situ_total_adjusted_qc(row=29677, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char ph_in_situ_total_adjusted_qc(row=29532, ph_in_situ_total_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; - float ph_in_situ_total_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + float ph_in_situ_total_adjusted_error(row=29532); + :actual_range = 99999.0f, 99999.0f; // float - float pres(row=29677); - :_ChunkSizes = 133, 1591; // int + float pres(row=29532); + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float @@ -627,14 +577,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = 12000.0f; // float :valid_min = 0.0f; // float - char pres_qc(row=29677, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char pres_qc(row=29532, pres_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float pres_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int + float pres_adjusted(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.768372E-7f, 10.49f; // float :axis = "Z"; @@ -647,14 +597,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = 12000.0f; // float :valid_min = 0.0f; // float - char pres_adjusted_qc(row=29677, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char pres_adjusted_qc(row=29532, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float pres_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // int + float pres_adjusted_error(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.0f, 2.4f; // float :C_format = "%.3f"; @@ -663,10 +613,10 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :resolution = 0.001f; // float :units = "decibar"; - float psal(row=29677); - :_ChunkSizes = 133, 1591; // int + float psal(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float - :actual_range = 0.402f, 35.02467f; // float + :actual_range = 1.208f, 35.02467f; // float :C_format = "%.4f"; :cf_standard_name = "sea_water_salinity"; :FORTRAN_format = "F.4"; @@ -678,14 +628,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = 41.0f; // float :valid_min = 2.0f; // float - char psal_qc(row=29677, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char psal_qc(row=29532, psal_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float psal_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int + float psal_adjusted(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.868f, 35.02467f; // float :C_format = "%.4f"; @@ -697,14 +647,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = 41.0f; // float :valid_min = 2.0f; // float - char psal_adjusted_qc(row=29677, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char psal_adjusted_qc(row=29532, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float psal_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // int + float psal_adjusted_error(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.004f, 1.046394f; // float :C_format = "%.4f"; @@ -713,8 +663,8 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :resolution = 1.0E-4f; // float :units = "psu"; - float temp(row=29677); - :_ChunkSizes = 133, 1591; // int + float temp(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.401f, 15.6335f; // float :C_format = "%.3f"; @@ -728,14 +678,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = 40.0f; // float :valid_min = -2.5f; // float - char temp_qc(row=29677, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char temp_qc(row=29532, temp_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float temp_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int + float temp_adjusted(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.401f, 12.905f; // float :C_format = "%.3f"; @@ -747,14 +697,14 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :valid_max = 40.0f; // float :valid_min = -2.5f; // float - char temp_adjusted_qc(row=29677, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char temp_adjusted_qc(row=29532, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float temp_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // int + float temp_adjusted_error(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -781,9 +731,9 @@ netcdf ArgoFloats-synthetic-BGC_4e3f_b674_30be.nc { :geospatial_lon_max = -47.00874350000001; // double :geospatial_lon_min = -54.999; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:04:48Z (local files) -2024-08-23T08:04:48Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:14:36Z (local files) +2024-09-20T11:14:36Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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"; @@ -806,7 +756,7 @@ completeness, or usefulness, of this information."; :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-08-22T11:23:00Z"; + :time_coverage_end = "2024-09-19T11:24:00Z"; :time_coverage_start = "2003-09-14T16:35:16Z"; :title = "Argo float synthetic vertical profiles : BGC data"; :user_manual_version = "1.0"; diff --git a/argopy/tests/test_data/5cf80c9330a7befe09246770236bfd5f5147a2a0ccfd2e29ebdfba2609a197ad.json b/argopy/tests/test_data/5cf80c9330a7befe09246770236bfd5f5147a2a0ccfd2e29ebdfba2609a197ad.json index 17177b83..651bf2ef 100644 --- a/argopy/tests/test_data/5cf80c9330a7befe09246770236bfd5f5147a2a0ccfd2e29ebdfba2609a197ad.json +++ b/argopy/tests/test_data/5cf80c9330a7befe09246770236bfd5f5147a2a0ccfd2e29ebdfba2609a197ad.json @@ -1 +1 @@ -{"schemaVersion": 1, "label": "Argo profiles", "message": "?" } +{"schemaVersion": 1, "label": "Argo profiles", "message": "3034228" } diff --git a/argopy/tests/test_data/5d2b9fc7129f17b8e93a8dc8523747a434f4ba92996fd041319a7a7dc3dc85a6.nc b/argopy/tests/test_data/5d2b9fc7129f17b8e93a8dc8523747a434f4ba92996fd041319a7a7dc3dc85a6.nc index affb0fb7..af0a21f9 100644 Binary files a/argopy/tests/test_data/5d2b9fc7129f17b8e93a8dc8523747a434f4ba92996fd041319a7a7dc3dc85a6.nc and b/argopy/tests/test_data/5d2b9fc7129f17b8e93a8dc8523747a434f4ba92996fd041319a7a7dc3dc85a6.nc differ diff --git a/argopy/tests/test_data/5e1038afcd7fa32054cfc96c8dc0f3a6dae11b86fcad47795dfa30253652c16f.json b/argopy/tests/test_data/5e1038afcd7fa32054cfc96c8dc0f3a6dae11b86fcad47795dfa30253652c16f.json index 5dcd7dfc..2c01250f 100644 --- a/argopy/tests/test_data/5e1038afcd7fa32054cfc96c8dc0f3a6dae11b86fcad47795dfa30253652c16f.json +++ b/argopy/tests/test_data/5e1038afcd7fa32054cfc96c8dc0f3a6dae11b86fcad47795dfa30253652c16f.json @@ -2,19 +2,22 @@ "@graph": [ { "@id": "http://vocab.nerc.ac.uk/collection/R05/current/G/", - "pav:authoredOn": "2020-04-04 15:05:33.0", - "pav:hasCurrentVersion": { + "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": "1", + "pav:version": "2", "skos:notation": "SDN:R05::G", "skos:altLabel": "G", - "dc:date": "2020-04-04 15:05:33.0", - "owl:versionInfo": "1", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", "skos:prefLabel": { "@language": "en", - "@value": "GPS location accuracy (<10m radius)" + "@value": "GPS positioning accuracy (not better than 10 m)" }, "dc:identifier": "SDN:R05::G", "skos:note": { @@ -27,38 +30,7 @@ }, "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/H/", - "pav:authoredOn": "2020-04-04 15:05:33.0", - "pav:hasCurrentVersion": { - "@id": "http://vocab.nerc.ac.uk/collection/R05/current/H/1/" - }, - "dce:identifier": "SDN:R05::H", - "pav:version": "1", - "skos:notation": "SDN:R05::H", - "skos:altLabel": "H", - "dc:date": "2020-04-04 15:05:33.0", - "owl:versionInfo": "1", - "skos:prefLabel": { - "@language": "en", - "@value": "GNSS location accuracy (<10m radius)" - }, - "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" + "@value": "Estimated location accuracy radius from Global Positioning System (GPS) of less than 10m." }, "@type": "skos:Concept" }, @@ -156,22 +128,22 @@ "@type": "skos:Concept" }, { - "@id": "http://vocab.nerc.ac.uk/collection/R05/current/E/", + "@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/E/1/" + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/1/1/" }, - "dce:identifier": "SDN:R05::E", + "dce:identifier": "SDN:R05::1", "pav:version": "1", - "skos:notation": "SDN:R05::E", - "skos:altLabel": "E", + "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": "GLONASS location accuracy (<10m radius)" + "@value": "Argos location accuracy <1500m radius" }, - "dc:identifier": "SDN:R05::E", + "dc:identifier": "SDN:R05::1", "skos:note": { "@language": "en", "@value": "accepted" @@ -182,27 +154,30 @@ }, "skos:definition": { "@language": "en", - "@value": "Estimated location accuracy radius from GLObal NAvigation Satellite System (GLONASS) of less than 10m" + "@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/1/", - "pav:authoredOn": "2020-04-04 15:05:33.0", + "@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/1/1/" + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/H/2/" }, - "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", + "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": "Argos location accuracy <1500m radius" + "@value": "GNSS accuracy (not better than 10 m)" }, - "dc:identifier": "SDN:R05::1", + "dc:identifier": "SDN:R05::H", "skos:note": { "@language": "en", "@value": "accepted" @@ -213,27 +188,30 @@ }, "skos:definition": { "@language": "en", - "@value": "Estimated location accuracy radius from Argos positioning system of less than 1500m" + "@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/U/", - "pav:authoredOn": "2020-04-04 15:05:33.0", + "@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/U/1/" + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/E/2/" }, - "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", + "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": "Estimated location accuracy" + "@value": "GLONASS accuracy (not better than 10 m)" }, - "dc:identifier": "SDN:R05::U", + "dc:identifier": "SDN:R05::E", "skos:note": { "@language": "en", "@value": "accepted" @@ -244,7 +222,7 @@ }, "skos:definition": { "@language": "en", - "@value": "Estimated location accuracy radius from manual computation as not received by the float." + "@value": "Estimated location accuracy radius from GLObal NAvigation Satellite System (GLONASS) of less than 10m." }, "@type": "skos:Concept" }, @@ -280,22 +258,22 @@ "@type": "skos:Concept" }, { - "@id": "http://vocab.nerc.ac.uk/collection/R05/current/B/", + "@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/B/1/" + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/U/1/" }, - "dce:identifier": "SDN:R05::B", + "dce:identifier": "SDN:R05::U", "pav:version": "1", - "skos:notation": "SDN:R05::B", - "skos:altLabel": "B", + "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": "Argos no location accuracy estimation (one or two messages received)" + "@value": "Estimated location accuracy" }, - "dc:identifier": "SDN:R05::B", + "dc:identifier": "SDN:R05::U", "skos:note": { "@language": "en", "@value": "accepted" @@ -306,27 +284,27 @@ }, "skos:definition": { "@language": "en", - "@value": "The location accuracy radius from Argos positioning system cannot be estimated as only one or two messages were received." + "@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/I/", + "@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/I/1/" + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/B/1/" }, - "dce:identifier": "SDN:R05::I", + "dce:identifier": "SDN:R05::B", "pav:version": "1", - "skos:notation": "SDN:R05::I", - "skos:altLabel": "I", + "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": "Iridium location accuracy (<5000m radius)" + "@value": "Argos no location accuracy estimation (one or two messages received)" }, - "dc:identifier": "SDN:R05::I", + "dc:identifier": "SDN:R05::B", "skos:note": { "@language": "en", "@value": "accepted" @@ -337,27 +315,27 @@ }, "skos:definition": { "@language": "en", - "@value": "Estimated location accuracy radius from Iridium positioning system of less than 5000m" + "@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/F/", + "@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/F/1/" + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/0/1/" }, - "dce:identifier": "SDN:R05::F", + "dce:identifier": "SDN:R05::0", "pav:version": "1", - "skos:notation": "SDN:R05::F", - "skos:altLabel": "F", + "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": "GALILEO location accuracy (<10m radius)" + "@value": "Argos location accuracy >1500m radius" }, - "dc:identifier": "SDN:R05::F", + "dc:identifier": "SDN:R05::0", "skos:note": { "@language": "en", "@value": "accepted" @@ -368,27 +346,30 @@ }, "skos:definition": { "@language": "en", - "@value": "Estimated location accuracy radius from Galileo positioning system of less than 10m" + "@value": "Estimated location accuracy radius from Argos positioning system of over 1500m" }, "@type": "skos:Concept" }, { - "@id": "http://vocab.nerc.ac.uk/collection/R05/current/0/", - "pav:authoredOn": "2020-04-04 15:05:33.0", + "@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/0/1/" + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/I/2/" }, - "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", + "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": "Argos location accuracy >1500m radius" + "@value": "Iridium accuracy (not better than 5 km)" }, - "dc:identifier": "SDN:R05::0", + "dc:identifier": "SDN:R05::I", "skos:note": { "@language": "en", "@value": "accepted" @@ -399,25 +380,28 @@ }, "skos:definition": { "@language": "en", - "@value": "Estimated location accuracy radius from Argos positioning system of over 1500m" + "@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:authoredOn": "2020-04-04 15:05:33.0", - "pav:hasCurrentVersion": { + "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": "1", + "pav:version": "2", "skos:notation": "SDN:R05::D", "skos:altLabel": "D", - "dc:date": "2020-04-04 15:05:33.0", - "owl:versionInfo": "1", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", "skos:prefLabel": { "@language": "en", - "@value": "Beidou location accuracy (<10m radius)" + "@value": "Beidou accuracy (not better than 10 m)" }, "dc:identifier": "SDN:R05::D", "skos:note": { @@ -430,7 +414,7 @@ }, "skos:definition": { "@language": "en", - "@value": "Estimated location accuracy radius from BeiDou Navigation Satellite System (BDS) of less than 10m" + "@value": "Estimated location accuracy radius from BeiDou Navigation Satellite System (BDS) of less than 10m." }, "@type": "skos:Concept" }, @@ -465,15 +449,46 @@ }, "@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/H/" - }, { "@id": "http://vocab.nerc.ac.uk/collection/R05/current/2/" }, @@ -484,34 +499,37 @@ "@id": "http://vocab.nerc.ac.uk/collection/R05/current/3/" }, { - "@id": "http://vocab.nerc.ac.uk/collection/R05/current/E/" + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/1/" }, { - "@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/U/" + "@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/I/" + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/0/" }, { - "@id": "http://vocab.nerc.ac.uk/collection/R05/current/F/" + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/I/" }, { - "@id": "http://vocab.nerc.ac.uk/collection/R05/current/0/" + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/D/" }, { - "@id": "http://vocab.nerc.ac.uk/collection/R05/current/A/" + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/F/" }, { - "@id": "http://vocab.nerc.ac.uk/collection/R05/current/D/" + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/A/" } ], "@type": "skos:Collection", @@ -519,8 +537,8 @@ "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": "0", - "dc:date": "2020-04-04 15:47:54.0", + "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", diff --git a/argopy/tests/test_data/5e6c443ab2559f3297aee10bdb2a8db2c055131fc498367e9fd6f50310cd4f62.nc b/argopy/tests/test_data/5e6c443ab2559f3297aee10bdb2a8db2c055131fc498367e9fd6f50310cd4f62.nc index 0975599f..d5689ff2 100644 Binary files a/argopy/tests/test_data/5e6c443ab2559f3297aee10bdb2a8db2c055131fc498367e9fd6f50310cd4f62.nc and b/argopy/tests/test_data/5e6c443ab2559f3297aee10bdb2a8db2c055131fc498367e9fd6f50310cd4f62.nc differ diff --git a/argopy/tests/test_data/5e7aac935136d9bd8817b3d6e757dd399dbe0ef8659698f94bae2e6c6b7f83dc.ncHeader b/argopy/tests/test_data/5e7aac935136d9bd8817b3d6e757dd399dbe0ef8659698f94bae2e6c6b7f83dc.ncHeader index 87f628dd..59ef32d6 100644 --- a/argopy/tests/test_data/5e7aac935136d9bd8817b3d6e757dd399dbe0ef8659698f94bae2e6c6b7f83dc.ncHeader +++ b/argopy/tests/test_data/5e7aac935136d9bd8817b3d6e757dd399dbe0ef8659698f94bae2e6c6b7f83dc.ncHeader @@ -303,8 +303,8 @@ netcdf ArgoFloats_a503_b221_46a0.nc { :geospatial_lon_max = -55.21699905395508; // double :geospatial_lon_min = -58.93600082397461; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-22T12:06:50Z (local files) -2024-08-22T12:06:50Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&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&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-20T09:21:02Z (local files) +2024-09-20T09:21:02Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&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&distinct()&orderBy(%22time,pres%22)"; :id = "ArgoFloats"; :infoUrl = "https://argo.ucsd.edu/"; :institution = "Argo"; diff --git a/argopy/tests/test_data/60066a9c43e4103277e70c81607c6a78e3d3db53dd7b65c40f519ae457218302.nc b/argopy/tests/test_data/60066a9c43e4103277e70c81607c6a78e3d3db53dd7b65c40f519ae457218302.nc index 420ed380..58e7efb4 100644 Binary files a/argopy/tests/test_data/60066a9c43e4103277e70c81607c6a78e3d3db53dd7b65c40f519ae457218302.nc 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 index bdbb9fcd..6cbc6935 100644 Binary files a/argopy/tests/test_data/608114c1d0fad1409ff406acd5fc04b86e071e5d2e76da15f55d9b0b635c86ec.gz and b/argopy/tests/test_data/608114c1d0fad1409ff406acd5fc04b86e071e5d2e76da15f55d9b0b635c86ec.gz differ diff --git a/argopy/tests/test_data/6270b81ef4a5a8e19ae77f895c77fdd0bd71f7596505911d329618eb8ee27d82.json b/argopy/tests/test_data/6270b81ef4a5a8e19ae77f895c77fdd0bd71f7596505911d329618eb8ee27d82.json index 3cdb47d6..43fc4ed7 100644 --- a/argopy/tests/test_data/6270b81ef4a5a8e19ae77f895c77fdd0bd71f7596505911d329618eb8ee27d82.json +++ b/argopy/tests/test_data/6270b81ef4a5a8e19ae77f895c77fdd0bd71f7596505911d329618eb8ee27d82.json @@ -1 +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":"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":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":"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902630"}],"total":222} \ No newline at end of file +{"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 index f6e64981..baabeebd 100644 Binary files a/argopy/tests/test_data/62f05073f9219dce4491a0d29e730c2f71afbf5f17b83cd06dfaa5b0da08ece6.nc and b/argopy/tests/test_data/62f05073f9219dce4491a0d29e730c2f71afbf5f17b83cd06dfaa5b0da08ece6.nc differ diff --git a/argopy/tests/test_data/633f38e48cba2a1b6f22384c78cd662335b4303dd6ef4b49bcfb9b14b274d30e.ncHeader b/argopy/tests/test_data/633f38e48cba2a1b6f22384c78cd662335b4303dd6ef4b49bcfb9b14b274d30e.ncHeader index 16a49d16..777ef390 100644 --- a/argopy/tests/test_data/633f38e48cba2a1b6f22384c78cd662335b4303dd6ef4b49bcfb9b14b274d30e.ncHeader +++ b/argopy/tests/test_data/633f38e48cba2a1b6f22384c78cd662335b4303dd6ef4b49bcfb9b14b274d30e.ncHeader @@ -87,7 +87,7 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :long_name = "Quality on date and time"; char direction(row=5041, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -112,7 +112,7 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :long_name = "Float cycle number"; int config_mission_number(row=5041); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 16; // int :colorBarMaximum = 100.0; // double @@ -122,7 +122,7 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :long_name = "Unique number denoting the missions performed by the float"; float bbp700(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.016987E-4f, 0.01180728f; // float :C_format = "%.7f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :valid_min = NaNf; // float char bbp700_qc(row=5041, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.016987E-4f, 0.01180728f; // float :C_format = "%.7f"; @@ -152,13 +152,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :units = "m-1"; char bbp700_adjusted_qc(row=5041, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.7f"; :FORTRAN_format = "F.7"; @@ -167,7 +167,7 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :units = "m-1"; float cdom(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.012117f, 2.564167f; // float :C_format = "%.3f"; @@ -181,13 +181,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :valid_min = NaNf; // float char cdom_qc(row=5041, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -196,13 +196,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :units = "ppb"; char cdom_adjusted_qc(row=5041, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -211,7 +211,7 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :units = "ppb"; float chla(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.0438f, 13.45299f; // float :C_format = "%.4f"; @@ -226,13 +226,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :valid_min = NaNf; // float char chla_qc(row=5041, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.0803f, 3.5186f; // float :C_format = "%.4f"; @@ -243,13 +243,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :units = "mg/m3"; char chla_adjusted_qc(row=5041, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -280,7 +280,7 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :actual_range = 99999.0f, 99999.0f; // float float downwelling_par(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.01326383f, 1309.106f; // float :C_format = "%.3f"; @@ -295,13 +295,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :valid_min = NaNf; // float char downwelling_par_qc(row=5041, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.03640744f, 1308.671f; // float :C_format = "%.3f"; @@ -312,13 +312,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :units = "microMoleQuanta/m^2/sec"; char downwelling_par_adjusted_qc(row=5041, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.03f, 65.43353f; // float :C_format = "%.3f"; @@ -328,7 +328,7 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :units = "microMoleQuanta/m^2/sec"; float down_irradiance380(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.667699E-4f, 0.5660256f; // float :C_format = "%.6f"; @@ -342,13 +342,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :valid_min = NaNf; // float char down_irradiance380_qc(row=5041, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.40309E-5f, 0.4718581f; // float :C_format = "%.6f"; @@ -358,13 +358,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :units = "W/m^2/nm"; char down_irradiance380_adjusted_qc(row=5041, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.009437162f; // float :C_format = "%.6f"; @@ -374,7 +374,7 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :units = "W/m^2/nm"; float down_irradiance412(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 6.57517E-5f, 1.100864f; // float :C_format = "%.6f"; @@ -388,13 +388,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :valid_min = NaNf; // float char down_irradiance412_qc(row=5041, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.226209E-5f, 0.8742118f; // float :C_format = "%.6f"; @@ -404,13 +404,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :units = "W/m^2/nm"; char down_irradiance412_adjusted_qc(row=5041, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.01748424f; // float :C_format = "%.6f"; @@ -420,7 +420,7 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :units = "W/m^2/nm"; float down_irradiance490(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -8.08818E-5f, 1.255575f; // float :C_format = "%.6f"; @@ -434,13 +434,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :valid_min = NaNf; // float char down_irradiance490_qc(row=5041, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.264853E-5f, 1.255584f; // float :C_format = "%.6f"; @@ -450,13 +450,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :units = "W/m^2/nm"; char down_irradiance490_adjusted_qc(row=5041, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.02511167f; // float :C_format = "%.6f"; @@ -466,7 +466,7 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :units = "W/m^2/nm"; float doxy(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1526.135f, 11356.0f; // float :C_format = "%.3f"; @@ -481,13 +481,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :valid_min = -5.0f; // float char doxy_qc(row=5041, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1655.856f, 12321.26f; // float :C_format = "%.3f"; @@ -500,13 +500,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=5041, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 8.415855f, 31.84704f; // float :C_format = "%.3f"; @@ -516,101 +516,51 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :units = "micromole/kg"; float nitrate(row=5041); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 3.829968f, 10.41807f; // float - :C_format = "%.3f"; :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :FORTRAN_format = "F.3"; :long_name = "Nitrate"; - :resolution = 0.001f; // float :sdn_parameter_urn = "SDN:P01::MDMAP005"; - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; :units = "micromole/kg"; :valid_max = NaNf; // float :valid_min = NaNf; // float char nitrate_qc(row=5041, nitrate_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 0.9696299f, 7.845202f; // float - :C_format = "%.3f"; - :FORTRAN_format = "F.3"; - :long_name = "Nitrate"; - :resolution = 0.001f; // float - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :units = "micromole/kg"; + :actual_range = 0.9696299f, 99999.0f; // float char nitrate_adjusted_qc(row=5041, nitrate_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 5.0f, 5.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 = "micromole/kg"; + :actual_range = 5.0f, 99999.0f; // float float ph_in_situ_total(row=5041); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 7.990134f, 8.225677f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float char ph_in_situ_total_qc(row=5041, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float char ph_in_situ_total_adjusted_qc(row=5041, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float float pres(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float @@ -627,13 +577,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :valid_min = 0.0f; // float char pres_qc(row=5041, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.649095E-7f, 10.0f; // float :axis = "Z"; @@ -647,13 +597,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=5041, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.0f, 2.4f; // float :C_format = "%.3f"; @@ -663,7 +613,7 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :units = "decibar"; float psal(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.868f, 34.767f; // float :C_format = "%.4f"; @@ -678,13 +628,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :valid_min = 2.0f; // float char psal_qc(row=5041, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.868f, 34.7755f; // float :C_format = "%.4f"; @@ -697,13 +647,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=5041, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.004f, 0.01f; // float :C_format = "%.4f"; @@ -713,7 +663,7 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :units = "psu"; float temp(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.884f, 11.566f; // float :C_format = "%.3f"; @@ -728,13 +678,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :valid_min = -2.5f; // float char temp_qc(row=5041, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.471667f, 11.566f; // float :C_format = "%.3f"; @@ -747,13 +697,13 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=5041, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -780,9 +730,9 @@ netcdf ArgoFloats-synthetic-BGC_b8f8_5803_cae5.nc { :geospatial_lon_max = -47.119708333333335; // double :geospatial_lon_min = -54.40875833333333; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:06:41Z (local files) -2024-08-23T08:06:41Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:27:06Z (local files) +2024-09-20T11:27:06Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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"; diff --git a/argopy/tests/test_data/6579d5150ccb9b0b35e4976353af5cdc34f4418c69af87e9d99be6a2ff4f65f6.nc b/argopy/tests/test_data/6579d5150ccb9b0b35e4976353af5cdc34f4418c69af87e9d99be6a2ff4f65f6.nc index 6c069652..d8f202ae 100644 Binary files a/argopy/tests/test_data/6579d5150ccb9b0b35e4976353af5cdc34f4418c69af87e9d99be6a2ff4f65f6.nc and b/argopy/tests/test_data/6579d5150ccb9b0b35e4976353af5cdc34f4418c69af87e9d99be6a2ff4f65f6.nc differ diff --git a/argopy/tests/test_data/671de7781d554d612185553c0fd1c787e6fae0ad69d903030a8ea9d51cd6badf.html b/argopy/tests/test_data/671de7781d554d612185553c0fd1c787e6fae0ad69d903030a8ea9d51cd6badf.html index 8852da0c..8358f14f 100644 --- a/argopy/tests/test_data/671de7781d554d612185553c0fd1c787e6fae0ad69d903030a8ea9d51cd6badf.html +++ b/argopy/tests/test_data/671de7781d554d612185553c0fd1c787e6fae0ad69d903030a8ea9d51cd6badf.html @@ -16,4 +16,4 @@
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/68a4b6445472e2ff3b01f2f71b3ad00bf20b22e0b83f44656014110284282e60.nc b/argopy/tests/test_data/68a4b6445472e2ff3b01f2f71b3ad00bf20b22e0b83f44656014110284282e60.nc index 4ea4fd87..ce47a5fd 100644 Binary files a/argopy/tests/test_data/68a4b6445472e2ff3b01f2f71b3ad00bf20b22e0b83f44656014110284282e60.nc and b/argopy/tests/test_data/68a4b6445472e2ff3b01f2f71b3ad00bf20b22e0b83f44656014110284282e60.nc differ diff --git a/argopy/tests/test_data/6a313102a5bd801690824452bd4fdee05e87e890c670214355cfc78932ff82b7.html b/argopy/tests/test_data/6a313102a5bd801690824452bd4fdee05e87e890c670214355cfc78932ff82b7.html index 7ea965c3..9eea478d 100644 --- a/argopy/tests/test_data/6a313102a5bd801690824452bd4fdee05e87e890c670214355cfc78932ff82b7.html +++ b/argopy/tests/test_data/6a313102a5bd801690824452bd4fdee05e87e890c670214355cfc78932ff82b7.html @@ -19,4 +19,4 @@
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/6edb3a5d508d42f3ef9b87350f8fa6d837d08b74931d812e73f161e417bbf158.nc b/argopy/tests/test_data/6edb3a5d508d42f3ef9b87350f8fa6d837d08b74931d812e73f161e417bbf158.nc index 8566e077..1d319091 100644 Binary files a/argopy/tests/test_data/6edb3a5d508d42f3ef9b87350f8fa6d837d08b74931d812e73f161e417bbf158.nc and b/argopy/tests/test_data/6edb3a5d508d42f3ef9b87350f8fa6d837d08b74931d812e73f161e417bbf158.nc differ diff --git a/argopy/tests/test_data/6f32d405b2d74be8fea94fac1f52df631845b8062e8fac1e091b8f7c678f2dd4.nc b/argopy/tests/test_data/6f32d405b2d74be8fea94fac1f52df631845b8062e8fac1e091b8f7c678f2dd4.nc index 8c137d25..c2d13ff4 100644 Binary files a/argopy/tests/test_data/6f32d405b2d74be8fea94fac1f52df631845b8062e8fac1e091b8f7c678f2dd4.nc and b/argopy/tests/test_data/6f32d405b2d74be8fea94fac1f52df631845b8062e8fac1e091b8f7c678f2dd4.nc differ diff --git a/argopy/tests/test_data/70d965d409c19926c8f0d6c8279508a17cc8914c424079113b7b2590ef26cbd7.ncHeader b/argopy/tests/test_data/70d965d409c19926c8f0d6c8279508a17cc8914c424079113b7b2590ef26cbd7.ncHeader index dac6c843..6bd377c3 100644 --- a/argopy/tests/test_data/70d965d409c19926c8f0d6c8279508a17cc8914c424079113b7b2590ef26cbd7.ncHeader +++ b/argopy/tests/test_data/70d965d409c19926c8f0d6c8279508a17cc8914c424079113b7b2590ef26cbd7.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_e781_175b_33ba.nc { :long_name = "Quality on date and time"; char direction(row=141, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_e781_175b_33ba.nc { :long_name = "Float cycle number"; int config_mission_number(row=141); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 1; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_e781_175b_33ba.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 157.9978f, 306.8305f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_e781_175b_33ba.nc { :valid_min = -5.0f; // float char doxy_qc(row=141, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 172.5826f, 335.1566f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_e781_175b_33ba.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=141, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.177477f, 10.0547f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_e781_175b_33ba.nc { :units = "micromole/kg"; float pres(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 4.6f, 2005.1f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_e781_175b_33ba.nc { :valid_min = 0.0f; // float char pres_qc(row=141, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 4.7f, 2005.1f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_e781_175b_33ba.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=141, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.4f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_e781_175b_33ba.nc { :units = "decibar"; float psal(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.715f, 34.745f; // float :C_format = "%.4f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_e781_175b_33ba.nc { :valid_min = 2.0f; // float char psal_qc(row=141, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.72545f, 34.74495f; // float :C_format = "%.4f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_e781_175b_33ba.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=141, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01f, 0.01158624f; // float :C_format = "%.4f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_e781_175b_33ba.nc { :units = "psu"; float temp(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.576f, 4.475f; // float :C_format = "%.3f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_e781_175b_33ba.nc { :valid_min = -2.5f; // float char temp_qc(row=141, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.576f, 4.475f; // float :C_format = "%.3f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_e781_175b_33ba.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=141, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_e781_175b_33ba.nc { :geospatial_lon_max = 149.71; // double :geospatial_lon_min = 144.484; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:09:38Z (local files) -2024-08-23T08:09:38Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&cycle_number=~%221%7C12%22&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:30:21Z (local files) +2024-09-20T11:30:21Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&cycle_number=~%221%7C12%22&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; :id = "https://doi.org/10.17882/42182"; :infoUrl = "http://www.argodatamgt.org/Documentation"; :institution = "Argo"; diff --git a/argopy/tests/test_data/7321fca614893c8ec8cc62bc2179f4a5bcbc82970bf3948a5d22c770d2371b3c.json b/argopy/tests/test_data/7321fca614893c8ec8cc62bc2179f4a5bcbc82970bf3948a5d22c770d2371b3c.json index ea68a687..5d798a39 100644 --- a/argopy/tests/test_data/7321fca614893c8ec8cc62bc2179f4a5bcbc82970bf3948a5d22c770d2371b3c.json +++ b/argopy/tests/test_data/7321fca614893c8ec8cc62bc2179f4a5bcbc82970bf3948a5d22c770d2371b3c.json @@ -1 +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":"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":259} \ No newline at end of file +{"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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/75e19ebe22535a74e91dcc5855a078084f74b12e6b214b4464b9ec2389381f7f.html b/argopy/tests/test_data/75e19ebe22535a74e91dcc5855a078084f74b12e6b214b4464b9ec2389381f7f.html index 8bc5e1f8..52523aab 100644 --- a/argopy/tests/test_data/75e19ebe22535a74e91dcc5855a078084f74b12e6b214b4464b9ec2389381f7f.html +++ b/argopy/tests/test_data/75e19ebe22535a74e91dcc5855a078084f74b12e6b214b4464b9ec2389381f7f.html @@ -11,4 +11,4 @@
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/761a3636cc1eb70a1d5d414963eb98f4da886dcdcb99db21deb87297cbb17538.nc b/argopy/tests/test_data/761a3636cc1eb70a1d5d414963eb98f4da886dcdcb99db21deb87297cbb17538.nc index fbb7de88..169aa75f 100644 Binary files a/argopy/tests/test_data/761a3636cc1eb70a1d5d414963eb98f4da886dcdcb99db21deb87297cbb17538.nc and b/argopy/tests/test_data/761a3636cc1eb70a1d5d414963eb98f4da886dcdcb99db21deb87297cbb17538.nc differ diff --git a/argopy/tests/test_data/7797fa984200366db82cae6470fde374f6c50df4da1ea67d42461886d762a14c.ncHeader b/argopy/tests/test_data/7797fa984200366db82cae6470fde374f6c50df4da1ea67d42461886d762a14c.ncHeader index 5aa3a32b..7590ce4f 100644 --- a/argopy/tests/test_data/7797fa984200366db82cae6470fde374f6c50df4da1ea67d42461886d762a14c.ncHeader +++ b/argopy/tests/test_data/7797fa984200366db82cae6470fde374f6c50df4da1ea67d42461886d762a14c.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_6f7f_c8f3_9eb9.nc { :long_name = "Quality on date and time"; char direction(row=141, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_6f7f_c8f3_9eb9.nc { :long_name = "Float cycle number"; int config_mission_number(row=141); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 1; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_6f7f_c8f3_9eb9.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 157.9978f, 306.8305f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_6f7f_c8f3_9eb9.nc { :valid_min = -5.0f; // float char doxy_qc(row=141, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 172.5826f, 335.1566f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_6f7f_c8f3_9eb9.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=141, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.177477f, 10.0547f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_6f7f_c8f3_9eb9.nc { :units = "micromole/kg"; float pres(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 4.6f, 2005.1f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_6f7f_c8f3_9eb9.nc { :valid_min = 0.0f; // float char pres_qc(row=141, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 4.7f, 2005.1f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_6f7f_c8f3_9eb9.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=141, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.4f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_6f7f_c8f3_9eb9.nc { :units = "decibar"; float temp(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.576f, 4.475f; // float :C_format = "%.3f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_6f7f_c8f3_9eb9.nc { :valid_min = -2.5f; // float char temp_qc(row=141, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.576f, 4.475f; // float :C_format = "%.3f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_6f7f_c8f3_9eb9.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=141, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_6f7f_c8f3_9eb9.nc { :units = "degree_Celsius"; float psal(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.715f, 34.745f; // float :C_format = "%.4f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_6f7f_c8f3_9eb9.nc { :valid_min = 2.0f; // float char psal_qc(row=141, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.72545f, 34.74495f; // float :C_format = "%.4f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_6f7f_c8f3_9eb9.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=141, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01f, 0.01158624f; // float :C_format = "%.4f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_6f7f_c8f3_9eb9.nc { :geospatial_lon_max = 149.71; // double :geospatial_lon_min = 144.484; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:07:18Z (local files) -2024-08-23T08:07:18Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~%225903248%22&cycle_number=~%221%7C12%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:27:52Z (local files) +2024-09-20T11:27:52Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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"; diff --git a/argopy/tests/test_data/799b192429b0b70ad6357def03afb6303bfb1e0e001035994ec21bba3c56e0bf.ncHeader b/argopy/tests/test_data/799b192429b0b70ad6357def03afb6303bfb1e0e001035994ec21bba3c56e0bf.ncHeader index d2eb8a26..59e7ac9d 100644 --- a/argopy/tests/test_data/799b192429b0b70ad6357def03afb6303bfb1e0e001035994ec21bba3c56e0bf.ncHeader +++ b/argopy/tests/test_data/799b192429b0b70ad6357def03afb6303bfb1e0e001035994ec21bba3c56e0bf.ncHeader @@ -1,6 +1,6 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { dimensions: - row = 23062; + row = 23605; direction_strlen = 1; platform_number_strlen = 7; bbp700_qc_strlen = 1; @@ -32,7 +32,7 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { temp_qc_strlen = 1; temp_adjusted_qc_strlen = 1; variables: - double latitude(row=23062); + double latitude(row=23605); :_CoordinateAxisType = "Lat"; :_FillValue = 99999.0; // double :actual_range = 57.097543166666675, 62.656471833333335; // double @@ -46,7 +46,7 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = 90.0; // double :valid_min = -90.0; // double - double longitude(row=23062); + double longitude(row=23605); :_CoordinateAxisType = "Lon"; :_FillValue = 99999.0; // double :actual_range = -51.75795016666666, -30.635311333333334; // double @@ -60,16 +60,16 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = 180.0; // double :valid_min = -180.0; // double - char position_qc(row=23062); + char position_qc(row=23605); :actual_range = "11"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double :conventions = "Argo reference table 2"; :long_name = "Quality on position (latitude and longitude)"; - double time(row=23062); + double time(row=23605); :_CoordinateAxisType = "Time"; - :actual_range = 1.653204770059E9, 1.724335911038E9; // double + :actual_range = 1.653204770059E9, 1.726063791038E9; // double :axis = "T"; :conventions = "Relative julian days with decimal part (as parts of day)"; :ioos_category = "Time"; @@ -79,15 +79,15 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :time_origin = "01-JAN-1970 00:00:00"; :units = "seconds since 1970-01-01T00:00:00Z"; - char time_qc(row=23062); + char time_qc(row=23605); :actual_range = "11"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double :conventions = "Argo reference table 2"; :long_name = "Quality on date and time"; - char direction(row=23062, direction_strlen=1); - :_ChunkSizes = 133; // int + char direction(row=23605, direction_strlen=1); + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -95,24 +95,24 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :ioos_category = "Currents"; :long_name = "Direction of the station profiles"; - char platform_number(row=23062, platform_number_strlen=7); + char platform_number(row=23605, 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"; - int cycle_number(row=23062); + int cycle_number(row=23605); :_FillValue = 99999; // int - :actual_range = 1, 85; // int + :actual_range = 1, 87; // 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"; - int config_mission_number(row=23062); - :_ChunkSizes = 133; // int + int config_mission_number(row=23605); + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 16; // int :colorBarMaximum = 100.0; // double @@ -121,8 +121,8 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :ioos_category = "Statistics"; :long_name = "Unique number denoting the missions performed by the float"; - float bbp700(row=23062); - :_ChunkSizes = 133, 1591; // int + float bbp700(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.088954E-4f, 0.04767596f; // float :C_format = "%.7f"; @@ -135,14 +135,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char bbp700_qc(row=23062, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char bbp700_qc(row=23605, bbp700_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float bbp700_adjusted(row=23062); - :_ChunkSizes = 133, 1591; // int + float bbp700_adjusted(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.088954E-4f, 0.04767596f; // float :C_format = "%.7f"; @@ -151,14 +151,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :resolution = 1.0E-7f; // float :units = "m-1"; - char bbp700_adjusted_qc(row=23062, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char bbp700_adjusted_qc(row=23605, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float bbp700_adjusted_error(row=23062); - :_ChunkSizes = 133, 1591; // int + float bbp700_adjusted_error(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.7f"; :FORTRAN_format = "F.7"; @@ -166,8 +166,8 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :resolution = 1.0E-7f; // float :units = "m-1"; - float cdom(row=23062); - :_ChunkSizes = 133, 1591; // int + float cdom(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.2043f, 2.4516f; // float :C_format = "%.3f"; @@ -180,14 +180,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char cdom_qc(row=23062, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char cdom_qc(row=23605, cdom_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float cdom_adjusted(row=23062); - :_ChunkSizes = 133, 1591; // int + float cdom_adjusted(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -195,14 +195,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :resolution = 0.001f; // float :units = "ppb"; - char cdom_adjusted_qc(row=23062, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char cdom_adjusted_qc(row=23605, cdom_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float cdom_adjusted_error(row=23062); - :_ChunkSizes = 133, 1591; // int + float cdom_adjusted_error(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -210,8 +210,8 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :resolution = 0.001f; // float :units = "ppb"; - float chla(row=23062); - :_ChunkSizes = 133, 1591; // int + float chla(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.292f, 9.398142f; // float :C_format = "%.4f"; @@ -225,14 +225,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char chla_qc(row=23062, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char chla_qc(row=23605, chla_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float chla_adjusted(row=23062); - :_ChunkSizes = 133, 1591; // int + float chla_adjusted(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.01341375f, 4.691771f; // float :C_format = "%.4f"; @@ -242,14 +242,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; :units = "mg/m3"; - char chla_adjusted_qc(row=23062, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char chla_adjusted_qc(row=23605, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float chla_adjusted_error(row=23062); - :_ChunkSizes = 133, 1591; // int + float chla_adjusted_error(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -257,7 +257,7 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :resolution = 0.025f; // float :units = "mg/m3"; - float cp660(row=23062); + float cp660(row=23605); :_FillValue = 99999.0f; // float :actual_range = -0.04591854f, 1.304536f; // float :cf_standard_name = "-"; @@ -267,20 +267,20 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char cp660_qc(row=23062, cp660_qc_strlen=1); + char cp660_qc(row=23605, cp660_qc_strlen=1); :_Encoding = "ISO-8859-1"; - float cp660_adjusted(row=23062); + float cp660_adjusted(row=23605); :actual_range = 99999.0f, 99999.0f; // float - char cp660_adjusted_qc(row=23062, cp660_adjusted_qc_strlen=1); + char cp660_adjusted_qc(row=23605, cp660_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; - float cp660_adjusted_error(row=23062); + float cp660_adjusted_error(row=23605); :actual_range = 99999.0f, 99999.0f; // float - float downwelling_par(row=23062); - :_ChunkSizes = 133, 1591; // int + float downwelling_par(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.1366395f, 2315.559f; // float :C_format = "%.3f"; @@ -294,14 +294,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char downwelling_par_qc(row=23062, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char downwelling_par_qc(row=23605, downwelling_par_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float downwelling_par_adjusted(row=23062); - :_ChunkSizes = 133, 1591; // int + float downwelling_par_adjusted(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -310,14 +310,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; :units = "microMoleQuanta/m^2/sec"; - char downwelling_par_adjusted_qc(row=23062, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char downwelling_par_adjusted_qc(row=23605, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float downwelling_par_adjusted_error(row=23062); - :_ChunkSizes = 133, 1591; // int + float downwelling_par_adjusted_error(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -325,8 +325,8 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :resolution = 0.001f; // float :units = "microMoleQuanta/m^2/sec"; - float down_irradiance380(row=23062); - :_ChunkSizes = 133, 1591; // int + float down_irradiance380(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.547487E-4f, 0.8009f; // float :C_format = "%.6f"; @@ -339,14 +339,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char down_irradiance380_qc(row=23062, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance380_qc(row=23605, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance380_adjusted(row=23062); - :_ChunkSizes = 133, 1591; // int + float down_irradiance380_adjusted(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -354,14 +354,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - char down_irradiance380_adjusted_qc(row=23062, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance380_adjusted_qc(row=23605, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance380_adjusted_error(row=23062); - :_ChunkSizes = 133, 1591; // int + float down_irradiance380_adjusted_error(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -369,8 +369,8 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - float down_irradiance412(row=23062); - :_ChunkSizes = 133, 1591; // int + float down_irradiance412(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 4.483982E-4f, 1.195713f; // float :C_format = "%.6f"; @@ -383,14 +383,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char down_irradiance412_qc(row=23062, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance412_qc(row=23605, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance412_adjusted(row=23062); - :_ChunkSizes = 133, 1591; // int + float down_irradiance412_adjusted(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -398,14 +398,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - char down_irradiance412_adjusted_qc(row=23062, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance412_adjusted_qc(row=23605, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance412_adjusted_error(row=23062); - :_ChunkSizes = 133, 1591; // int + float down_irradiance412_adjusted_error(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -413,8 +413,8 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - float down_irradiance490(row=23062); - :_ChunkSizes = 133, 1591; // int + float down_irradiance490(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.569697E-4f, 1.584043f; // float :C_format = "%.6f"; @@ -427,14 +427,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char down_irradiance490_qc(row=23062, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance490_qc(row=23605, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance490_adjusted(row=23062); - :_ChunkSizes = 133, 1591; // int + float down_irradiance490_adjusted(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -442,14 +442,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - char down_irradiance490_adjusted_qc(row=23062, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance490_adjusted_qc(row=23605, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance490_adjusted_error(row=23062); - :_ChunkSizes = 133, 1591; // int + float down_irradiance490_adjusted_error(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -457,8 +457,8 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - float doxy(row=23062); - :_ChunkSizes = 133, 1591; // int + float doxy(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 217.6861f, 341.608f; // float :C_format = "%.3f"; @@ -472,14 +472,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = 600.0f; // float :valid_min = -5.0f; // float - char doxy_qc(row=23062, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char doxy_qc(row=23605, doxy_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float doxy_adjusted(row=23062); - :_ChunkSizes = 133, 1591; // int + float doxy_adjusted(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 231.0956f, 362.6511f; // float :C_format = "%.3f"; @@ -491,118 +491,68 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = 600.0f; // float :valid_min = -5.0f; // float - char doxy_adjusted_qc(row=23062, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char doxy_adjusted_qc(row=23605, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float doxy_adjusted_error(row=23062); - :_ChunkSizes = 133, 1591; // int + float doxy_adjusted_error(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float - :actual_range = 12.56249f, 17.35151f; // 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"; - float nitrate(row=23062); - :_ChunkSizes = 133, 1591; // int + float nitrate(row=23605); :_FillValue = 99999.0f; // float :actual_range = 2.357106f, 20.30729f; // float - :C_format = "%.3f"; :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :FORTRAN_format = "F.3"; :long_name = "Nitrate"; - :resolution = 0.001f; // float :sdn_parameter_urn = "SDN:P01::MDMAP005"; - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; :units = "micromole/kg"; :valid_max = NaNf; // float :valid_min = NaNf; // float - char nitrate_qc(row=23062, nitrate_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char nitrate_qc(row=23605, nitrate_qc_strlen=1); :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; - float nitrate_adjusted(row=23062); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 0.1668104f, 18.11699f; // float - :C_format = "%.3f"; - :FORTRAN_format = "F.3"; - :long_name = "Nitrate"; - :resolution = 0.001f; // float - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :units = "micromole/kg"; + float nitrate_adjusted(row=23605); + :actual_range = 0.1668104f, 99999.0f; // float - char nitrate_adjusted_qc(row=23062, nitrate_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char nitrate_adjusted_qc(row=23605, nitrate_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; - float nitrate_adjusted_error(row=23062); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 5.0f, 5.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 = "micromole/kg"; + float nitrate_adjusted_error(row=23605); + :actual_range = 5.0f, 99999.0f; // float - float ph_in_situ_total(row=23062); - :_ChunkSizes = 133, 1591; // int + float ph_in_situ_total(row=23605); :_FillValue = 99999.0f; // float :actual_range = 5.56744f, 8.088566f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float - char ph_in_situ_total_qc(row=23062, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char ph_in_situ_total_qc(row=23605, ph_in_situ_total_qc_strlen=1); :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; - float ph_in_situ_total_adjusted(row=23062); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + float ph_in_situ_total_adjusted(row=23605); + :actual_range = 99999.0f, 99999.0f; // float - char ph_in_situ_total_adjusted_qc(row=23062, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char ph_in_situ_total_adjusted_qc(row=23605, ph_in_situ_total_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; - float ph_in_situ_total_adjusted_error(row=23062); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + float ph_in_situ_total_adjusted_error(row=23605); + :actual_range = 99999.0f, 99999.0f; // float - float pres(row=23062); - :_ChunkSizes = 133, 1591; // int + float pres(row=23605); + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = -0.29f, 2008.403f; // float @@ -618,14 +568,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = 12000.0f; // float :valid_min = 0.0f; // float - char pres_qc(row=23062, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char pres_qc(row=23605, pres_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float pres_adjusted(row=23062); - :_ChunkSizes = 133, 1591; // int + float pres_adjusted(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.181f, 2003.573f; // float :axis = "Z"; @@ -638,14 +588,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = 12000.0f; // float :valid_min = 0.0f; // float - char pres_adjusted_qc(row=23062, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char pres_adjusted_qc(row=23605, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float pres_adjusted_error(row=23062); - :_ChunkSizes = 133, 1591; // int + float pres_adjusted_error(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -653,8 +603,8 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :resolution = 0.001f; // float :units = "decibar"; - float psal(row=23062); - :_ChunkSizes = 133, 1591; // int + float psal(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.15085f, 35.13646f; // float :C_format = "%.4f"; @@ -668,14 +618,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = 41.0f; // float :valid_min = 2.0f; // float - char psal_qc(row=23062, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char psal_qc(row=23605, psal_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float psal_adjusted(row=23062); - :_ChunkSizes = 133, 1591; // int + float psal_adjusted(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.14214f, 35.1353f; // float :C_format = "%.4f"; @@ -687,14 +637,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = 41.0f; // float :valid_min = 2.0f; // float - char psal_adjusted_qc(row=23062, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char psal_adjusted_qc(row=23605, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float psal_adjusted_error(row=23062); - :_ChunkSizes = 133, 1591; // int + float psal_adjusted_error(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -702,8 +652,8 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :resolution = 1.0E-4f; // float :units = "psu"; - float temp(row=23062); - :_ChunkSizes = 133, 1591; // int + float temp(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.124f, 11.983f; // float :C_format = "%.3f"; @@ -717,14 +667,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = 40.0f; // float :valid_min = -2.5f; // float - char temp_qc(row=23062, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char temp_qc(row=23605, temp_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float temp_adjusted(row=23062); - :_ChunkSizes = 133, 1591; // int + float temp_adjusted(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.12f, 11.983f; // float :C_format = "%.3f"; @@ -736,14 +686,14 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :valid_max = 40.0f; // float :valid_min = -2.5f; // float - char temp_adjusted_qc(row=23062, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char temp_adjusted_qc(row=23605, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float temp_adjusted_error(row=23062); - :_ChunkSizes = 133, 1591; // int + float temp_adjusted_error(row=23605); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -769,9 +719,9 @@ netcdf ArgoFloats-synthetic-BGC_4648_9765_83a6.nc { :geospatial_lon_max = -30.635311333333334; // double :geospatial_lon_min = -51.75795016666666; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:09:20Z (local files) -2024-08-23T08:09:20Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%226904240%22&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:30:08Z (local files) +2024-09-20T11:30:08Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%226904240%22&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; :id = "https://doi.org/10.17882/42182"; :infoUrl = "http://www.argodatamgt.org/Documentation"; :institution = "Argo"; @@ -794,7 +744,7 @@ completeness, or usefulness, of this information."; :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-08-22T14:11:51Z"; + :time_coverage_end = "2024-09-11T14:09:51Z"; :time_coverage_start = "2022-05-22T07:32:50Z"; :title = "Argo float synthetic vertical profiles : BGC data"; :user_manual_version = "1.0"; diff --git a/argopy/tests/test_data/7a46786fd45d673ecfd0ece9487e232a7d6475010d7eb005653d0000d4a0e35f.ncHeader b/argopy/tests/test_data/7a46786fd45d673ecfd0ece9487e232a7d6475010d7eb005653d0000d4a0e35f.ncHeader index cb235e37..0e630d91 100644 --- a/argopy/tests/test_data/7a46786fd45d673ecfd0ece9487e232a7d6475010d7eb005653d0000d4a0e35f.ncHeader +++ b/argopy/tests/test_data/7a46786fd45d673ecfd0ece9487e232a7d6475010d7eb005653d0000d4a0e35f.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_c417_c8f3_604f.nc { :long_name = "Quality on date and time"; char direction(row=26106, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_c417_c8f3_604f.nc { :long_name = "Float cycle number"; int config_mission_number(row=26106); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 1; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_c417_c8f3_604f.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.358001f, 322.7896f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_c417_c8f3_604f.nc { :valid_min = -5.0f; // float char doxy_qc(row=26106, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 167.5023f, 352.5889f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_c417_c8f3_604f.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=26106, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.025068f, 16.03393f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_c417_c8f3_604f.nc { :units = "micromole/kg"; float pres(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 3.4f, 2009.7f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_c417_c8f3_604f.nc { :valid_min = 0.0f; // float char pres_qc(row=26106, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.3f, 2010.0f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_c417_c8f3_604f.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=26106, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.4f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_c417_c8f3_604f.nc { :units = "decibar"; float psal(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.231f, 34.796f; // float :C_format = "%.4f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_c417_c8f3_604f.nc { :valid_min = 2.0f; // float char psal_qc(row=26106, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.66283f, 34.7961f; // float :C_format = "%.4f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_c417_c8f3_604f.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=26106, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01f, 0.0155498f; // float :C_format = "%.4f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_c417_c8f3_604f.nc { :units = "psu"; float temp(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.046f, 10.132f; // float :C_format = "%.3f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_c417_c8f3_604f.nc { :valid_min = -2.5f; // float char temp_qc(row=26106, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.046f, 10.132f; // float :C_format = "%.3f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_c417_c8f3_604f.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=26106, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_c417_c8f3_604f.nc { :geospatial_lon_max = 179.96; // double :geospatial_lon_min = -179.717; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:09:03Z (local files) -2024-08-23T08:09:03Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:29:47Z (local files) +2024-09-20T11:29:47Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; :id = "https://doi.org/10.17882/42182"; :infoUrl = "http://www.argodatamgt.org/Documentation"; :institution = "Argo"; diff --git a/argopy/tests/test_data/7aee9745b9a478a884788c58ce08e868d8f800f87a28c28fde551922013a9968.ncHeader b/argopy/tests/test_data/7aee9745b9a478a884788c58ce08e868d8f800f87a28c28fde551922013a9968.ncHeader index f2c42237..746986fe 100644 --- a/argopy/tests/test_data/7aee9745b9a478a884788c58ce08e868d8f800f87a28c28fde551922013a9968.ncHeader +++ b/argopy/tests/test_data/7aee9745b9a478a884788c58ce08e868d8f800f87a28c28fde551922013a9968.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_6773_4a1e_7f26.nc { :long_name = "Quality on date and time"; char direction(row=141, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_6773_4a1e_7f26.nc { :long_name = "Float cycle number"; int config_mission_number(row=141); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 1; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_6773_4a1e_7f26.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 159.7738f, 309.8683f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_6773_4a1e_7f26.nc { :valid_min = -5.0f; // float char doxy_qc(row=141, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 174.5238f, 338.4748f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_6773_4a1e_7f26.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=141, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.235715f, 10.15425f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_6773_4a1e_7f26.nc { :units = "micromole/kg"; float pres(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 4.6f, 2001.9f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_6773_4a1e_7f26.nc { :valid_min = 0.0f; // float char pres_qc(row=141, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 4.8f, 2002.1f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_6773_4a1e_7f26.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=141, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.4f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_6773_4a1e_7f26.nc { :units = "decibar"; float psal(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.738f, 34.745f; // float :C_format = "%.4f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_6773_4a1e_7f26.nc { :valid_min = 2.0f; // float char psal_qc(row=141, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.73788f, 34.74495f; // float :C_format = "%.4f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_6773_4a1e_7f26.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=141, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01f, 0.01f; // float :C_format = "%.4f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_6773_4a1e_7f26.nc { :units = "psu"; float temp(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.053f, 2.246f; // float :C_format = "%.3f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_6773_4a1e_7f26.nc { :valid_min = -2.5f; // float char temp_qc(row=141, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.054f, 2.246f; // float :C_format = "%.3f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_6773_4a1e_7f26.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=141, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_6773_4a1e_7f26.nc { :geospatial_lon_max = 149.71; // double :geospatial_lon_min = 149.635; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:09:13Z (local files) -2024-08-23T08:09:13Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&cycle_number=~%2212%7C13%22&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:29:57Z (local files) +2024-09-20T11:29:57Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&cycle_number=~%2212%7C13%22&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; :id = "https://doi.org/10.17882/42182"; :infoUrl = "http://www.argodatamgt.org/Documentation"; :institution = "Argo"; diff --git a/argopy/tests/test_data/7bf3076f8ab2a1f277fbd0bd0baf8796f658b903298875a16012abd620e4d4f4.nc b/argopy/tests/test_data/7bf3076f8ab2a1f277fbd0bd0baf8796f658b903298875a16012abd620e4d4f4.nc index f4f388ad..1800eae7 100644 Binary files a/argopy/tests/test_data/7bf3076f8ab2a1f277fbd0bd0baf8796f658b903298875a16012abd620e4d4f4.nc and b/argopy/tests/test_data/7bf3076f8ab2a1f277fbd0bd0baf8796f658b903298875a16012abd620e4d4f4.nc differ diff --git a/argopy/tests/test_data/7e774d89fb0dd9623910539237a7e48dabb128fb47311e188e6bc559530fb4a4.html b/argopy/tests/test_data/7e774d89fb0dd9623910539237a7e48dabb128fb47311e188e6bc559530fb4a4.html index c33b678f..424f1e8b 100644 --- a/argopy/tests/test_data/7e774d89fb0dd9623910539237a7e48dabb128fb47311e188e6bc559530fb4a4.html +++ b/argopy/tests/test_data/7e774d89fb0dd9623910539237a7e48dabb128fb47311e188e6bc559530fb4a4.html @@ -13,4 +13,4 @@
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/7fbe7f313489932a78a5f0b3db415a33d8c547298ae6bb0ad08992b0c911ca64.nc b/argopy/tests/test_data/7fbe7f313489932a78a5f0b3db415a33d8c547298ae6bb0ad08992b0c911ca64.nc index fa5c9f31..42cece90 100644 Binary files a/argopy/tests/test_data/7fbe7f313489932a78a5f0b3db415a33d8c547298ae6bb0ad08992b0c911ca64.nc and b/argopy/tests/test_data/7fbe7f313489932a78a5f0b3db415a33d8c547298ae6bb0ad08992b0c911ca64.nc differ diff --git a/argopy/tests/test_data/81a689ce24c6900d604fbd1cf829be8d590b779896b398aa78fb83fe1d040026.html b/argopy/tests/test_data/81a689ce24c6900d604fbd1cf829be8d590b779896b398aa78fb83fe1d040026.html index 6ee8565d..754918ea 100644 --- a/argopy/tests/test_data/81a689ce24c6900d604fbd1cf829be8d590b779896b398aa78fb83fe1d040026.html +++ b/argopy/tests/test_data/81a689ce24c6900d604fbd1cf829be8d590b779896b398aa78fb83fe1d040026.html @@ -16,4 +16,4 @@
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/838b0f1442b50f56dd5814b62d677eea93985e45026807f8d63e7e8e8bac04e7.ncHeader b/argopy/tests/test_data/838b0f1442b50f56dd5814b62d677eea93985e45026807f8d63e7e8e8bac04e7.ncHeader index d74d260b..19b94929 100644 --- a/argopy/tests/test_data/838b0f1442b50f56dd5814b62d677eea93985e45026807f8d63e7e8e8bac04e7.ncHeader +++ b/argopy/tests/test_data/838b0f1442b50f56dd5814b62d677eea93985e45026807f8d63e7e8e8bac04e7.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_0ad6_1f03_4954.nc { :long_name = "Quality on date and time"; char direction(row=5041, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_0ad6_1f03_4954.nc { :long_name = "Float cycle number"; int config_mission_number(row=5041); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 16; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_0ad6_1f03_4954.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1526.135f, 11356.0f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_0ad6_1f03_4954.nc { :valid_min = -5.0f; // float char doxy_qc(row=5041, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1655.856f, 12321.26f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_0ad6_1f03_4954.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=5041, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 8.415855f, 31.84704f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_0ad6_1f03_4954.nc { :units = "micromole/kg"; float pres(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_0ad6_1f03_4954.nc { :valid_min = 0.0f; // float char pres_qc(row=5041, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.649095E-7f, 10.0f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_0ad6_1f03_4954.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=5041, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.0f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_0ad6_1f03_4954.nc { :units = "decibar"; float temp(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.884f, 11.566f; // float :C_format = "%.3f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_0ad6_1f03_4954.nc { :valid_min = -2.5f; // float char temp_qc(row=5041, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.471667f, 11.566f; // float :C_format = "%.3f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_0ad6_1f03_4954.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=5041, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_0ad6_1f03_4954.nc { :units = "degree_Celsius"; float psal(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.868f, 34.767f; // float :C_format = "%.4f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_0ad6_1f03_4954.nc { :valid_min = 2.0f; // float char psal_qc(row=5041, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.868f, 34.7755f; // float :C_format = "%.4f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_0ad6_1f03_4954.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=5041, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=5041); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.004f, 0.01f; // float :C_format = "%.4f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_0ad6_1f03_4954.nc { :geospatial_lon_max = -47.119708333333335; // double :geospatial_lon_min = -54.40875833333333; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:08:43Z (local files) -2024-08-23T08:08:43Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:29:28Z (local files) +2024-09-20T11:29:28Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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"; diff --git a/argopy/tests/test_data/8676b9624e9218c139e293fa521d5b1e2eec59d05ecbd136fd3d0a42b87d6006.nc b/argopy/tests/test_data/8676b9624e9218c139e293fa521d5b1e2eec59d05ecbd136fd3d0a42b87d6006.nc index 828af9d2..64cffd0d 100644 Binary files a/argopy/tests/test_data/8676b9624e9218c139e293fa521d5b1e2eec59d05ecbd136fd3d0a42b87d6006.nc and b/argopy/tests/test_data/8676b9624e9218c139e293fa521d5b1e2eec59d05ecbd136fd3d0a42b87d6006.nc differ diff --git a/argopy/tests/test_data/86c30bc8cd0e4699271da5f8145e1ad2a4f92e5784e80c0e83ced4ff493f8ec1.html b/argopy/tests/test_data/86c30bc8cd0e4699271da5f8145e1ad2a4f92e5784e80c0e83ced4ff493f8ec1.html index aba26e72..9548e35d 100644 --- a/argopy/tests/test_data/86c30bc8cd0e4699271da5f8145e1ad2a4f92e5784e80c0e83ced4ff493f8ec1.html +++ b/argopy/tests/test_data/86c30bc8cd0e4699271da5f8145e1ad2a4f92e5784e80c0e83ced4ff493f8ec1.html @@ -11,4 +11,4 @@
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 index b74720f2..5e65505f 100644 --- a/argopy/tests/test_data/86fefaa3fd8436f967d9d226765404d7e2542a72b8446ba802211eb9f75def7f.json +++ b/argopy/tests/test_data/86fefaa3fd8436f967d9d226765404d7e2542a72b8446ba802211eb9f75def7f.json @@ -1 +1 @@ -[{"id":5113361,"cvNumber":139,"coordinate":{"lat":61.55298,"lon":-12.13013},"level":0},{"id":5124545,"cvNumber":141,"coordinate":{"lat":61.31548,"lon":-10.04466},"level":0},{"id":5386723,"cvNumber":186,"coordinate":{"lat":63.17617,"lon":-0.24932},"level":0},{"id":5459438,"cvNumber":199,"coordinate":{"lat":60.33436,"lon":-5.06887},"level":0},{"id":5410828,"cvNumber":190,"coordinate":{"lat":61.71323,"lon":-3.4528},"level":0},{"id":5399493,"cvNumber":188,"coordinate":{"lat":62.33566,"lon":-0.046},"level":0},{"id":5405671,"cvNumber":189,"coordinate":{"lat":61.8271,"lon":-2.03741},"level":0},{"id":4827557,"cvNumber":89,"coordinate":{"lat":58.27889,"lon":-17.27009},"level":0},{"id":4770403,"cvNumber":76,"coordinate":{"lat":58.80949,"lon":-15.36668},"level":0},{"id":4857841,"cvNumber":94,"coordinate":{"lat":56.67244,"lon":-19.63578},"level":0},{"id":5276737,"cvNumber":167,"coordinate":{"lat":62.12723,"lon":-9.07109},"level":0},{"id":5257201,"cvNumber":163,"coordinate":{"lat":62.0141,"lon":-9.32643},"level":0},{"id":4942985,"cvNumber":110,"coordinate":{"lat":59.56514,"lon":-15.88328},"level":0},{"id":5032466,"cvNumber":125,"coordinate":{"lat":60.46418,"lon":-13.79616},"level":0},{"id":5057188,"cvNumber":130,"coordinate":{"lat":61.16538,"lon":-13.5711},"level":0},{"id":5679933,"cvNumber":231,"coordinate":{"lat":75.14029,"lon":12.61409},"level":0},{"id":5685444,"cvNumber":232,"coordinate":{"lat":75.10207,"lon":13.16723},"level":0},{"id":5701943,"cvNumber":235,"coordinate":{"lat":76.82737,"lon":9.10499},"level":0},{"id":4900127,"cvNumber":102,"coordinate":{"lat":59.38923,"lon":-17.26264},"level":0},{"id":4843737,"cvNumber":92,"coordinate":{"lat":57.39982,"lon":-18.44305},"level":0},{"id":4921109,"cvNumber":106,"coordinate":{"lat":59.68363,"lon":-16.75887},"level":0},{"id":4974444,"cvNumber":115,"coordinate":{"lat":59.80679,"lon":-11.82067},"level":0},{"id":4617547,"cvNumber":52,"coordinate":{"lat":57.54238,"lon":-17.31089},"level":0},{"id":4386506,"cvNumber":10,"coordinate":{"lat":55.23034,"lon":-15.89882},"level":0},{"id":4656275,"cvNumber":59,"coordinate":{"lat":57.18365,"lon":-17.73683},"level":0},{"id":4673583,"cvNumber":62,"coordinate":{"lat":57.45435,"lon":-17.40279},"level":0},{"id":4775425,"cvNumber":79,"coordinate":{"lat":58.57713,"lon":-16.73443},"level":0},{"id":4780813,"cvNumber":80,"coordinate":{"lat":58.50037,"lon":-15.99187},"level":0},{"id":4719965,"cvNumber":70,"coordinate":{"lat":57.5641,"lon":-19.90614},"level":0},{"id":5042316,"cvNumber":127,"coordinate":{"lat":60.09151,"lon":-15.41133},"level":0},{"id":5051943,"cvNumber":129,"coordinate":{"lat":60.48303,"lon":-14.03469},"level":0},{"id":5079749,"cvNumber":134,"coordinate":{"lat":61.8457,"lon":-11.78036},"level":0},{"id":4996374,"cvNumber":119,"coordinate":{"lat":60.26063,"lon":-10.34638},"level":0},{"id":5510606,"cvNumber":205,"coordinate":{"lat":64.999,"lon":5.50508},"level":0},{"id":5614509,"cvNumber":221,"coordinate":{"lat":73.58041,"lon":8.79651},"level":0},{"id":5193233,"cvNumber":151,"coordinate":{"lat":63.94678,"lon":-12.29761},"level":0},{"id":5198452,"cvNumber":152,"coordinate":{"lat":64.22874,"lon":-12.28796},"level":0},{"id":5296940,"cvNumber":171,"coordinate":{"lat":62.40331,"lon":-10.3973},"level":0},{"id":5594740,"cvNumber":217,"coordinate":{"lat":72.12915,"lon":4.13927},"level":0},{"id":5350651,"cvNumber":180,"coordinate":{"lat":62.36165,"lon":0.82394},"level":0},{"id":5318075,"cvNumber":175,"coordinate":{"lat":62.79558,"lon":-6.79186},"level":0},{"id":5306711,"cvNumber":173,"coordinate":{"lat":62.64054,"lon":-7.83988},"level":0},{"id":4177128,"cvNumber":3,"coordinate":{"lat":55.11099,"lon":-15.42748},"level":0},{"id":4421933,"cvNumber":17,"coordinate":{"lat":54.64196,"lon":-16.218},"level":0},{"id":4427102,"cvNumber":18,"coordinate":{"lat":54.90125,"lon":-17.02408},"level":0},{"id":5480439,"cvNumber":203,"coordinate":{"lat":62.23202,"lon":2.73538},"level":0},{"id":5187780,"cvNumber":150,"coordinate":{"lat":63.26365,"lon":-12.12518},"level":0},{"id":5629676,"cvNumber":224,"coordinate":{"lat":74.32286,"lon":7.48703},"level":0},{"id":4524203,"cvNumber":35,"coordinate":{"lat":56.36876,"lon":-18.98636},"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":4529332,"cvNumber":36,"coordinate":{"lat":56.74855,"lon":-18.82032},"level":0},{"id":4534254,"cvNumber":37,"coordinate":{"lat":57.01977,"lon":-17.7111},"level":0},{"id":4509602,"cvNumber":32,"coordinate":{"lat":55.39986,"lon":-18.39787},"level":0},{"id":4504456,"cvNumber":31,"coordinate":{"lat":55.39605,"lon":-18.25479},"level":0},{"id":4187330,"cvNumber":5,"coordinate":{"lat":54.53325,"lon":-15.98118},"level":0},{"id":4480963,"cvNumber":27,"coordinate":{"lat":54.63867,"lon":-19.65486},"level":0},{"id":4393432,"cvNumber":11,"coordinate":{"lat":54.98293,"lon":-15.9501},"level":0},{"id":4208106,"cvNumber":9,"coordinate":{"lat":55.03991,"lon":-16.64589},"level":0},{"id":4182111,"cvNumber":4,"coordinate":{"lat":55.05419,"lon":-15.57138},"level":0},{"id":4172501,"cvNumber":2,"coordinate":{"lat":54.82215,"lon":-15.47173},"level":0},{"id":4737517,"cvNumber":73,"coordinate":{"lat":58.43438,"lon":-19.45568},"level":0},{"id":4731976,"cvNumber":72,"coordinate":{"lat":58.04299,"lon":-19.45226},"level":0},{"id":4683742,"cvNumber":64,"coordinate":{"lat":56.99334,"lon":-18.68061},"level":0},{"id":4623074,"cvNumber":53,"coordinate":{"lat":57.37944,"lon":-18.41073},"level":0},{"id":5612504,"cvNumber":220,"coordinate":{"lat":73.19182,"lon":8.83639},"level":0},{"id":5037014,"cvNumber":126,"coordinate":{"lat":60.52781,"lon":-15.93557},"level":0},{"id":5422120,"cvNumber":192,"coordinate":{"lat":61.49456,"lon":-3.25646},"level":0},{"id":5373638,"cvNumber":184,"coordinate":{"lat":62.65184,"lon":-0.45329},"level":0},{"id":5443801,"cvNumber":196,"coordinate":{"lat":61.01515,"lon":-3.54841},"level":0},{"id":5449072,"cvNumber":197,"coordinate":{"lat":60.99847,"lon":-4.54048},"level":0},{"id":4434372,"cvNumber":19,"coordinate":{"lat":54.85261,"lon":-17.25892},"level":0},{"id":4569920,"cvNumber":44,"coordinate":{"lat":57.69014,"lon":-16.307},"level":0},{"id":4514492,"cvNumber":33,"coordinate":{"lat":55.26706,"lon":-18.60712},"level":0},{"id":4486285,"cvNumber":28,"coordinate":{"lat":54.8536,"lon":-19.17729},"level":0},{"id":5336816,"cvNumber":178,"coordinate":{"lat":61.35715,"lon":-3.53693},"level":0},{"id":5324924,"cvNumber":176,"coordinate":{"lat":62.86367,"lon":-5.0824},"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":5251920,"cvNumber":162,"coordinate":{"lat":61.94883,"lon":-10.07602},"level":0},{"id":5367289,"cvNumber":183,"coordinate":{"lat":62.53989,"lon":-0.35684},"level":0},{"id":5177253,"cvNumber":148,"coordinate":{"lat":62.52239,"lon":-8.7725},"level":0},{"id":5533034,"cvNumber":209,"coordinate":{"lat":68.51686,"lon":10.85222},"level":0},{"id":5230956,"cvNumber":158,"coordinate":{"lat":62.37408,"lon":-8.82737},"level":0},{"id":5301735,"cvNumber":172,"coordinate":{"lat":62.4466,"lon":-8.54536},"level":0},{"id":5246525,"cvNumber":161,"coordinate":{"lat":62.12424,"lon":-9.90861},"level":0},{"id":5485218,"cvNumber":204,"coordinate":{"lat":63.56736,"lon":5.41763},"level":0},{"id":5102167,"cvNumber":137,"coordinate":{"lat":61.34405,"lon":-12.56557},"level":0},{"id":4645013,"cvNumber":57,"coordinate":{"lat":57.05715,"lon":-18.08483},"level":0},{"id":4650398,"cvNumber":58,"coordinate":{"lat":57.361,"lon":-17.45839},"level":0},{"id":5002363,"cvNumber":120,"coordinate":{"lat":60.34052,"lon":-10.96452},"level":0},{"id":5010025,"cvNumber":121,"coordinate":{"lat":60.04604,"lon":-12.19904},"level":0},{"id":4628918,"cvNumber":54,"coordinate":{"lat":57.21195,"lon":-19.03403},"level":0},{"id":4664508,"cvNumber":60,"coordinate":{"lat":57.41596,"lon":-18.2533},"level":0},{"id":4467373,"cvNumber":25,"coordinate":{"lat":53.77326,"lon":-20.04341},"level":0},{"id":4461910,"cvNumber":24,"coordinate":{"lat":54.0082,"lon":-19.32005},"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":4797101,"cvNumber":83,"coordinate":{"lat":58.60921,"lon":-17.00869},"level":0},{"id":4764339,"cvNumber":77,"coordinate":{"lat":58.98261,"lon":-15.85382},"level":0},{"id":4714418,"cvNumber":69,"coordinate":{"lat":57.27664,"lon":-20.12999},"level":0},{"id":4889201,"cvNumber":100,"coordinate":{"lat":58.40615,"lon":-19.02183},"level":0},{"id":4870015,"cvNumber":96,"coordinate":{"lat":57.67298,"lon":-19.91722},"level":0},{"id":4879999,"cvNumber":98,"coordinate":{"lat":58.12681,"lon":-19.02356},"level":0},{"id":4833005,"cvNumber":90,"coordinate":{"lat":58.10506,"lon":-17.23889},"level":0},{"id":4725731,"cvNumber":71,"coordinate":{"lat":57.6053,"lon":-19.83704},"level":0},{"id":4963316,"cvNumber":113,"coordinate":{"lat":59.4801,"lon":-14.69412},"level":0},{"id":4931818,"cvNumber":108,"coordinate":{"lat":59.68373,"lon":-16.63808},"level":0},{"id":5287254,"cvNumber":169,"coordinate":{"lat":62.72309,"lon":-10.76317},"level":0},{"id":4519523,"cvNumber":34,"coordinate":{"lat":55.91075,"lon":-18.69593},"level":0},{"id":4539381,"cvNumber":38,"coordinate":{"lat":57.57189,"lon":-17.38597},"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":4412717,"cvNumber":15,"coordinate":{"lat":54.16193,"lon":-16.02747},"level":0},{"id":4408016,"cvNumber":14,"coordinate":{"lat":54.11355,"lon":-16.35289},"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":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":4574620,"cvNumber":45,"coordinate":{"lat":57.83243,"lon":-16.88148},"level":0},{"id":4634381,"cvNumber":55,"coordinate":{"lat":57.02725,"lon":-18.40289},"level":0},{"id":4590546,"cvNumber":48,"coordinate":{"lat":57.4608,"lon":-17.37929},"level":0},{"id":4597617,"cvNumber":49,"coordinate":{"lat":57.55099,"lon":-17.25859},"level":0},{"id":4584952,"cvNumber":47,"coordinate":{"lat":57.34062,"lon":-17.32262},"level":0},{"id":4605286,"cvNumber":50,"coordinate":{"lat":57.57669,"lon":-17.44851},"level":0},{"id":4668734,"cvNumber":61,"coordinate":{"lat":57.17598,"lon":-19.08851},"level":0},{"id":4491928,"cvNumber":29,"coordinate":{"lat":55.14974,"lon":-18.64806},"level":0},{"id":4198203,"cvNumber":7,"coordinate":{"lat":55.22541,"lon":-16.42535},"level":0},{"id":4417273,"cvNumber":16,"coordinate":{"lat":54.54695,"lon":-15.92301},"level":0},{"id":4171040,"cvNumber":1,"coordinate":{"lat":53.67167,"lon":-16.49225},"level":0},{"id":5074378,"cvNumber":133,"coordinate":{"lat":61.63248,"lon":-9.94795},"level":0},{"id":5069225,"cvNumber":132,"coordinate":{"lat":61.23078,"lon":-9.75079},"level":0},{"id":5170882,"cvNumber":147,"coordinate":{"lat":61.33107,"lon":-7.48075},"level":0},{"id":5218271,"cvNumber":156,"coordinate":{"lat":62.19324,"lon":-9.44193},"level":0},{"id":4192913,"cvNumber":6,"coordinate":{"lat":55.00298,"lon":-16.65554},"level":0},{"id":4203574,"cvNumber":8,"coordinate":{"lat":55.17807,"lon":-16.52152},"level":0},{"id":4403257,"cvNumber":13,"coordinate":{"lat":54.63462,"lon":-16.01929},"level":0},{"id":4398184,"cvNumber":12,"coordinate":{"lat":55.03279,"lon":-15.52631},"level":0},{"id":4498686,"cvNumber":30,"coordinate":{"lat":55.36536,"lon":-18.51987},"level":0},{"id":4611719,"cvNumber":51,"coordinate":{"lat":57.44955,"lon":-17.18861},"level":0},{"id":4472422,"cvNumber":26,"coordinate":{"lat":54.38691,"lon":-20.1983},"level":0},{"id":4708898,"cvNumber":68,"coordinate":{"lat":56.6271,"lon":-20.01933},"level":0},{"id":4838393,"cvNumber":91,"coordinate":{"lat":57.73185,"lon":-17.78118},"level":0},{"id":4969867,"cvNumber":114,"coordinate":{"lat":59.49408,"lon":-14.3717},"level":0},{"id":5330505,"cvNumber":177,"coordinate":{"lat":62.54454,"lon":-4.28722},"level":0},{"id":5292188,"cvNumber":170,"coordinate":{"lat":62.60382,"lon":-11.16106},"level":0},{"id":4875049,"cvNumber":97,"coordinate":{"lat":57.98109,"lon":-19.29338},"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":4849466,"cvNumber":93,"coordinate":{"lat":57.2501,"lon":-19.33942},"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":4802156,"cvNumber":84,"coordinate":{"lat":58.73689,"lon":-17.00536},"level":0},{"id":5047045,"cvNumber":128,"coordinate":{"lat":60.91264,"lon":-14.34336},"level":0},{"id":4990927,"cvNumber":118,"coordinate":{"lat":60.20195,"lon":-10.94612},"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":4957339,"cvNumber":112,"coordinate":{"lat":59.40157,"lon":-15.96248},"level":0},{"id":4948562,"cvNumber":111,"coordinate":{"lat":59.57842,"lon":-15.96082},"level":0},{"id":5062932,"cvNumber":131,"coordinate":{"lat":61.10274,"lon":-11.54177},"level":0},{"id":5026585,"cvNumber":124,"coordinate":{"lat":60.11172,"lon":-12.84729},"level":0},{"id":5021451,"cvNumber":123,"coordinate":{"lat":60.03934,"lon":-12.70026},"level":0},{"id":5015942,"cvNumber":122,"coordinate":{"lat":60.03802,"lon":-12.17785},"level":0},{"id":4905280,"cvNumber":103,"coordinate":{"lat":59.52392,"lon":-16.68186},"level":0},{"id":4910286,"cvNumber":104,"coordinate":{"lat":59.64957,"lon":-16.23991},"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":5203446,"cvNumber":153,"coordinate":{"lat":64.44137,"lon":-11.44177},"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":5225071,"cvNumber":157,"coordinate":{"lat":62.23491,"lon":-9.30311},"level":0},{"id":4770404,"cvNumber":78,"coordinate":{"lat":58.83374,"lon":-16.50212},"level":0},{"id":5236258,"cvNumber":159,"coordinate":{"lat":62.69312,"lon":-8.93493},"level":0},{"id":5242151,"cvNumber":160,"coordinate":{"lat":62.57729,"lon":-10.35109},"level":0},{"id":4894078,"cvNumber":101,"coordinate":{"lat":59.03056,"lon":-17.98159},"level":0},{"id":4791061,"cvNumber":82,"coordinate":{"lat":58.68411,"lon":-16.74316},"level":0},{"id":4786178,"cvNumber":81,"coordinate":{"lat":58.80359,"lon":-16.32123},"level":0},{"id":4915308,"cvNumber":105,"coordinate":{"lat":59.68997,"lon":-16.34428},"level":0},{"id":4817707,"cvNumber":87,"coordinate":{"lat":58.32619,"lon":-17.42224},"level":0},{"id":4936889,"cvNumber":109,"coordinate":{"lat":59.4947,"lon":-16.43479},"level":0},{"id":5087091,"cvNumber":135,"coordinate":{"lat":61.7442,"lon":-12.97266},"level":0},{"id":5118905,"cvNumber":140,"coordinate":{"lat":61.50413,"lon":-10.8322},"level":0},{"id":5107700,"cvNumber":138,"coordinate":{"lat":61.16901,"lon":-11.96042},"level":0},{"id":5182595,"cvNumber":149,"coordinate":{"lat":62.16085,"lon":-10.66924},"level":0},{"id":5130625,"cvNumber":142,"coordinate":{"lat":61.29164,"lon":-10.00747},"level":0},{"id":5092810,"cvNumber":136,"coordinate":{"lat":61.68313,"lon":-13.52947},"level":0},{"id":4679132,"cvNumber":63,"coordinate":{"lat":57.42743,"lon":-17.74671},"level":0},{"id":4579729,"cvNumber":46,"coordinate":{"lat":57.64115,"lon":-16.97603},"level":0},{"id":4688652,"cvNumber":65,"coordinate":{"lat":57.245,"lon":-18.36527},"level":0},{"id":4639610,"cvNumber":56,"coordinate":{"lat":56.85638,"lon":-17.79709},"level":0},{"id":4822778,"cvNumber":88,"coordinate":{"lat":58.20421,"lon":-17.33671},"level":0},{"id":4885087,"cvNumber":99,"coordinate":{"lat":58.07649,"lon":-18.99605},"level":0},{"id":4926294,"cvNumber":107,"coordinate":{"lat":59.67615,"lon":-17.13814},"level":0},{"id":4864970,"cvNumber":95,"coordinate":{"lat":57.385,"lon":-20.2288},"level":0},{"id":5316887,"cvNumber":174,"coordinate":{"lat":62.7434,"lon":-7.17362},"level":0},{"id":5343074,"cvNumber":179,"coordinate":{"lat":61.52214,"lon":-2.47236},"level":0},{"id":5282089,"cvNumber":168,"coordinate":{"lat":62.47217,"lon":-9.79039},"level":0},{"id":5262141,"cvNumber":164,"coordinate":{"lat":62.57092,"lon":-10.62947},"level":0},{"id":5355429,"cvNumber":181,"coordinate":{"lat":62.81069,"lon":0.13814},"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":5553536,"cvNumber":211,"coordinate":{"lat":68.46785,"lon":5.20809},"level":0},{"id":5559736,"cvNumber":212,"coordinate":{"lat":69.17077,"lon":4.68949},"level":0},{"id":5565178,"cvNumber":213,"coordinate":{"lat":69.67724,"lon":1.24964},"level":0},{"id":5454058,"cvNumber":198,"coordinate":{"lat":60.83912,"lon":-5.9961},"level":0},{"id":5589248,"cvNumber":216,"coordinate":{"lat":72.12954,"lon":4.3008},"level":0},{"id":5515436,"cvNumber":206,"coordinate":{"lat":66.6625,"lon":7.29287},"level":0},{"id":5475240,"cvNumber":202,"coordinate":{"lat":61.3643,"lon":-1.91198},"level":0},{"id":5361626,"cvNumber":182,"coordinate":{"lat":62.91089,"lon":0.08152},"level":0},{"id":5465158,"cvNumber":200,"coordinate":{"lat":60.31973,"lon":-4.57881},"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":5415800,"cvNumber":191,"coordinate":{"lat":61.59029,"lon":-3.71148},"level":0},{"id":5708166,"cvNumber":236,"coordinate":{"lat":76.56772,"lon":8.49337},"level":0},{"id":5470298,"cvNumber":201,"coordinate":{"lat":61.31072,"lon":-2.32613},"level":0},{"id":5380345,"cvNumber":185,"coordinate":{"lat":63.12578,"lon":-0.72843},"level":0},{"id":5392798,"cvNumber":187,"coordinate":{"lat":62.87869,"lon":0.55348},"level":0},{"id":5656579,"cvNumber":227,"coordinate":{"lat":75.08741,"lon":11.65905},"level":0},{"id":5651313,"cvNumber":226,"coordinate":{"lat":74.44711,"lon":10.73791},"level":0},{"id":5542027,"cvNumber":210,"coordinate":{"lat":68.40957,"lon":7.96411},"level":0},{"id":5528347,"cvNumber":208,"coordinate":{"lat":68.42738,"lon":11.21186},"level":0},{"id":5433278,"cvNumber":194,"coordinate":{"lat":61.81416,"lon":-3.28625},"level":0},{"id":5427829,"cvNumber":193,"coordinate":{"lat":61.48279,"lon":-3.59994},"level":0},{"id":5438580,"cvNumber":195,"coordinate":{"lat":61.2901,"lon":-3.91299},"level":0},{"id":5523060,"cvNumber":207,"coordinate":{"lat":68.24948,"lon":10.50543},"level":0},{"id":5581760,"cvNumber":215,"coordinate":{"lat":71.16077,"lon":3.98725},"level":0},{"id":5576692,"cvNumber":214,"coordinate":{"lat":70.73521,"lon":4.17038},"level":0},{"id":5624624,"cvNumber":223,"coordinate":{"lat":74.17329,"lon":8.28478},"level":0},{"id":5619672,"cvNumber":222,"coordinate":{"lat":73.95364,"lon":9.76238},"level":0},{"id":5649434,"cvNumber":225,"coordinate":{"lat":74.23237,"lon":9.76623},"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":5675483,"cvNumber":230,"coordinate":{"lat":75.10084,"lon":12.74671},"level":0},{"id":5696602,"cvNumber":234,"coordinate":{"lat":77.01267,"lon":10.63261},"level":0},{"id":5694661,"cvNumber":233,"coordinate":{"lat":76.70511,"lon":13.2034},"level":0},{"id":5717034,"cvNumber":237,"coordinate":{"lat":76.72053,"lon":9.02717},"level":0}] \ No newline at end of file +[{"id":4750574,"cvNumber":75,"coordinate":{"lat":58.77149,"lon":-15.68564},"level":0},{"id":4875049,"cvNumber":97,"coordinate":{"lat":57.98109,"lon":-19.29338},"level":0},{"id":5010025,"cvNumber":121,"coordinate":{"lat":60.04604,"lon":-12.19904},"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":4514492,"cvNumber":33,"coordinate":{"lat":55.26706,"lon":-18.60712},"level":0},{"id":4427102,"cvNumber":18,"coordinate":{"lat":54.90125,"lon":-17.02408},"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":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":4894078,"cvNumber":101,"coordinate":{"lat":59.03056,"lon":-17.98159},"level":0},{"id":4714418,"cvNumber":69,"coordinate":{"lat":57.27664,"lon":-20.12999},"level":0},{"id":4744377,"cvNumber":74,"coordinate":{"lat":58.84834,"lon":-18.84773},"level":0},{"id":5069225,"cvNumber":132,"coordinate":{"lat":61.23078,"lon":-9.75079},"level":0},{"id":5107700,"cvNumber":138,"coordinate":{"lat":61.16901,"lon":-11.96042},"level":0},{"id":4584952,"cvNumber":47,"coordinate":{"lat":57.34062,"lon":-17.32262},"level":0},{"id":4590546,"cvNumber":48,"coordinate":{"lat":57.4608,"lon":-17.37929},"level":0},{"id":4791061,"cvNumber":82,"coordinate":{"lat":58.68411,"lon":-16.74316},"level":0},{"id":5553536,"cvNumber":211,"coordinate":{"lat":68.46785,"lon":5.20809},"level":0},{"id":5443801,"cvNumber":196,"coordinate":{"lat":61.01515,"lon":-3.54841},"level":0},{"id":5510606,"cvNumber":205,"coordinate":{"lat":64.999,"lon":5.50508},"level":0},{"id":5324924,"cvNumber":176,"coordinate":{"lat":62.86367,"lon":-5.0824},"level":0},{"id":5251920,"cvNumber":162,"coordinate":{"lat":61.94883,"lon":-10.07602},"level":0},{"id":5742625,"cvNumber":240,"coordinate":{"lat":76.59893,"lon":10.33002},"level":0},{"id":5656579,"cvNumber":227,"coordinate":{"lat":75.08741,"lon":11.65905},"level":0},{"id":5336816,"cvNumber":178,"coordinate":{"lat":61.35715,"lon":-3.53693},"level":0},{"id":5292188,"cvNumber":170,"coordinate":{"lat":62.60382,"lon":-11.16106},"level":0},{"id":4623074,"cvNumber":53,"coordinate":{"lat":57.37944,"lon":-18.41073},"level":0},{"id":4985485,"cvNumber":117,"coordinate":{"lat":60.21741,"lon":-9.88571},"level":0},{"id":4990927,"cvNumber":118,"coordinate":{"lat":60.20195,"lon":-10.94612},"level":0},{"id":4996374,"cvNumber":119,"coordinate":{"lat":60.26063,"lon":-10.34638},"level":0},{"id":4915308,"cvNumber":105,"coordinate":{"lat":59.68997,"lon":-16.34428},"level":0},{"id":5565178,"cvNumber":213,"coordinate":{"lat":69.67724,"lon":1.24964},"level":0},{"id":4639610,"cvNumber":56,"coordinate":{"lat":56.85638,"lon":-17.79709},"level":0},{"id":4770404,"cvNumber":78,"coordinate":{"lat":58.83374,"lon":-16.50212},"level":0},{"id":4668734,"cvNumber":61,"coordinate":{"lat":57.17598,"lon":-19.08851},"level":0},{"id":5410828,"cvNumber":190,"coordinate":{"lat":61.71323,"lon":-3.4528},"level":0},{"id":5316887,"cvNumber":174,"coordinate":{"lat":62.7434,"lon":-7.17362},"level":0},{"id":4498686,"cvNumber":30,"coordinate":{"lat":55.36536,"lon":-18.51987},"level":0},{"id":4539381,"cvNumber":38,"coordinate":{"lat":57.57189,"lon":-17.38597},"level":0},{"id":4504456,"cvNumber":31,"coordinate":{"lat":55.39605,"lon":-18.25479},"level":0},{"id":4524203,"cvNumber":35,"coordinate":{"lat":56.36876,"lon":-18.98636},"level":0},{"id":5685444,"cvNumber":232,"coordinate":{"lat":75.10207,"lon":13.16723},"level":0},{"id":5102167,"cvNumber":137,"coordinate":{"lat":61.34405,"lon":-12.56557},"level":0},{"id":5343074,"cvNumber":179,"coordinate":{"lat":61.52214,"lon":-2.47236},"level":0},{"id":5246525,"cvNumber":161,"coordinate":{"lat":62.12424,"lon":-9.90861},"level":0},{"id":5236258,"cvNumber":159,"coordinate":{"lat":62.69312,"lon":-8.93493},"level":0},{"id":5026585,"cvNumber":124,"coordinate":{"lat":60.11172,"lon":-12.84729},"level":0},{"id":4849466,"cvNumber":93,"coordinate":{"lat":57.2501,"lon":-19.33942},"level":0},{"id":5074378,"cvNumber":133,"coordinate":{"lat":61.63248,"lon":-9.94795},"level":0},{"id":5042316,"cvNumber":127,"coordinate":{"lat":60.09151,"lon":-15.41133},"level":0},{"id":4797101,"cvNumber":83,"coordinate":{"lat":58.60921,"lon":-17.00869},"level":0},{"id":4664508,"cvNumber":60,"coordinate":{"lat":57.41596,"lon":-18.2533},"level":0},{"id":4444716,"cvNumber":21,"coordinate":{"lat":54.75768,"lon":-17.42887},"level":0},{"id":4770403,"cvNumber":76,"coordinate":{"lat":58.80949,"lon":-15.36668},"level":0},{"id":4764339,"cvNumber":77,"coordinate":{"lat":58.98261,"lon":-15.85382},"level":0},{"id":5092810,"cvNumber":136,"coordinate":{"lat":61.68313,"lon":-13.52947},"level":0},{"id":4450997,"cvNumber":22,"coordinate":{"lat":54.50836,"lon":-18.38775},"level":0},{"id":4864970,"cvNumber":95,"coordinate":{"lat":57.385,"lon":-20.2288},"level":0},{"id":5589248,"cvNumber":216,"coordinate":{"lat":72.12954,"lon":4.3008},"level":0},{"id":5262141,"cvNumber":164,"coordinate":{"lat":62.57092,"lon":-10.62947},"level":0},{"id":5087091,"cvNumber":135,"coordinate":{"lat":61.7442,"lon":-12.97266},"level":0},{"id":5177253,"cvNumber":148,"coordinate":{"lat":62.52239,"lon":-8.7725},"level":0},{"id":4491928,"cvNumber":29,"coordinate":{"lat":55.14974,"lon":-18.64806},"level":0},{"id":4634381,"cvNumber":55,"coordinate":{"lat":57.02725,"lon":-18.40289},"level":0},{"id":4408016,"cvNumber":14,"coordinate":{"lat":54.11355,"lon":-16.35289},"level":0},{"id":4172501,"cvNumber":2,"coordinate":{"lat":54.82215,"lon":-15.47173},"level":0},{"id":4187330,"cvNumber":5,"coordinate":{"lat":54.53325,"lon":-15.98118},"level":0},{"id":4509602,"cvNumber":32,"coordinate":{"lat":55.39986,"lon":-18.39787},"level":0},{"id":4439227,"cvNumber":20,"coordinate":{"lat":54.7425,"lon":-17.22943},"level":0},{"id":4434372,"cvNumber":19,"coordinate":{"lat":54.85261,"lon":-17.25892},"level":0},{"id":4534254,"cvNumber":37,"coordinate":{"lat":57.01977,"lon":-17.7111},"level":0},{"id":4529332,"cvNumber":36,"coordinate":{"lat":56.74855,"lon":-18.82032},"level":0},{"id":4544191,"cvNumber":39,"coordinate":{"lat":57.6292,"lon":-17.05243},"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":4456180,"cvNumber":23,"coordinate":{"lat":54.39093,"lon":-18.95335},"level":0},{"id":4192913,"cvNumber":6,"coordinate":{"lat":55.00298,"lon":-16.65554},"level":0},{"id":4198203,"cvNumber":7,"coordinate":{"lat":55.22541,"lon":-16.42535},"level":0},{"id":4569920,"cvNumber":44,"coordinate":{"lat":57.69014,"lon":-16.307},"level":0},{"id":4719965,"cvNumber":70,"coordinate":{"lat":57.5641,"lon":-19.90614},"level":0},{"id":4708898,"cvNumber":68,"coordinate":{"lat":56.6271,"lon":-20.01933},"level":0},{"id":4693836,"cvNumber":66,"coordinate":{"lat":56.93688,"lon":-19.35073},"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":4679132,"cvNumber":63,"coordinate":{"lat":57.42743,"lon":-17.74671},"level":0},{"id":4579729,"cvNumber":46,"coordinate":{"lat":57.64115,"lon":-16.97603},"level":0},{"id":4597617,"cvNumber":49,"coordinate":{"lat":57.55099,"lon":-17.25859},"level":0},{"id":4617547,"cvNumber":52,"coordinate":{"lat":57.54238,"lon":-17.31089},"level":0},{"id":4549100,"cvNumber":40,"coordinate":{"lat":57.50651,"lon":-17.04049},"level":0},{"id":4650398,"cvNumber":58,"coordinate":{"lat":57.361,"lon":-17.45839},"level":0},{"id":4656275,"cvNumber":59,"coordinate":{"lat":57.18365,"lon":-17.73683},"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":4645013,"cvNumber":57,"coordinate":{"lat":57.05715,"lon":-18.08483},"level":0},{"id":4403257,"cvNumber":13,"coordinate":{"lat":54.63462,"lon":-16.01929},"level":0},{"id":4398184,"cvNumber":12,"coordinate":{"lat":55.03279,"lon":-15.52631},"level":0},{"id":4412717,"cvNumber":15,"coordinate":{"lat":54.16193,"lon":-16.02747},"level":0},{"id":4611719,"cvNumber":51,"coordinate":{"lat":57.44955,"lon":-17.18861},"level":0},{"id":4827557,"cvNumber":89,"coordinate":{"lat":58.27889,"lon":-17.27009},"level":0},{"id":4673583,"cvNumber":62,"coordinate":{"lat":57.45435,"lon":-17.40279},"level":0},{"id":4889201,"cvNumber":100,"coordinate":{"lat":58.40615,"lon":-19.02183},"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":4605286,"cvNumber":50,"coordinate":{"lat":57.57669,"lon":-17.44851},"level":0},{"id":4574620,"cvNumber":45,"coordinate":{"lat":57.83243,"lon":-16.88148},"level":0},{"id":4486285,"cvNumber":28,"coordinate":{"lat":54.8536,"lon":-19.17729},"level":0},{"id":4386506,"cvNumber":10,"coordinate":{"lat":55.23034,"lon":-15.89882},"level":0},{"id":4393432,"cvNumber":11,"coordinate":{"lat":54.98293,"lon":-15.9501},"level":0},{"id":4472422,"cvNumber":26,"coordinate":{"lat":54.38691,"lon":-20.1983},"level":0},{"id":5118905,"cvNumber":140,"coordinate":{"lat":61.50413,"lon":-10.8322},"level":0},{"id":5113361,"cvNumber":139,"coordinate":{"lat":61.55298,"lon":-12.13013},"level":0},{"id":5079749,"cvNumber":134,"coordinate":{"lat":61.8457,"lon":-11.78036},"level":0},{"id":4980324,"cvNumber":116,"coordinate":{"lat":60.23811,"lon":-10.884},"level":0},{"id":4931818,"cvNumber":108,"coordinate":{"lat":59.68373,"lon":-16.63808},"level":0},{"id":4936889,"cvNumber":109,"coordinate":{"lat":59.4947,"lon":-16.43479},"level":0},{"id":5037014,"cvNumber":126,"coordinate":{"lat":60.52781,"lon":-15.93557},"level":0},{"id":5032466,"cvNumber":125,"coordinate":{"lat":60.46418,"lon":-13.79616},"level":0},{"id":4699940,"cvNumber":67,"coordinate":{"lat":56.61364,"lon":-19.66739},"level":0},{"id":4461910,"cvNumber":24,"coordinate":{"lat":54.0082,"lon":-19.32005},"level":0},{"id":4171040,"cvNumber":1,"coordinate":{"lat":53.67167,"lon":-16.49225},"level":0},{"id":4177128,"cvNumber":3,"coordinate":{"lat":55.11099,"lon":-15.42748},"level":0},{"id":4900127,"cvNumber":102,"coordinate":{"lat":59.38923,"lon":-17.26264},"level":0},{"id":5015942,"cvNumber":122,"coordinate":{"lat":60.03802,"lon":-12.17785},"level":0},{"id":5318075,"cvNumber":175,"coordinate":{"lat":62.79558,"lon":-6.79186},"level":0},{"id":5242151,"cvNumber":160,"coordinate":{"lat":62.57729,"lon":-10.35109},"level":0},{"id":5470298,"cvNumber":201,"coordinate":{"lat":61.31072,"lon":-2.32613},"level":0},{"id":5576692,"cvNumber":214,"coordinate":{"lat":70.73521,"lon":4.17038},"level":0},{"id":5392798,"cvNumber":187,"coordinate":{"lat":62.87869,"lon":0.55348},"level":0},{"id":4554520,"cvNumber":41,"coordinate":{"lat":57.55011,"lon":-16.7159},"level":0},{"id":4519523,"cvNumber":34,"coordinate":{"lat":55.91075,"lon":-18.69593},"level":0},{"id":4942985,"cvNumber":110,"coordinate":{"lat":59.56514,"lon":-15.88328},"level":0},{"id":5021451,"cvNumber":123,"coordinate":{"lat":60.03934,"lon":-12.70026},"level":0},{"id":4780813,"cvNumber":80,"coordinate":{"lat":58.50037,"lon":-15.99187},"level":0},{"id":4628918,"cvNumber":54,"coordinate":{"lat":57.21195,"lon":-19.03403},"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":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":5350651,"cvNumber":180,"coordinate":{"lat":62.36165,"lon":0.82394},"level":0},{"id":5614509,"cvNumber":221,"coordinate":{"lat":73.58041,"lon":8.79651},"level":0},{"id":4737517,"cvNumber":73,"coordinate":{"lat":58.43438,"lon":-19.45568},"level":0},{"id":4957339,"cvNumber":112,"coordinate":{"lat":59.40157,"lon":-15.96248},"level":0},{"id":4963316,"cvNumber":113,"coordinate":{"lat":59.4801,"lon":-14.69412},"level":0},{"id":5062932,"cvNumber":131,"coordinate":{"lat":61.10274,"lon":-11.54177},"level":0},{"id":5057188,"cvNumber":130,"coordinate":{"lat":61.16538,"lon":-13.5711},"level":0},{"id":5485218,"cvNumber":204,"coordinate":{"lat":63.56736,"lon":5.41763},"level":0},{"id":5594740,"cvNumber":217,"coordinate":{"lat":72.12915,"lon":4.13927},"level":0},{"id":5581760,"cvNumber":215,"coordinate":{"lat":71.16077,"lon":3.98725},"level":0},{"id":5433278,"cvNumber":194,"coordinate":{"lat":61.81416,"lon":-3.28625},"level":0},{"id":5533034,"cvNumber":209,"coordinate":{"lat":68.51686,"lon":10.85222},"level":0},{"id":4833005,"cvNumber":90,"coordinate":{"lat":58.10506,"lon":-17.23889},"level":0},{"id":4838393,"cvNumber":91,"coordinate":{"lat":57.73185,"lon":-17.78118},"level":0},{"id":5002363,"cvNumber":120,"coordinate":{"lat":60.34052,"lon":-10.96452},"level":0},{"id":4725731,"cvNumber":71,"coordinate":{"lat":57.6053,"lon":-19.83704},"level":0},{"id":4731976,"cvNumber":72,"coordinate":{"lat":58.04299,"lon":-19.45226},"level":0},{"id":4843737,"cvNumber":92,"coordinate":{"lat":57.39982,"lon":-18.44305},"level":0},{"id":4775425,"cvNumber":79,"coordinate":{"lat":58.57713,"lon":-16.73443},"level":0},{"id":4948562,"cvNumber":111,"coordinate":{"lat":59.57842,"lon":-15.96082},"level":0},{"id":5147952,"cvNumber":144,"coordinate":{"lat":61.5588,"lon":-8.38953},"level":0},{"id":5156607,"cvNumber":145,"coordinate":{"lat":61.62166,"lon":-8.87166},"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":5165196,"cvNumber":146,"coordinate":{"lat":62.07631,"lon":-9.05162},"level":0},{"id":5225071,"cvNumber":157,"coordinate":{"lat":62.23491,"lon":-9.30311},"level":0},{"id":5230956,"cvNumber":158,"coordinate":{"lat":62.37408,"lon":-8.82737},"level":0},{"id":5276737,"cvNumber":167,"coordinate":{"lat":62.12723,"lon":-9.07109},"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":5257201,"cvNumber":163,"coordinate":{"lat":62.0141,"lon":-9.32643},"level":0},{"id":4870015,"cvNumber":96,"coordinate":{"lat":57.67298,"lon":-19.91722},"level":0},{"id":4905280,"cvNumber":103,"coordinate":{"lat":59.52392,"lon":-16.68186},"level":0},{"id":4786178,"cvNumber":81,"coordinate":{"lat":58.80359,"lon":-16.32123},"level":0},{"id":4921109,"cvNumber":106,"coordinate":{"lat":59.68363,"lon":-16.75887},"level":0},{"id":4926294,"cvNumber":107,"coordinate":{"lat":59.67615,"lon":-17.13814},"level":0},{"id":4910286,"cvNumber":104,"coordinate":{"lat":59.64957,"lon":-16.23991},"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":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":5612504,"cvNumber":220,"coordinate":{"lat":73.19182,"lon":8.83639},"level":0},{"id":5523060,"cvNumber":207,"coordinate":{"lat":68.24948,"lon":10.50543},"level":0},{"id":5515436,"cvNumber":206,"coordinate":{"lat":66.6625,"lon":7.29287},"level":0},{"id":5559736,"cvNumber":212,"coordinate":{"lat":69.17077,"lon":4.68949},"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":5465158,"cvNumber":200,"coordinate":{"lat":60.31973,"lon":-4.57881},"level":0},{"id":5528347,"cvNumber":208,"coordinate":{"lat":68.42738,"lon":11.21186},"level":0},{"id":5380345,"cvNumber":185,"coordinate":{"lat":63.12578,"lon":-0.72843},"level":0},{"id":5661972,"cvNumber":228,"coordinate":{"lat":74.49503,"lon":13.29639},"level":0},{"id":5480439,"cvNumber":203,"coordinate":{"lat":62.23202,"lon":2.73538},"level":0},{"id":5475240,"cvNumber":202,"coordinate":{"lat":61.3643,"lon":-1.91198},"level":0},{"id":4817707,"cvNumber":87,"coordinate":{"lat":58.32619,"lon":-17.42224},"level":0},{"id":4879999,"cvNumber":98,"coordinate":{"lat":58.12681,"lon":-19.02356},"level":0},{"id":4802156,"cvNumber":84,"coordinate":{"lat":58.73689,"lon":-17.00536},"level":0},{"id":4857841,"cvNumber":94,"coordinate":{"lat":56.67244,"lon":-19.63578},"level":0},{"id":4822778,"cvNumber":88,"coordinate":{"lat":58.20421,"lon":-17.33671},"level":0},{"id":4885087,"cvNumber":99,"coordinate":{"lat":58.07649,"lon":-18.99605},"level":0},{"id":5137317,"cvNumber":143,"coordinate":{"lat":61.53205,"lon":-9.86763},"level":0},{"id":5051943,"cvNumber":129,"coordinate":{"lat":60.48303,"lon":-14.03469},"level":0},{"id":5047045,"cvNumber":128,"coordinate":{"lat":60.91264,"lon":-14.34336},"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":5170882,"cvNumber":147,"coordinate":{"lat":61.33107,"lon":-7.48075},"level":0},{"id":5218271,"cvNumber":156,"coordinate":{"lat":62.19324,"lon":-9.44193},"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":5182595,"cvNumber":149,"coordinate":{"lat":62.16085,"lon":-10.66924},"level":0},{"id":5399493,"cvNumber":188,"coordinate":{"lat":62.33566,"lon":-0.046},"level":0},{"id":5405671,"cvNumber":189,"coordinate":{"lat":61.8271,"lon":-2.03741},"level":0},{"id":5330505,"cvNumber":177,"coordinate":{"lat":62.54454,"lon":-4.28722},"level":0},{"id":5438580,"cvNumber":195,"coordinate":{"lat":61.2901,"lon":-3.91299},"level":0},{"id":5386723,"cvNumber":186,"coordinate":{"lat":63.17617,"lon":-0.24932},"level":0},{"id":5355429,"cvNumber":181,"coordinate":{"lat":62.81069,"lon":0.13814},"level":0},{"id":5361626,"cvNumber":182,"coordinate":{"lat":62.91089,"lon":0.08152},"level":0},{"id":5454058,"cvNumber":198,"coordinate":{"lat":60.83912,"lon":-5.9961},"level":0},{"id":5449072,"cvNumber":197,"coordinate":{"lat":60.99847,"lon":-4.54048},"level":0},{"id":5415800,"cvNumber":191,"coordinate":{"lat":61.59029,"lon":-3.71148},"level":0},{"id":5422120,"cvNumber":192,"coordinate":{"lat":61.49456,"lon":-3.25646},"level":0},{"id":5427829,"cvNumber":193,"coordinate":{"lat":61.48279,"lon":-3.59994},"level":0},{"id":5459438,"cvNumber":199,"coordinate":{"lat":60.33436,"lon":-5.06887},"level":0},{"id":5542027,"cvNumber":210,"coordinate":{"lat":68.40957,"lon":7.96411},"level":0},{"id":5619672,"cvNumber":222,"coordinate":{"lat":73.95364,"lon":9.76238},"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":5651313,"cvNumber":226,"coordinate":{"lat":74.44711,"lon":10.73791},"level":0},{"id":5649434,"cvNumber":225,"coordinate":{"lat":74.23237,"lon":9.76623},"level":0},{"id":5668611,"cvNumber":229,"coordinate":{"lat":74.84115,"lon":12.95322},"level":0},{"id":5679933,"cvNumber":231,"coordinate":{"lat":75.14029,"lon":12.61409},"level":0},{"id":5675483,"cvNumber":230,"coordinate":{"lat":75.10084,"lon":12.74671},"level":0},{"id":5696602,"cvNumber":234,"coordinate":{"lat":77.01267,"lon":10.63261},"level":0},{"id":5694661,"cvNumber":233,"coordinate":{"lat":76.70511,"lon":13.2034},"level":0},{"id":5701943,"cvNumber":235,"coordinate":{"lat":76.82737,"lon":9.10499},"level":0},{"id":5708166,"cvNumber":236,"coordinate":{"lat":76.56772,"lon":8.49337},"level":0},{"id":5731545,"cvNumber":238,"coordinate":{"lat":76.07349,"lon":9.404},"level":0},{"id":5717034,"cvNumber":237,"coordinate":{"lat":76.72053,"lon":9.02717},"level":0},{"id":5736810,"cvNumber":239,"coordinate":{"lat":76.55486,"lon":9.36259},"level":0}] \ No newline at end of file diff --git a/argopy/tests/test_data/87f713a612ba53905b351d623c0ca45d35326b5baab6c9deb0d3c7d0e526b48f.nc b/argopy/tests/test_data/87f713a612ba53905b351d623c0ca45d35326b5baab6c9deb0d3c7d0e526b48f.nc index b6fee257..48b1f9ef 100644 Binary files a/argopy/tests/test_data/87f713a612ba53905b351d623c0ca45d35326b5baab6c9deb0d3c7d0e526b48f.nc and b/argopy/tests/test_data/87f713a612ba53905b351d623c0ca45d35326b5baab6c9deb0d3c7d0e526b48f.nc differ diff --git a/argopy/tests/test_data/8c59c1e8d6274cd311886a7be29a11764202573fa264847747a20d543f13740c.ncHeader b/argopy/tests/test_data/8c59c1e8d6274cd311886a7be29a11764202573fa264847747a20d543f13740c.ncHeader index 34e51411..4e64cbed 100644 --- a/argopy/tests/test_data/8c59c1e8d6274cd311886a7be29a11764202573fa264847747a20d543f13740c.ncHeader +++ b/argopy/tests/test_data/8c59c1e8d6274cd311886a7be29a11764202573fa264847747a20d543f13740c.ncHeader @@ -1,6 +1,6 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { dimensions: - row = 29677; + row = 29532; direction_strlen = 1; platform_number_strlen = 7; doxy_qc_strlen = 1; @@ -12,7 +12,7 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { psal_qc_strlen = 1; psal_adjusted_qc_strlen = 1; variables: - double latitude(row=29677); + double latitude(row=29532); :_CoordinateAxisType = "Lat"; :_FillValue = 99999.0; // double :actual_range = 55.00095666666667, 56.99997; // double @@ -26,7 +26,7 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :valid_max = 90.0; // double :valid_min = -90.0; // double - double longitude(row=29677); + double longitude(row=29532); :_CoordinateAxisType = "Lon"; :_FillValue = 99999.0; // double :actual_range = -54.999, -47.00874350000001; // double @@ -40,16 +40,16 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :valid_max = 180.0; // double :valid_min = -180.0; // double - char position_qc(row=29677); + char position_qc(row=29532); :actual_range = "18"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double :conventions = "Argo reference table 2"; :long_name = "Quality on position (latitude and longitude)"; - double time(row=29677); + double time(row=29532); :_CoordinateAxisType = "Time"; - :actual_range = 1.063557316224E9, 1.72432578E9; // double + :actual_range = 1.063557316224E9, 1.72674504E9; // double :axis = "T"; :conventions = "Relative julian days with decimal part (as parts of day)"; :ioos_category = "Time"; @@ -59,15 +59,15 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :time_origin = "01-JAN-1970 00:00:00"; :units = "seconds since 1970-01-01T00:00:00Z"; - char time_qc(row=29677); + char time_qc(row=29532); :actual_range = "11"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double :conventions = "Argo reference table 2"; :long_name = "Quality on date and time"; - char direction(row=29677, direction_strlen=1); - :_ChunkSizes = 133; // int + char direction(row=29532, direction_strlen=1); + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -75,14 +75,14 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :ioos_category = "Currents"; :long_name = "Direction of the station profiles"; - char platform_number(row=29677, platform_number_strlen=7); + char platform_number(row=29532, 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"; - int cycle_number(row=29677); + int cycle_number(row=29532); :_FillValue = 99999; // int :actual_range = 0, 367; // int :cf_role = "profile_id"; @@ -91,8 +91,8 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; :long_name = "Float cycle number"; - int config_mission_number(row=29677); - :_ChunkSizes = 133; // int + int config_mission_number(row=29532); + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 0, 65; // int :colorBarMaximum = 100.0; // double @@ -101,8 +101,8 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :ioos_category = "Statistics"; :long_name = "Unique number denoting the missions performed by the float"; - float doxy(row=29677); - :_ChunkSizes = 133, 1591; // int + float doxy(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1526.135f, 11356.0f; // float :C_format = "%.3f"; @@ -116,14 +116,14 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :valid_max = 600.0f; // float :valid_min = -5.0f; // float - char doxy_qc(row=29677, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char doxy_qc(row=29532, doxy_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float doxy_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int + float doxy_adjusted(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1655.856f, 12321.26f; // float :C_format = "%.3f"; @@ -135,14 +135,14 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :valid_max = 600.0f; // float :valid_min = -5.0f; // float - char doxy_adjusted_qc(row=29677, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char doxy_adjusted_qc(row=29532, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float doxy_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // int + float doxy_adjusted_error(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.630909f, 31.84704f; // float :C_format = "%.3f"; @@ -151,8 +151,8 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :resolution = 0.001f; // float :units = "micromole/kg"; - float pres(row=29677); - :_ChunkSizes = 133, 1591; // int + float pres(row=29532); + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float @@ -168,14 +168,14 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :valid_max = 12000.0f; // float :valid_min = 0.0f; // float - char pres_qc(row=29677, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char pres_qc(row=29532, pres_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float pres_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int + float pres_adjusted(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.768372E-7f, 10.49f; // float :axis = "Z"; @@ -188,14 +188,14 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :valid_max = 12000.0f; // float :valid_min = 0.0f; // float - char pres_adjusted_qc(row=29677, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char pres_adjusted_qc(row=29532, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float pres_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // int + float pres_adjusted_error(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.0f, 2.4f; // float :C_format = "%.3f"; @@ -204,8 +204,8 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :resolution = 0.001f; // float :units = "decibar"; - float temp(row=29677); - :_ChunkSizes = 133, 1591; // int + float temp(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.401f, 15.6335f; // float :C_format = "%.3f"; @@ -219,14 +219,14 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :valid_max = 40.0f; // float :valid_min = -2.5f; // float - char temp_qc(row=29677, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char temp_qc(row=29532, temp_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float temp_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int + float temp_adjusted(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.401f, 12.905f; // float :C_format = "%.3f"; @@ -238,14 +238,14 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :valid_max = 40.0f; // float :valid_min = -2.5f; // float - char temp_adjusted_qc(row=29677, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char temp_adjusted_qc(row=29532, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float temp_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // int + float temp_adjusted_error(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -254,10 +254,10 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :resolution = 0.001f; // float :units = "degree_Celsius"; - float psal(row=29677); - :_ChunkSizes = 133, 1591; // int + float psal(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float - :actual_range = 0.402f, 35.02467f; // float + :actual_range = 1.208f, 35.02467f; // float :C_format = "%.4f"; :cf_standard_name = "sea_water_salinity"; :FORTRAN_format = "F.4"; @@ -269,14 +269,14 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :valid_max = 41.0f; // float :valid_min = 2.0f; // float - char psal_qc(row=29677, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char psal_qc(row=29532, psal_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float psal_adjusted(row=29677); - :_ChunkSizes = 133, 1591; // int + float psal_adjusted(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.868f, 35.02467f; // float :C_format = "%.4f"; @@ -288,14 +288,14 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :valid_max = 41.0f; // float :valid_min = 2.0f; // float - char psal_adjusted_qc(row=29677, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char psal_adjusted_qc(row=29532, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float psal_adjusted_error(row=29677); - :_ChunkSizes = 133, 1591; // int + float psal_adjusted_error(row=29532); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.004f, 1.046394f; // float :C_format = "%.4f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_ddb7_5b7e_7f09.nc { :geospatial_lon_max = -47.00874350000001; // double :geospatial_lon_min = -54.999; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:07:19Z (local files) -2024-08-23T08:07:19Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:27:53Z (local files) +2024-09-20T11:27:53Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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"; @@ -347,7 +347,7 @@ completeness, or usefulness, of this information."; :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-08-22T11:23:00Z"; + :time_coverage_end = "2024-09-19T11:24:00Z"; :time_coverage_start = "2003-09-14T16:35:16Z"; :title = "Argo float synthetic vertical profiles : BGC data"; :user_manual_version = "1.0"; diff --git a/argopy/tests/test_data/8e702a797499254d68bdfed96a9ded235b980a011ff73259a7d659af2b15c8d7.ncHeader b/argopy/tests/test_data/8e702a797499254d68bdfed96a9ded235b980a011ff73259a7d659af2b15c8d7.ncHeader index c0c8d001..e75c33c0 100644 --- a/argopy/tests/test_data/8e702a797499254d68bdfed96a9ded235b980a011ff73259a7d659af2b15c8d7.ncHeader +++ b/argopy/tests/test_data/8e702a797499254d68bdfed96a9ded235b980a011ff73259a7d659af2b15c8d7.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_e3ec_933e_e68e.nc { :long_name = "Quality on date and time"; char direction(row=141, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_e3ec_933e_e68e.nc { :long_name = "Float cycle number"; int config_mission_number(row=141); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 1; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_e3ec_933e_e68e.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 159.7738f, 309.8683f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_e3ec_933e_e68e.nc { :valid_min = -5.0f; // float char doxy_qc(row=141, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 174.5238f, 338.4748f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_e3ec_933e_e68e.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=141, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.235715f, 10.15425f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_e3ec_933e_e68e.nc { :units = "micromole/kg"; float pres(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 4.6f, 2001.9f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_e3ec_933e_e68e.nc { :valid_min = 0.0f; // float char pres_qc(row=141, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 4.8f, 2002.1f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_e3ec_933e_e68e.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=141, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.4f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_e3ec_933e_e68e.nc { :units = "decibar"; float psal(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.738f, 34.745f; // float :C_format = "%.4f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_e3ec_933e_e68e.nc { :valid_min = 2.0f; // float char psal_qc(row=141, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.73788f, 34.74495f; // float :C_format = "%.4f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_e3ec_933e_e68e.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=141, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01f, 0.01f; // float :C_format = "%.4f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_e3ec_933e_e68e.nc { :units = "psu"; float temp(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.053f, 2.246f; // float :C_format = "%.3f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_e3ec_933e_e68e.nc { :valid_min = -2.5f; // float char temp_qc(row=141, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.054f, 2.246f; // float :C_format = "%.3f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_e3ec_933e_e68e.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=141, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_e3ec_933e_e68e.nc { :geospatial_lon_max = 149.71; // double :geospatial_lon_min = 149.635; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:04:47Z (local files) -2024-08-23T08:04:47Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&cycle_number=~%2212%7C13%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:27:03Z (local files) +2024-09-20T11:27:03Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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"; diff --git a/argopy/tests/test_data/93fba7dd12ed73901c4675f6b6dc70f3dc59be2a03f072b1a74c487faeefd085.ncHeader b/argopy/tests/test_data/93fba7dd12ed73901c4675f6b6dc70f3dc59be2a03f072b1a74c487faeefd085.ncHeader index 57ff7332..c505dcdb 100644 --- a/argopy/tests/test_data/93fba7dd12ed73901c4675f6b6dc70f3dc59be2a03f072b1a74c487faeefd085.ncHeader +++ b/argopy/tests/test_data/93fba7dd12ed73901c4675f6b6dc70f3dc59be2a03f072b1a74c487faeefd085.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_6cbb_6a57_bc35.nc { :long_name = "Quality on date and time"; char direction(row=26106, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_6cbb_6a57_bc35.nc { :long_name = "Float cycle number"; int config_mission_number(row=26106); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 1; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_6cbb_6a57_bc35.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.358001f, 322.7896f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_6cbb_6a57_bc35.nc { :valid_min = -5.0f; // float char doxy_qc(row=26106, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 167.5023f, 352.5889f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_6cbb_6a57_bc35.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=26106, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.025068f, 16.03393f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_6cbb_6a57_bc35.nc { :units = "micromole/kg"; float pres(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 3.4f, 2009.7f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_6cbb_6a57_bc35.nc { :valid_min = 0.0f; // float char pres_qc(row=26106, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.3f, 2010.0f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_6cbb_6a57_bc35.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=26106, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.4f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_6cbb_6a57_bc35.nc { :units = "decibar"; float psal(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.231f, 34.796f; // float :C_format = "%.4f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_6cbb_6a57_bc35.nc { :valid_min = 2.0f; // float char psal_qc(row=26106, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.66283f, 34.7961f; // float :C_format = "%.4f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_6cbb_6a57_bc35.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=26106, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01f, 0.0155498f; // float :C_format = "%.4f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_6cbb_6a57_bc35.nc { :units = "psu"; float temp(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.046f, 10.132f; // float :C_format = "%.3f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_6cbb_6a57_bc35.nc { :valid_min = -2.5f; // float char temp_qc(row=26106, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.046f, 10.132f; // float :C_format = "%.3f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_6cbb_6a57_bc35.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=26106, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=26106); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_6cbb_6a57_bc35.nc { :geospatial_lon_max = 179.96; // double :geospatial_lon_min = -179.717; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:09:18Z (local files) -2024-08-23T08:09:18Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:30:05Z (local files) +2024-09-20T11:30:05Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; :id = "https://doi.org/10.17882/42182"; :infoUrl = "http://www.argodatamgt.org/Documentation"; :institution = "Argo"; diff --git a/argopy/tests/test_data/941d81ad6852945dc830a63af6bbca89806f53c2b1cbf93556c85c42780d9588.html b/argopy/tests/test_data/941d81ad6852945dc830a63af6bbca89806f53c2b1cbf93556c85c42780d9588.html index f36ea43d..c281c052 100644 --- a/argopy/tests/test_data/941d81ad6852945dc830a63af6bbca89806f53c2b1cbf93556c85c42780d9588.html +++ b/argopy/tests/test_data/941d81ad6852945dc830a63af6bbca89806f53c2b1cbf93556c85c42780d9588.html @@ -17,4 +17,4 @@
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/94239c057ab2778a0770a19578a391ece696cc3f4d74ea4f5125f8f436e4aa26.ncHeader b/argopy/tests/test_data/94239c057ab2778a0770a19578a391ece696cc3f4d74ea4f5125f8f436e4aa26.ncHeader index de31508d..41cd6491 100644 --- a/argopy/tests/test_data/94239c057ab2778a0770a19578a391ece696cc3f4d74ea4f5125f8f436e4aa26.ncHeader +++ b/argopy/tests/test_data/94239c057ab2778a0770a19578a391ece696cc3f4d74ea4f5125f8f436e4aa26.ncHeader @@ -87,7 +87,7 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :long_name = "Quality on date and time"; char direction(row=1648, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -112,7 +112,7 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :long_name = "Float cycle number"; int config_mission_number(row=1648); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 16; // int :colorBarMaximum = 100.0; // double @@ -122,7 +122,7 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :long_name = "Unique number denoting the missions performed by the float"; float bbp700(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.107972E-4f, 0.008518385f; // float :C_format = "%.7f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :valid_min = NaNf; // float char bbp700_qc(row=1648, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.107972E-4f, 0.008518385f; // float :C_format = "%.7f"; @@ -152,13 +152,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :units = "m-1"; char bbp700_adjusted_qc(row=1648, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted_error(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.7f"; :FORTRAN_format = "F.7"; @@ -167,7 +167,7 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :units = "m-1"; float cdom(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.146333f, 1.562482f; // float :C_format = "%.3f"; @@ -181,13 +181,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :valid_min = NaNf; // float char cdom_qc(row=1648, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -196,13 +196,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :units = "ppb"; char cdom_adjusted_qc(row=1648, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted_error(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -211,7 +211,7 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :units = "ppb"; float chla(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.064751f, 6.5773f; // float :C_format = "%.4f"; @@ -226,13 +226,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :valid_min = NaNf; // float char chla_qc(row=1648, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.0803f, 3.285f; // float :C_format = "%.4f"; @@ -243,13 +243,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :units = "mg/m3"; char chla_adjusted_qc(row=1648, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted_error(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -280,7 +280,7 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :actual_range = 99999.0f, 99999.0f; // float float downwelling_par(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.005687319f, 1309.106f; // float :C_format = "%.3f"; @@ -295,13 +295,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :valid_min = NaNf; // float char downwelling_par_qc(row=1648, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.03136416f, 1308.671f; // float :C_format = "%.3f"; @@ -312,13 +312,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :units = "microMoleQuanta/m^2/sec"; char downwelling_par_adjusted_qc(row=1648, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted_error(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.03f, 65.43353f; // float :C_format = "%.3f"; @@ -328,7 +328,7 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :units = "microMoleQuanta/m^2/sec"; float down_irradiance380(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.866023E-4f, 0.472008f; // float :C_format = "%.6f"; @@ -342,13 +342,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :valid_min = NaNf; // float char down_irradiance380_qc(row=1648, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.428419E-5f, 0.4718581f; // float :C_format = "%.6f"; @@ -358,13 +358,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :units = "W/m^2/nm"; char down_irradiance380_adjusted_qc(row=1648, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted_error(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.009437162f; // float :C_format = "%.6f"; @@ -374,7 +374,7 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :units = "W/m^2/nm"; float down_irradiance412(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 6.83386E-5f, 0.8742672f; // float :C_format = "%.6f"; @@ -388,13 +388,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :valid_min = NaNf; // float char down_irradiance412_qc(row=1648, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -3.462394E-6f, 0.8742118f; // float :C_format = "%.6f"; @@ -404,13 +404,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :units = "W/m^2/nm"; char down_irradiance412_adjusted_qc(row=1648, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted_error(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.01748424f; // float :C_format = "%.6f"; @@ -420,7 +420,7 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :units = "W/m^2/nm"; float down_irradiance490(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -7.053803E-5f, 1.230635f; // float :C_format = "%.6f"; @@ -434,13 +434,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :valid_min = NaNf; // float char down_irradiance490_qc(row=1648, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -3.242133E-5f, 1.230644f; // float :C_format = "%.6f"; @@ -450,13 +450,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :units = "W/m^2/nm"; char down_irradiance490_adjusted_qc(row=1648, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted_error(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.02461287f; // float :C_format = "%.6f"; @@ -466,7 +466,7 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :units = "W/m^2/nm"; float doxy(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1526.135f, 11356.0f; // float :C_format = "%.3f"; @@ -481,13 +481,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :valid_min = -5.0f; // float char doxy_qc(row=1648, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1655.856f, 12321.26f; // float :C_format = "%.3f"; @@ -500,13 +500,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=1648, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 8.415855f, 31.84704f; // float :C_format = "%.3f"; @@ -516,101 +516,51 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :units = "micromole/kg"; float nitrate(row=1648); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 4.082905f, 10.41807f; // float - :C_format = "%.3f"; :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :FORTRAN_format = "F.3"; :long_name = "Nitrate"; - :resolution = 0.001f; // float :sdn_parameter_urn = "SDN:P01::MDMAP005"; - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; :units = "micromole/kg"; :valid_max = NaNf; // float :valid_min = NaNf; // float char nitrate_qc(row=1648, nitrate_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted(row=1648); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 1.222567f, 7.845202f; // float - :C_format = "%.3f"; - :FORTRAN_format = "F.3"; - :long_name = "Nitrate"; - :resolution = 0.001f; // float - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :units = "micromole/kg"; + :actual_range = 1.222567f, 99999.0f; // float char nitrate_adjusted_qc(row=1648, nitrate_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted_error(row=1648); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 5.0f, 5.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 = "micromole/kg"; + :actual_range = 5.0f, 99999.0f; // float float ph_in_situ_total(row=1648); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 7.991419f, 8.225466f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float char ph_in_situ_total_qc(row=1648, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted(row=1648); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float char ph_in_situ_total_adjusted_qc(row=1648, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted_error(row=1648); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float float pres(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float @@ -627,13 +577,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :valid_min = 0.0f; // float char pres_qc(row=1648, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.649095E-7f, 10.0f; // float :axis = "Z"; @@ -647,13 +597,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=1648, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.0f, 2.4f; // float :C_format = "%.3f"; @@ -663,7 +613,7 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :units = "decibar"; float psal(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.868f, 34.767f; // float :C_format = "%.4f"; @@ -678,13 +628,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :valid_min = 2.0f; // float char psal_qc(row=1648, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.868f, 34.77504f; // float :C_format = "%.4f"; @@ -697,13 +647,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=1648, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.004f, 0.01f; // float :C_format = "%.4f"; @@ -713,7 +663,7 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :units = "psu"; float temp(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.888f, 11.566f; // float :C_format = "%.3f"; @@ -728,13 +678,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :valid_min = -2.5f; // float char temp_qc(row=1648, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.472f, 11.566f; // float :C_format = "%.3f"; @@ -747,13 +697,13 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=1648, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=1648); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -780,9 +730,9 @@ netcdf ArgoFloats-synthetic-BGC_97d7_53df_783f.nc { :geospatial_lon_max = -47.119708333333335; // double :geospatial_lon_min = -54.40875833333333; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:10:32Z (local files) -2024-08-23T08:10:32Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:31:14Z (local files) +2024-09-20T11:31:14Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; :id = "https://doi.org/10.17882/42182"; :infoUrl = "http://www.argodatamgt.org/Documentation"; :institution = "Argo"; diff --git a/argopy/tests/test_data/94c9d00237bca77cc0db810a4fe70ebd5609aa8309891ca731509474f330a572.ncHeader b/argopy/tests/test_data/94c9d00237bca77cc0db810a4fe70ebd5609aa8309891ca731509474f330a572.ncHeader index 59488bba..6ae6d8dc 100644 --- a/argopy/tests/test_data/94c9d00237bca77cc0db810a4fe70ebd5609aa8309891ca731509474f330a572.ncHeader +++ b/argopy/tests/test_data/94c9d00237bca77cc0db810a4fe70ebd5609aa8309891ca731509474f330a572.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_684c_dd81_10be.nc { :long_name = "Quality on date and time"; char direction(row=70, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_684c_dd81_10be.nc { :long_name = "Float cycle number"; int config_mission_number(row=70); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 1; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_684c_dd81_10be.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 160.4252f, 303.8724f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_684c_dd81_10be.nc { :valid_min = -5.0f; // float char doxy_qc(row=70, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 175.2335f, 331.919f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_684c_dd81_10be.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=70, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.257005f, 9.957571f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_684c_dd81_10be.nc { :units = "micromole/kg"; float pres(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 4.3f, 1999.6f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_684c_dd81_10be.nc { :valid_min = 0.0f; // float char pres_qc(row=70, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 4.2f, 1999.5f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_684c_dd81_10be.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=70, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.4f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_684c_dd81_10be.nc { :units = "decibar"; float psal(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.852f, 34.74f; // float :C_format = "%.4f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_684c_dd81_10be.nc { :valid_min = 2.0f; // float char psal_qc(row=70, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.85463f, 34.7401f; // float :C_format = "%.4f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_684c_dd81_10be.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=70, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01f, 0.01f; // float :C_format = "%.4f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_684c_dd81_10be.nc { :units = "psu"; float temp(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.158f, 4.301f; // float :C_format = "%.3f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_684c_dd81_10be.nc { :valid_min = -2.5f; // float char temp_qc(row=70, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.158f, 4.301f; // float :C_format = "%.3f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_684c_dd81_10be.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=70, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_684c_dd81_10be.nc { :geospatial_lon_max = 161.893; // double :geospatial_lon_min = 161.893; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:09:27Z (local files) -2024-08-23T08:09:27Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&cycle_number=~%2234%22&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:30:17Z (local files) +2024-09-20T11:30:17Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&cycle_number=~%2234%22&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; :id = "https://doi.org/10.17882/42182"; :infoUrl = "http://www.argodatamgt.org/Documentation"; :institution = "Argo"; diff --git a/argopy/tests/test_data/96a6f252aceca48d2bc971a547836d76641013ab67900f4e892f68afb9d5e0f5.nc b/argopy/tests/test_data/96a6f252aceca48d2bc971a547836d76641013ab67900f4e892f68afb9d5e0f5.nc index e7425bbe..93c17f44 100644 Binary files a/argopy/tests/test_data/96a6f252aceca48d2bc971a547836d76641013ab67900f4e892f68afb9d5e0f5.nc and b/argopy/tests/test_data/96a6f252aceca48d2bc971a547836d76641013ab67900f4e892f68afb9d5e0f5.nc differ diff --git a/argopy/tests/test_data/9713039c61a938d82deecc4b23c67728d7a7ddcb8d347fa53b6e37acc26ca2c2.nc b/argopy/tests/test_data/9713039c61a938d82deecc4b23c67728d7a7ddcb8d347fa53b6e37acc26ca2c2.nc index 3080fde0..304cb538 100644 Binary files a/argopy/tests/test_data/9713039c61a938d82deecc4b23c67728d7a7ddcb8d347fa53b6e37acc26ca2c2.nc and b/argopy/tests/test_data/9713039c61a938d82deecc4b23c67728d7a7ddcb8d347fa53b6e37acc26ca2c2.nc differ diff --git a/argopy/tests/test_data/97351132f7d20857963c0ad559c3c1c0099da3f491e2e37b42fc2f4c41af29d9.html b/argopy/tests/test_data/97351132f7d20857963c0ad559c3c1c0099da3f491e2e37b42fc2f4c41af29d9.html index bf0e03d7..5ee0979b 100644 --- a/argopy/tests/test_data/97351132f7d20857963c0ad559c3c1c0099da3f491e2e37b42fc2f4c41af29d9.html +++ b/argopy/tests/test_data/97351132f7d20857963c0ad559c3c1c0099da3f491e2e37b42fc2f4c41af29d9.html @@ -11,4 +11,4 @@
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/980302fa35808db34ea92fbb30f5b43df4915037e48b8f6d6e8872dfdc17c340.html b/argopy/tests/test_data/980302fa35808db34ea92fbb30f5b43df4915037e48b8f6d6e8872dfdc17c340.html index 83853d66..52257ca3 100644 --- a/argopy/tests/test_data/980302fa35808db34ea92fbb30f5b43df4915037e48b8f6d6e8872dfdc17c340.html +++ b/argopy/tests/test_data/980302fa35808db34ea92fbb30f5b43df4915037e48b8f6d6e8872dfdc17c340.html @@ -12,4 +12,4 @@
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/9a77aea46e592d8889aa3e07fc3f5b1ce313bdc96dcfe48cdadd8918dec7c60e.nc b/argopy/tests/test_data/9a77aea46e592d8889aa3e07fc3f5b1ce313bdc96dcfe48cdadd8918dec7c60e.nc index c1dcc33a..e478b9ea 100644 Binary files a/argopy/tests/test_data/9a77aea46e592d8889aa3e07fc3f5b1ce313bdc96dcfe48cdadd8918dec7c60e.nc and b/argopy/tests/test_data/9a77aea46e592d8889aa3e07fc3f5b1ce313bdc96dcfe48cdadd8918dec7c60e.nc differ diff --git a/argopy/tests/test_data/9f6f876163819e670f5287f58a01be659f8b6a3a48048b9fb3c745757c881666.html b/argopy/tests/test_data/9f6f876163819e670f5287f58a01be659f8b6a3a48048b9fb3c745757c881666.html index 345f34d1..3fed6305 100644 --- a/argopy/tests/test_data/9f6f876163819e670f5287f58a01be659f8b6a3a48048b9fb3c745757c881666.html +++ b/argopy/tests/test_data/9f6f876163819e670f5287f58a01be659f8b6a3a48048b9fb3c745757c881666.html @@ -15,4 +15,4 @@
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/9fb1ff9a49bf0e4ad2644b1b4762ee25331072612b782e47b0c24352b8141bbe.nc b/argopy/tests/test_data/9fb1ff9a49bf0e4ad2644b1b4762ee25331072612b782e47b0c24352b8141bbe.nc index 72147add..2c481f6e 100644 Binary files a/argopy/tests/test_data/9fb1ff9a49bf0e4ad2644b1b4762ee25331072612b782e47b0c24352b8141bbe.nc and b/argopy/tests/test_data/9fb1ff9a49bf0e4ad2644b1b4762ee25331072612b782e47b0c24352b8141bbe.nc differ diff --git a/argopy/tests/test_data/a146614dcc47090acd0f65a8545884d72cb3397fc69f281648922159f7d140a1.nc b/argopy/tests/test_data/a146614dcc47090acd0f65a8545884d72cb3397fc69f281648922159f7d140a1.nc index 469ee0c7..4676fc78 100644 Binary files a/argopy/tests/test_data/a146614dcc47090acd0f65a8545884d72cb3397fc69f281648922159f7d140a1.nc and b/argopy/tests/test_data/a146614dcc47090acd0f65a8545884d72cb3397fc69f281648922159f7d140a1.nc differ diff --git a/argopy/tests/test_data/a1f209c5e58df2f85698e2f09f156c5c50f27d7e0a4a84a1299c2028e8c5e349.nc b/argopy/tests/test_data/a1f209c5e58df2f85698e2f09f156c5c50f27d7e0a4a84a1299c2028e8c5e349.nc index 7e54e1ce..89e60289 100644 Binary files a/argopy/tests/test_data/a1f209c5e58df2f85698e2f09f156c5c50f27d7e0a4a84a1299c2028e8c5e349.nc and b/argopy/tests/test_data/a1f209c5e58df2f85698e2f09f156c5c50f27d7e0a4a84a1299c2028e8c5e349.nc differ diff --git a/argopy/tests/test_data/a3dfd8ac41e22763e0020a8bea50535ec41cff15fc65ad64abde4c8aa096e580.json b/argopy/tests/test_data/a3dfd8ac41e22763e0020a8bea50535ec41cff15fc65ad64abde4c8aa096e580.json index 1449e66c..cae9f717 100644 --- a/argopy/tests/test_data/a3dfd8ac41e22763e0020a8bea50535ec41cff15fc65ad64abde4c8aa096e580.json +++ b/argopy/tests/test_data/a3dfd8ac41e22763e0020a8bea50535ec41cff15fc65ad64abde4c8aa096e580.json @@ -1 +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":"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902630"}],"total":219} \ No newline at end of file +{"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/a47129e3a128f0899792c7f4055c73c75d4f58a921d5f9479220140547c85d01.html b/argopy/tests/test_data/a47129e3a128f0899792c7f4055c73c75d4f58a921d5f9479220140547c85d01.html index 60fbba97..362d27f3 100644 --- a/argopy/tests/test_data/a47129e3a128f0899792c7f4055c73c75d4f58a921d5f9479220140547c85d01.html +++ b/argopy/tests/test_data/a47129e3a128f0899792c7f4055c73c75d4f58a921d5f9479220140547c85d01.html @@ -20,4 +20,4 @@
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/a6ad383ef6ba1b0dec7c8b66431261e9438405316abf22eca9918bcfa1152195.nc b/argopy/tests/test_data/a6ad383ef6ba1b0dec7c8b66431261e9438405316abf22eca9918bcfa1152195.nc index 738d7f8d..566960f9 100644 Binary files a/argopy/tests/test_data/a6ad383ef6ba1b0dec7c8b66431261e9438405316abf22eca9918bcfa1152195.nc and b/argopy/tests/test_data/a6ad383ef6ba1b0dec7c8b66431261e9438405316abf22eca9918bcfa1152195.nc differ diff --git a/argopy/tests/test_data/a710bd6c5eff99fce61c4e165dea53857a278e472febd783e210c8b7bdb25eda.json b/argopy/tests/test_data/a710bd6c5eff99fce61c4e165dea53857a278e472febd783e210c8b7bdb25eda.json index ec20e5d4..6e6bc0ae 100644 --- a/argopy/tests/test_data/a710bd6c5eff99fce61c4e165dea53857a278e472febd783e210c8b7bdb25eda.json +++ b/argopy/tests/test_data/a710bd6c5eff99fce61c4e165dea53857a278e472febd783e210c8b7bdb25eda.json @@ -2,16 +2,19 @@ "@graph": [ { "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/", - "pav:authoredOn": "2020-04-04 15:05:33.0", - "pav:hasCurrentVersion": { + "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": "1", + "pav:version": "2", "skos:notation": "SDN:R01::BTRAJ", "skos:altLabel": "BTRAJ", - "dc:date": "2020-04-04 15:05:33.0", - "owl:versionInfo": "1", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", "skos:prefLabel": { "@language": "en", "@value": "B-Argo trajectory" @@ -19,9 +22,9 @@ "dc:identifier": "SDN:R01::BTRAJ", "skos:note": { "@language": "en", - "@value": "accepted" + "@value": "deprecated" }, - "owl:deprecated": "false", + "owl:deprecated": "true", "void:inDataset": { "@id": "http://vocab.nerc.ac.uk/.well-known/void" }, @@ -257,6 +260,37 @@ }, "@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", @@ -312,11 +346,14 @@ { "@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/TECH/" + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/METAAUX/" } ], "@type": "skos:Collection", @@ -324,8 +361,8 @@ "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": "2", - "dc:date": "2023-10-07 03:00:23.0", + "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", diff --git a/argopy/tests/test_data/aa5109b912e3a22bd7718358de3a9963285246c652f4ae30814872aec5acb82a.nc b/argopy/tests/test_data/aa5109b912e3a22bd7718358de3a9963285246c652f4ae30814872aec5acb82a.nc index beb68eca..2c40f62e 100644 Binary files a/argopy/tests/test_data/aa5109b912e3a22bd7718358de3a9963285246c652f4ae30814872aec5acb82a.nc and b/argopy/tests/test_data/aa5109b912e3a22bd7718358de3a9963285246c652f4ae30814872aec5acb82a.nc differ diff --git a/argopy/tests/test_data/aa8fc09df3789fb0da0f8f25e948d7914c74dd4d299d7213696962657214ac34.ncHeader b/argopy/tests/test_data/aa8fc09df3789fb0da0f8f25e948d7914c74dd4d299d7213696962657214ac34.ncHeader index dc115672..653822da 100644 --- a/argopy/tests/test_data/aa8fc09df3789fb0da0f8f25e948d7914c74dd4d299d7213696962657214ac34.ncHeader +++ b/argopy/tests/test_data/aa8fc09df3789fb0da0f8f25e948d7914c74dd4d299d7213696962657214ac34.ncHeader @@ -303,8 +303,8 @@ netcdf ArgoFloats_aa81_6de2_3b5c.nc { :geospatial_lon_max = 142.722; // double :geospatial_lon_min = 17.358; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-22T12:04:31Z (local files) -2024-08-22T12:04:31Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~%221901393%22&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-20T09:14:47Z (local files) +2024-09-20T09:14:47Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~%221901393%22&distinct()&orderBy(%22time,pres%22)"; :id = "ArgoFloats"; :infoUrl = "https://argo.ucsd.edu/"; :institution = "Argo"; diff --git a/argopy/tests/test_data/abd074b71be68aa219f8776bbee3ee98768583e3950a140b0c504a8948aaa2e5.ncHeader b/argopy/tests/test_data/abd074b71be68aa219f8776bbee3ee98768583e3950a140b0c504a8948aaa2e5.ncHeader index 2588de23..f134b634 100644 --- a/argopy/tests/test_data/abd074b71be68aa219f8776bbee3ee98768583e3950a140b0c504a8948aaa2e5.ncHeader +++ b/argopy/tests/test_data/abd074b71be68aa219f8776bbee3ee98768583e3950a140b0c504a8948aaa2e5.ncHeader @@ -85,7 +85,7 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :long_name = "Quality on date and time"; char direction(row=897, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -110,7 +110,7 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :long_name = "Float cycle number"; int config_mission_number(row=897); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 11; // int :colorBarMaximum = 100.0; // double @@ -120,7 +120,7 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :long_name = "Unique number denoting the missions performed by the float"; float bbp700(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.375645E-4f, 0.001777002f; // float :C_format = "%.7f"; @@ -134,13 +134,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :valid_min = NaNf; // float char bbp700_qc(row=897, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.375645E-4f, 0.001777002f; // float :C_format = "%.7f"; @@ -150,13 +150,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :units = "m-1"; char bbp700_adjusted_qc(row=897, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted_error(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.7f"; :FORTRAN_format = "F.7"; @@ -165,7 +165,7 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :units = "m-1"; float cdom(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.31675f, 0.6335f; // float :C_format = "%.3f"; @@ -179,13 +179,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :valid_min = NaNf; // float char cdom_qc(row=897, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -194,13 +194,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :units = "ppb"; char cdom_adjusted_qc(row=897, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted_error(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -209,7 +209,7 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :units = "ppb"; float chla(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.2701f, 0.9563f; // float :C_format = "%.4f"; @@ -224,13 +224,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :valid_min = NaNf; // float char chla_qc(row=897, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.18615f, 0.52925f; // float :C_format = "%.4f"; @@ -241,13 +241,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :units = "mg/m3"; char chla_adjusted_qc(row=897, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted_error(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -278,7 +278,7 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :actual_range = 99999.0f, 99999.0f; // float float downwelling_par(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 39.57379f, 381.0653f; // float :C_format = "%.3f"; @@ -293,13 +293,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :valid_min = NaNf; // float char downwelling_par_qc(row=897, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -309,13 +309,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :units = "microMoleQuanta/m^2/sec"; char downwelling_par_adjusted_qc(row=897, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted_error(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -324,7 +324,7 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :units = "microMoleQuanta/m^2/sec"; float down_irradiance380(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01586146f, 0.1074668f; // float :C_format = "%.6f"; @@ -338,13 +338,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :valid_min = NaNf; // float char down_irradiance380_qc(row=897, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -353,13 +353,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :units = "W/m^2/nm"; char down_irradiance380_adjusted_qc(row=897, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted_error(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -368,7 +368,7 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :units = "W/m^2/nm"; float down_irradiance412(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.03584242f, 0.2123005f; // float :C_format = "%.6f"; @@ -382,13 +382,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :valid_min = NaNf; // float char down_irradiance412_qc(row=897, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -397,13 +397,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :units = "W/m^2/nm"; char down_irradiance412_adjusted_qc(row=897, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted_error(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -412,7 +412,7 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :units = "W/m^2/nm"; float down_irradiance490(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.05468618f, 0.3180601f; // float :C_format = "%.6f"; @@ -426,13 +426,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :valid_min = NaNf; // float char down_irradiance490_qc(row=897, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -441,13 +441,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :units = "W/m^2/nm"; char down_irradiance490_adjusted_qc(row=897, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted_error(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -456,7 +456,7 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :units = "W/m^2/nm"; float doxy(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 263.075f, 329.7932f; // float :C_format = "%.3f"; @@ -471,13 +471,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :valid_min = -5.0f; // float char doxy_qc(row=897, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 285.4363f, 315.0098f; // float :C_format = "%.3f"; @@ -490,13 +490,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=897, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 9.118873f, 18.80818f; // float :C_format = "%.3f"; @@ -506,53 +506,29 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :units = "micromole/kg"; float ph_in_situ_total(row=897); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 8.061573f, 8.100125f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float char ph_in_situ_total_qc(row=897, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted(row=897); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float char ph_in_situ_total_adjusted_qc(row=897, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted_error(row=897); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float float pres(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float @@ -569,13 +545,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :valid_min = 0.0f; // float char pres_qc(row=897, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.649095E-7f, 10.0f; // float :axis = "Z"; @@ -589,13 +565,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=897, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.000125f, 2.4f; // float :C_format = "%.3f"; @@ -605,7 +581,7 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :units = "decibar"; float psal(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.033f, 34.673f; // float :C_format = "%.4f"; @@ -620,13 +596,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :valid_min = 2.0f; // float char psal_qc(row=897, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.404f, 34.67301f; // float :C_format = "%.4f"; @@ -639,13 +615,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=897, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.004f, 0.01f; // float :C_format = "%.4f"; @@ -655,7 +631,7 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :units = "psu"; float temp(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.884f, 8.283f; // float :C_format = "%.3f"; @@ -670,13 +646,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :valid_min = -2.5f; // float char temp_qc(row=897, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.334f, 8.283f; // float :C_format = "%.3f"; @@ -689,13 +665,13 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=897, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -722,9 +698,9 @@ netcdf ArgoFloats-synthetic-BGC_1d21_e7d6_dd58.nc { :geospatial_lon_max = -47.331808333333335; // double :geospatial_lon_min = -53.918479919433594; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:11:21Z (local files) -2024-08-23T08:11:21Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:32:00Z (local files) +2024-09-20T11:32:00Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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"; diff --git a/argopy/tests/test_data/ac03eee631a063e5dbad1a55ec9d7d4758ff91a5a0f94e29255d3384ea4604e8.nc b/argopy/tests/test_data/ac03eee631a063e5dbad1a55ec9d7d4758ff91a5a0f94e29255d3384ea4604e8.nc index c71d367a..820efc44 100644 Binary files a/argopy/tests/test_data/ac03eee631a063e5dbad1a55ec9d7d4758ff91a5a0f94e29255d3384ea4604e8.nc and b/argopy/tests/test_data/ac03eee631a063e5dbad1a55ec9d7d4758ff91a5a0f94e29255d3384ea4604e8.nc differ diff --git a/argopy/tests/test_data/aec518b022df8bca055b8bce7898fa145d83f11ea633641fc0bfaadea58b9337.ncHeader b/argopy/tests/test_data/aec518b022df8bca055b8bce7898fa145d83f11ea633641fc0bfaadea58b9337.ncHeader index f07cdf44..09f31eca 100644 --- a/argopy/tests/test_data/aec518b022df8bca055b8bce7898fa145d83f11ea633641fc0bfaadea58b9337.ncHeader +++ b/argopy/tests/test_data/aec518b022df8bca055b8bce7898fa145d83f11ea633641fc0bfaadea58b9337.ncHeader @@ -87,7 +87,7 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :long_name = "Quality on date and time"; char direction(row=3, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -112,7 +112,7 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :long_name = "Float cycle number"; int config_mission_number(row=3); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 10; // int :colorBarMaximum = 100.0; // double @@ -122,7 +122,7 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :long_name = "Unique number denoting the missions performed by the float"; float bbp700(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002384938f, 0.003944034f; // float :C_format = "%.7f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :valid_min = NaNf; // float char bbp700_qc(row=3, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002384938f, 0.003944034f; // float :C_format = "%.7f"; @@ -152,13 +152,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :units = "m-1"; char bbp700_adjusted_qc(row=3, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.7f"; :FORTRAN_format = "F.7"; @@ -167,7 +167,7 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :units = "m-1"; float cdom(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.6335f, 0.6335f; // float :C_format = "%.3f"; @@ -181,13 +181,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :valid_min = NaNf; // float char cdom_qc(row=3, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -196,13 +196,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :units = "ppb"; char cdom_adjusted_qc(row=3, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -211,7 +211,7 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :units = "ppb"; float chla(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.289667f, 3.7522f; // float :C_format = "%.4f"; @@ -226,13 +226,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :valid_min = NaNf; // float char chla_qc(row=3, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.6411833f, 2.5623f; // float :C_format = "%.4f"; @@ -243,13 +243,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :units = "mg/m3"; char chla_adjusted_qc(row=3, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -280,7 +280,7 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :actual_range = 99999.0f, 99999.0f; // float float downwelling_par(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.549602f, 73.07629f; // float :C_format = "%.3f"; @@ -295,13 +295,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :valid_min = NaNf; // float char downwelling_par_qc(row=3, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.001552966f, 72.57328f; // float :C_format = "%.3f"; @@ -312,13 +312,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :units = "microMoleQuanta/m^2/sec"; char downwelling_par_adjusted_qc(row=3, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.03f, 3.628664f; // float :C_format = "%.3f"; @@ -328,7 +328,7 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :units = "microMoleQuanta/m^2/sec"; float down_irradiance380(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.018019E-4f, 0.02969852f; // float :C_format = "%.6f"; @@ -342,13 +342,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :valid_min = NaNf; // float char down_irradiance380_qc(row=3, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -8.968674E-6f, 0.02952597f; // float :C_format = "%.6f"; @@ -358,13 +358,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :units = "W/m^2/nm"; char down_irradiance380_adjusted_qc(row=3, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 5.905195E-4f; // float :C_format = "%.6f"; @@ -374,7 +374,7 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :units = "W/m^2/nm"; float down_irradiance412(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 9.396438E-5f, 0.05550002f; // float :C_format = "%.6f"; @@ -388,13 +388,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :valid_min = NaNf; // float char down_irradiance412_qc(row=3, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 9.439454E-6f, 0.05543612f; // float :C_format = "%.6f"; @@ -404,13 +404,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :units = "W/m^2/nm"; char down_irradiance412_adjusted_qc(row=3, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.001108722f; // float :C_format = "%.6f"; @@ -420,7 +420,7 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :units = "W/m^2/nm"; float down_irradiance490(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -6.496038E-5f, 0.09151518f; // float :C_format = "%.6f"; @@ -434,13 +434,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :valid_min = NaNf; // float char down_irradiance490_qc(row=3, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.68296E-5f, 0.0915398f; // float :C_format = "%.6f"; @@ -450,13 +450,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :units = "W/m^2/nm"; char down_irradiance490_adjusted_qc(row=3, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.001830796f; // float :C_format = "%.6f"; @@ -466,7 +466,7 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :units = "W/m^2/nm"; float doxy(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 309.3528f, 324.3129f; // float :C_format = "%.3f"; @@ -481,13 +481,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :valid_min = -5.0f; // float char doxy_qc(row=3, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 314.7974f, 330.0208f; // float :C_format = "%.3f"; @@ -500,13 +500,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=3, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 15.04538f, 15.63656f; // float :C_format = "%.3f"; @@ -516,101 +516,51 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :units = "micromole/kg"; float nitrate(row=3); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 7.597777f, 10.41807f; // float - :C_format = "%.3f"; :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :FORTRAN_format = "F.3"; :long_name = "Nitrate"; - :resolution = 0.001f; // float :sdn_parameter_urn = "SDN:P01::MDMAP005"; - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; :units = "micromole/kg"; :valid_max = NaNf; // float :valid_min = NaNf; // float char nitrate_qc(row=3, nitrate_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float :actual_range = 5.109423f, 7.557733f; // float - :C_format = "%.3f"; - :FORTRAN_format = "F.3"; - :long_name = "Nitrate"; - :resolution = 0.001f; // float - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :units = "micromole/kg"; char nitrate_adjusted_qc(row=3, nitrate_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float :actual_range = 5.0f, 5.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 = "micromole/kg"; float ph_in_situ_total(row=3); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 7.991419f, 8.191917f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float char ph_in_situ_total_qc(row=3, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float char ph_in_situ_total_adjusted_qc(row=3, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float float pres(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 2.035f, 7.435f; // float @@ -627,13 +577,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :valid_min = 0.0f; // float char pres_qc(row=3, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.51f, 7.33f; // float :axis = "Z"; @@ -647,13 +597,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=3, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -662,7 +612,7 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :units = "decibar"; float psal(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.602f, 34.724f; // float :C_format = "%.4f"; @@ -677,13 +627,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :valid_min = 2.0f; // float char psal_qc(row=3, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.60173f, 34.724f; // float :C_format = "%.4f"; @@ -696,13 +646,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=3, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -711,7 +661,7 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :units = "psu"; float temp(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.854624f, 6.5618f; // float :C_format = "%.3f"; @@ -726,13 +676,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :valid_min = -2.5f; // float char temp_qc(row=3, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.853f, 6.56089f; // float :C_format = "%.3f"; @@ -745,13 +695,13 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=3, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=3); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -777,9 +727,9 @@ netcdf ArgoFloats-synthetic-BGC_31a3_ed58_8091.nc { :geospatial_lon_max = -47.178141000000004; // double :geospatial_lon_min = -52.355689166666664; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:09:17Z (local files) -2024-08-23T08:09:17Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:30:02Z (local files) +2024-09-20T11:30:02Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; :id = "https://doi.org/10.17882/42182"; :infoUrl = "http://www.argodatamgt.org/Documentation"; :institution = "Argo"; diff --git a/argopy/tests/test_data/afb61c9729792e19f94765e3d09751fbfd4d4610c203a24500cb875a22c30daf.nc b/argopy/tests/test_data/afb61c9729792e19f94765e3d09751fbfd4d4610c203a24500cb875a22c30daf.nc index 7748851f..ef7792a8 100644 Binary files a/argopy/tests/test_data/afb61c9729792e19f94765e3d09751fbfd4d4610c203a24500cb875a22c30daf.nc and b/argopy/tests/test_data/afb61c9729792e19f94765e3d09751fbfd4d4610c203a24500cb875a22c30daf.nc differ diff --git a/argopy/tests/test_data/b3ac5fc7ba0df1ecd8f5ceb4c9499176c4f051f38a3262c8e3dc11d81a00396b.nc b/argopy/tests/test_data/b3ac5fc7ba0df1ecd8f5ceb4c9499176c4f051f38a3262c8e3dc11d81a00396b.nc index 4948e6a0..ac1f10de 100644 Binary files a/argopy/tests/test_data/b3ac5fc7ba0df1ecd8f5ceb4c9499176c4f051f38a3262c8e3dc11d81a00396b.nc and b/argopy/tests/test_data/b3ac5fc7ba0df1ecd8f5ceb4c9499176c4f051f38a3262c8e3dc11d81a00396b.nc differ diff --git a/argopy/tests/test_data/b525af3619e549419bc25d16bf2ad88650f97d8f6cef5e6b1110181ade4f1f76.json b/argopy/tests/test_data/b525af3619e549419bc25d16bf2ad88650f97d8f6cef5e6b1110181ade4f1f76.json index e97a4bc6..8814ef50 100644 --- a/argopy/tests/test_data/b525af3619e549419bc25d16bf2ad88650f97d8f6cef5e6b1110181ade4f1f76.json +++ b/argopy/tests/test_data/b525af3619e549419bc25d16bf2ad88650f97d8f6cef5e6b1110181ade4f1f76.json @@ -1 +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":"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":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":"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902630"}],"total":254} \ No newline at end of file +{"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/b54d7bc9ab7e5a33d055c5838cd9af99790b396125744e5be7d68afe64a97295.nc b/argopy/tests/test_data/b54d7bc9ab7e5a33d055c5838cd9af99790b396125744e5be7d68afe64a97295.nc index 762dc905..6de6e6de 100644 Binary files a/argopy/tests/test_data/b54d7bc9ab7e5a33d055c5838cd9af99790b396125744e5be7d68afe64a97295.nc and b/argopy/tests/test_data/b54d7bc9ab7e5a33d055c5838cd9af99790b396125744e5be7d68afe64a97295.nc differ diff --git a/argopy/tests/test_data/b681c01a32dbf3e1586c5ad4ede498b4bd9dff99c18f50e0ad6ca83ed1349af4.nc b/argopy/tests/test_data/b681c01a32dbf3e1586c5ad4ede498b4bd9dff99c18f50e0ad6ca83ed1349af4.nc index 2b60a012..7853d823 100644 Binary files a/argopy/tests/test_data/b681c01a32dbf3e1586c5ad4ede498b4bd9dff99c18f50e0ad6ca83ed1349af4.nc and b/argopy/tests/test_data/b681c01a32dbf3e1586c5ad4ede498b4bd9dff99c18f50e0ad6ca83ed1349af4.nc differ diff --git a/argopy/tests/test_data/b8b77811a58f9104387ccdf3c5b15c0a423b74f0e3a4004bb172e6420fbe2cdd.nc b/argopy/tests/test_data/b8b77811a58f9104387ccdf3c5b15c0a423b74f0e3a4004bb172e6420fbe2cdd.nc deleted file mode 100644 index d59cdc7c..00000000 Binary files a/argopy/tests/test_data/b8b77811a58f9104387ccdf3c5b15c0a423b74f0e3a4004bb172e6420fbe2cdd.nc and /dev/null differ diff --git a/argopy/tests/test_data/ba3563da17c45d0cf54c76c6f064cd5f9349f1a27932706df6adb0faeec63777.html b/argopy/tests/test_data/ba3563da17c45d0cf54c76c6f064cd5f9349f1a27932706df6adb0faeec63777.html index 34eb4303..fa493eb1 100644 --- a/argopy/tests/test_data/ba3563da17c45d0cf54c76c6f064cd5f9349f1a27932706df6adb0faeec63777.html +++ b/argopy/tests/test_data/ba3563da17c45d0cf54c76c6f064cd5f9349f1a27932706df6adb0faeec63777.html @@ -11,4 +11,4 @@
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/ba9d13db2937ab3eb76c0807fff5b96ab7942fced59ab562a8eaafac6e4fd7f4.nc b/argopy/tests/test_data/ba9d13db2937ab3eb76c0807fff5b96ab7942fced59ab562a8eaafac6e4fd7f4.nc index 0d0ee2e5..8ab8e286 100644 Binary files a/argopy/tests/test_data/ba9d13db2937ab3eb76c0807fff5b96ab7942fced59ab562a8eaafac6e4fd7f4.nc and b/argopy/tests/test_data/ba9d13db2937ab3eb76c0807fff5b96ab7942fced59ab562a8eaafac6e4fd7f4.nc differ diff --git a/argopy/tests/test_data/bb6577ae0ef9548983948a19637a8ffdf7a8f251c3a9f5a661a3ba414705644f.json b/argopy/tests/test_data/bb6577ae0ef9548983948a19637a8ffdf7a8f251c3a9f5a661a3ba414705644f.json index 41fb0c63..0955ddce 100644 --- a/argopy/tests/test_data/bb6577ae0ef9548983948a19637a8ffdf7a8f251c3a9f5a661a3ba414705644f.json +++ b/argopy/tests/test_data/bb6577ae0ef9548983948a19637a8ffdf7a8f251c3a9f5a661a3ba414705644f.json @@ -347,6 +347,37 @@ }, "@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", @@ -820,6 +851,9 @@ { "@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/" }, @@ -868,8 +902,8 @@ "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": "2", - "dc:date": "2022-06-08 03:00:02.0", + "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", diff --git a/argopy/tests/test_data/bf5c13c46e58262a417766cb7ee83528f5e245de853d4d210f0923cdfc8d88bb.html b/argopy/tests/test_data/bf5c13c46e58262a417766cb7ee83528f5e245de853d4d210f0923cdfc8d88bb.html index d71fe86f..826f43cf 100644 --- a/argopy/tests/test_data/bf5c13c46e58262a417766cb7ee83528f5e245de853d4d210f0923cdfc8d88bb.html +++ b/argopy/tests/test_data/bf5c13c46e58262a417766cb7ee83528f5e245de853d4d210f0923cdfc8d88bb.html @@ -13,4 +13,4 @@
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 index 579dd8e9..1c108cb8 100644 --- a/argopy/tests/test_data/c054d15eec83bae19b8604a691a5066af9b97a4ce90d5b72676f732c5d8b636d.html +++ b/argopy/tests/test_data/c054d15eec83bae19b8604a691a5066af9b97a4ce90d5b72676f732c5d8b636d.html @@ -7,16 +7,16 @@

Index of /dac

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

[DIR]Parent Directory  -  
[DIR]aoml/20-Aug-2024 20:10 -  
[DIR]bodc/06-Aug-2024 04:11 -  
[DIR]coriolis/20-Aug-2024 17:35 -  
[DIR]csio/12-Aug-2024 08:12 -  
[DIR]aoml/16-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/25-Jul-2024 15:14 -  
[DIR]jma/21-Aug-2024 09:15 -  
[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/14-Aug-2024 22:18 -  
[DIR]meds/19-Sep-2024 00:18 -  
[DIR]nmdis/27-Mar-2019 10:09 -  

diff --git a/argopy/tests/test_data/c1528faa4f0e63441ecf4740b89d28b347598acf4d7d9760c6f33ec53952b0f0.ncHeader b/argopy/tests/test_data/c1528faa4f0e63441ecf4740b89d28b347598acf4d7d9760c6f33ec53952b0f0.ncHeader index 7c8d04dd..8645ae97 100644 --- a/argopy/tests/test_data/c1528faa4f0e63441ecf4740b89d28b347598acf4d7d9760c6f33ec53952b0f0.ncHeader +++ b/argopy/tests/test_data/c1528faa4f0e63441ecf4740b89d28b347598acf4d7d9760c6f33ec53952b0f0.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_75c0_505b_09ee.nc { :long_name = "Quality on date and time"; char direction(row=141, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_75c0_505b_09ee.nc { :long_name = "Float cycle number"; int config_mission_number(row=141); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 1; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_75c0_505b_09ee.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 159.7738f, 309.8683f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_75c0_505b_09ee.nc { :valid_min = -5.0f; // float char doxy_qc(row=141, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 174.5238f, 338.4748f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_75c0_505b_09ee.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=141, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.235715f, 10.15425f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_75c0_505b_09ee.nc { :units = "micromole/kg"; float pres(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 4.6f, 2001.9f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_75c0_505b_09ee.nc { :valid_min = 0.0f; // float char pres_qc(row=141, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 4.8f, 2002.1f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_75c0_505b_09ee.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=141, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.4f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_75c0_505b_09ee.nc { :units = "decibar"; float psal(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.738f, 34.745f; // float :C_format = "%.4f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_75c0_505b_09ee.nc { :valid_min = 2.0f; // float char psal_qc(row=141, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.73788f, 34.74495f; // float :C_format = "%.4f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_75c0_505b_09ee.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=141, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01f, 0.01f; // float :C_format = "%.4f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_75c0_505b_09ee.nc { :units = "psu"; float temp(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.053f, 2.246f; // float :C_format = "%.3f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_75c0_505b_09ee.nc { :valid_min = -2.5f; // float char temp_qc(row=141, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.054f, 2.246f; // float :C_format = "%.3f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_75c0_505b_09ee.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=141, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=141); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_75c0_505b_09ee.nc { :geospatial_lon_max = 149.71; // double :geospatial_lon_min = 149.635; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:09:28Z (local files) -2024-08-23T08:09:28Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&cycle_number=~%2212%7C13%22&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:30:19Z (local files) +2024-09-20T11:30:19Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&cycle_number=~%2212%7C13%22&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; :id = "https://doi.org/10.17882/42182"; :infoUrl = "http://www.argodatamgt.org/Documentation"; :institution = "Argo"; diff --git a/argopy/tests/test_data/c5d25bfb176e33a1ccff00398d309f05e33b793a0a5a8d5c57096b55b5e1290a.nc b/argopy/tests/test_data/c5d25bfb176e33a1ccff00398d309f05e33b793a0a5a8d5c57096b55b5e1290a.nc index 8edae848..94ff1325 100644 Binary files a/argopy/tests/test_data/c5d25bfb176e33a1ccff00398d309f05e33b793a0a5a8d5c57096b55b5e1290a.nc and b/argopy/tests/test_data/c5d25bfb176e33a1ccff00398d309f05e33b793a0a5a8d5c57096b55b5e1290a.nc differ diff --git a/argopy/tests/test_data/ca233b54ee21f0d7db3a08fee2e2e44083b3cba5ad83b3181873efcc918a4fe0.ncHeader b/argopy/tests/test_data/ca233b54ee21f0d7db3a08fee2e2e44083b3cba5ad83b3181873efcc918a4fe0.ncHeader index 314ac56d..a3df0606 100644 --- a/argopy/tests/test_data/ca233b54ee21f0d7db3a08fee2e2e44083b3cba5ad83b3181873efcc918a4fe0.ncHeader +++ b/argopy/tests/test_data/ca233b54ee21f0d7db3a08fee2e2e44083b3cba5ad83b3181873efcc918a4fe0.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_76cd_60b6_c854.nc { :long_name = "Quality on date and time"; char direction(row=70, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_76cd_60b6_c854.nc { :long_name = "Float cycle number"; int config_mission_number(row=70); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 1; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_76cd_60b6_c854.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 160.4252f, 303.8724f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_76cd_60b6_c854.nc { :valid_min = -5.0f; // float char doxy_qc(row=70, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 175.2335f, 331.919f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_76cd_60b6_c854.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=70, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.257005f, 9.957571f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_76cd_60b6_c854.nc { :units = "micromole/kg"; float pres(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 4.3f, 1999.6f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_76cd_60b6_c854.nc { :valid_min = 0.0f; // float char pres_qc(row=70, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 4.2f, 1999.5f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_76cd_60b6_c854.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=70, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.4f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_76cd_60b6_c854.nc { :units = "decibar"; float psal(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.852f, 34.74f; // float :C_format = "%.4f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_76cd_60b6_c854.nc { :valid_min = 2.0f; // float char psal_qc(row=70, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.85463f, 34.7401f; // float :C_format = "%.4f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_76cd_60b6_c854.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=70, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01f, 0.01f; // float :C_format = "%.4f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_76cd_60b6_c854.nc { :units = "psu"; float temp(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.158f, 4.301f; // float :C_format = "%.3f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_76cd_60b6_c854.nc { :valid_min = -2.5f; // float char temp_qc(row=70, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.158f, 4.301f; // float :C_format = "%.3f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_76cd_60b6_c854.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=70, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_76cd_60b6_c854.nc { :geospatial_lon_max = 161.893; // double :geospatial_lon_min = 161.893; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:09:12Z (local files) -2024-08-23T08:09:12Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&cycle_number=~%2234%22&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:29:56Z (local files) +2024-09-20T11:29:56Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%225903248%22&cycle_number=~%2234%22&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; :id = "https://doi.org/10.17882/42182"; :infoUrl = "http://www.argodatamgt.org/Documentation"; :institution = "Argo"; diff --git a/argopy/tests/test_data/cafd6dd329c2d1adadf5dc752f4c98ef4e1a2f463d0f3ac246820160263680e9.html b/argopy/tests/test_data/cafd6dd329c2d1adadf5dc752f4c98ef4e1a2f463d0f3ac246820160263680e9.html index 7fb7ad57..b728ce91 100644 --- a/argopy/tests/test_data/cafd6dd329c2d1adadf5dc752f4c98ef4e1a2f463d0f3ac246820160263680e9.html +++ b/argopy/tests/test_data/cafd6dd329c2d1adadf5dc752f4c98ef4e1a2f463d0f3ac246820160263680e9.html @@ -11,4 +11,4 @@
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/cde23439a68dfdb71f996cdf139e7d6f205eda097d7863ba120bfa63237ba2fb.ncHeader b/argopy/tests/test_data/cde23439a68dfdb71f996cdf139e7d6f205eda097d7863ba120bfa63237ba2fb.ncHeader index ab9d6487..292b5040 100644 --- a/argopy/tests/test_data/cde23439a68dfdb71f996cdf139e7d6f205eda097d7863ba120bfa63237ba2fb.ncHeader +++ b/argopy/tests/test_data/cde23439a68dfdb71f996cdf139e7d6f205eda097d7863ba120bfa63237ba2fb.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_efdb_bd4a_3d30.nc { :long_name = "Quality on date and time"; char direction(row=1432, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_efdb_bd4a_3d30.nc { :long_name = "Float cycle number"; int config_mission_number(row=1432); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 9; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_efdb_bd4a_3d30.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 277.7341f, 344.6638f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_efdb_bd4a_3d30.nc { :valid_min = -5.0f; // float char doxy_qc(row=1432, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 296.7589f, 354.268f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_efdb_bd4a_3d30.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=1432, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 9.383679f, 17.84084f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_efdb_bd4a_3d30.nc { :units = "micromole/kg"; float pres(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_efdb_bd4a_3d30.nc { :valid_min = 0.0f; // float char pres_qc(row=1432, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_efdb_bd4a_3d30.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=1432, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.0f, 2.004125f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_efdb_bd4a_3d30.nc { :units = "decibar"; float temp(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.937f, 8.6839f; // float :C_format = "%.3f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_efdb_bd4a_3d30.nc { :valid_min = -2.5f; // float char temp_qc(row=1432, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.937f, 7.881f; // float :C_format = "%.3f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_efdb_bd4a_3d30.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=1432, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_efdb_bd4a_3d30.nc { :units = "degree_Celsius"; float psal(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 27.411f, 34.764f; // float :C_format = "%.4f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_efdb_bd4a_3d30.nc { :valid_min = 2.0f; // float char psal_qc(row=1432, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.022f, 34.774f; // float :C_format = "%.4f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_efdb_bd4a_3d30.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=1432, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.004f, 0.005f; // float :C_format = "%.4f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_efdb_bd4a_3d30.nc { :geospatial_lon_max = -47.436168333333335; // double :geospatial_lon_min = -53.544945; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:12:05Z (local files) -2024-08-23T08:12:05Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:32:42Z (local files) +2024-09-20T11:32:42Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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"; diff --git a/argopy/tests/test_data/ceaff654917be1ae672214d10c7cfebf073ac78778a214c10cbb9dd0e3dda603.ncHeader b/argopy/tests/test_data/ceaff654917be1ae672214d10c7cfebf073ac78778a214c10cbb9dd0e3dda603.ncHeader index 9942366b..2111224e 100644 --- a/argopy/tests/test_data/ceaff654917be1ae672214d10c7cfebf073ac78778a214c10cbb9dd0e3dda603.ncHeader +++ b/argopy/tests/test_data/ceaff654917be1ae672214d10c7cfebf073ac78778a214c10cbb9dd0e3dda603.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_1a68_ff87_3a33.nc { :long_name = "Quality on date and time"; char direction(row=732, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_1a68_ff87_3a33.nc { :long_name = "Float cycle number"; int config_mission_number(row=732); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 9; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_1a68_ff87_3a33.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 248.6568f, 288.2258f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_1a68_ff87_3a33.nc { :valid_min = -5.0f; // float char doxy_qc(row=732, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 269.7927f, 308.8627f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_1a68_ff87_3a33.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=732, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 8.415855f, 16.55767f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_1a68_ff87_3a33.nc { :units = "micromole/kg"; float pres(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_1a68_ff87_3a33.nc { :valid_min = 0.0f; // float char pres_qc(row=732, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.0f, 9.9f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_1a68_ff87_3a33.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=732, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.000083f, 2.004125f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_1a68_ff87_3a33.nc { :units = "decibar"; float temp(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 8.247f, 11.566f; // float :C_format = "%.3f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_1a68_ff87_3a33.nc { :valid_min = -2.5f; // float char temp_qc(row=732, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 8.278f, 11.566f; // float :C_format = "%.3f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_1a68_ff87_3a33.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=732, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_1a68_ff87_3a33.nc { :units = "degree_Celsius"; float psal(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 31.927f, 34.478f; // float :C_format = "%.4f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_1a68_ff87_3a33.nc { :valid_min = 2.0f; // float char psal_qc(row=732, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 31.96201f, 34.488f; // float :C_format = "%.4f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_1a68_ff87_3a33.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=732, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=732); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.004f, 0.004f; // float :C_format = "%.4f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_1a68_ff87_3a33.nc { :geospatial_lon_max = -47.62549666666666; // double :geospatial_lon_min = -54.40875833333333; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:12:19Z (local files) -2024-08-23T08:12:19Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:32:57Z (local files) +2024-09-20T11:32:57Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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"; diff --git a/argopy/tests/test_data/cf7e2c8024a8618dad6d86445ff026531741a1261a8f48a987b6b10866dddc7f.ncHeader b/argopy/tests/test_data/cf7e2c8024a8618dad6d86445ff026531741a1261a8f48a987b6b10866dddc7f.ncHeader index 0b02e91d..88ecd45d 100644 --- a/argopy/tests/test_data/cf7e2c8024a8618dad6d86445ff026531741a1261a8f48a987b6b10866dddc7f.ncHeader +++ b/argopy/tests/test_data/cf7e2c8024a8618dad6d86445ff026531741a1261a8f48a987b6b10866dddc7f.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_3879_c29a_087a.nc { :long_name = "Quality on date and time"; char direction(row=70, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_3879_c29a_087a.nc { :long_name = "Float cycle number"; int config_mission_number(row=70); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 1; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_3879_c29a_087a.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 160.4252f, 303.8724f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_3879_c29a_087a.nc { :valid_min = -5.0f; // float char doxy_qc(row=70, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 175.2335f, 331.919f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_3879_c29a_087a.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=70, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 5.257005f, 9.957571f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_3879_c29a_087a.nc { :units = "micromole/kg"; float pres(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 4.3f, 1999.6f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_3879_c29a_087a.nc { :valid_min = 0.0f; // float char pres_qc(row=70, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 4.2f, 1999.5f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_3879_c29a_087a.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=70, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.4f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_3879_c29a_087a.nc { :units = "decibar"; float temp(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.158f, 4.301f; // float :C_format = "%.3f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_3879_c29a_087a.nc { :valid_min = -2.5f; // float char temp_qc(row=70, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.158f, 4.301f; // float :C_format = "%.3f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_3879_c29a_087a.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=70, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_3879_c29a_087a.nc { :units = "degree_Celsius"; float psal(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.852f, 34.74f; // float :C_format = "%.4f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_3879_c29a_087a.nc { :valid_min = 2.0f; // float char psal_qc(row=70, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.85463f, 34.7401f; // float :C_format = "%.4f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_3879_c29a_087a.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=70, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=70); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.01f, 0.01f; // float :C_format = "%.4f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_3879_c29a_087a.nc { :geospatial_lon_max = 161.893; // double :geospatial_lon_min = 161.893; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:07:16Z (local files) -2024-08-23T08:07:16Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~%225903248%22&cycle_number=~%2234%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:27:49Z (local files) +2024-09-20T11:27:49Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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"; diff --git a/argopy/tests/test_data/d091612ad7c1f8187ba25eefc9f68a303c39646626c425c891362909cf47bcc8.nc b/argopy/tests/test_data/d091612ad7c1f8187ba25eefc9f68a303c39646626c425c891362909cf47bcc8.nc index 2086c08a..a90c8974 100644 Binary files a/argopy/tests/test_data/d091612ad7c1f8187ba25eefc9f68a303c39646626c425c891362909cf47bcc8.nc and b/argopy/tests/test_data/d091612ad7c1f8187ba25eefc9f68a303c39646626c425c891362909cf47bcc8.nc differ diff --git a/argopy/tests/test_data/d0d11341ac89a50753c3198223de3d18584f7ab6b3bb14b0119bb4f9c016559a.ncHeader b/argopy/tests/test_data/d0d11341ac89a50753c3198223de3d18584f7ab6b3bb14b0119bb4f9c016559a.ncHeader index 703c22c6..7692432a 100644 --- a/argopy/tests/test_data/d0d11341ac89a50753c3198223de3d18584f7ab6b3bb14b0119bb4f9c016559a.ncHeader +++ b/argopy/tests/test_data/d0d11341ac89a50753c3198223de3d18584f7ab6b3bb14b0119bb4f9c016559a.ncHeader @@ -1,6 +1,6 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { dimensions: - row = 7857; + row = 7739; direction_strlen = 1; platform_number_strlen = 7; bbp700_qc_strlen = 1; @@ -32,7 +32,7 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { temp_qc_strlen = 1; temp_adjusted_qc_strlen = 1; variables: - double latitude(row=7857); + double latitude(row=7739); :_CoordinateAxisType = "Lat"; :_FillValue = 99999.0; // double :actual_range = 55.01469, 56.99997; // double @@ -46,7 +46,7 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = 90.0; // double :valid_min = -90.0; // double - double longitude(row=7857); + double longitude(row=7739); :_CoordinateAxisType = "Lon"; :_FillValue = 99999.0; // double :actual_range = -54.999, -47.00874350000001; // double @@ -60,16 +60,16 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = 180.0; // double :valid_min = -180.0; // double - char position_qc(row=7857); + char position_qc(row=7739); :actual_range = "18"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double :conventions = "Argo reference table 2"; :long_name = "Quality on position (latitude and longitude)"; - double time(row=7857); + double time(row=7739); :_CoordinateAxisType = "Time"; - :actual_range = 1.063557316224E9, 1.72432578E9; // double + :actual_range = 1.063557316224E9, 1.72674504E9; // double :axis = "T"; :conventions = "Relative julian days with decimal part (as parts of day)"; :ioos_category = "Time"; @@ -79,15 +79,15 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :time_origin = "01-JAN-1970 00:00:00"; :units = "seconds since 1970-01-01T00:00:00Z"; - char time_qc(row=7857); + char time_qc(row=7739); :actual_range = "11"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double :conventions = "Argo reference table 2"; :long_name = "Quality on date and time"; - char direction(row=7857, direction_strlen=1); - :_ChunkSizes = 133; // int + char direction(row=7739, direction_strlen=1); + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -95,14 +95,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :ioos_category = "Currents"; :long_name = "Direction of the station profiles"; - char platform_number(row=7857, platform_number_strlen=7); + char platform_number(row=7739, 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"; - int cycle_number(row=7857); + int cycle_number(row=7739); :_FillValue = 99999; // int :actual_range = 0, 337; // int :cf_role = "profile_id"; @@ -111,8 +111,8 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; :long_name = "Float cycle number"; - int config_mission_number(row=7857); - :_ChunkSizes = 133; // int + int config_mission_number(row=7739); + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 0, 65; // int :colorBarMaximum = 100.0; // double @@ -121,10 +121,10 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :ioos_category = "Statistics"; :long_name = "Unique number denoting the missions performed by the float"; - float bbp700(row=7857); - :_ChunkSizes = 133, 1591; // int + float bbp700(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float - :actual_range = 1.663209E-4f, 0.02198554f; // float + :actual_range = 1.663209E-4f, 0.01301817f; // float :C_format = "%.7f"; :cf_standard_name = "-"; :FORTRAN_format = "F.7"; @@ -135,14 +135,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char bbp700_qc(row=7857, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char bbp700_qc(row=7739, bbp700_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float bbp700_adjusted(row=7857); - :_ChunkSizes = 133, 1591; // int + float bbp700_adjusted(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.663209E-4f, 0.01301817f; // float :C_format = "%.7f"; @@ -151,14 +151,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :resolution = 1.0E-7f; // float :units = "m-1"; - char bbp700_adjusted_qc(row=7857, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char bbp700_adjusted_qc(row=7739, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float bbp700_adjusted_error(row=7857); - :_ChunkSizes = 133, 1591; // int + float bbp700_adjusted_error(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.326419E-5f, 0.001381761f; // float :C_format = "%.7f"; @@ -167,8 +167,8 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :resolution = 1.0E-7f; // float :units = "m-1"; - float cdom(row=7857); - :_ChunkSizes = 133, 1591; // int + float cdom(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.192433f, 10.7219f; // float :C_format = "%.3f"; @@ -181,14 +181,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char cdom_qc(row=7857, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char cdom_qc(row=7739, cdom_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float cdom_adjusted(row=7857); - :_ChunkSizes = 133, 1591; // int + float cdom_adjusted(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -196,14 +196,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :resolution = 0.001f; // float :units = "ppb"; - char cdom_adjusted_qc(row=7857, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char cdom_adjusted_qc(row=7739, cdom_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float cdom_adjusted_error(row=7857); - :_ChunkSizes = 133, 1591; // int + float cdom_adjusted_error(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -211,10 +211,10 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :resolution = 0.001f; // float :units = "ppb"; - float chla(row=7857); - :_ChunkSizes = 133, 1591; // int + float chla(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float - :actual_range = -0.1728f, 6.5773f; // float + :actual_range = -0.1728f, 6.6576f; // float :C_format = "%.4f"; :cf_standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; :FORTRAN_format = "F.4"; @@ -226,14 +226,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char chla_qc(row=7857, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char chla_qc(row=7739, chla_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float chla_adjusted(row=7857); - :_ChunkSizes = 133, 1591; // int + float chla_adjusted(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.04015f, 4.0661f; // float :C_format = "%.4f"; @@ -243,14 +243,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; :units = "mg/m3"; - char chla_adjusted_qc(row=7857, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char chla_adjusted_qc(row=7739, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float chla_adjusted_error(row=7857); - :_ChunkSizes = 133, 1591; // int + float chla_adjusted_error(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -258,7 +258,7 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :resolution = 0.025f; // float :units = "mg/m3"; - float cp660(row=7857); + float cp660(row=7739); :_FillValue = 99999.0f; // float :actual_range = 0.1717304f, 19.54557f; // float :cf_standard_name = "-"; @@ -268,22 +268,22 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char cp660_qc(row=7857, cp660_qc_strlen=1); + char cp660_qc(row=7739, cp660_qc_strlen=1); :_Encoding = "ISO-8859-1"; - float cp660_adjusted(row=7857); + float cp660_adjusted(row=7739); :actual_range = 99999.0f, 99999.0f; // float - char cp660_adjusted_qc(row=7857, cp660_adjusted_qc_strlen=1); + char cp660_adjusted_qc(row=7739, cp660_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; - float cp660_adjusted_error(row=7857); + float cp660_adjusted_error(row=7739); :actual_range = 99999.0f, 99999.0f; // float - float downwelling_par(row=7857); - :_ChunkSizes = 133, 1591; // int + float downwelling_par(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float - :actual_range = -7.686398E-4f, 1323.153f; // float + :actual_range = -7.686E-4f, 1323.153f; // float :C_format = "%.3f"; :cf_standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; :FORTRAN_format = "F.3"; @@ -295,14 +295,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char downwelling_par_qc(row=7857, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char downwelling_par_qc(row=7739, downwelling_par_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float downwelling_par_adjusted(row=7857); - :_ChunkSizes = 133, 1591; // int + float downwelling_par_adjusted(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.03136416f, 1308.671f; // float :C_format = "%.3f"; @@ -312,14 +312,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; :units = "microMoleQuanta/m^2/sec"; - char downwelling_par_adjusted_qc(row=7857, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char downwelling_par_adjusted_qc(row=7739, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float downwelling_par_adjusted_error(row=7857); - :_ChunkSizes = 133, 1591; // int + float downwelling_par_adjusted_error(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.03f, 65.43353f; // float :C_format = "%.3f"; @@ -328,10 +328,10 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :resolution = 0.001f; // float :units = "microMoleQuanta/m^2/sec"; - float down_irradiance380(row=7857); - :_ChunkSizes = 133, 1591; // int + float down_irradiance380(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float - :actual_range = 1.491985E-4f, 0.5478014f; // float + :actual_range = 1.458301E-4f, 0.5478014f; // float :C_format = "%.6f"; :cf_standard_name = "-"; :FORTRAN_format = "F.6"; @@ -342,14 +342,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char down_irradiance380_qc(row=7857, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance380_qc(row=7739, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance380_adjusted(row=7857); - :_ChunkSizes = 133, 1591; // int + float down_irradiance380_adjusted(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.428419E-5f, 0.4718581f; // float :C_format = "%.6f"; @@ -358,14 +358,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - char down_irradiance380_adjusted_qc(row=7857, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance380_adjusted_qc(row=7739, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance380_adjusted_error(row=7857); - :_ChunkSizes = 133, 1591; // int + float down_irradiance380_adjusted_error(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.009437162f; // float :C_format = "%.6f"; @@ -374,10 +374,10 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - float down_irradiance412(row=7857); - :_ChunkSizes = 133, 1591; // int + float down_irradiance412(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float - :actual_range = -1.0904E-4f, 0.9701303f; // float + :actual_range = -1.09E-4f, 0.9701303f; // float :C_format = "%.6f"; :cf_standard_name = "-"; :FORTRAN_format = "F.6"; @@ -388,14 +388,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char down_irradiance412_qc(row=7857, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance412_qc(row=7739, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance412_adjusted(row=7857); - :_ChunkSizes = 133, 1591; // int + float down_irradiance412_adjusted(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -3.462394E-6f, 0.8742118f; // float :C_format = "%.6f"; @@ -404,14 +404,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - char down_irradiance412_adjusted_qc(row=7857, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance412_adjusted_qc(row=7739, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance412_adjusted_error(row=7857); - :_ChunkSizes = 133, 1591; // int + float down_irradiance412_adjusted_error(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.01748424f; // float :C_format = "%.6f"; @@ -420,10 +420,10 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - float down_irradiance490(row=7857); - :_ChunkSizes = 133, 1591; // int + float down_irradiance490(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float - :actual_range = -1.217469E-4f, 1.316566f; // float + :actual_range = -1.217E-4f, 1.316566f; // float :C_format = "%.6f"; :cf_standard_name = "-"; :FORTRAN_format = "F.6"; @@ -434,14 +434,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char down_irradiance490_qc(row=7857, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance490_qc(row=7739, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance490_adjusted(row=7857); - :_ChunkSizes = 133, 1591; // int + float down_irradiance490_adjusted(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -3.242133E-5f, 1.230644f; // float :C_format = "%.6f"; @@ -450,14 +450,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - char down_irradiance490_adjusted_qc(row=7857, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance490_adjusted_qc(row=7739, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance490_adjusted_error(row=7857); - :_ChunkSizes = 133, 1591; // int + float down_irradiance490_adjusted_error(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.02461287f; // float :C_format = "%.6f"; @@ -466,8 +466,8 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - float doxy(row=7857); - :_ChunkSizes = 133, 1591; // int + float doxy(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1526.135f, 11356.0f; // float :C_format = "%.3f"; @@ -481,14 +481,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = 600.0f; // float :valid_min = -5.0f; // float - char doxy_qc(row=7857, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char doxy_qc(row=7739, doxy_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float doxy_adjusted(row=7857); - :_ChunkSizes = 133, 1591; // int + float doxy_adjusted(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1655.856f, 12321.26f; // float :C_format = "%.3f"; @@ -500,14 +500,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = 600.0f; // float :valid_min = -5.0f; // float - char doxy_adjusted_qc(row=7857, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char doxy_adjusted_qc(row=7739, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float doxy_adjusted_error(row=7857); - :_ChunkSizes = 133, 1591; // int + float doxy_adjusted_error(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.630909f, 31.84704f; // float :C_format = "%.3f"; @@ -516,102 +516,52 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :resolution = 0.001f; // float :units = "micromole/kg"; - float nitrate(row=7857); - :_ChunkSizes = 133, 1591; // int + float nitrate(row=7739); :_FillValue = 99999.0f; // float :actual_range = 4.082905f, 12.04938f; // float - :C_format = "%.3f"; :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :FORTRAN_format = "F.3"; :long_name = "Nitrate"; - :resolution = 0.001f; // float :sdn_parameter_urn = "SDN:P01::MDMAP005"; - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; :units = "micromole/kg"; :valid_max = NaNf; // float :valid_min = NaNf; // float - char nitrate_qc(row=7857, nitrate_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char nitrate_qc(row=7739, nitrate_qc_strlen=1); :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; - float nitrate_adjusted(row=7857); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 1.222567f, 14.43379f; // float - :C_format = "%.3f"; - :FORTRAN_format = "F.3"; - :long_name = "Nitrate"; - :resolution = 0.001f; // float - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :units = "micromole/kg"; + float nitrate_adjusted(row=7739); + :actual_range = 1.222567f, 99999.0f; // float - char nitrate_adjusted_qc(row=7857, nitrate_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char nitrate_adjusted_qc(row=7739, nitrate_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; - float nitrate_adjusted_error(row=7857); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 0.7363588f, 5.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 = "micromole/kg"; + float nitrate_adjusted_error(row=7739); + :actual_range = 0.7363588f, 99999.0f; // float - float ph_in_situ_total(row=7857); - :_ChunkSizes = 133, 1591; // int + float ph_in_situ_total(row=7739); :_FillValue = 99999.0f; // float :actual_range = 5.686137f, 8.225466f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float - char ph_in_situ_total_qc(row=7857, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char ph_in_situ_total_qc(row=7739, ph_in_situ_total_qc_strlen=1); :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; - float ph_in_situ_total_adjusted(row=7857); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + float ph_in_situ_total_adjusted(row=7739); + :actual_range = 99999.0f, 99999.0f; // float - char ph_in_situ_total_adjusted_qc(row=7857, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char ph_in_situ_total_adjusted_qc(row=7739, ph_in_situ_total_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; - float ph_in_situ_total_adjusted_error(row=7857); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + float ph_in_situ_total_adjusted_error(row=7739); + :actual_range = 99999.0f, 99999.0f; // float - float pres(row=7857); - :_ChunkSizes = 133, 1591; // int + float pres(row=7739); + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float @@ -627,14 +577,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = 12000.0f; // float :valid_min = 0.0f; // float - char pres_qc(row=7857, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char pres_qc(row=7739, pres_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float pres_adjusted(row=7857); - :_ChunkSizes = 133, 1591; // int + float pres_adjusted(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.649095E-7f, 10.49f; // float :axis = "Z"; @@ -647,14 +597,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = 12000.0f; // float :valid_min = 0.0f; // float - char pres_adjusted_qc(row=7857, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char pres_adjusted_qc(row=7739, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float pres_adjusted_error(row=7857); - :_ChunkSizes = 133, 1591; // int + float pres_adjusted_error(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.0f, 2.4f; // float :C_format = "%.3f"; @@ -663,10 +613,10 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :resolution = 0.001f; // float :units = "decibar"; - float psal(row=7857); - :_ChunkSizes = 133, 1591; // int + float psal(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float - :actual_range = 0.402f, 35.02467f; // float + :actual_range = 1.208f, 35.02467f; // float :C_format = "%.4f"; :cf_standard_name = "sea_water_salinity"; :FORTRAN_format = "F.4"; @@ -678,14 +628,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = 41.0f; // float :valid_min = 2.0f; // float - char psal_qc(row=7857, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char psal_qc(row=7739, psal_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float psal_adjusted(row=7857); - :_ChunkSizes = 133, 1591; // int + float psal_adjusted(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.868f, 35.02467f; // float :C_format = "%.4f"; @@ -697,14 +647,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = 41.0f; // float :valid_min = 2.0f; // float - char psal_adjusted_qc(row=7857, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char psal_adjusted_qc(row=7739, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float psal_adjusted_error(row=7857); - :_ChunkSizes = 133, 1591; // int + float psal_adjusted_error(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.004f, 1.046394f; // float :C_format = "%.4f"; @@ -713,8 +663,8 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :resolution = 1.0E-4f; // float :units = "psu"; - float temp(row=7857); - :_ChunkSizes = 133, 1591; // int + float temp(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.396074f, 15.6335f; // float :C_format = "%.3f"; @@ -728,14 +678,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = 40.0f; // float :valid_min = -2.5f; // float - char temp_qc(row=7857, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char temp_qc(row=7739, temp_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float temp_adjusted(row=7857); - :_ChunkSizes = 133, 1591; // int + float temp_adjusted(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.396074f, 12.905f; // float :C_format = "%.3f"; @@ -747,14 +697,14 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :valid_max = 40.0f; // float :valid_min = -2.5f; // float - char temp_adjusted_qc(row=7857, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char temp_adjusted_qc(row=7739, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float temp_adjusted_error(row=7857); - :_ChunkSizes = 133, 1591; // int + float temp_adjusted_error(row=7739); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -781,9 +731,9 @@ netcdf ArgoFloats-synthetic-BGC_1734_caa1_5d40.nc { :geospatial_lon_max = -47.00874350000001; // double :geospatial_lon_min = -54.999; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:09:40Z (local files) -2024-08-23T08:09:40Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:30:21Z (local files) +2024-09-20T11:30:21Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; :id = "https://doi.org/10.17882/42182"; :infoUrl = "http://www.argodatamgt.org/Documentation"; :institution = "Argo"; @@ -806,7 +756,7 @@ completeness, or usefulness, of this information."; :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-08-22T11:23:00Z"; + :time_coverage_end = "2024-09-19T11:24:00Z"; :time_coverage_start = "2003-09-14T16:35:16Z"; :title = "Argo float synthetic vertical profiles : BGC data"; :user_manual_version = "1.0"; diff --git a/argopy/tests/test_data/d410e6e4cd9b1997eeca96d6c9d63101af097403e0b2d3ed363bc9779af7bf58.json b/argopy/tests/test_data/d410e6e4cd9b1997eeca96d6c9d63101af097403e0b2d3ed363bc9779af7bf58.json index ee313397..b22cf14b 100644 --- a/argopy/tests/test_data/d410e6e4cd9b1997eeca96d6c9d63101af097403e0b2d3ed363bc9779af7bf58.json +++ b/argopy/tests/test_data/d410e6e4cd9b1997eeca96d6c9d63101af097403e0b2d3ed363bc9779af7bf58.json @@ -1 +1 @@ -[{"id":1820720,"cvNumber":45,"coordinate":{"lat":1.411,"lon":95.803},"level":0},{"id":1836832,"cvNumber":47,"coordinate":{"lat":1.949,"lon":95.854},"level":0},{"id":1850400,"cvNumber":49,"coordinate":{"lat":2.11,"lon":95.658},"level":0},{"id":1935269,"cvNumber":57,"coordinate":{"lat":3.462,"lon":94.896},"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":1813370,"cvNumber":44,"coordinate":{"lat":1.478,"lon":95.574},"level":0},{"id":1913042,"cvNumber":55,"coordinate":{"lat":3.031,"lon":94.958},"level":0},{"id":1860074,"cvNumber":50,"coordinate":{"lat":2.037,"lon":95.818},"level":0},{"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":1759230,"cvNumber":36,"coordinate":{"lat":0.723,"lon":93.47},"level":0},{"id":1967037,"cvNumber":60,"coordinate":{"lat":3.197,"lon":94.406},"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":1472368,"cvNumber":7,"coordinate":{"lat":0.097,"lon":89.226},"level":0},{"id":1498793,"cvNumber":9,"coordinate":{"lat":0.513,"lon":89.552},"level":0},{"id":1486151,"cvNumber":8,"coordinate":{"lat":0.324,"lon":89.093},"level":0},{"id":1511551,"cvNumber":10,"coordinate":{"lat":0.893,"lon":90.579},"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":1446869,"cvNumber":5,"coordinate":{"lat":-0.278,"lon":90.459},"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":1543950,"cvNumber":13,"coordinate":{"lat":1.982,"lon":92.419},"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":1562730,"cvNumber":15,"coordinate":{"lat":1.132,"lon":92.193},"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":1640474,"cvNumber":24,"coordinate":{"lat":1.097,"lon":94.498},"level":0},{"id":1633129,"cvNumber":23,"coordinate":{"lat":1.216,"lon":94.194},"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":1623270,"cvNumber":22,"coordinate":{"lat":1.665,"lon":93.532},"level":0},{"id":1618347,"cvNumber":21,"coordinate":{"lat":1.635,"lon":93.123},"level":0},{"id":1651057,"cvNumber":25,"coordinate":{"lat":1.177,"lon":94.944},"level":0},{"id":1665413,"cvNumber":27,"coordinate":{"lat":1.997,"lon":93.882},"level":0},{"id":1655510,"cvNumber":26,"coordinate":{"lat":1.621,"lon":94.402},"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":1730054,"cvNumber":32,"coordinate":{"lat":1.226,"lon":93.242},"level":0},{"id":1720670,"cvNumber":31,"coordinate":{"lat":1.514,"lon":93.229},"level":0},{"id":1674829,"cvNumber":28,"coordinate":{"lat":2.047,"lon":93.754},"level":0},{"id":1742887,"cvNumber":34,"coordinate":{"lat":0.671,"lon":93.018},"level":0},{"id":1737029,"cvNumber":33,"coordinate":{"lat":0.871,"lon":93.084},"level":0},{"id":1752714,"cvNumber":35,"coordinate":{"lat":0.553,"lon":93.405},"level":0},{"id":1776570,"cvNumber":37,"coordinate":{"lat":1.19,"lon":93.894},"level":0},{"id":2080861,"cvNumber":71,"coordinate":{"lat":4.053,"lon":93.48},"level":0},{"id":2076598,"cvNumber":70,"coordinate":{"lat":3.636,"lon":93.66},"level":0},{"id":1983321,"cvNumber":62,"coordinate":{"lat":3.84,"lon":94.443},"level":0},{"id":1990669,"cvNumber":63,"coordinate":{"lat":3.46,"lon":94.114},"level":0},{"id":1975240,"cvNumber":61,"coordinate":{"lat":3.554,"lon":94.604},"level":0},{"id":2106778,"cvNumber":73,"coordinate":{"lat":3.845,"lon":93.163},"level":0},{"id":2010186,"cvNumber":65,"coordinate":{"lat":2.561,"lon":94.511},"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":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":2040900,"cvNumber":68,"coordinate":{"lat":2.881,"lon":93.671},"level":0},{"id":2055022,"cvNumber":69,"coordinate":{"lat":3.063,"lon":93.806},"level":0},{"id":1784983,"cvNumber":39,"coordinate":{"lat":0.775,"lon":94.966},"level":0},{"id":1873749,"cvNumber":51,"coordinate":{"lat":2.064,"lon":96.036},"level":0},{"id":1877289,"cvNumber":52,"coordinate":{"lat":2.221,"lon":95.81},"level":0},{"id":1711895,"cvNumber":30,"coordinate":{"lat":1.605,"lon":93.444},"level":0},{"id":1695450,"cvNumber":29,"coordinate":{"lat":1.924,"lon":93.486},"level":0},{"id":1806933,"cvNumber":43,"coordinate":{"lat":0.942,"lon":95.524},"level":0},{"id":1828090,"cvNumber":46,"coordinate":{"lat":1.619,"lon":95.646},"level":0},{"id":1843857,"cvNumber":48,"coordinate":{"lat":1.953,"lon":95.812},"level":0},{"id":2296078,"cvNumber":86,"coordinate":{"lat":2.262,"lon":93.373},"level":0},{"id":2276059,"cvNumber":85,"coordinate":{"lat":2.369,"lon":93.502},"level":0},{"id":2391426,"cvNumber":95,"coordinate":{"lat":3.386,"lon":94.607},"level":0},{"id":2174692,"cvNumber":78,"coordinate":{"lat":3.877,"lon":93.283},"level":0},{"id":2187720,"cvNumber":79,"coordinate":{"lat":3.742,"lon":93.705},"level":0},{"id":2238118,"cvNumber":83,"coordinate":{"lat":2.343,"lon":93.847},"level":0},{"id":2307782,"cvNumber":88,"coordinate":{"lat":3.107,"lon":93.943},"level":0},{"id":2305960,"cvNumber":87,"coordinate":{"lat":2.395,"lon":93.833},"level":0},{"id":2210780,"cvNumber":81,"coordinate":{"lat":3.064,"lon":93.535},"level":0},{"id":2220499,"cvNumber":82,"coordinate":{"lat":2.423,"lon":93.655},"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":2369041,"cvNumber":93,"coordinate":{"lat":4.071,"lon":94.576},"level":0},{"id":2406542,"cvNumber":96,"coordinate":{"lat":3.388,"lon":94.766},"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":2199101,"cvNumber":80,"coordinate":{"lat":3.796,"lon":93.691},"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":1920626,"cvNumber":56,"coordinate":{"lat":2.968,"lon":94.961},"level":0},{"id":1891403,"cvNumber":53,"coordinate":{"lat":2.326,"lon":95.722},"level":0},{"id":1907530,"cvNumber":54,"coordinate":{"lat":2.518,"lon":95.628},"level":0},{"id":2161514,"cvNumber":77,"coordinate":{"lat":3.494,"lon":93.259},"level":0},{"id":2269692,"cvNumber":84,"coordinate":{"lat":2.423,"lon":93.757},"level":0},{"id":2380130,"cvNumber":94,"coordinate":{"lat":3.622,"lon":94.374},"level":0},{"id":1439341,"cvNumber":3,"coordinate":{"lat":0.11,"lon":90.866},"level":0}] \ No newline at end of file +[{"id":1553651,"cvNumber":14,"coordinate":{"lat":1.741,"lon":92.299},"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":1640474,"cvNumber":24,"coordinate":{"lat":1.097,"lon":94.498},"level":0},{"id":1633129,"cvNumber":23,"coordinate":{"lat":1.216,"lon":94.194},"level":0},{"id":1651057,"cvNumber":25,"coordinate":{"lat":1.177,"lon":94.944},"level":0},{"id":1665413,"cvNumber":27,"coordinate":{"lat":1.997,"lon":93.882},"level":0},{"id":1543950,"cvNumber":13,"coordinate":{"lat":1.982,"lon":92.419},"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":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":1623270,"cvNumber":22,"coordinate":{"lat":1.665,"lon":93.532},"level":0},{"id":1618347,"cvNumber":21,"coordinate":{"lat":1.635,"lon":93.123},"level":0},{"id":1562730,"cvNumber":15,"coordinate":{"lat":1.132,"lon":92.193},"level":0},{"id":1572071,"cvNumber":16,"coordinate":{"lat":1.107,"lon":92.5},"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":1486151,"cvNumber":8,"coordinate":{"lat":0.324,"lon":89.093},"level":0},{"id":1511551,"cvNumber":10,"coordinate":{"lat":0.893,"lon":90.579},"level":0},{"id":1472368,"cvNumber":7,"coordinate":{"lat":0.097,"lon":89.226},"level":0},{"id":1498793,"cvNumber":9,"coordinate":{"lat":0.513,"lon":89.552},"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":1439341,"cvNumber":3,"coordinate":{"lat":0.11,"lon":90.866},"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":2106778,"cvNumber":73,"coordinate":{"lat":3.845,"lon":93.163},"level":0},{"id":1983321,"cvNumber":62,"coordinate":{"lat":3.84,"lon":94.443},"level":0},{"id":1990669,"cvNumber":63,"coordinate":{"lat":3.46,"lon":94.114},"level":0},{"id":1975240,"cvNumber":61,"coordinate":{"lat":3.554,"lon":94.604},"level":0},{"id":2210780,"cvNumber":81,"coordinate":{"lat":3.064,"lon":93.535},"level":0},{"id":2080861,"cvNumber":71,"coordinate":{"lat":4.053,"lon":93.48},"level":0},{"id":2174692,"cvNumber":78,"coordinate":{"lat":3.877,"lon":93.283},"level":0},{"id":2187720,"cvNumber":79,"coordinate":{"lat":3.742,"lon":93.705},"level":0},{"id":2010186,"cvNumber":65,"coordinate":{"lat":2.561,"lon":94.511},"level":0},{"id":1674829,"cvNumber":28,"coordinate":{"lat":2.047,"lon":93.754},"level":0},{"id":1850400,"cvNumber":49,"coordinate":{"lat":2.11,"lon":95.658},"level":0},{"id":1791235,"cvNumber":40,"coordinate":{"lat":0.673,"lon":94.817},"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":1877289,"cvNumber":52,"coordinate":{"lat":2.221,"lon":95.81},"level":0},{"id":1820720,"cvNumber":45,"coordinate":{"lat":1.411,"lon":95.803},"level":0},{"id":1920626,"cvNumber":56,"coordinate":{"lat":2.968,"lon":94.961},"level":0},{"id":1935269,"cvNumber":57,"coordinate":{"lat":3.462,"lon":94.896},"level":0},{"id":1730054,"cvNumber":32,"coordinate":{"lat":1.226,"lon":93.242},"level":0},{"id":1720670,"cvNumber":31,"coordinate":{"lat":1.514,"lon":93.229},"level":0},{"id":1695450,"cvNumber":29,"coordinate":{"lat":1.924,"lon":93.486},"level":0},{"id":1860074,"cvNumber":50,"coordinate":{"lat":2.037,"lon":95.818},"level":0},{"id":1655510,"cvNumber":26,"coordinate":{"lat":1.621,"lon":94.402},"level":0},{"id":1779670,"cvNumber":38,"coordinate":{"lat":1.239,"lon":94.346},"level":0},{"id":1759230,"cvNumber":36,"coordinate":{"lat":0.723,"lon":93.47},"level":0},{"id":1891403,"cvNumber":53,"coordinate":{"lat":2.326,"lon":95.722},"level":0},{"id":1907530,"cvNumber":54,"coordinate":{"lat":2.518,"lon":95.628},"level":0},{"id":1813370,"cvNumber":44,"coordinate":{"lat":1.478,"lon":95.574},"level":0},{"id":2296078,"cvNumber":86,"coordinate":{"lat":2.262,"lon":93.373},"level":0},{"id":2276059,"cvNumber":85,"coordinate":{"lat":2.369,"lon":93.502},"level":0},{"id":2320858,"cvNumber":89,"coordinate":{"lat":4.11,"lon":94.244},"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":2092118,"cvNumber":72,"coordinate":{"lat":4.092,"lon":93.308},"level":0},{"id":2305960,"cvNumber":87,"coordinate":{"lat":2.395,"lon":93.833},"level":0},{"id":2238118,"cvNumber":83,"coordinate":{"lat":2.343,"lon":93.847},"level":0},{"id":2220499,"cvNumber":82,"coordinate":{"lat":2.423,"lon":93.655},"level":0},{"id":2351733,"cvNumber":91,"coordinate":{"lat":4.004,"lon":93.989},"level":0},{"id":2391426,"cvNumber":95,"coordinate":{"lat":3.386,"lon":94.607},"level":0},{"id":2335139,"cvNumber":90,"coordinate":{"lat":4.16,"lon":94.479},"level":0},{"id":2355581,"cvNumber":92,"coordinate":{"lat":3.513,"lon":94.264},"level":0},{"id":2406542,"cvNumber":96,"coordinate":{"lat":3.388,"lon":94.766},"level":0},{"id":2161514,"cvNumber":77,"coordinate":{"lat":3.494,"lon":93.259},"level":0},{"id":1784983,"cvNumber":39,"coordinate":{"lat":0.775,"lon":94.966},"level":0},{"id":2055022,"cvNumber":69,"coordinate":{"lat":3.063,"lon":93.806},"level":0},{"id":2076598,"cvNumber":70,"coordinate":{"lat":3.636,"lon":93.66},"level":0},{"id":1998045,"cvNumber":64,"coordinate":{"lat":2.66,"lon":94.294},"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":2040900,"cvNumber":68,"coordinate":{"lat":2.881,"lon":93.671},"level":0},{"id":1806933,"cvNumber":43,"coordinate":{"lat":0.942,"lon":95.524},"level":0},{"id":1776570,"cvNumber":37,"coordinate":{"lat":1.19,"lon":93.894},"level":0},{"id":1711895,"cvNumber":30,"coordinate":{"lat":1.605,"lon":93.444},"level":0},{"id":1742887,"cvNumber":34,"coordinate":{"lat":0.671,"lon":93.018},"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":1737029,"cvNumber":33,"coordinate":{"lat":0.871,"lon":93.084},"level":0},{"id":1752714,"cvNumber":35,"coordinate":{"lat":0.553,"lon":93.405},"level":0},{"id":1967037,"cvNumber":60,"coordinate":{"lat":3.197,"lon":94.406},"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":1913042,"cvNumber":55,"coordinate":{"lat":3.031,"lon":94.958},"level":0},{"id":1828090,"cvNumber":46,"coordinate":{"lat":1.619,"lon":95.646},"level":0},{"id":2380130,"cvNumber":94,"coordinate":{"lat":3.622,"lon":94.374},"level":0},{"id":2137885,"cvNumber":75,"coordinate":{"lat":3.626,"lon":93.182},"level":0},{"id":2199101,"cvNumber":80,"coordinate":{"lat":3.796,"lon":93.691},"level":0},{"id":2369041,"cvNumber":93,"coordinate":{"lat":4.071,"lon":94.576},"level":0}] \ No newline at end of file diff --git a/argopy/tests/test_data/d476bead34e01db22875f061d669478cedbd49da0321133762fb1b6c6de71d6a.ncHeader b/argopy/tests/test_data/d476bead34e01db22875f061d669478cedbd49da0321133762fb1b6c6de71d6a.ncHeader index d2b8c377..ea7cbff4 100644 --- a/argopy/tests/test_data/d476bead34e01db22875f061d669478cedbd49da0321133762fb1b6c6de71d6a.ncHeader +++ b/argopy/tests/test_data/d476bead34e01db22875f061d669478cedbd49da0321133762fb1b6c6de71d6a.ncHeader @@ -87,7 +87,7 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :long_name = "Quality on date and time"; char direction(row=83615, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -112,7 +112,7 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :long_name = "Float cycle number"; int config_mission_number(row=83615); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 12; // int :colorBarMaximum = 100.0; // double @@ -122,7 +122,7 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :long_name = "Unique number denoting the missions performed by the float"; float bbp700(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -9.164699E-4f, 0.05414488f; // float :C_format = "%.7f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :valid_min = NaNf; // float char bbp700_qc(row=83615, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -9.164699E-4f, 0.05414488f; // float :C_format = "%.7f"; @@ -152,13 +152,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :units = "m-1"; char bbp700_adjusted_qc(row=83615, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.7f"; :FORTRAN_format = "F.7"; @@ -167,7 +167,7 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :units = "m-1"; float cdom(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.880162f, 7.964f; // float :C_format = "%.3f"; @@ -181,13 +181,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :valid_min = NaNf; // float char cdom_qc(row=83615, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -196,13 +196,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :units = "ppb"; char cdom_adjusted_qc(row=83615, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -211,7 +211,7 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :units = "ppb"; float chla(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.761025f, 13.45299f; // float :C_format = "%.4f"; @@ -226,13 +226,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :valid_min = NaNf; // float char chla_qc(row=83615, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.01356583f, 3.577122f; // float :C_format = "%.4f"; @@ -243,13 +243,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :units = "mg/m3"; char chla_adjusted_qc(row=83615, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -280,7 +280,7 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :actual_range = 99999.0f, 99999.0f; // float float downwelling_par(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.4787728f, 2514.499f; // float :C_format = "%.3f"; @@ -295,13 +295,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :valid_min = NaNf; // float char downwelling_par_qc(row=83615, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.05009519f, 2514.08f; // float :C_format = "%.3f"; @@ -312,13 +312,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :units = "microMoleQuanta/m^2/sec"; char downwelling_par_adjusted_qc(row=83615, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.03f, 125.704f; // float :C_format = "%.3f"; @@ -328,7 +328,7 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :units = "microMoleQuanta/m^2/sec"; float down_irradiance380(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.484757E-4f, 0.7294909f; // float :C_format = "%.6f"; @@ -342,13 +342,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :valid_min = NaNf; // float char down_irradiance380_qc(row=83615, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -5.455375E-5f, 0.7292956f; // float :C_format = "%.6f"; @@ -358,13 +358,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :units = "W/m^2/nm"; char down_irradiance380_adjusted_qc(row=83615, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.01458591f; // float :C_format = "%.6f"; @@ -374,7 +374,7 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :units = "W/m^2/nm"; float down_irradiance412(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.274848E-5f, 1.377052f; // float :C_format = "%.6f"; @@ -388,13 +388,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :valid_min = NaNf; // float char down_irradiance412_qc(row=83615, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -5.610992E-5f, 1.376981f; // float :C_format = "%.6f"; @@ -404,13 +404,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :units = "W/m^2/nm"; char down_irradiance412_adjusted_qc(row=83615, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.02753962f; // float :C_format = "%.6f"; @@ -420,7 +420,7 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :units = "W/m^2/nm"; float down_irradiance490(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -8.524217E-5f, 1.843542f; // float :C_format = "%.6f"; @@ -434,13 +434,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :valid_min = NaNf; // float char down_irradiance490_qc(row=83615, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.414902E-5f, 1.84358f; // float :C_format = "%.6f"; @@ -450,13 +450,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :units = "W/m^2/nm"; char down_irradiance490_adjusted_qc(row=83615, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.0368716f; // float :C_format = "%.6f"; @@ -466,7 +466,7 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :units = "W/m^2/nm"; float doxy(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 259.8413f, 344.439f; // float :C_format = "%.3f"; @@ -481,13 +481,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :valid_min = -5.0f; // float char doxy_qc(row=83615, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 264.4146f, 350.5012f; // float :C_format = "%.3f"; @@ -500,13 +500,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=83615, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 12.55041f, 17.08033f; // float :C_format = "%.3f"; @@ -516,101 +516,51 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :units = "micromole/kg"; float nitrate(row=83615); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 3.8049f, 21.64844f; // float - :C_format = "%.3f"; :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :FORTRAN_format = "F.3"; :long_name = "Nitrate"; - :resolution = 0.001f; // float :sdn_parameter_urn = "SDN:P01::MDMAP005"; - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; :units = "micromole/kg"; :valid_max = NaNf; // float :valid_min = NaNf; // float char nitrate_qc(row=83615, nitrate_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 0.9445617f, 18.7881f; // float - :C_format = "%.3f"; - :FORTRAN_format = "F.3"; - :long_name = "Nitrate"; - :resolution = 0.001f; // float - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :units = "micromole/kg"; + :actual_range = 0.9445617f, 99999.0f; // float char nitrate_adjusted_qc(row=83615, nitrate_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 5.0f, 5.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 = "micromole/kg"; + :actual_range = 5.0f, 99999.0f; // float float ph_in_situ_total(row=83615); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 7.010946f, 8.225677f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float char ph_in_situ_total_qc(row=83615, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float char ph_in_situ_total_adjusted_qc(row=83615, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float float pres(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = -0.29f, 2005.056f; // float @@ -627,13 +577,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :valid_min = 0.0f; // float char pres_qc(row=83615, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.054f, 2003.352f; // float :axis = "Z"; @@ -647,13 +597,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=83615, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -662,7 +612,7 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :units = "decibar"; float psal(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 27.411f, 34.936f; // float :C_format = "%.4f"; @@ -677,13 +627,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :valid_min = 2.0f; // float char psal_qc(row=83615, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.20806f, 34.93495f; // float :C_format = "%.4f"; @@ -696,13 +646,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=83615, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -711,7 +661,7 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :units = "psu"; float temp(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.139f, 12.609f; // float :C_format = "%.3f"; @@ -726,13 +676,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :valid_min = -2.5f; // float char temp_qc(row=83615, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.139f, 12.609f; // float :C_format = "%.3f"; @@ -745,13 +695,13 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=83615, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=83615); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -777,9 +727,9 @@ netcdf ArgoFloats-synthetic-BGC_3dc2_18fa_7b2e.nc { :geospatial_lon_max = -43.740898; // double :geospatial_lon_min = -53.10385516666667; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T07:38:37Z (local files) -2024-08-23T07:38:37Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%226904241%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:26:51Z (local files) +2024-09-20T11:26:51Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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"; diff --git a/argopy/tests/test_data/d532f6c4aaf308644bb0ed56014b581ce2a60106f951d498358b28f9bc4da857.ncHeader b/argopy/tests/test_data/d532f6c4aaf308644bb0ed56014b581ce2a60106f951d498358b28f9bc4da857.ncHeader index 597abd62..d12fc56c 100644 --- a/argopy/tests/test_data/d532f6c4aaf308644bb0ed56014b581ce2a60106f951d498358b28f9bc4da857.ncHeader +++ b/argopy/tests/test_data/d532f6c4aaf308644bb0ed56014b581ce2a60106f951d498358b28f9bc4da857.ncHeader @@ -303,8 +303,8 @@ netcdf ArgoFloats_04be_73e1_c4b8.nc { :geospatial_lon_max = 47.219; // double :geospatial_lon_min = 0.0034000000000000002; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-22T12:05:47Z (local files) -2024-08-22T12:05:47Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~%221900468%7C1900117%7C1900386%22&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-20T09:19:44Z (local files) +2024-09-20T09:19:44Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~%221900468%7C1900117%7C1900386%22&distinct()&orderBy(%22time,pres%22)"; :id = "ArgoFloats"; :infoUrl = "https://argo.ucsd.edu/"; :institution = "Argo"; diff --git a/argopy/tests/test_data/d5b0bcbc6fabdf2be62028a62f727edfaa0daa737a3eea387cd05fe67c7d2a96.nc b/argopy/tests/test_data/d5b0bcbc6fabdf2be62028a62f727edfaa0daa737a3eea387cd05fe67c7d2a96.nc index ec194b65..32de9922 100644 Binary files a/argopy/tests/test_data/d5b0bcbc6fabdf2be62028a62f727edfaa0daa737a3eea387cd05fe67c7d2a96.nc and b/argopy/tests/test_data/d5b0bcbc6fabdf2be62028a62f727edfaa0daa737a3eea387cd05fe67c7d2a96.nc differ diff --git a/argopy/tests/test_data/d5d3e0841b891ebcbb60efc1035af2b1ea9885939bb283d7cea7187eef55ec46.ncHeader b/argopy/tests/test_data/d5d3e0841b891ebcbb60efc1035af2b1ea9885939bb283d7cea7187eef55ec46.ncHeader index 5f0d398c..5229a7f7 100644 --- a/argopy/tests/test_data/d5d3e0841b891ebcbb60efc1035af2b1ea9885939bb283d7cea7187eef55ec46.ncHeader +++ b/argopy/tests/test_data/d5d3e0841b891ebcbb60efc1035af2b1ea9885939bb283d7cea7187eef55ec46.ncHeader @@ -303,8 +303,8 @@ netcdf ArgoFloats_6fd4_20aa_9479.nc { :geospatial_lon_max = -59.238; // double :geospatial_lon_min = -60.173; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-22T12:04:41Z (local files) -2024-08-22T12:04:41Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~%226902746%22&cycle_number=~%221%7C12%22&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-20T09:18:21Z (local files) +2024-09-20T09:18:21Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~%226902746%22&cycle_number=~%221%7C12%22&distinct()&orderBy(%22time,pres%22)"; :id = "ArgoFloats"; :infoUrl = "https://argo.ucsd.edu/"; :institution = "Argo"; diff --git a/argopy/tests/test_data/d8cfdf9d08b599c63396dd5267f82de08f9d132a6b34a417f2907df2ea967071.ncHeader b/argopy/tests/test_data/d8cfdf9d08b599c63396dd5267f82de08f9d132a6b34a417f2907df2ea967071.ncHeader index b770c02d..39875527 100644 --- a/argopy/tests/test_data/d8cfdf9d08b599c63396dd5267f82de08f9d132a6b34a417f2907df2ea967071.ncHeader +++ b/argopy/tests/test_data/d8cfdf9d08b599c63396dd5267f82de08f9d132a6b34a417f2907df2ea967071.ncHeader @@ -87,7 +87,7 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :long_name = "Quality on date and time"; char direction(row=15842, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -112,7 +112,7 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :long_name = "Float cycle number"; int config_mission_number(row=15842); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 12; // int :colorBarMaximum = 100.0; // double @@ -122,7 +122,7 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :long_name = "Unique number denoting the missions performed by the float"; float bbp700(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -3.709493E-4f, 0.05000168f; // float :C_format = "%.7f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :valid_min = NaNf; // float char bbp700_qc(row=15842, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -3.709493E-4f, 0.05000168f; // float :C_format = "%.7f"; @@ -152,13 +152,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :units = "m-1"; char bbp700_adjusted_qc(row=15842, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted_error(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.7f"; :FORTRAN_format = "F.7"; @@ -167,7 +167,7 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :units = "m-1"; float cdom(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.0498f, 3.094597f; // float :C_format = "%.3f"; @@ -181,13 +181,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :valid_min = NaNf; // float char cdom_qc(row=15842, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -196,13 +196,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :units = "ppb"; char cdom_adjusted_qc(row=15842, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted_error(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -211,7 +211,7 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :units = "ppb"; float chla(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.005493865f, 8.595386f; // float :C_format = "%.4f"; @@ -226,13 +226,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :valid_min = NaNf; // float char chla_qc(row=15842, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.006396933f, 3.285f; // float :C_format = "%.4f"; @@ -243,13 +243,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :units = "mg/m3"; char chla_adjusted_qc(row=15842, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted_error(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -280,7 +280,7 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :actual_range = 99999.0f, 99999.0f; // float float downwelling_par(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.4794143f, 1559.685f; // float :C_format = "%.3f"; @@ -295,13 +295,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :valid_min = NaNf; // float char downwelling_par_qc(row=15842, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.05009519f, 1559.296f; // float :C_format = "%.3f"; @@ -312,13 +312,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :units = "microMoleQuanta/m^2/sec"; char downwelling_par_adjusted_qc(row=15842, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted_error(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.03f, 77.96481f; // float :C_format = "%.3f"; @@ -328,7 +328,7 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :units = "microMoleQuanta/m^2/sec"; float down_irradiance380(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.562897E-4f, 0.5758383f; // float :C_format = "%.6f"; @@ -342,13 +342,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :valid_min = NaNf; // float char down_irradiance380_qc(row=15842, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.128381E-5f, 0.5756431f; // float :C_format = "%.6f"; @@ -358,13 +358,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :units = "W/m^2/nm"; char down_irradiance380_adjusted_qc(row=15842, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted_error(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.01151286f; // float :C_format = "%.6f"; @@ -374,7 +374,7 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :units = "W/m^2/nm"; float down_irradiance412(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.688785E-5f, 0.9884863f; // float :C_format = "%.6f"; @@ -388,13 +388,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :valid_min = NaNf; // float char down_irradiance412_qc(row=15842, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.961267E-5f, 0.9884154f; // float :C_format = "%.6f"; @@ -404,13 +404,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :units = "W/m^2/nm"; char down_irradiance412_adjusted_qc(row=15842, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted_error(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.01976831f; // float :C_format = "%.6f"; @@ -420,7 +420,7 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :units = "W/m^2/nm"; float down_irradiance490(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -8.28149E-5f, 1.31982f; // float :C_format = "%.6f"; @@ -434,13 +434,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :valid_min = NaNf; // float char down_irradiance490_qc(row=15842, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -3.760617E-5f, 1.319857f; // float :C_format = "%.6f"; @@ -450,13 +450,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :units = "W/m^2/nm"; char down_irradiance490_adjusted_qc(row=15842, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted_error(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.02639715f; // float :C_format = "%.6f"; @@ -466,7 +466,7 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :units = "W/m^2/nm"; float doxy(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 259.8413f, 344.439f; // float :C_format = "%.3f"; @@ -481,13 +481,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :valid_min = -5.0f; // float char doxy_qc(row=15842, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 264.4146f, 350.5012f; // float :C_format = "%.3f"; @@ -500,13 +500,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=15842, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 12.55041f, 17.08033f; // float :C_format = "%.3f"; @@ -516,101 +516,51 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :units = "micromole/kg"; float nitrate(row=15842); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 3.8049f, 21.64844f; // float - :C_format = "%.3f"; :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :FORTRAN_format = "F.3"; :long_name = "Nitrate"; - :resolution = 0.001f; // float :sdn_parameter_urn = "SDN:P01::MDMAP005"; - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; :units = "micromole/kg"; :valid_max = NaNf; // float :valid_min = NaNf; // float char nitrate_qc(row=15842, nitrate_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted(row=15842); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 0.9445617f, 18.7881f; // float - :C_format = "%.3f"; - :FORTRAN_format = "F.3"; - :long_name = "Nitrate"; - :resolution = 0.001f; // float - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :units = "micromole/kg"; + :actual_range = 0.9445617f, 99999.0f; // float char nitrate_adjusted_qc(row=15842, nitrate_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted_error(row=15842); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 5.0f, 5.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 = "micromole/kg"; + :actual_range = 5.0f, 99999.0f; // float float ph_in_situ_total(row=15842); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 7.010946f, 8.225466f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float char ph_in_situ_total_qc(row=15842, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted(row=15842); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float char ph_in_situ_total_adjusted_qc(row=15842, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted_error(row=15842); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float float pres(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = -0.29f, 2005.056f; // float @@ -627,13 +577,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :valid_min = 0.0f; // float char pres_qc(row=15842, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.054f, 2003.352f; // float :axis = "Z"; @@ -647,13 +597,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=15842, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -662,7 +612,7 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :units = "decibar"; float psal(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.20831f, 34.93551f; // float :C_format = "%.4f"; @@ -677,13 +627,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :valid_min = 2.0f; // float char psal_qc(row=15842, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.20806f, 34.93495f; // float :C_format = "%.4f"; @@ -696,13 +646,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=15842, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -711,7 +661,7 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :units = "psu"; float temp(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.139f, 12.609f; // float :C_format = "%.3f"; @@ -726,13 +676,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :valid_min = -2.5f; // float char temp_qc(row=15842, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.139f, 12.609f; // float :C_format = "%.3f"; @@ -745,13 +695,13 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=15842, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=15842); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -777,9 +727,9 @@ netcdf ArgoFloats-synthetic-BGC_f1e7_8e8c_d306.nc { :geospatial_lon_max = -43.740898; // double :geospatial_lon_min = -53.10385516666667; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:09:24Z (local files) -2024-08-23T08:09:24Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%226904241%22&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:30:13Z (local files) +2024-09-20T11:30:13Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%226904241%22&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; :id = "https://doi.org/10.17882/42182"; :infoUrl = "http://www.argodatamgt.org/Documentation"; :institution = "Argo"; diff --git a/argopy/tests/test_data/d9ab8386c768a0fd57782fa57ff58852dec3ee418bb9f837ee29b995bbcc7cec.nc b/argopy/tests/test_data/d9ab8386c768a0fd57782fa57ff58852dec3ee418bb9f837ee29b995bbcc7cec.nc index 6008b5c7..36d32d07 100644 Binary files a/argopy/tests/test_data/d9ab8386c768a0fd57782fa57ff58852dec3ee418bb9f837ee29b995bbcc7cec.nc and b/argopy/tests/test_data/d9ab8386c768a0fd57782fa57ff58852dec3ee418bb9f837ee29b995bbcc7cec.nc differ diff --git a/argopy/tests/test_data/da34ffa6f17aa88619bc0fd332a359721de45eeb12bb30199ef82e3275e4bbf1.ncHeader b/argopy/tests/test_data/da34ffa6f17aa88619bc0fd332a359721de45eeb12bb30199ef82e3275e4bbf1.ncHeader index 722adafb..cef8294e 100644 --- a/argopy/tests/test_data/da34ffa6f17aa88619bc0fd332a359721de45eeb12bb30199ef82e3275e4bbf1.ncHeader +++ b/argopy/tests/test_data/da34ffa6f17aa88619bc0fd332a359721de45eeb12bb30199ef82e3275e4bbf1.ncHeader @@ -87,7 +87,7 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :long_name = "Quality on date and time"; char direction(row=1432, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -112,7 +112,7 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :long_name = "Float cycle number"; int config_mission_number(row=1432); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 9; // int :colorBarMaximum = 100.0; // double @@ -122,7 +122,7 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :long_name = "Unique number denoting the missions performed by the float"; float bbp700(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.001550337f, 0.01180728f; // float :C_format = "%.7f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :valid_min = NaNf; // float char bbp700_qc(row=1432, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.001550337f, 0.01180728f; // float :C_format = "%.7f"; @@ -152,13 +152,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :units = "m-1"; char bbp700_adjusted_qc(row=1432, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float bbp700_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.7f"; :FORTRAN_format = "F.7"; @@ -167,7 +167,7 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :units = "m-1"; float cdom(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.0f, 0.724f; // float :C_format = "%.3f"; @@ -181,13 +181,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :valid_min = NaNf; // float char cdom_qc(row=1432, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -196,13 +196,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :units = "ppb"; char cdom_adjusted_qc(row=1432, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float cdom_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -211,7 +211,7 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :units = "ppb"; float chla(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.2586286f, 13.45299f; // float :C_format = "%.4f"; @@ -226,15 +226,15 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :valid_min = NaNf; // float char chla_qc(row=1432, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float - :actual_range = 0.1293143f, 3.5186f; // float + :actual_range = 0.5566913f, 3.5186f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; :long_name = "Chlorophyll-A"; @@ -243,13 +243,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :units = "mg/m3"; char chla_adjusted_qc(row=1432, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float chla_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -280,7 +280,7 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :actual_range = 99999.0f, 99999.0f; // float float downwelling_par(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.5117059f, 1083.984f; // float :C_format = "%.3f"; @@ -295,13 +295,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :valid_min = NaNf; // float char downwelling_par_qc(row=1432, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.03640744f, 1083.439f; // float :C_format = "%.3f"; @@ -312,13 +312,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :units = "microMoleQuanta/m^2/sec"; char downwelling_par_adjusted_qc(row=1432, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float downwelling_par_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.03f, 54.17194f; // float :C_format = "%.3f"; @@ -328,7 +328,7 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :units = "microMoleQuanta/m^2/sec"; float down_irradiance380(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.667699E-4f, 0.4301661f; // float :C_format = "%.6f"; @@ -342,13 +342,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :valid_min = NaNf; // float char down_irradiance380_qc(row=1432, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.40309E-5f, 0.4299567f; // float :C_format = "%.6f"; @@ -358,13 +358,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :units = "W/m^2/nm"; char down_irradiance380_adjusted_qc(row=1432, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance380_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.008599133f; // float :C_format = "%.6f"; @@ -374,7 +374,7 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :units = "W/m^2/nm"; float down_irradiance412(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 7.233927E-5f, 0.7693607f; // float :C_format = "%.6f"; @@ -388,13 +388,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :valid_min = NaNf; // float char down_irradiance412_qc(row=1432, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.226209E-5f, 0.7692769f; // float :C_format = "%.6f"; @@ -404,13 +404,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :units = "W/m^2/nm"; char down_irradiance412_adjusted_qc(row=1432, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance412_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.01538554f; // float :C_format = "%.6f"; @@ -420,7 +420,7 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :units = "W/m^2/nm"; float down_irradiance490(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -8.08818E-5f, 0.9237587f; // float :C_format = "%.6f"; @@ -434,13 +434,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :valid_min = NaNf; // float char down_irradiance490_qc(row=1432, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.264853E-5f, 0.9237961f; // float :C_format = "%.6f"; @@ -450,13 +450,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :units = "W/m^2/nm"; char down_irradiance490_adjusted_qc(row=1432, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float down_irradiance490_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.5E-5f, 0.01847592f; // float :C_format = "%.6f"; @@ -466,7 +466,7 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :units = "W/m^2/nm"; float doxy(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 277.7341f, 344.6638f; // float :C_format = "%.3f"; @@ -481,13 +481,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :valid_min = -5.0f; // float char doxy_qc(row=1432, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 296.7589f, 354.268f; // float :C_format = "%.3f"; @@ -500,13 +500,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=1432, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 9.383679f, 17.84084f; // float :C_format = "%.3f"; @@ -516,101 +516,51 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :units = "micromole/kg"; float nitrate(row=1432); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 5.760849f, 9.83035f; // float - :C_format = "%.3f"; :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :FORTRAN_format = "F.3"; :long_name = "Nitrate"; - :resolution = 0.001f; // float :sdn_parameter_urn = "SDN:P01::MDMAP005"; - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; :units = "micromole/kg"; :valid_max = NaNf; // float :valid_min = NaNf; // float char nitrate_qc(row=1432, nitrate_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 3.272496f, 7.845202f; // float - :C_format = "%.3f"; - :FORTRAN_format = "F.3"; - :long_name = "Nitrate"; - :resolution = 0.001f; // float - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :units = "micromole/kg"; + :actual_range = 3.272496f, 99999.0f; // float char nitrate_adjusted_qc(row=1432, nitrate_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float nitrate_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 5.0f, 5.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 = "micromole/kg"; + :actual_range = 5.0f, 99999.0f; // float float ph_in_situ_total(row=1432); - :_ChunkSizes = 133, 1591; // int :_FillValue = 99999.0f; // float :actual_range = 8.093273f, 8.225677f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float char ph_in_situ_total_qc(row=1432, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float char ph_in_situ_total_adjusted_qc(row=1432, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; float ph_in_situ_total_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + :actual_range = 99999.0f, 99999.0f; // float float pres(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float @@ -627,13 +577,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :valid_min = 0.0f; // float char pres_qc(row=1432, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float :axis = "Z"; @@ -647,13 +597,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=1432, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.0f, 2.004125f; // float :C_format = "%.3f"; @@ -663,7 +613,7 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :units = "decibar"; float psal(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 27.411f, 34.764f; // float :C_format = "%.4f"; @@ -678,13 +628,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :valid_min = 2.0f; // float char psal_qc(row=1432, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.022f, 34.774f; // float :C_format = "%.4f"; @@ -697,13 +647,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=1432, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.004f, 0.005f; // float :C_format = "%.4f"; @@ -713,7 +663,7 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :units = "psu"; float temp(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.937f, 8.6839f; // float :C_format = "%.3f"; @@ -728,13 +678,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :valid_min = -2.5f; // float char temp_qc(row=1432, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.937f, 7.881f; // float :C_format = "%.3f"; @@ -747,13 +697,13 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=1432, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=1432); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -780,9 +730,9 @@ netcdf ArgoFloats-synthetic-BGC_c29a_4fa2_372c.nc { :geospatial_lon_max = -47.436168333333335; // double :geospatial_lon_min = -53.544945; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:10:49Z (local files) -2024-08-23T08:10:49Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:31:32Z (local files) +2024-09-20T11:31:32Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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"; diff --git a/argopy/tests/test_data/dc93a053d09e69fc65ff00c25eef60af3a8d83925c0882d25a0c69a1fb6710b1.nc b/argopy/tests/test_data/dc93a053d09e69fc65ff00c25eef60af3a8d83925c0882d25a0c69a1fb6710b1.nc index a2dc1d5d..1252449f 100644 Binary files a/argopy/tests/test_data/dc93a053d09e69fc65ff00c25eef60af3a8d83925c0882d25a0c69a1fb6710b1.nc and b/argopy/tests/test_data/dc93a053d09e69fc65ff00c25eef60af3a8d83925c0882d25a0c69a1fb6710b1.nc differ diff --git a/argopy/tests/test_data/dce5c0b88dda8a2d374c20dd50fc9a6c768a56731776c1d5c60dde49707b324b.html b/argopy/tests/test_data/dce5c0b88dda8a2d374c20dd50fc9a6c768a56731776c1d5c60dde49707b324b.html index b5322782..e6fee4e9 100644 --- a/argopy/tests/test_data/dce5c0b88dda8a2d374c20dd50fc9a6c768a56731776c1d5c60dde49707b324b.html +++ b/argopy/tests/test_data/dce5c0b88dda8a2d374c20dd50fc9a6c768a56731776c1d5c60dde49707b324b.html @@ -11,4 +11,4 @@
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/df3e127655dd8f213f57386625eccc9a229975d7adb3775c28508b94e7464274.nc b/argopy/tests/test_data/df3e127655dd8f213f57386625eccc9a229975d7adb3775c28508b94e7464274.nc index 20d16b6b..105fbce4 100644 Binary files a/argopy/tests/test_data/df3e127655dd8f213f57386625eccc9a229975d7adb3775c28508b94e7464274.nc and b/argopy/tests/test_data/df3e127655dd8f213f57386625eccc9a229975d7adb3775c28508b94e7464274.nc differ diff --git a/argopy/tests/test_data/dfc6582dc67e6003d8add1b74bce6b8da7104315dffa4cecfc384aa5cd9b661a.json b/argopy/tests/test_data/dfc6582dc67e6003d8add1b74bce6b8da7104315dffa4cecfc384aa5cd9b661a.json index 9cafa724..0f6e3805 100644 --- a/argopy/tests/test_data/dfc6582dc67e6003d8add1b74bce6b8da7104315dffa4cecfc384aa5cd9b661a.json +++ b/argopy/tests/test_data/dfc6582dc67e6003d8add1b74bce6b8da7104315dffa4cecfc384aa5cd9b661a.json @@ -1 +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":"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":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":"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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 +{"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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/e2d3f37e53b7486e7e5eed35d3992e03572ddabd25077f108a5f0574787b43c0.json b/argopy/tests/test_data/e2d3f37e53b7486e7e5eed35d3992e03572ddabd25077f108a5f0574787b43c0.json index 90c4ae05..8553ea2e 100644 --- a/argopy/tests/test_data/e2d3f37e53b7486e7e5eed35d3992e03572ddabd25077f108a5f0574787b43c0.json +++ b/argopy/tests/test_data/e2d3f37e53b7486e7e5eed35d3992e03572ddabd25077f108a5f0574787b43c0.json @@ -1 +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":"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":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":"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902630"}],"total":3090} \ No newline at end of file +{"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"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 index 0613bfe2..d5822af7 100644 --- a/argopy/tests/test_data/e46a16b17affadcd7fbaee0e7028f1030d5ff90a81694c833da7adaa428c400e.json +++ b/argopy/tests/test_data/e46a16b17affadcd7fbaee0e7028f1030d5ff90a81694c833da7adaa428c400e.json @@ -1 +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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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-02-29T00: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-02-29T00: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":"GO-BGC, 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":"2903863"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, 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":"2903865"},{"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-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":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-15T00:00:00","lat":42.03,"lon":-52.23,"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":"2903881"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-15T00:00:00","lat":42.17,"lon":-52.17,"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":"4903763"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-15T00:00:00","lat":42.3,"lon":-52.1,"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":"1902663"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-15T00:00:00","lat":45.86,"lon":-44.11,"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":"5907071"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-15T00:00:00","lat":45.64,"lon":-44.47,"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":"5907072"},{"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":"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":"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":"6990628"},{"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":"2903906"},{"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":"7902200"},{"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-05-29T14: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":"3902593"},{"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":"1902699"},{"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-15T00:00:00","lat":46.09,"lon":-43.74,"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":"3902608"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-15T00:00:00","lat":49.33,"lon":-43.33,"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":"2903929"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-15T00:00:00","lat":49.67,"lon":-43.74,"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":"6990660"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-15T00:00:00","lat":50.0,"lon":-45.0,"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":"2903930"},{"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-15T00:00:00","lat":41.91,"lon":-52.29,"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":"5907126"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-16T09:36:56","lat":50.0,"lon":-45.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":"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-01T00:00:00","lat":62.0,"lon":-22.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":"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-25T18:40:05","lat":36.412026,"lon":-7.55935,"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":"1902720"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-08-25T18:40:05","lat":36.412026,"lon":-7.55935,"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":"6990667"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-09-03T18:46:03","lat":42.441354,"lon":-10.213297,"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":"1902721"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-09-03T18:46:03","lat":42.441354,"lon":-10.213297,"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":"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_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, UW"},"ptfDepl":{"deplDate":"2024-06-20T00:00:00","lat":59.0,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"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-1263502971"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2024-08-01T00:00:00","lat":25.43,"lon":-29.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"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-1243888316"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2024-08-01T00:00:00","lat":24.084,"lon":-33.5,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"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-898335451"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2024-08-01T00:00:00","lat":22.574,"lon":-38.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"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":"TMP1264279850"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2024-07-03T00:00:00","lat":57.878,"lon":-20.497,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"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":"TMP1831198340"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2024-07-03T00:00:00","lat":57.878,"lon":-24.488,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"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-976121975"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2024-07-03T00:00:00","lat":60.0,"lon":-21.7,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"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-1557028005"},{"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":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":"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":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":"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":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":"4903566"},{"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-04T00:00:00","lat":61.5,"lon":-28.0,"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":"1902111"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-09-05T00:00:00","lat":60.8,"lon":-29.8,"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":"1902112"},{"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":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":"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":"POLAND"},"nameShort":"Argo_POLAND"},"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":"7901035"},{"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"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":702} \ No newline at end of file +{"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-02-29T00: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-02-29T00: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-05-29T14: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/e60de23c325823b63bad40d6bd763fd3f3c7408a08962f76b08f49bdba816448.nc b/argopy/tests/test_data/e60de23c325823b63bad40d6bd763fd3f3c7408a08962f76b08f49bdba816448.nc index 1a267e83..a7386d07 100644 Binary files a/argopy/tests/test_data/e60de23c325823b63bad40d6bd763fd3f3c7408a08962f76b08f49bdba816448.nc and b/argopy/tests/test_data/e60de23c325823b63bad40d6bd763fd3f3c7408a08962f76b08f49bdba816448.nc differ diff --git a/argopy/tests/test_data/e83460d15264af94aa1ad3062f0aa7c30223a12f019dfb7d2c27f3ba9f649fa6.nc b/argopy/tests/test_data/e83460d15264af94aa1ad3062f0aa7c30223a12f019dfb7d2c27f3ba9f649fa6.nc index 8b7035b3..d30a6704 100644 Binary files a/argopy/tests/test_data/e83460d15264af94aa1ad3062f0aa7c30223a12f019dfb7d2c27f3ba9f649fa6.nc and b/argopy/tests/test_data/e83460d15264af94aa1ad3062f0aa7c30223a12f019dfb7d2c27f3ba9f649fa6.nc differ diff --git a/argopy/tests/test_data/ed00be3959267531a7164d414e1ae10e89c97ed43c1efc7bd8a8d7ded521b7f1.nc b/argopy/tests/test_data/ed00be3959267531a7164d414e1ae10e89c97ed43c1efc7bd8a8d7ded521b7f1.nc index ed53ab27..46829b97 100644 Binary files a/argopy/tests/test_data/ed00be3959267531a7164d414e1ae10e89c97ed43c1efc7bd8a8d7ded521b7f1.nc and b/argopy/tests/test_data/ed00be3959267531a7164d414e1ae10e89c97ed43c1efc7bd8a8d7ded521b7f1.nc differ diff --git a/argopy/tests/test_data/edb8e556cfb3c77526a59535bf58fb277422c4cadc0f967bd6dc7bc796fbbfe5.nc b/argopy/tests/test_data/edb8e556cfb3c77526a59535bf58fb277422c4cadc0f967bd6dc7bc796fbbfe5.nc index 3e247797..0456e7b4 100644 Binary files a/argopy/tests/test_data/edb8e556cfb3c77526a59535bf58fb277422c4cadc0f967bd6dc7bc796fbbfe5.nc and b/argopy/tests/test_data/edb8e556cfb3c77526a59535bf58fb277422c4cadc0f967bd6dc7bc796fbbfe5.nc differ diff --git a/argopy/tests/test_data/f195becc1569ed69a6961f6264e34ddf3f66186c3b67e3075447856d7dab84be.nc b/argopy/tests/test_data/f195becc1569ed69a6961f6264e34ddf3f66186c3b67e3075447856d7dab84be.nc index ad371ae5..ced05631 100644 Binary files a/argopy/tests/test_data/f195becc1569ed69a6961f6264e34ddf3f66186c3b67e3075447856d7dab84be.nc and b/argopy/tests/test_data/f195becc1569ed69a6961f6264e34ddf3f66186c3b67e3075447856d7dab84be.nc differ diff --git a/argopy/tests/test_data/f912c39019f215a08583c457d9e71d5fb594429e38c31abec934454d397d5f8e.json b/argopy/tests/test_data/f912c39019f215a08583c457d9e71d5fb594429e38c31abec934454d397d5f8e.json index 59a1ab1e..28a55dfe 100644 --- a/argopy/tests/test_data/f912c39019f215a08583c457d9e71d5fb594429e38c31abec934454d397d5f8e.json +++ b/argopy/tests/test_data/f912c39019f215a08583c457d9e71d5fb594429e38c31abec934454d397d5f8e.json @@ -57,13 +57,13 @@ ["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.724238528E9"], + ["attribute", "date_creation", "actual_range", "double", "1.076437173E9, 1.726761784E9"], ["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.724327568E9"], + ["attribute", "date_update", "actual_range", "double", "1.523152396E9, 1.726818478E9"], ["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"], diff --git a/argopy/tests/test_data/f99dcbdb28e5fda186604deafaf0a7f2857c9d4a15a4fa583660f3b770caf604.json b/argopy/tests/test_data/f99dcbdb28e5fda186604deafaf0a7f2857c9d4a15a4fa583660f3b770caf604.json index 90d6915e..99d33bc2 100644 --- a/argopy/tests/test_data/f99dcbdb28e5fda186604deafaf0a7f2857c9d4a15a4fa583660f3b770caf604.json +++ b/argopy/tests/test_data/f99dcbdb28e5fda186604deafaf0a7f2857c9d4a15a4fa583660f3b770caf604.json @@ -1 +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":"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":"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":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902630"}],"total":136} \ No newline at end of file +{"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/fafcd91bb35dadc3241335d4101efc406c12c6d021e2f9297e1c9419855d8de7.ncHeader b/argopy/tests/test_data/fafcd91bb35dadc3241335d4101efc406c12c6d021e2f9297e1c9419855d8de7.ncHeader index 946a56de..71c4ba09 100644 --- a/argopy/tests/test_data/fafcd91bb35dadc3241335d4101efc406c12c6d021e2f9297e1c9419855d8de7.ncHeader +++ b/argopy/tests/test_data/fafcd91bb35dadc3241335d4101efc406c12c6d021e2f9297e1c9419855d8de7.ncHeader @@ -1,6 +1,6 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { dimensions: - row = 121713; + row = 124600; direction_strlen = 1; platform_number_strlen = 7; bbp700_qc_strlen = 1; @@ -32,7 +32,7 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { temp_qc_strlen = 1; temp_adjusted_qc_strlen = 1; variables: - double latitude(row=121713); + double latitude(row=124600); :_CoordinateAxisType = "Lat"; :_FillValue = 99999.0; // double :actual_range = 57.097543166666675, 62.656471833333335; // double @@ -46,7 +46,7 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = 90.0; // double :valid_min = -90.0; // double - double longitude(row=121713); + double longitude(row=124600); :_CoordinateAxisType = "Lon"; :_FillValue = 99999.0; // double :actual_range = -51.75795016666666, -30.635311333333334; // double @@ -60,16 +60,16 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = 180.0; // double :valid_min = -180.0; // double - char position_qc(row=121713); + char position_qc(row=124600); :actual_range = "11"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double :conventions = "Argo reference table 2"; :long_name = "Quality on position (latitude and longitude)"; - double time(row=121713); + double time(row=124600); :_CoordinateAxisType = "Time"; - :actual_range = 1.653144082985E9, 1.724335911038E9; // double + :actual_range = 1.653144082985E9, 1.726063791038E9; // double :axis = "T"; :conventions = "Relative julian days with decimal part (as parts of day)"; :ioos_category = "Time"; @@ -79,15 +79,15 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :time_origin = "01-JAN-1970 00:00:00"; :units = "seconds since 1970-01-01T00:00:00Z"; - char time_qc(row=121713); + char time_qc(row=124600); :actual_range = "11"; :colorBarMaximum = 150.0; // double :colorBarMinimum = 0.0; // double :conventions = "Argo reference table 2"; :long_name = "Quality on date and time"; - char direction(row=121713, direction_strlen=1); - :_ChunkSizes = 133; // int + char direction(row=124600, direction_strlen=1); + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -95,24 +95,24 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :ioos_category = "Currents"; :long_name = "Direction of the station profiles"; - char platform_number(row=121713, platform_number_strlen=7); + char platform_number(row=124600, 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"; - int cycle_number(row=121713); + int cycle_number(row=124600); :_FillValue = 99999; // int - :actual_range = 1, 85; // int + :actual_range = 1, 87; // 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"; - int config_mission_number(row=121713); - :_ChunkSizes = 133; // int + int config_mission_number(row=124600); + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 16; // int :colorBarMaximum = 100.0; // double @@ -121,8 +121,8 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :ioos_category = "Statistics"; :long_name = "Unique number denoting the missions performed by the float"; - float bbp700(row=121713); - :_ChunkSizes = 133, 1591; // int + float bbp700(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.088954E-4f, 0.04767596f; // float :C_format = "%.7f"; @@ -135,14 +135,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char bbp700_qc(row=121713, bbp700_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char bbp700_qc(row=124600, bbp700_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float bbp700_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int + float bbp700_adjusted(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 1.088954E-4f, 0.04767596f; // float :C_format = "%.7f"; @@ -151,14 +151,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :resolution = 1.0E-7f; // float :units = "m-1"; - char bbp700_adjusted_qc(row=121713, bbp700_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char bbp700_adjusted_qc(row=124600, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float bbp700_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // int + float bbp700_adjusted_error(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.7f"; :FORTRAN_format = "F.7"; @@ -166,8 +166,8 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :resolution = 1.0E-7f; // float :units = "m-1"; - float cdom(row=121713); - :_ChunkSizes = 133, 1591; // int + float cdom(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.4982f, 3.510933f; // float :C_format = "%.3f"; @@ -180,14 +180,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char cdom_qc(row=121713, cdom_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char cdom_qc(row=124600, cdom_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float cdom_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int + float cdom_adjusted(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -195,14 +195,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :resolution = 0.001f; // float :units = "ppb"; - char cdom_adjusted_qc(row=121713, cdom_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char cdom_adjusted_qc(row=124600, cdom_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float cdom_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // int + float cdom_adjusted_error(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -210,8 +210,8 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :resolution = 0.001f; // float :units = "ppb"; - float chla(row=121713); - :_ChunkSizes = 133, 1591; // int + float chla(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.292f, 9.398142f; // float :C_format = "%.4f"; @@ -225,14 +225,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char chla_qc(row=121713, chla_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char chla_qc(row=124600, chla_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float chla_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int + float chla_adjusted(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -0.01644325f, 4.691771f; // float :C_format = "%.4f"; @@ -242,14 +242,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; :units = "mg/m3"; - char chla_adjusted_qc(row=121713, chla_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char chla_adjusted_qc(row=124600, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float chla_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // int + float chla_adjusted_error(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -257,7 +257,7 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :resolution = 0.025f; // float :units = "mg/m3"; - float cp660(row=121713); + float cp660(row=124600); :_FillValue = 99999.0f; // float :actual_range = -0.04620937f, 1.328981f; // float :cf_standard_name = "-"; @@ -267,20 +267,20 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char cp660_qc(row=121713, cp660_qc_strlen=1); + char cp660_qc(row=124600, cp660_qc_strlen=1); :_Encoding = "ISO-8859-1"; - float cp660_adjusted(row=121713); + float cp660_adjusted(row=124600); :actual_range = 99999.0f, 99999.0f; // float - char cp660_adjusted_qc(row=121713, cp660_adjusted_qc_strlen=1); + char cp660_adjusted_qc(row=124600, cp660_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; - float cp660_adjusted_error(row=121713); + float cp660_adjusted_error(row=124600); :actual_range = 99999.0f, 99999.0f; // float - float downwelling_par(row=121713); - :_ChunkSizes = 133, 1591; // int + float downwelling_par(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.1310812f, 2315.559f; // float :C_format = "%.3f"; @@ -294,14 +294,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char downwelling_par_qc(row=121713, downwelling_par_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char downwelling_par_qc(row=124600, downwelling_par_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float downwelling_par_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int + float downwelling_par_adjusted(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -310,14 +310,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; :units = "microMoleQuanta/m^2/sec"; - char downwelling_par_adjusted_qc(row=121713, downwelling_par_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char downwelling_par_adjusted_qc(row=124600, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float downwelling_par_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // int + float downwelling_par_adjusted_error(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -325,8 +325,8 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :resolution = 0.001f; // float :units = "microMoleQuanta/m^2/sec"; - float down_irradiance380(row=121713); - :_ChunkSizes = 133, 1591; // int + float down_irradiance380(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -1.547487E-4f, 0.8009f; // float :C_format = "%.6f"; @@ -339,14 +339,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char down_irradiance380_qc(row=121713, down_irradiance380_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance380_qc(row=124600, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance380_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int + float down_irradiance380_adjusted(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -354,14 +354,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - char down_irradiance380_adjusted_qc(row=121713, down_irradiance380_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance380_adjusted_qc(row=124600, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance380_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // int + float down_irradiance380_adjusted_error(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -369,8 +369,8 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - float down_irradiance412(row=121713); - :_ChunkSizes = 133, 1591; // int + float down_irradiance412(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 4.483982E-4f, 1.195713f; // float :C_format = "%.6f"; @@ -383,14 +383,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char down_irradiance412_qc(row=121713, down_irradiance412_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance412_qc(row=124600, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance412_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int + float down_irradiance412_adjusted(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -398,14 +398,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - char down_irradiance412_adjusted_qc(row=121713, down_irradiance412_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance412_adjusted_qc(row=124600, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance412_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // int + float down_irradiance412_adjusted_error(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -413,8 +413,8 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - float down_irradiance490(row=121713); - :_ChunkSizes = 133, 1591; // int + float down_irradiance490(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.47471E-4f, 1.752278f; // float :C_format = "%.6f"; @@ -427,14 +427,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = NaNf; // float :valid_min = NaNf; // float - char down_irradiance490_qc(row=121713, down_irradiance490_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance490_qc(row=124600, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance490_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int + float down_irradiance490_adjusted(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -442,14 +442,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - char down_irradiance490_adjusted_qc(row=121713, down_irradiance490_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char down_irradiance490_adjusted_qc(row=124600, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float down_irradiance490_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // int + float down_irradiance490_adjusted_error(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.6f"; :FORTRAN_format = "F.6"; @@ -457,8 +457,8 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :resolution = 1.0E-6f; // float :units = "W/m^2/nm"; - float doxy(row=121713); - :_ChunkSizes = 133, 1591; // int + float doxy(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 217.6861f, 341.608f; // float :C_format = "%.3f"; @@ -472,14 +472,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = 600.0f; // float :valid_min = -5.0f; // float - char doxy_qc(row=121713, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char doxy_qc(row=124600, doxy_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float doxy_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int + float doxy_adjusted(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 231.0956f, 362.6511f; // float :C_format = "%.3f"; @@ -491,118 +491,68 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = 600.0f; // float :valid_min = -5.0f; // float - char doxy_adjusted_qc(row=121713, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char doxy_adjusted_qc(row=124600, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float doxy_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // int + float doxy_adjusted_error(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float - :actual_range = 12.56249f, 17.35151f; // 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"; - float nitrate(row=121713); - :_ChunkSizes = 133, 1591; // int + float nitrate(row=124600); :_FillValue = 99999.0f; // float :actual_range = 2.132518f, 20.6984f; // float - :C_format = "%.3f"; :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :FORTRAN_format = "F.3"; :long_name = "Nitrate"; - :resolution = 0.001f; // float :sdn_parameter_urn = "SDN:P01::MDMAP005"; - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; :units = "micromole/kg"; :valid_max = NaNf; // float :valid_min = NaNf; // float - char nitrate_qc(row=121713, nitrate_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char nitrate_qc(row=124600, nitrate_qc_strlen=1); :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; - float nitrate_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = -0.05777724f, 18.5081f; // float - :C_format = "%.3f"; - :FORTRAN_format = "F.3"; - :long_name = "Nitrate"; - :resolution = 0.001f; // float - :standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; - :units = "micromole/kg"; + float nitrate_adjusted(row=124600); + :actual_range = -0.05777724f, 99999.0f; // float - char nitrate_adjusted_qc(row=121713, nitrate_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char nitrate_adjusted_qc(row=124600, nitrate_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; - float nitrate_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :actual_range = 5.0f, 5.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 = "micromole/kg"; + float nitrate_adjusted_error(row=124600); + :actual_range = 5.0f, 99999.0f; // float - float ph_in_situ_total(row=121713); - :_ChunkSizes = 133, 1591; // int + float ph_in_situ_total(row=124600); :_FillValue = 99999.0f; // float :actual_range = 5.56744f, 8.088566f; // float - :C_format = "%.4f"; :cf_standard_name = "sea_water_ph_reported_on_total_scale"; - :FORTRAN_format = "F.4"; :long_name = "pH"; - :resolution = 1.0E-4f; // float :sdn_parameter_urn = "SDN:P01::PHMASSXX"; - :standard_name = "sea_water_ph_reported_on_total_scale"; :units = "dimensionless"; :valid_max = NaNf; // float :valid_min = NaNf; // float - char ph_in_situ_total_qc(row=121713, ph_in_situ_total_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char ph_in_situ_total_qc(row=124600, ph_in_situ_total_qc_strlen=1); :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; - float ph_in_situ_total_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int - :_FillValue = 99999.0f; // float - :C_format = "%.4f"; - :FORTRAN_format = "F.4"; - :long_name = "pH"; - :resolution = 1.0E-4f; // float - :standard_name = "sea_water_ph_reported_on_total_scale"; - :units = "dimensionless"; + float ph_in_situ_total_adjusted(row=124600); + :actual_range = 99999.0f, 99999.0f; // float - char ph_in_situ_total_adjusted_qc(row=121713, ph_in_situ_total_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char ph_in_situ_total_adjusted_qc(row=124600, ph_in_situ_total_adjusted_qc_strlen=1); :_Encoding = "ISO-8859-1"; - :conventions = "Argo reference table 2"; - :long_name = "quality flag"; - float ph_in_situ_total_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // 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 = "dimensionless"; + float ph_in_situ_total_adjusted_error(row=124600); + :actual_range = 99999.0f, 99999.0f; // float - float pres(row=121713); - :_ChunkSizes = 133, 1591; // int + float pres(row=124600); + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = -0.29f, 2011.203f; // float @@ -618,14 +568,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = 12000.0f; // float :valid_min = 0.0f; // float - char pres_qc(row=121713, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char pres_qc(row=124600, pres_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float pres_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int + float pres_adjusted(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -4.181f, 2006.433f; // float :axis = "Z"; @@ -638,14 +588,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = 12000.0f; // float :valid_min = 0.0f; // float - char pres_adjusted_qc(row=121713, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char pres_adjusted_qc(row=124600, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float pres_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // int + float pres_adjusted_error(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -653,8 +603,8 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :resolution = 0.001f; // float :units = "decibar"; - float psal(row=121713); - :_ChunkSizes = 133, 1591; // int + float psal(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.488f, 35.137f; // float :C_format = "%.4f"; @@ -668,14 +618,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = 41.0f; // float :valid_min = 2.0f; // float - char psal_qc(row=121713, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char psal_qc(row=124600, psal_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float psal_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int + float psal_adjusted(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.13953f, 35.1359f; // float :C_format = "%.4f"; @@ -687,14 +637,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = 41.0f; // float :valid_min = 2.0f; // float - char psal_adjusted_qc(row=121713, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char psal_adjusted_qc(row=124600, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float psal_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // int + float psal_adjusted_error(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.4f"; :FORTRAN_format = "F.4"; @@ -702,8 +652,8 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :resolution = 1.0E-4f; // float :units = "psu"; - float temp(row=121713); - :_ChunkSizes = 133, 1591; // int + float temp(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.124f, 11.983f; // float :C_format = "%.3f"; @@ -717,14 +667,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = 40.0f; // float :valid_min = -2.5f; // float - char temp_qc(row=121713, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char temp_qc(row=124600, temp_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float temp_adjusted(row=121713); - :_ChunkSizes = 133, 1591; // int + float temp_adjusted(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.12f, 11.983f; // float :C_format = "%.3f"; @@ -736,14 +686,14 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :valid_max = 40.0f; // float :valid_min = -2.5f; // float - char temp_adjusted_qc(row=121713, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + char temp_adjusted_qc(row=124600, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; - float temp_adjusted_error(row=121713); - :_ChunkSizes = 133, 1591; // int + float temp_adjusted_error(row=124600); + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :C_format = "%.3f"; :FORTRAN_format = "F.3"; @@ -769,9 +719,9 @@ netcdf ArgoFloats-synthetic-BGC_0a7e_794f_06c0.nc { :geospatial_lon_max = -30.635311333333334; // double :geospatial_lon_min = -51.75795016666666; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:04:36Z (local files) -2024-08-23T08:04:36Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~%226904240%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:26:35Z (local files) +2024-09-20T11:26:35Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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"; @@ -794,7 +744,7 @@ completeness, or usefulness, of this information."; :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-08-22T14:11:51Z"; + :time_coverage_end = "2024-09-11T14:09:51Z"; :time_coverage_start = "2022-05-21T14:41:22Z"; :title = "Argo float synthetic vertical profiles : BGC data"; :user_manual_version = "1.0"; diff --git a/argopy/tests/test_data/fc4cf5bfaaac049dc32495c3562f5554a47bae7d181080685d116f099902dead.ncHeader b/argopy/tests/test_data/fc4cf5bfaaac049dc32495c3562f5554a47bae7d181080685d116f099902dead.ncHeader index 8907b3f4..f2e99702 100644 --- a/argopy/tests/test_data/fc4cf5bfaaac049dc32495c3562f5554a47bae7d181080685d116f099902dead.ncHeader +++ b/argopy/tests/test_data/fc4cf5bfaaac049dc32495c3562f5554a47bae7d181080685d116f099902dead.ncHeader @@ -67,7 +67,7 @@ netcdf ArgoFloats-synthetic-BGC_9dc4_7c68_7d58.nc { :long_name = "Quality on date and time"; char direction(row=897, direction_strlen=1); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_Encoding = "ISO-8859-1"; :colorBarMaximum = 360.0; // double :colorBarMinimum = 0.0; // double @@ -92,7 +92,7 @@ netcdf ArgoFloats-synthetic-BGC_9dc4_7c68_7d58.nc { :long_name = "Float cycle number"; int config_mission_number(row=897); - :_ChunkSizes = 133; // int + :_ChunkSizes = 42; // int :_FillValue = 99999; // int :actual_range = 1, 11; // int :colorBarMaximum = 100.0; // double @@ -102,7 +102,7 @@ netcdf ArgoFloats-synthetic-BGC_9dc4_7c68_7d58.nc { :long_name = "Unique number denoting the missions performed by the float"; float doxy(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 263.075f, 329.7932f; // float :C_format = "%.3f"; @@ -117,13 +117,13 @@ netcdf ArgoFloats-synthetic-BGC_9dc4_7c68_7d58.nc { :valid_min = -5.0f; // float char doxy_qc(row=897, doxy_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 285.4363f, 315.0098f; // float :C_format = "%.3f"; @@ -136,13 +136,13 @@ netcdf ArgoFloats-synthetic-BGC_9dc4_7c68_7d58.nc { :valid_min = -5.0f; // float char doxy_adjusted_qc(row=897, doxy_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float doxy_adjusted_error(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 9.118873f, 18.80818f; // float :C_format = "%.3f"; @@ -152,7 +152,7 @@ netcdf ArgoFloats-synthetic-BGC_9dc4_7c68_7d58.nc { :units = "micromole/kg"; float pres(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_CoordinateAxisType = "Height"; :_FillValue = 99999.0f; // float :actual_range = 0.0f, 10.0f; // float @@ -169,13 +169,13 @@ netcdf ArgoFloats-synthetic-BGC_9dc4_7c68_7d58.nc { :valid_min = 0.0f; // float char pres_qc(row=897, pres_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = -2.649095E-7f, 10.0f; // float :axis = "Z"; @@ -189,13 +189,13 @@ netcdf ArgoFloats-synthetic-BGC_9dc4_7c68_7d58.nc { :valid_min = 0.0f; // float char pres_adjusted_qc(row=897, pres_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float pres_adjusted_error(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 2.000125f, 2.4f; // float :C_format = "%.3f"; @@ -205,7 +205,7 @@ netcdf ArgoFloats-synthetic-BGC_9dc4_7c68_7d58.nc { :units = "decibar"; float temp(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.884f, 8.283f; // float :C_format = "%.3f"; @@ -220,13 +220,13 @@ netcdf ArgoFloats-synthetic-BGC_9dc4_7c68_7d58.nc { :valid_min = -2.5f; // float char temp_qc(row=897, temp_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 3.334f, 8.283f; // float :C_format = "%.3f"; @@ -239,13 +239,13 @@ netcdf ArgoFloats-synthetic-BGC_9dc4_7c68_7d58.nc { :valid_min = -2.5f; // float char temp_adjusted_qc(row=897, temp_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float temp_adjusted_error(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.002f, 0.002f; // float :C_format = "%.3f"; @@ -255,7 +255,7 @@ netcdf ArgoFloats-synthetic-BGC_9dc4_7c68_7d58.nc { :units = "degree_Celsius"; float psal(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 33.033f, 34.673f; // float :C_format = "%.4f"; @@ -270,13 +270,13 @@ netcdf ArgoFloats-synthetic-BGC_9dc4_7c68_7d58.nc { :valid_min = 2.0f; // float char psal_qc(row=897, psal_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 34.404f, 34.67301f; // float :C_format = "%.4f"; @@ -289,13 +289,13 @@ netcdf ArgoFloats-synthetic-BGC_9dc4_7c68_7d58.nc { :valid_min = 2.0f; // float char psal_adjusted_qc(row=897, psal_adjusted_qc_strlen=1); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_Encoding = "ISO-8859-1"; :conventions = "Argo reference table 2"; :long_name = "quality flag"; float psal_adjusted_error(row=897); - :_ChunkSizes = 133, 1591; // int + :_ChunkSizes = 42, 751; // int :_FillValue = 99999.0f; // float :actual_range = 0.004f, 0.01f; // float :C_format = "%.4f"; @@ -322,9 +322,9 @@ netcdf ArgoFloats-synthetic-BGC_9dc4_7c68_7d58.nc { :geospatial_lon_max = -47.331808333333335; // double :geospatial_lon_min = -53.918479919433594; // double :geospatial_lon_units = "degrees_east"; - :history = "2024-08-20T11:53:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) -2024-08-23T08:12:35Z (local files) -2024-08-23T08:12:35Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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)"; + :history = "2024-09-17T15:18:19Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-20T11:33:12Z (local files) +2024-09-20T11:33:12Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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"; diff --git a/argopy/tests/test_data/fe96eefa07a581dfe52bc7f32ed4dcf9e1dd54dcf7d9702f54285e623395d5dd.nc b/argopy/tests/test_data/fe96eefa07a581dfe52bc7f32ed4dcf9e1dd54dcf7d9702f54285e623395d5dd.nc index 6bc83dad..b9277fe4 100644 Binary files a/argopy/tests/test_data/fe96eefa07a581dfe52bc7f32ed4dcf9e1dd54dcf7d9702f54285e623395d5dd.nc and b/argopy/tests/test_data/fe96eefa07a581dfe52bc7f32ed4dcf9e1dd54dcf7d9702f54285e623395d5dd.nc differ diff --git a/argopy/tests/test_data/ff86679c33b92e1e89b4ba5db9006def8d8e89e4c25f9616ecb1e7a2229b1aa8.html b/argopy/tests/test_data/ff86679c33b92e1e89b4ba5db9006def8d8e89e4c25f9616ecb1e7a2229b1aa8.html index 26662931..d86db47b 100644 --- a/argopy/tests/test_data/ff86679c33b92e1e89b4ba5db9006def8d8e89e4c25f9616ecb1e7a2229b1aa8.html +++ b/argopy/tests/test_data/ff86679c33b92e1e89b4ba5db9006def8d8e89e4c25f9616ecb1e7a2229b1aa8.html @@ -13,4 +13,4 @@
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 index cf4318f9..a2a8ce0a 100644 --- a/argopy/tests/test_data/httpmocked_uri_index.json +++ b/argopy/tests/test_data/httpmocked_uri_index.json @@ -1,1780 +1,1773 @@ [ - { - "uri": "https://argovis-api.colorado.edu/argo?platform=1901393&data=pressure,temperature,salinity", - "ext": "js", - "sha": "990959c7c9e8d7c4d2530fd09d6bca6fa67c225e677686373fd6d1a2b3229229", - "type": "application/json", - "ts": "2024-08-30 14:14:57" - }, - { - "uri": "https://argovis-api.colorado.edu/argo?platform=6902746&data=pressure,temperature,salinity", - "ext": "js", - "sha": "1ac285919474b8e5588c10417786fd71f6465604d7003b5c622d8213d9a7ad29", - "type": "application/json", - "ts": "2024-08-30 14:14:57" - }, - { - "uri": "https://argovis-api.colorado.edu/argo?id=6902746_034&data=pressure,temperature,salinity", - "ext": "js", - "sha": "cae04f55309cb1fdcef6cfd3a245b0fc23236b93a0dd87ffa51b57d0d195ae2e", - "type": "application/json", - "ts": "2024-08-30 14:14:57" - }, - { - "uri": "https://argovis-api.colorado.edu/argo?id=6902746_001&data=pressure,temperature,salinity", - "ext": "js", - "sha": "4c7f0662242944ffadc6c04a87e9c8312b8070794da337421fb3c5e98ee74067", - "type": "application/json", - "ts": "2024-08-30 14:14:57" - }, - { - "uri": "https://argovis-api.colorado.edu/argo?id=6902746_012&data=pressure,temperature,salinity", - "ext": "js", - "sha": "d0f2403e46211a2969858266b1c1ecd594ed0d8771f313a0a21e56be6da17d6a", - "type": "application/json", - "ts": "2024-08-30 14:14:57" - }, - { - "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-08-30 14:14:57" - }, - { - "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-08-30 14:14:57" - }, - { - "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-08-30 14:14:57" - }, - { - "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-08-30 14:14:57" - }, - { - "uri": "https://argovis-api.colorado.edu/argo?platform=1900468&data=pressure,temperature,salinity", - "ext": "js", - "sha": "eb40b40373f9e49d50e1a9de3d2f53bf71444fd1f0ef9adb41270c05491a96d2", - "type": "application/json", - "ts": "2024-08-30 14:14:57" - }, - { - "uri": "https://argovis-api.colorado.edu/argo?platform=1900117&data=pressure,temperature,salinity", - "ext": "js", - "sha": "328cecb3db6cbdae1a48f3598045c4709bd1cc2b71b778310336928e6f411ccd", - "type": "application/json", - "ts": "2024-08-30 14:14:57" - }, - { - "uri": "https://argovis-api.colorado.edu/argo?platform=1900386&data=pressure,temperature,salinity", - "ext": "js", - "sha": "d4d195e9e6adf1d81a188a454638606d515fb17540993ff403b805abbfecf9a2", - "type": "application/json", - "ts": "2024-08-30 14:14:57" - }, - { - "uri": "https://argovis-api.colorado.edu/ping", - "ext": "json", - "sha": "f0082673deeae58d99e57f1fd92f505fc966466aff4d22c6046d57ead6a52bfa", - "type": "application/json", - "ts": "2024-08-30 14:14:57" - }, - { - "uri": "https://dataselection.euro-argo.eu/api/trajectory/2901623", - "ext": "json", - "sha": "d410e6e4cd9b1997eeca96d6c9d63101af097403e0b2d3ed363bc9779af7bf58", - "type": "application/json", - "ts": "2024-09-02 06:34:44" - }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "b3ac5fc7ba0df1ecd8f5ceb4c9499176c4f051f38a3262c8e3dc11d81a00396b", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" - }, - { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", - "ext": "nc", - "sha": "9fb1ff9a49bf0e4ad2644b1b4762ee25331072612b782e47b0c24352b8141bbe", - "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "13e4baafd53a08bad82395f9f8fe3f16ad8d8a4fed87e3f694da780f5dfd4006", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:32" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "031fe8ac8e497b428558e7780b976d5edfed829e4eab5ecf7377ec8c21b5f8c8", "type": "text/plain", - "ts": "2024-08-23 08:04:32" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "9713039c61a938d82deecc4b23c67728d7a7ddcb8d347fa53b6e37acc26ca2c2", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:32" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "fafcd91bb35dadc3241335d4101efc406c12c6d021e2f9297e1c9419855d8de7", "type": "text/plain", - "ts": "2024-08-23 08:04:32" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "6edb3a5d508d42f3ef9b87350f8fa6d837d08b74931d812e73f161e417bbf158", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:32" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "d476bead34e01db22875f061d669478cedbd49da0321133762fb1b6c6de71d6a", "type": "text/plain", - "ts": "2024-08-23 08:04:32" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"34\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "46e42f93a3bf7484f3f870b84b71a446abceac03d357ee79c1b610e469d2432b", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"34\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "2ea500dbb9b752fd02afb0d600c6c412d52699689c59a985b2a303fa6cbfef3b", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "761a3636cc1eb70a1d5d414963eb98f4da886dcdcb99db21deb87297cbb17538", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "8e702a797499254d68bdfed96a9ded235b980a011ff73259a7d659af2b15c8d7", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "a1f209c5e58df2f85698e2f09f156c5c50f27d7e0a4a84a1299c2028e8c5e349", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "2c4bddae9401c2abf9fbb856d905b06e72db05b808a3c964f4ccbc182888c8d7", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "9fb1ff9a49bf0e4ad2644b1b4762ee25331072612b782e47b0c24352b8141bbe", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "5b8f0d384e59569823737dd0b88a8f7df3da65f432766857574bddd4e87dfad7", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "fe96eefa07a581dfe52bc7f32ed4dcf9e1dd54dcf7d9702f54285e623395d5dd", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "633f38e48cba2a1b6f22384c78cd662335b4303dd6ef4b49bcfb9b14b274d30e", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"5903248\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "5e6c443ab2559f3297aee10bdb2a8db2c055131fc498367e9fd6f50310cd4f62", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"5903248\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "45c022974dcc6a475b2659026de56e6ddf8158507975b77b4fcf8d63ed00ed83", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "13c7577d5b3baf2559d640c67b3f163377121b4005b80ef78ebcd5cb3ff75a56", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "4079371c713ae21beb2b6141495eb9815bdfd06dc2021c049fd301a7a63a74aa", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "68a4b6445472e2ff3b01f2f71b3ad00bf20b22e0b83f44656014110284282e60", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "45754a9104f96f5ec071d4b93de1f1bb596a469292e31ceb9675b36f07493556", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"34\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "3958d42fb2f0ac5a77a5eb8d63044251f65e9185f1827a7b5467d9feb9a85e7b", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"34\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "cf7e2c8024a8618dad6d86445ff026531741a1261a8f48a987b6b10866dddc7f", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "e83460d15264af94aa1ad3062f0aa7c30223a12f019dfb7d2c27f3ba9f649fa6", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "4381d1587f5d53b090a9a115dd77e69cb83f4a8ea6bdd9e29fc69dd36070dd6e", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "1a3436d8b1777ffc553e84cff2cb882d62d25ae02130ca154667e196855d0450", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "7797fa984200366db82cae6470fde374f6c50df4da1ea67d42461886d762a14c", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "8c59c1e8d6274cd311886a7be29a11764202573fa264847747a20d543f13740c", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "7fbe7f313489932a78a5f0b3db415a33d8c547298ae6bb0ad08992b0c911ca64", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "838b0f1442b50f56dd5814b62d677eea93985e45026807f8d63e7e8e8bac04e7", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "a146614dcc47090acd0f65a8545884d72cb3397fc69f281648922159f7d140a1", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "7a46786fd45d673ecfd0ece9487e232a7d6475010d7eb005653d0000d4a0e35f", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904240\"&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "b681c01a32dbf3e1586c5ad4ede498b4bd9dff99c18f50e0ad6ca83ed1349af4", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904240\"&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "41845d3a93d737f5845ff42678732da5d8dffd8c9fef68a0132ab66f85c579dc", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904241\"&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "aa5109b912e3a22bd7718358de3a9963285246c652f4ae30814872aec5acb82a", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904241\"&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "5234844dd54404a9d6c8a13eed24817fde317dbd386f1b586906fa9b6a613be8", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"34\"&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "87f713a612ba53905b351d623c0ca45d35326b5baab6c9deb0d3c7d0e526b48f", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"34\"&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "ca233b54ee21f0d7db3a08fee2e2e44083b3cba5ad83b3181873efcc918a4fe0", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "8676b9624e9218c139e293fa521d5b1e2eec59d05ecbd136fd3d0a42b87d6006", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "7aee9745b9a478a884788c58ce08e868d8f800f87a28c28fde551922013a9968", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "d5b0bcbc6fabdf2be62028a62f727edfaa0daa737a3eea387cd05fe67c7d2a96", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "3e3f92db448873a6f28b69c1d89d1b128bf44f383d5fbe31411316c478282ba9", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "347252dde63598d6f080f178f0cb55686b25d3147cb4e079835f858b5cfed3e1", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "2760c40d91dba69459083d7dff53c2ba8ecaa360776146baf52b94237f9ccd6c", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "25dc4d665bd2e5d000424f6774f63f425ab662b8f1aff472aa863a48ab508add", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "aec518b022df8bca055b8bce7898fa145d83f11ea633641fc0bfaadea58b9337", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "a6ad383ef6ba1b0dec7c8b66431261e9438405316abf22eca9918bcfa1152195", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "93fba7dd12ed73901c4675f6b6dc70f3dc59be2a03f072b1a74c487faeefd085", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904240\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "96a6f252aceca48d2bc971a547836d76641013ab67900f4e892f68afb9d5e0f5", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904240\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "799b192429b0b70ad6357def03afb6303bfb1e0e001035994ec21bba3c56e0bf", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904241\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "6579d5150ccb9b0b35e4976353af5cdc34f4418c69af87e9d99be6a2ff4f65f6", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904241\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "d8cfdf9d08b599c63396dd5267f82de08f9d132a6b34a417f2907df2ea967071", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"34\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "6f32d405b2d74be8fea94fac1f52df631845b8062e8fac1e091b8f7c678f2dd4", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"34\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "94c9d00237bca77cc0db810a4fe70ebd5609aa8309891ca731509474f330a572", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "7bf3076f8ab2a1f277fbd0bd0baf8796f658b903298875a16012abd620e4d4f4", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "c1528faa4f0e63441ecf4740b89d28b347598acf4d7d9760c6f33ec53952b0f0", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "5d2b9fc7129f17b8e93a8dc8523747a434f4ba92996fd041319a7a7dc3dc85a6", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "70d965d409c19926c8f0d6c8279508a17cc8914c424079113b7b2590ef26cbd7", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "08a080aa0bf2db9bf74dc3284afbf9ef9b8701d4dfedad2681bd2f96d2b41c2b", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "d0d11341ac89a50753c3198223de3d18584f7ab6b3bb14b0119bb4f9c016559a", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "5944bbc69f14776e0748db79a07eeb769a18e48ed0f1f8cb0336c1d7a520a943", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "94239c057ab2778a0770a19578a391ece696cc3f4d74ea4f5125f8f436e4aa26", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "0a42f0cc5b07b6bd02f6f2b257dc755f6c06be5559352bba7b8f231bc565de27", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "da34ffa6f17aa88619bc0fd332a359721de45eeb12bb30199ef82e3275e4bbf1", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "ac03eee631a063e5dbad1a55ec9d7d4758ff91a5a0f94e29255d3384ea4604e8", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "1895345abe65f3c5caacc66beda5d25205aaebdf0808d2b5916a8dc44fd8780e", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "d9ab8386c768a0fd57782fa57ff58852dec3ee418bb9f837ee29b995bbcc7cec", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "abd074b71be68aa219f8776bbee3ee98768583e3950a140b0c504a8948aaa2e5", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "44b40e93c90a6f895ad18418f8150b43e504812c8fc5f4db7d6146225709a786", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "296c3b60bc8ba178ad98f1a9dfd3393f9f804cab19f1032fd759bf4f4758d5ce", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "3a34c7adc3d711dd8b0f8aad7c4674124011f2119c6f4e78d71df1c34f7f6606", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "23de8192682a13edbf2bc2007658e8059afc3fef10438b87bdd415c7e0a29e4d", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "df3e127655dd8f213f57386625eccc9a229975d7adb3775c28508b94e7464274", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "cde23439a68dfdb71f996cdf139e7d6f205eda097d7863ba120bfa63237ba2fb", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "ba9d13db2937ab3eb76c0807fff5b96ab7942fced59ab562a8eaafac6e4fd7f4", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "ceaff654917be1ae672214d10c7cfebf073ac78778a214c10cbb9dd0e3dda603", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "ed00be3959267531a7164d414e1ae10e89c97ed43c1efc7bd8a8d7ded521b7f1", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "fc4cf5bfaaac049dc32495c3562f5554a47bae7d181080685d116f099902dead", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "16ff9fb5ff16da1346a2240c6434a1b56e1242541b1b9bbe7413a36aa67a08a4", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "3e96e7c1df4044a0b2f0425301e780e3d7db9aaee244868badff3115d5d71b83", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "c5d25bfb176e33a1ccff00398d309f05e33b793a0a5a8d5c57096b55b5e1290a", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "4b9e6c396a112619839a055109cde9c2f16949415d76d196687c2262856b2492", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats-synthetic-BGC/index.json", "ext": "json", "sha": "39355008875080930830ce994ccec162ba924d3570b3e703acb32bfb2fe0f009", "type": "application/json", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { - "uri": "https://dataselection.euro-argo.eu/api/trajectory/6901929", - "ext": "json", - "sha": "86fefaa3fd8436f967d9d226765404d7e2542a72b8446ba802211eb9f75def7f", - "type": "application/json", - "ts": "2024-08-22 13:03:47" + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1901393\"&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "afb61c9729792e19f94765e3d09751fbfd4d4610c203a24500cb875a22c30daf", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://dataselection.euro-argo.eu/api/trajectory/5904797", - "ext": "json", - "sha": "28aa9ecc6cc62f53304aabc5d4514cd7607d986887509485bd0ffe2806f3d1a2", - "type": "application/json", - "ts": "2024-08-22 13:03:47" + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1901393\"&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "aa8fc09df3789fb0da0f8f25e948d7914c74dd4d299d7213696962657214ac34", + "type": "text/plain", + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://dataselection.euro-argo.eu/api/trajectory/6902755", - "ext": "json", - "sha": "237ec57996b0c89599212910ad056d4977d2391cfd4f6739b5b864450448d0f7", - "type": "application/json", - "ts": "2024-08-22 13:03:47" + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1901393|6902746\"&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "4d585d52cc490b76766865ae932294e9d345a6aef95c9d22a0bc7cc01e9ff21a", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://api.ifremer.fr/argopy/data/ARGO-FULL.json", - "ext": "json", - "sha": "5cf80c9330a7befe09246770236bfd5f5147a2a0ccfd2e29ebdfba2609a197ad", - "type": "application/json", - "ts": "2024-08-22 13:03:41" + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1901393|6902746\"&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "005e01b45d4b791bbb790b1927363294b55f6f89d69cf552d146a0698ff2f7de", + "type": "text/plain", + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://api.ifremer.fr/argopy/data/ARGO-BGC.json", - "ext": "json", - "sha": "3c0d46e0e115812606b9796f2d51a57b2ef226bd4c046afb67d2dc617c0ee6dd", - "type": "application/json", - "ts": "2024-08-22 13:03:41" + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"6902746\"&cycle_number=~\"34\"&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "3d6aa407feabc6128d30f54845ff1d78012f0e05a5e791bcf7ed21dedd551a2c", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://github.com/euroargodev/argopy-data/raw/master/ftp/dac/csiro/5900865/5900865_prof.nc", + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"6902746\"&cycle_number=~\"34\"&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "140d2bc8fe636c5238ea5e8db31d06d2222cd6a15deeb86498ae5719f2ac2567", + "type": "text/plain", + "ts": "2024-09-20 09:14:05" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"6902746\"&cycle_number=~\"1|12\"&distinct()&orderBy(\"time,pres\")", "ext": "nc", - "sha": "dff6f7de714ad05a4d6c09ef07377c6263bfe54fa99f8d1dc0b5313e3b909316", + "sha": "08485a4e4c250f56b7231214a30c605fd7585c180f4ddefaa3bdc6e74e1dcbd0", "type": "application/x-netcdf", - "ts": "2024-08-22 13:03:32" + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://github.com/euroargodev/argopy-data/raw/master/ftp/ar_index_global_prof.txt", - "ext": "txt", - "sha": "332692d1bf34e66520aac05841ef45a1fdb1eb0bacb96dcecaf1f963d9c4e34f", + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"6902746\"&cycle_number=~\"1|12\"&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "d5d3e0841b891ebcbb60efc1035af2b1ea9885939bb283d7cea7187eef55ec46", "type": "text/plain", - "ts": "2024-08-22 13:03:32" + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://github.com/euroargodev/argopy-data/raw/master/ftp/dac/csiro/5900865/profiles/D5900865_001.nc", + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&distinct()&orderBy(\"time,pres\")", "ext": "nc", - "sha": "9155e85ef1b48c01d44a24dd080959d7464f698e005269a94acd20beb46a0b1a", + "sha": "f195becc1569ed69a6961f6264e34ddf3f66186c3b67e3075447856d7dab84be", "type": "application/x-netcdf", - "ts": "2024-08-22 13:03:32" + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://github.com/euroargodev/argopy-data/raw/master/ftp/dac/csiro/5900865/profiles/D5900865_002.nc", + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "2bc7b34edc2e090b601d17702fc0a18b70b34b00d3ceaec40873f78807da1d1e", + "type": "text/plain", + "ts": "2024-09-20 09:14:05" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&time>=1072915200.0&time<=1075507200.0&distinct()&orderBy(\"time,pres\")", "ext": "nc", - "sha": "c65eb1888699965bcda9f215fccac07b11d5f86cd9cdf798c97c0fa39054e090", + "sha": "dc93a053d09e69fc65ff00c25eef60af3a8d83925c0882d25a0c69a1fb6710b1", "type": "application/x-netcdf", - "ts": "2024-08-22 13:03:32" + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://data-argo.ifremer.fr/etc/argo-ast9-item13-AltimeterComparison/figures/2901623.png", - "ext": "png", - "sha": "1d08ef19cbfc76909fba6d03c90c5c9d5c17c68e40e3316e8ac41109eb33fe7b", - "type": "image/png", - "ts": "2024-08-22 13:03:25" + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&time>=1072915200.0&time<=1075507200.0&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "4ddbd2087dc56c95fbfc49ac218e5548bd17f5377e94cc7ebe2053020cb8b237", + "type": "text/plain", + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://data-argo.ifremer.fr/etc/argo-ast9-item13-AltimeterComparison/figures/6901929.png", - "ext": "png", - "sha": "8b31f74aba6fe7f7093a5d0d7ebe17a044472e2982bf59c5ce7157597eb8fba5", - "type": "image/png", - "ts": "2024-08-22 13:03:25" + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.nc?latitude,longitude,time,platform_number,cycle_number,pres,temp,psal,ptmp&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "4ea9af1eb501d466018a02be11a2ff829abb53c747293570da404d33f9ea3300", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R01/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "a710bd6c5eff99fce61c4e165dea53857a278e472febd783e210c8b7bdb25eda", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.ncHeader?latitude,longitude,time,platform_number,cycle_number,pres,temp,psal,ptmp&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "42b50394f9d7ae7d8677901958611a17e7c73870504361aa6b4dab7b90e4ce5d", + "type": "text/plain", + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://vocab.nerc.ac.uk/collection/RR2/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "6d57f2755018695c32823b761ba552329c9fc903dcfb84232691b2b4d92784b3", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.nc?latitude,longitude,time,platform_number,cycle_number,pres,temp,psal,ptmp&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&time>=1514764800.0&time<=1546300800.0&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "9a77aea46e592d8889aa3e07fc3f5b1ce313bdc96dcfe48cdadd8918dec7c60e", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://vocab.nerc.ac.uk/collection/RD2/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "ceb40cf78b87922ec6b3fe0d589bf8f1cde1d9f3e8b5eee8b802897d41cb996c", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.ncHeader?latitude,longitude,time,platform_number,cycle_number,pres,temp,psal,ptmp&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&time>=1514764800.0&time<=1546300800.0&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "564a516cd24e656d25e5c5d201fd7294f5b63b2f38f50d0c81eb61c4bbc88c96", + "type": "text/plain", + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://vocab.nerc.ac.uk/collection/RP2/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "c16f43521f4e1dca7b0080fb519623f0549472d435cb9d51d47ae566bc9fdfe6", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1900468|1900117|1900386\"&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "edb8e556cfb3c77526a59535bf58fb277422c4cadc0f967bd6dc7bc796fbbfe5", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R03/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "ebdc6ce705160d0e429a599a788433f399b6eeea27d07c61a3e1c6baa949d7ec", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1900468|1900117|1900386\"&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "d532f6c4aaf308644bb0ed56014b581ce2a60106f951d498358b28f9bc4da857", + "type": "text/plain", + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R04/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "976c1cec8bdf83a123624964d2f74cd5af98dd54d654b1078f8eebe51c57cc2d", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "20b613c1e4e8e03229397ae5c28fd2101c6889cf345afae8cd774a5c0f3c6fb3", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R05/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "5e1038afcd7fa32054cfc96c8dc0f3a6dae11b86fcad47795dfa30253652c16f", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "3d7710fcb9c3dab5ddca509245504a1434dc5d56c4da86cd1ca57e181895e9df", + "type": "text/plain", + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R06/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "5f3d1109028808eed08f60733a6f58ab8ec8613345234a67c23eef6341817076", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&time>=1185926400.0&time<=1188604800.0&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "b54d7bc9ab7e5a33d055c5838cd9af99790b396125744e5be7d68afe64a97295", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R07/current/?_profile=nvs&_mediatype=application/ld+json", + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&time>=1185926400.0&time<=1188604800.0&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "5e7aac935136d9bd8817b3d6e757dd399dbe0ef8659698f94bae2e6c6b7f83dc", + "type": "text/plain", + "ts": "2024-09-20 09:14:05" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats/index.json", "ext": "json", - "sha": "b637c6ec1bebc25856000206bfc22c6afb091ae388d311989ec839c8127bf462", + "sha": "f912c39019f215a08583c457d9e71d5fb594429e38c31abec934454d397d5f8e", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R08/current/?_profile=nvs&_mediatype=application/ld+json", + "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats-reference/index.json", "ext": "json", - "sha": "3b3f761904b50b1ec263c317ce97e1d7c9a274afaba1174ed236238c2da101ff", + "sha": "f4bdba7f58e6710128352ffa25c4656e80198c3c8aa12732ec50031a987e5a1d", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R09/current/?_profile=nvs&_mediatype=application/ld+json", + "uri": "https://erddap.ifremer.fr/erddap/info/index.json", "ext": "json", - "sha": "7da84086dd9aaeab787f121d57cd8de7ddc1d15a31de30a89215f9570c70d859", + "sha": "3390b51587135ad525d8886aaaac3ed55587b5e4a76004671fc568166beb5670", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:05" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R10/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "aec7dd03c6bfd5550099f8ccf0f433e0d12d557e274ed114054f70585d33ba94", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/13857_prof.nc", + "ext": "nc", + "sha": "5baab8b80a58383f9f2a36c5f51282d3d5b673e9f2e3904c3dbb9ff600ceb230", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:20" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R11/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "bb6577ae0ef9548983948a19637a8ffdf7a8f251c3a9f5a661a3ba414705644f", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_090.nc", + "ext": "nc", + "sha": "61826c0b5eaa64c194edf932dad4a3588b4b557089ce8b045e3a327e22111227", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:27" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R12/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "c78fa91988e96ad5e0d54e273c8d3bc63e79dfcdafbcdf1bc5e4edf8e7105513", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/3900706/3900706_prof.nc", + "ext": "nc", + "sha": "87b2352dbddbca447627615252066c642bb2f5b1d16c59a64e226eeffe65914d", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R13/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "5a5ba4173ec3e86eb130b8f7d02a17f4d1ad65d959186d6e308ef6f824e936e1", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902072/1902072_prof.nc", + "ext": "nc", + "sha": "62f05073f9219dce4491a0d29e730c2f71afbf5f17b83cd06dfaa5b0da08ece6", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R15/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "4c78a777b4e4af13aef1f9139ceb5fddad753bfcd7246425d6448e5262655bd2", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1900561/1900561_prof.nc", + "ext": "nc", + "sha": "465e4dda08985393838c626c8e77396b9fe39a06b993467dd2d442a24c472d7b", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/RMC/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "f53d3f618df452ec32e1b3c148275328b49863b2e4cc3fc793206976aa934ec7", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/3900707/3900707_prof.nc", + "ext": "nc", + "sha": "1d8ba196cf4c82844027ad17622e31cd214cecb1881015341f9c90103bbb2a2a", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/RTV/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "0819f83da75f4015ffab5293e03ab30799fee9dbc0c26d1feceb43f72e18bfea", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901589/1901589_prof.nc", + "ext": "nc", + "sha": "34bdcd0292644dec5925b7d89a311a9021f11a0e35ac5d0889aae181be9a76b6", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R16/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "49fb14861dcc61e983b008996f601ea8b4314e46653e2af2381a9c289f551221", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902436/1902436_prof.nc", + "ext": "nc", + "sha": "60066a9c43e4103277e70c81607c6a78e3d3db53dd7b65c40f519ae457218302", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R18/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "44a8212688a625768443e7cd547779265f303b74783517bb3680abf2629db8de", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/39008/39008_prof.nc", + "ext": "nc", + "sha": "98bab99907e1e8f80a4158a0b171b0187661247ba1760d7b66c6a7e5392bf225", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R19/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "208f7853196d1056f243bc19513a3eb290aa54d931fff43c397d97edfc9051a7", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902401/1902401_prof.nc", + "ext": "nc", + "sha": "40fd4997660cf5b89a50139c7b931810371acb774849aa4f4c170669a1a3f8a5", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R20/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "235bd3ec4783b14ead8e0b4dc7a32b66e323eb230d6afc8ab7ac222adce34ef6", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1900500/1900500_prof.nc", + "ext": "nc", + "sha": "8953e390e5d3c15c828b78237fcc2e248e2a86fe03b6282a7e848325d3ee3cb6", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R21/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "0e924d764d60dc3ecad8a8bbbd0ca30c57d9a83c8d6027fd7f9081d35d05a6ba", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902414/1902414_prof.nc", + "ext": "nc", + "sha": "37b4fe616c2f98f48939f6dd7e69b4d52ebb965d9b5fddd9091c0898b4acd73a", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R22/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "f5431ce20497c13c4ae0cd5d8fdf234cdcea3919b29cabed391e51a943bcd4c1", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901826/1901826_prof.nc", + "ext": "nc", + "sha": "1e8980bc79037a776ceb21fde05c9ac45420e41013a1851d308666552e8ce8ee", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R23/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "32d1c5feaaf75f908ea8573410a390871d6a6e44770cfb84141edb49a133f118", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901820/1901820_prof.nc", + "ext": "nc", + "sha": "3c16609cd4c11dda82abcb41f3a501ddc15c502e80507c41417fa61daa712b51", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R24/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "b455fd6e5024dfba03c5674537d6f94fc7ca99d16603ee2be54e7fcd332c3f9f", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901462/1901462_prof.nc", + "ext": "nc", + "sha": "2ae6fc97206e120dde68592ec863c874fc7cff132749bbbdf6c48865c60d24d5", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R25/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "36e6314a009ae3674ac0883ffda1ab4a041df6cf10474c5084a6c1826c64e30a", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/13859/13859_prof.nc", + "ext": "nc", + "sha": "7424d25381dab63d8bf90539fcd38dbd8e2618ddb25552c1b47be04aee3eb47f", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R26/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "1555ff843864b325ce6547cc4608ca86db5770ca2955d99c48da940563e932e2", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1900783/1900783_prof.nc", + "ext": "nc", + "sha": "20cbe5a0eed5d67a198d8f87770d554409deabcb79acfcc63c900443812c379a", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R27/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "27d7b1ef7aaa76798f7f8eedc7fec0eb510c808949d926dc2ffa754fe958b870", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/3901242/3901242_prof.nc", + "ext": "nc", + "sha": "44cd4faa933a86d8833096fc987432a596715c33db7b44cdd140d9b8b5308295", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R28/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "568034bdb70ee1e12cccbb6616784c8c463e80c14ff6301f7fc0b34945f5c819", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901450/1901450_prof.nc", + "ext": "nc", + "sha": "661a469dfbbd13a6c296ab4bf13d142f073cb2699998ed8575f4f7b6e796c996", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R29/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "a6be3006f99d62a1b27578991bbf38c842b639b096cfff5f4f84bd430ab5549a", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901467/1901467_prof.nc", + "ext": "nc", + "sha": "2dc90517bda298b776b21e5f2510769216c153e4fd1b6b7ade4c9a1803aec902", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R30/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "bc042c069ff58f65702ded887bb8e9d780322e4bc5fa883ca2b6cb64fe9c88d4", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/3900564/3900564_prof.nc", + "ext": "nc", + "sha": "148da521a45d125dd127860a552fd231b10fe1fbf85c0b491c8d732a6ade0191", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R40/current/?_profile=nvs&_mediatype=application/ld+json", - "ext": "json", - "sha": "683edb12dc06650e5d8271ed444af120bff3311b9bb7c0ad60035dc07af150c3", - "type": "application/json", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1900818/1900818_prof.nc", + "ext": "nc", + "sha": "769ba7376a0f14aa14f310bf323ecea1885da9113b36a1a8bc3a5508c0eb5a00", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "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-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901449/1901449_prof.nc", + "ext": "nc", + "sha": "99b96aa829f6683cb035a11eb1628e5d03f9168ef52e964ed8a3dccd67390054", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://vocab.nerc.ac.uk/collection/R03/current/?_profile=nvs&_mediatype=text/turtle", - "ext": "txt", - "sha": "f694b62ce2d9c9a9ed8c754e6d922be225d2c5adcac4561fb6d5e022a65d1d04", - "type": "text/plain", - "ts": "2024-08-22 13:02:13" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901458/1901458_prof.nc", + "ext": "nc", + "sha": "01b049d8bfb0a4e104e59f3e084e763c4a0e78606476144ec3657abe695a2f5e", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://dx.doi.org/10.13155/29825", - "ext": "html", - "sha": "ba3563da17c45d0cf54c76c6f064cd5f9349f1a27932706df6adb0faeec63777", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902415/1902415_prof.nc", + "ext": "nc", + "sha": "28a3d6682b41b12fa25eac5ca11b15de5abcb970ee991efe14d51712dd90405f", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://dx.doi.org/10.13155/33951", - "ext": "html", - "sha": "153b4d3ac7f427e3bbeea9ec3b0a93c487fda47873f47ec33452fb61ff1ab605", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901692/1901692_prof.nc", + "ext": "nc", + "sha": "125fbde9f271588262a6abce052f563406e76fabc97154c4b4592d256c69b200", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://dx.doi.org/10.13155/46542", - "ext": "html", - "sha": "a47129e3a128f0899792c7f4055c73c75d4f58a921d5f9479220140547c85d01", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902400/1902400_prof.nc", + "ext": "nc", + "sha": "e60de23c325823b63bad40d6bd763fd3f3c7408a08962f76b08f49bdba816448", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://dx.doi.org/10.13155/40879", - "ext": "html", - "sha": "7e774d89fb0dd9623910539237a7e48dabb128fb47311e188e6bc559530fb4a4", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901806/1901806_prof.nc", + "ext": "nc", + "sha": "700ae50b274601f3a221689ea7b3b76d46e5035832ecd6d1fdf341edfe27a597", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://dx.doi.org/10.13155/35385", - "ext": "html", - "sha": "86c30bc8cd0e4699271da5f8145e1ad2a4f92e5784e80c0e83ced4ff493f8ec1", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901709/1901709_prof.nc", + "ext": "nc", + "sha": "9361751935dfa1ca2d0bd61eec17c517b9d7f47cc01e7c34dcc55b67addeae19", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://dx.doi.org/10.13155/84370", - "ext": "html", - "sha": "81a689ce24c6900d604fbd1cf829be8d590b779896b398aa78fb83fe1d040026", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/aoml/3900296/3900296_prof.nc", + "ext": "nc", + "sha": "2c26380148e45b76e7f5d8867e84405be9e5f4f1a5211e89abb36b7e8ce7e859", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://dx.doi.org/10.13155/62466", - "ext": "html", - "sha": "bf5c13c46e58262a417766cb7ee83528f5e245de853d4d210f0923cdfc8d88bb", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/aoml/13858/13858_prof.nc", + "ext": "nc", + "sha": "729d60a7d1b546ab122bcd8f2f88550652bd0a92de69c3b528fcd45b2b2707e6", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://dx.doi.org/10.13155/41151", - "ext": "html", - "sha": "dce5c0b88dda8a2d374c20dd50fc9a6c768a56731776c1d5c60dde49707b324b", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901685/1901685_prof.nc", + "ext": "nc", + "sha": "705387652d52a694d070c7c18e1616530e2544f7539d6d5e210332d86cfe23f9", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://dx.doi.org/10.13155/29824", - "ext": "html", - "sha": "980302fa35808db34ea92fbb30f5b43df4915037e48b8f6d6e8872dfdc17c340", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902070/1902070_prof.nc", + "ext": "nc", + "sha": "d091612ad7c1f8187ba25eefc9f68a303c39646626c425c891362909cf47bcc8", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://dx.doi.org/10.13155/78994", - "ext": "html", - "sha": "ff86679c33b92e1e89b4ba5db9006def8d8e89e4c25f9616ecb1e7a2229b1aa8", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_001.nc", + "ext": "nc", + "sha": "4ff9d2d81bf838cd912985cc9e5d4763f2b6860b4334fa352237e21517d93611", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:40" }, { - "uri": "https://dx.doi.org/10.13155/39795", - "ext": "html", - "sha": "cafd6dd329c2d1adadf5dc752f4c98ef4e1a2f463d0f3ac246820160263680e9", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_002.nc", + "ext": "nc", + "sha": "19dae4d3c5269c14618df62f1150eeda1536347047db31a8c19ca01c5a1b408a", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:40" }, { - "uri": "https://dx.doi.org/10.13155/39459", - "ext": "html", - "sha": "2e1d8835d1da66e42d095c30534b23959d1b22fda466b397f285025f138ec229", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_003.nc", + "ext": "nc", + "sha": "dd5a8ab1c038f6c6093360f16b874617f2da4fb6beb22ff4a68449956a2c9fba", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:40" }, { - "uri": "https://dx.doi.org/10.13155/39468", - "ext": "html", - "sha": "75e19ebe22535a74e91dcc5855a078084f74b12e6b214b4464b9ec2389381f7f", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/aoml/13858/profiles/R13858_004.nc", + "ext": "nc", + "sha": "5974bc7ae4645de10b254671f22517dea9b886a8d07daa633740d4be56654848", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:40" }, { - "uri": "https://dx.doi.org/10.13155/47998", - "ext": "html", - "sha": "577127670305b7a06ab3ea77e5ac5e2aa693fe288e4eb711c181347f94725a7d", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/aoml/13859/profiles/R13859_001.nc", + "ext": "nc", + "sha": "4d8d211924c073f7ce74fd9ffc6319698224643bb5b55e6aed016534033bf122", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:40" }, { - "uri": "https://dx.doi.org/10.13155/54541", - "ext": "html", - "sha": "6a313102a5bd801690824452bd4fdee05e87e890c670214355cfc78932ff82b7", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/ar_index_global_prof.txt.gz", + "ext": "gz", + "sha": "05c1dd2e89c619af221fa155a81c3cd4a262131187f8eb3a8eda266ae2706d53", + "type": "application/x-gzip", + "ts": "2024-09-20 09:14:40" }, { - "uri": "https://dx.doi.org/10.13155/46121", + "uri": "https://data-argo.ifremer.fr/dac", "ext": "html", - "sha": "9f6f876163819e670f5287f58a01be659f8b6a3a48048b9fb3c745757c881666", + "sha": "c054d15eec83bae19b8604a691a5066af9b97a4ce90d5b72676f732c5d8b636d", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:40" }, { - "uri": "https://dx.doi.org/10.13155/51541", - "ext": "html", - "sha": "13ede145ffeb1deaa7b445a4c094da587e03eb6bb9aac7bb95f3a567a56ef45c", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/coriolis/5904989/5904989_Sprof.nc", + "ext": "nc", + "sha": "edb7631698039a5ff0e389d6791b07800dc004058e8aa91cf6d38bf1769f2b83", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:42" }, { - "uri": "https://dx.doi.org/10.13155/57195", - "ext": "html", - "sha": "442c404a3a8c39fdb023df1022c3ea3d44aa19ad4f5bf26563f9d55a6ab9fe53", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/coriolis/3902131/3902131_Sprof.nc", + "ext": "nc", + "sha": "9ac344b346e765c2fd099bdc175e2473b69457657f13e0c145883d624c42125b", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:43" }, { - "uri": "https://dx.doi.org/10.13155/46120", - "ext": "html", - "sha": "54178ef5aab2a9dcd6cf5e81e30b09cd7f5d45a492e65bf516a0a4102408dd1a", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/coriolis/6903247/6903247_Sprof.nc", + "ext": "nc", + "sha": "5eaf037dd59f0db0e55a3cf7371f4e2550d73dc6a1df732d8d489fc8eb73a485", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:45" }, { - "uri": "https://dx.doi.org/10.13155/52154", - "ext": "html", - "sha": "210ae117281f44939303e772d03b83f3280f86523ddff392e89ae66d5e8f3fd5", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/dac/coriolis/5904989/profiles/SD5904989_012.nc", + "ext": "nc", + "sha": "41d59c8d3eb1cea1c97953a93242fc58d94e52a0c5e4d08f0e6b4ef480b5d825", + "type": "application/x-netcdf", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://dx.doi.org/10.13155/55637", - "ext": "html", - "sha": "941d81ad6852945dc830a63af6bbca89806f53c2b1cbf93556c85c42780d9588", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/argo_bio-profile_index.txt.gz", + "ext": "gz", + "sha": "109e79b4798289619a901d65865b957fe8064f390d06d4e7ee9eb40657bab444", + "type": "application/x-gzip", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://dx.doi.org/10.13155/46202", - "ext": "html", - "sha": "97351132f7d20857963c0ad559c3c1c0099da3f491e2e37b42fc2f4c41af29d9", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://data-argo.ifremer.fr/argo_synthetic-profile_index.txt.gz", + "ext": "gz", + "sha": "608114c1d0fad1409ff406acd5fc04b86e071e5d2e76da15f55d9b0b635c86ec", + "type": "application/x-gzip", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://dx.doi.org/10.13155/97828", - "ext": "html", - "sha": "671de7781d554d612185553c0fd1c787e6fae0ad69d903030a8ea9d51cd6badf", - "type": "text/html", - "ts": "2024-08-22 13:02:00" + "uri": "https://argovis-api.colorado.edu/argo?platform=1901393&data=pressure,temperature,salinity", + "ext": "js", + "sha": "990959c7c9e8d7c4d2530fd09d6bca6fa67c225e677686373fd6d1a2b3229229", + "type": "application/json", + "ts": "2024-09-20 09:14:47" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?platform=6902746&data=pressure,temperature,salinity", + "ext": "js", + "sha": "1ac285919474b8e5588c10417786fd71f6465604d7003b5c622d8213d9a7ad29", + "type": "application/json", + "ts": "2024-09-20 09:14:47" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?id=6902746_034&data=pressure,temperature,salinity", + "ext": "js", + "sha": "cae04f55309cb1fdcef6cfd3a245b0fc23236b93a0dd87ffa51b57d0d195ae2e", + "type": "application/json", + "ts": "2024-09-20 09:14:47" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?id=6902746_001&data=pressure,temperature,salinity", + "ext": "js", + "sha": "4c7f0662242944ffadc6c04a87e9c8312b8070794da337421fb3c5e98ee74067", + "type": "application/json", + "ts": "2024-09-20 09:14:47" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?id=6902746_012&data=pressure,temperature,salinity", + "ext": "js", + "sha": "d0f2403e46211a2969858266b1c1ecd594ed0d8771f313a0a21e56be6da17d6a", + "type": "application/json", + "ts": "2024-09-20 09:14:47" + }, + { + "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-20 09:14:47" + }, + { + "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-20 09:14:47" + }, + { + "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-20 09:14:47" + }, + { + "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-20 09:14:47" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?platform=1900468&data=pressure,temperature,salinity", + "ext": "js", + "sha": "eb40b40373f9e49d50e1a9de3d2f53bf71444fd1f0ef9adb41270c05491a96d2", + "type": "application/json", + "ts": "2024-09-20 09:14:47" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?platform=1900117&data=pressure,temperature,salinity", + "ext": "js", + "sha": "328cecb3db6cbdae1a48f3598045c4709bd1cc2b71b778310336928e6f411ccd", + "type": "application/json", + "ts": "2024-09-20 09:14:47" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?platform=1900386&data=pressure,temperature,salinity", + "ext": "js", + "sha": "d4d195e9e6adf1d81a188a454638606d515fb17540993ff403b805abbfecf9a2", + "type": "application/json", + "ts": "2024-09-20 09:14:47" + }, + { + "uri": "https://argovis-api.colorado.edu/ping", + "ext": "json", + "sha": "f0082673deeae58d99e57f1fd92f505fc966466aff4d22c6046d57ead6a52bfa", + "type": "application/json", + "ts": "2024-09-20 09:14:47" + }, + { + "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-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://www.ocean-ops.org/api/1/oceanops-api.yaml", "ext": "yaml", "sha": "4e2f9e17a10cdf4b1e9cb06c33e9927948fb229c3f10e63b46a6eef51910970b", "type": "text/yaml", - "ts": "2024-08-22 13:01:48" - }, - { - "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-08-22 13:01:33" - }, - { - "uri": "https://data-argo.ifremer.fr/dac/coriolis/5904989/5904989_Sprof.nc", - "ext": "nc", - "sha": "edb7631698039a5ff0e389d6791b07800dc004058e8aa91cf6d38bf1769f2b83", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:21" + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/coriolis/3902131/3902131_Sprof.nc", - "ext": "nc", - "sha": "9ac344b346e765c2fd099bdc175e2473b69457657f13e0c145883d624c42125b", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:22" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/coriolis/6903247/6903247_Sprof.nc", - "ext": "nc", - "sha": "5eaf037dd59f0db0e55a3cf7371f4e2550d73dc6a1df732d8d489fc8eb73a485", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:22" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/coriolis/5904989/profiles/SD5904989_012.nc", - "ext": "nc", - "sha": "41d59c8d3eb1cea1c97953a93242fc58d94e52a0c5e4d08f0e6b4ef480b5d825", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:23" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/argo_bio-profile_index.txt.gz", - "ext": "gz", - "sha": "109e79b4798289619a901d65865b957fe8064f390d06d4e7ee9eb40657bab444", - "type": "application/x-gzip", - "ts": "2024-08-22 13:00:23" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/argo_synthetic-profile_index.txt.gz", - "ext": "gz", - "sha": "608114c1d0fad1409ff406acd5fc04b86e071e5d2e76da15f55d9b0b635c86ec", - "type": "application/x-gzip", - "ts": "2024-08-22 13:00:23" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/13857_prof.nc", - "ext": "nc", - "sha": "5baab8b80a58383f9f2a36c5f51282d3d5b673e9f2e3904c3dbb9ff600ceb230", - "type": "application/x-netcdf", - "ts": "2024-08-22 12:59:52" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_090.nc", - "ext": "nc", - "sha": "61826c0b5eaa64c194edf932dad4a3588b4b557089ce8b045e3a327e22111227", - "type": "application/x-netcdf", - "ts": "2024-08-22 12:59:57" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901458/1901458_prof.nc", - "ext": "nc", - "sha": "01b049d8bfb0a4e104e59f3e084e763c4a0e78606476144ec3657abe695a2f5e", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/3900296/3900296_prof.nc", - "ext": "nc", - "sha": "2c26380148e45b76e7f5d8867e84405be9e5f4f1a5211e89abb36b7e8ce7e859", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901462/1901462_prof.nc", - "ext": "nc", - "sha": "2ae6fc97206e120dde68592ec863c874fc7cff132749bbbdf6c48865c60d24d5", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901467/1901467_prof.nc", - "ext": "nc", - "sha": "2dc90517bda298b776b21e5f2510769216c153e4fd1b6b7ade4c9a1803aec902", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901692/1901692_prof.nc", - "ext": "nc", - "sha": "125fbde9f271588262a6abce052f563406e76fabc97154c4b4592d256c69b200", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901820/1901820_prof.nc", - "ext": "nc", - "sha": "3c16609cd4c11dda82abcb41f3a501ddc15c502e80507c41417fa61daa712b51", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1902072/1902072_prof.nc", - "ext": "nc", - "sha": "62f05073f9219dce4491a0d29e730c2f71afbf5f17b83cd06dfaa5b0da08ece6", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/3900707/3900707_prof.nc", - "ext": "nc", - "sha": "1d8ba196cf4c82844027ad17622e31cd214cecb1881015341f9c90103bbb2a2a", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/3900564/3900564_prof.nc", - "ext": "nc", - "sha": "148da521a45d125dd127860a552fd231b10fe1fbf85c0b491c8d732a6ade0191", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1902400/1902400_prof.nc", - "ext": "nc", - "sha": "e60de23c325823b63bad40d6bd763fd3f3c7408a08962f76b08f49bdba816448", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/13859/13859_prof.nc", - "ext": "nc", - "sha": "7424d25381dab63d8bf90539fcd38dbd8e2618ddb25552c1b47be04aee3eb47f", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/3901242/3901242_prof.nc", - "ext": "nc", - "sha": "44cd4faa933a86d8833096fc987432a596715c33db7b44cdd140d9b8b5308295", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901450/1901450_prof.nc", - "ext": "nc", - "sha": "661a469dfbbd13a6c296ab4bf13d142f073cb2699998ed8575f4f7b6e796c996", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/3900706/3900706_prof.nc", - "ext": "nc", - "sha": "87b2352dbddbca447627615252066c642bb2f5b1d16c59a64e226eeffe65914d", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901589/1901589_prof.nc", - "ext": "nc", - "sha": "34bdcd0292644dec5925b7d89a311a9021f11a0e35ac5d0889aae181be9a76b6", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901826/1901826_prof.nc", - "ext": "nc", - "sha": "1e8980bc79037a776ceb21fde05c9ac45420e41013a1851d308666552e8ce8ee", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1902401/1902401_prof.nc", - "ext": "nc", - "sha": "40fd4997660cf5b89a50139c7b931810371acb774849aa4f4c170669a1a3f8a5", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1902436/1902436_prof.nc", - "ext": "nc", - "sha": "60066a9c43e4103277e70c81607c6a78e3d3db53dd7b65c40f519ae457218302", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1900783/1900783_prof.nc", - "ext": "nc", - "sha": "20cbe5a0eed5d67a198d8f87770d554409deabcb79acfcc63c900443812c379a", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901685/1901685_prof.nc", - "ext": "nc", - "sha": "705387652d52a694d070c7c18e1616530e2544f7539d6d5e210332d86cfe23f9", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901806/1901806_prof.nc", - "ext": "nc", - "sha": "700ae50b274601f3a221689ea7b3b76d46e5035832ecd6d1fdf341edfe27a597", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1900561/1900561_prof.nc", - "ext": "nc", - "sha": "465e4dda08985393838c626c8e77396b9fe39a06b993467dd2d442a24c472d7b", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1900818/1900818_prof.nc", - "ext": "nc", - "sha": "769ba7376a0f14aa14f310bf323ecea1885da9113b36a1a8bc3a5508c0eb5a00", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/13858/13858_prof.nc", - "ext": "nc", - "sha": "729d60a7d1b546ab122bcd8f2f88550652bd0a92de69c3b528fcd45b2b2707e6", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "uri": "https://vocab.nerc.ac.uk/collection/R29/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "a6be3006f99d62a1b27578991bbf38c842b639b096cfff5f4f84bd430ab5549a", + "type": "application/json", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1902415/1902415_prof.nc", - "ext": "nc", - "sha": "28a3d6682b41b12fa25eac5ca11b15de5abcb970ee991efe14d51712dd90405f", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "uri": "https://vocab.nerc.ac.uk/collection/R30/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "bc042c069ff58f65702ded887bb8e9d780322e4bc5fa883ca2b6cb64fe9c88d4", + "type": "application/json", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/39008/39008_prof.nc", - "ext": "nc", - "sha": "98bab99907e1e8f80a4158a0b171b0187661247ba1760d7b66c6a7e5392bf225", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1900500/1900500_prof.nc", - "ext": "nc", - "sha": "8953e390e5d3c15c828b78237fcc2e248e2a86fe03b6282a7e848325d3ee3cb6", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "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-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901449/1901449_prof.nc", - "ext": "nc", - "sha": "99b96aa829f6683cb035a11eb1628e5d03f9168ef52e964ed8a3dccd67390054", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "uri": "https://vocab.nerc.ac.uk/collection/R03/current/?_profile=nvs&_mediatype=text/turtle", + "ext": "txt", + "sha": "f694b62ce2d9c9a9ed8c754e6d922be225d2c5adcac4561fb6d5e022a65d1d04", + "type": "text/plain", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/39015/39015_prof.nc", - "ext": "nc", - "sha": "b8b77811a58f9104387ccdf3c5b15c0a423b74f0e3a4004bb172e6420fbe2cdd", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "uri": "https://dx.doi.org/10.13155/29825", + "ext": "html", + "sha": "ba3563da17c45d0cf54c76c6f064cd5f9349f1a27932706df6adb0faeec63777", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901709/1901709_prof.nc", - "ext": "nc", - "sha": "9361751935dfa1ca2d0bd61eec17c517b9d7f47cc01e7c34dcc55b67addeae19", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "uri": "https://dx.doi.org/10.13155/33951", + "ext": "html", + "sha": "153b4d3ac7f427e3bbeea9ec3b0a93c487fda47873f47ec33452fb61ff1ab605", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1902070/1902070_prof.nc", - "ext": "nc", - "sha": "d091612ad7c1f8187ba25eefc9f68a303c39646626c425c891362909cf47bcc8", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "uri": "https://dx.doi.org/10.13155/46542", + "ext": "html", + "sha": "a47129e3a128f0899792c7f4055c73c75d4f58a921d5f9479220140547c85d01", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1902414/1902414_prof.nc", - "ext": "nc", - "sha": "37b4fe616c2f98f48939f6dd7e69b4d52ebb965d9b5fddd9091c0898b4acd73a", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "uri": "https://dx.doi.org/10.13155/40879", + "ext": "html", + "sha": "7e774d89fb0dd9623910539237a7e48dabb128fb47311e188e6bc559530fb4a4", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_001.nc", - "ext": "nc", - "sha": "4ff9d2d81bf838cd912985cc9e5d4763f2b6860b4334fa352237e21517d93611", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:06" + "uri": "https://dx.doi.org/10.13155/35385", + "ext": "html", + "sha": "86c30bc8cd0e4699271da5f8145e1ad2a4f92e5784e80c0e83ced4ff493f8ec1", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_002.nc", - "ext": "nc", - "sha": "19dae4d3c5269c14618df62f1150eeda1536347047db31a8c19ca01c5a1b408a", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:06" + "uri": "https://dx.doi.org/10.13155/84370", + "ext": "html", + "sha": "81a689ce24c6900d604fbd1cf829be8d590b779896b398aa78fb83fe1d040026", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_003.nc", - "ext": "nc", - "sha": "dd5a8ab1c038f6c6093360f16b874617f2da4fb6beb22ff4a68449956a2c9fba", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:06" + "uri": "https://dx.doi.org/10.13155/62466", + "ext": "html", + "sha": "bf5c13c46e58262a417766cb7ee83528f5e245de853d4d210f0923cdfc8d88bb", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/13858/profiles/R13858_004.nc", - "ext": "nc", - "sha": "5974bc7ae4645de10b254671f22517dea9b886a8d07daa633740d4be56654848", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:06" + "uri": "https://dx.doi.org/10.13155/41151", + "ext": "html", + "sha": "dce5c0b88dda8a2d374c20dd50fc9a6c768a56731776c1d5c60dde49707b324b", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/13859/profiles/R13859_001.nc", - "ext": "nc", - "sha": "4d8d211924c073f7ce74fd9ffc6319698224643bb5b55e6aed016534033bf122", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:06" + "uri": "https://dx.doi.org/10.13155/29824", + "ext": "html", + "sha": "980302fa35808db34ea92fbb30f5b43df4915037e48b8f6d6e8872dfdc17c340", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/ar_index_global_prof.txt.gz", - "ext": "gz", - "sha": "05c1dd2e89c619af221fa155a81c3cd4a262131187f8eb3a8eda266ae2706d53", - "type": "application/x-gzip", - "ts": "2024-08-22 13:00:06" + "uri": "https://dx.doi.org/10.13155/78994", + "ext": "html", + "sha": "ff86679c33b92e1e89b4ba5db9006def8d8e89e4c25f9616ecb1e7a2229b1aa8", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://data-argo.ifremer.fr/dac", + "uri": "https://dx.doi.org/10.13155/39795", "ext": "html", - "sha": "c054d15eec83bae19b8604a691a5066af9b97a4ce90d5b72676f732c5d8b636d", + "sha": "cafd6dd329c2d1adadf5dc752f4c98ef4e1a2f463d0f3ac246820160263680e9", "type": "text/html", - "ts": "2024-08-22 13:00:06" + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1901393\"&distinct()&orderBy(\"time,pres\")", - "ext": "nc", - "sha": "afb61c9729792e19f94765e3d09751fbfd4d4610c203a24500cb875a22c30daf", - "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "uri": "https://dx.doi.org/10.13155/39459", + "ext": "html", + "sha": "2e1d8835d1da66e42d095c30534b23959d1b22fda466b397f285025f138ec229", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1901393\"&distinct()&orderBy(\"time,pres\")", - "ext": "ncHeader", - "sha": "aa8fc09df3789fb0da0f8f25e948d7914c74dd4d299d7213696962657214ac34", - "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "uri": "https://dx.doi.org/10.13155/39468", + "ext": "html", + "sha": "75e19ebe22535a74e91dcc5855a078084f74b12e6b214b4464b9ec2389381f7f", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1901393|6902746\"&distinct()&orderBy(\"time,pres\")", - "ext": "nc", - "sha": "4d585d52cc490b76766865ae932294e9d345a6aef95c9d22a0bc7cc01e9ff21a", - "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "uri": "https://dx.doi.org/10.13155/47998", + "ext": "html", + "sha": "577127670305b7a06ab3ea77e5ac5e2aa693fe288e4eb711c181347f94725a7d", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1901393|6902746\"&distinct()&orderBy(\"time,pres\")", - "ext": "ncHeader", - "sha": "005e01b45d4b791bbb790b1927363294b55f6f89d69cf552d146a0698ff2f7de", - "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "uri": "https://dx.doi.org/10.13155/54541", + "ext": "html", + "sha": "6a313102a5bd801690824452bd4fdee05e87e890c670214355cfc78932ff82b7", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"6902746\"&cycle_number=~\"34\"&distinct()&orderBy(\"time,pres\")", - "ext": "nc", - "sha": "3d6aa407feabc6128d30f54845ff1d78012f0e05a5e791bcf7ed21dedd551a2c", - "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "uri": "https://dx.doi.org/10.13155/46121", + "ext": "html", + "sha": "9f6f876163819e670f5287f58a01be659f8b6a3a48048b9fb3c745757c881666", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"6902746\"&cycle_number=~\"34\"&distinct()&orderBy(\"time,pres\")", - "ext": "ncHeader", - "sha": "140d2bc8fe636c5238ea5e8db31d06d2222cd6a15deeb86498ae5719f2ac2567", - "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "uri": "https://dx.doi.org/10.13155/51541", + "ext": "html", + "sha": "13ede145ffeb1deaa7b445a4c094da587e03eb6bb9aac7bb95f3a567a56ef45c", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"6902746\"&cycle_number=~\"1|12\"&distinct()&orderBy(\"time,pres\")", - "ext": "nc", - "sha": "08485a4e4c250f56b7231214a30c605fd7585c180f4ddefaa3bdc6e74e1dcbd0", - "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "uri": "https://dx.doi.org/10.13155/57195", + "ext": "html", + "sha": "442c404a3a8c39fdb023df1022c3ea3d44aa19ad4f5bf26563f9d55a6ab9fe53", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"6902746\"&cycle_number=~\"1|12\"&distinct()&orderBy(\"time,pres\")", - "ext": "ncHeader", - "sha": "d5d3e0841b891ebcbb60efc1035af2b1ea9885939bb283d7cea7187eef55ec46", - "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "uri": "https://dx.doi.org/10.13155/46120", + "ext": "html", + "sha": "54178ef5aab2a9dcd6cf5e81e30b09cd7f5d45a492e65bf516a0a4102408dd1a", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&distinct()&orderBy(\"time,pres\")", - "ext": "nc", - "sha": "f195becc1569ed69a6961f6264e34ddf3f66186c3b67e3075447856d7dab84be", - "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "uri": "https://dx.doi.org/10.13155/52154", + "ext": "html", + "sha": "210ae117281f44939303e772d03b83f3280f86523ddff392e89ae66d5e8f3fd5", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&distinct()&orderBy(\"time,pres\")", - "ext": "ncHeader", - "sha": "2bc7b34edc2e090b601d17702fc0a18b70b34b00d3ceaec40873f78807da1d1e", - "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "uri": "https://dx.doi.org/10.13155/55637", + "ext": "html", + "sha": "941d81ad6852945dc830a63af6bbca89806f53c2b1cbf93556c85c42780d9588", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&time>=1072915200.0&time<=1075507200.0&distinct()&orderBy(\"time,pres\")", - "ext": "nc", - "sha": "dc93a053d09e69fc65ff00c25eef60af3a8d83925c0882d25a0c69a1fb6710b1", - "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "uri": "https://dx.doi.org/10.13155/46202", + "ext": "html", + "sha": "97351132f7d20857963c0ad559c3c1c0099da3f491e2e37b42fc2f4c41af29d9", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&time>=1072915200.0&time<=1075507200.0&distinct()&orderBy(\"time,pres\")", - "ext": "ncHeader", - "sha": "4ddbd2087dc56c95fbfc49ac218e5548bd17f5377e94cc7ebe2053020cb8b237", - "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "uri": "https://dx.doi.org/10.13155/97828", + "ext": "html", + "sha": "671de7781d554d612185553c0fd1c787e6fae0ad69d903030a8ea9d51cd6badf", + "type": "text/html", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.nc?latitude,longitude,time,platform_number,cycle_number,pres,temp,psal,ptmp&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&distinct()&orderBy(\"time,pres\")", - "ext": "nc", - "sha": "4ea9af1eb501d466018a02be11a2ff829abb53c747293570da404d33f9ea3300", - "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "uri": "https://dataselection.euro-argo.eu/api/trajectory/6901929", + "ext": "json", + "sha": "86fefaa3fd8436f967d9d226765404d7e2542a72b8446ba802211eb9f75def7f", + "type": "application/json", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.ncHeader?latitude,longitude,time,platform_number,cycle_number,pres,temp,psal,ptmp&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&distinct()&orderBy(\"time,pres\")", - "ext": "ncHeader", - "sha": "42b50394f9d7ae7d8677901958611a17e7c73870504361aa6b4dab7b90e4ce5d", - "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "uri": "https://dataselection.euro-argo.eu/api/trajectory/5904797", + "ext": "json", + "sha": "28aa9ecc6cc62f53304aabc5d4514cd7607d986887509485bd0ffe2806f3d1a2", + "type": "application/json", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.nc?latitude,longitude,time,platform_number,cycle_number,pres,temp,psal,ptmp&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&time>=1514764800.0&time<=1546300800.0&distinct()&orderBy(\"time,pres\")", - "ext": "nc", - "sha": "9a77aea46e592d8889aa3e07fc3f5b1ce313bdc96dcfe48cdadd8918dec7c60e", - "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "uri": "https://dataselection.euro-argo.eu/api/trajectory/6902755", + "ext": "json", + "sha": "237ec57996b0c89599212910ad056d4977d2391cfd4f6739b5b864450448d0f7", + "type": "application/json", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.ncHeader?latitude,longitude,time,platform_number,cycle_number,pres,temp,psal,ptmp&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&time>=1514764800.0&time<=1546300800.0&distinct()&orderBy(\"time,pres\")", - "ext": "ncHeader", - "sha": "564a516cd24e656d25e5c5d201fd7294f5b63b2f38f50d0c81eb61c4bbc88c96", - "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "uri": "https://dataselection.euro-argo.eu/api/trajectory/2901623", + "ext": "json", + "sha": "d410e6e4cd9b1997eeca96d6c9d63101af097403e0b2d3ed363bc9779af7bf58", + "type": "application/json", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1900468|1900117|1900386\"&distinct()&orderBy(\"time,pres\")", - "ext": "nc", - "sha": "edb8e556cfb3c77526a59535bf58fb277422c4cadc0f967bd6dc7bc796fbbfe5", - "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "uri": "https://api.ifremer.fr/argopy/data/ARGO-FULL.json", + "ext": "json", + "sha": "5cf80c9330a7befe09246770236bfd5f5147a2a0ccfd2e29ebdfba2609a197ad", + "type": "application/json", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1900468|1900117|1900386\"&distinct()&orderBy(\"time,pres\")", - "ext": "ncHeader", - "sha": "d532f6c4aaf308644bb0ed56014b581ce2a60106f951d498358b28f9bc4da857", - "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "uri": "https://api.ifremer.fr/argopy/data/ARGO-BGC.json", + "ext": "json", + "sha": "3c0d46e0e115812606b9796f2d51a57b2ef226bd4c046afb67d2dc617c0ee6dd", + "type": "application/json", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&distinct()&orderBy(\"time,pres\")", + "uri": "https://github.com/euroargodev/argopy-data/raw/master/ftp/dac/csiro/5900865/5900865_prof.nc", "ext": "nc", - "sha": "20b613c1e4e8e03229397ae5c28fd2101c6889cf345afae8cd774a5c0f3c6fb3", + "sha": "dff6f7de714ad05a4d6c09ef07377c6263bfe54fa99f8d1dc0b5313e3b909316", "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&distinct()&orderBy(\"time,pres\")", - "ext": "ncHeader", - "sha": "3d7710fcb9c3dab5ddca509245504a1434dc5d56c4da86cd1ca57e181895e9df", + "uri": "https://github.com/euroargodev/argopy-data/raw/master/ftp/ar_index_global_prof.txt", + "ext": "txt", + "sha": "332692d1bf34e66520aac05841ef45a1fdb1eb0bacb96dcecaf1f963d9c4e34f", "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&time>=1185926400.0&time<=1188604800.0&distinct()&orderBy(\"time,pres\")", + "uri": "https://github.com/euroargodev/argopy-data/raw/master/ftp/dac/csiro/5900865/profiles/D5900865_001.nc", "ext": "nc", - "sha": "b54d7bc9ab7e5a33d055c5838cd9af99790b396125744e5be7d68afe64a97295", + "sha": "9155e85ef1b48c01d44a24dd080959d7464f698e005269a94acd20beb46a0b1a", "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" - }, - { - "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&time>=1185926400.0&time<=1188604800.0&distinct()&orderBy(\"time,pres\")", - "ext": "ncHeader", - "sha": "5e7aac935136d9bd8817b3d6e757dd399dbe0ef8659698f94bae2e6c6b7f83dc", - "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats/index.json", - "ext": "json", - "sha": "f912c39019f215a08583c457d9e71d5fb594429e38c31abec934454d397d5f8e", - "type": "application/json", - "ts": "2024-08-22 12:26:41" + "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-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats-reference/index.json", - "ext": "json", - "sha": "f4bdba7f58e6710128352ffa25c4656e80198c3c8aa12732ec50031a987e5a1d", - "type": "application/json", - "ts": "2024-08-22 12:26:41" + "uri": "https://data-argo.ifremer.fr/etc/argo-ast9-item13-AltimeterComparison/figures/2901623.png", + "ext": "png", + "sha": "1d08ef19cbfc76909fba6d03c90c5c9d5c17c68e40e3316e8ac41109eb33fe7b", + "type": "image/png", + "ts": "2024-09-20 09:14:47" }, { - "uri": "https://erddap.ifremer.fr/erddap/info/index.json", - "ext": "json", - "sha": "3390b51587135ad525d8886aaaac3ed55587b5e4a76004671fc568166beb5670", - "type": "application/json", - "ts": "2024-08-22 12:26:41" + "uri": "https://data-argo.ifremer.fr/etc/argo-ast9-item13-AltimeterComparison/figures/6901929.png", + "ext": "png", + "sha": "8b31f74aba6fe7f7093a5d0d7ebe17a044472e2982bf59c5ce7157597eb8fba5", + "type": "image/png", + "ts": "2024-09-20 09:14:47" } ] \ No newline at end of file diff --git a/argopy/utils/casting.py b/argopy/utils/casting.py index 1119debb..222d9d35 100644 --- a/argopy/utils/casting.py +++ b/argopy/utils/casting.py @@ -7,8 +7,6 @@ import json import logging -from .decorators import deprecated - log = logging.getLogger("argopy.utils.casting") diff --git a/argopy/utils/locals.py b/argopy/utils/locals.py index 737373f3..64c7429b 100644 --- a/argopy/utils/locals.py +++ b/argopy/utils/locals.py @@ -18,11 +18,10 @@ reqs = subprocess.check_output([sys.executable, '-m', 'pip', 'list', '--format', 'json']) reqs = json.loads(reqs.decode()) [PIP_INSTALLED.update({mod['name']: mod['version']}) for mod in reqs] -except: +except: # noqa E722 pass - def get_sys_info(): """Returns system information as a dict""" @@ -95,7 +94,7 @@ def cli_version(cli_name): try: a = subprocess.run([cli_name, '--version'], capture_output=True) return a.stdout.decode().strip("\n").replace(cli_name, '').strip() - except: + except: # noqa E722 if shutil.which(cli_name): return "- # installed" else: @@ -120,17 +119,16 @@ def get_version(module_name): except importlib.metadata.PackageNotFoundError: try: ver = pip_version(module_name) - except: + except: # noqa E722 try: ver = cli_version(module_name) - except: + except: # noqa E722 pass if sum([int(v == '0') for v in ver.split(".")]) == len(ver.split(".")): ver = '-' return ver - def show_versions(file=sys.stdout, conda=False): # noqa: C901 """Print the versions of argopy and its dependencies diff --git a/ci/requirements/py3.10-all-free.yml b/ci/requirements/py3.10-all-free.yml index 47da7b4b..59129715 100644 --- a/ci/requirements/py3.10-all-free.yml +++ b/ci/requirements/py3.10-all-free.yml @@ -2,7 +2,7 @@ name: argopy-tests channels: - conda-forge dependencies: - - python = 3.10.14 + - python = 3.10 # CORE: - aiohttp diff --git a/ci/requirements/py3.10-all-pinned.yml b/ci/requirements/py3.10-all-pinned.yml index f20410d2..9a5b7e1c 100644 --- a/ci/requirements/py3.10-all-pinned.yml +++ b/ci/requirements/py3.10-all-pinned.yml @@ -5,35 +5,35 @@ dependencies: - python = 3.10.14 # CORE: - - aiohttp = 3.10.4 + - aiohttp = 3.10.5 - decorator = 5.1.1 - - erddapy = 2.2.0 - - fsspec = 2024.6.1 + - erddapy = 2.2.3 + - fsspec = 2024.9.0 - netCDF4 = 1.7.1 - packaging = 24.1 - requests = 2.32.3 - - scipy = 1.14.0 + - scipy = 1.14.1 - toolz = 0.12.1 - xarray = 2024.2.0 # EXT.UTIL: - - boto3 = 1.35.0 + - boto3 = 1.35.22 - gsw = 3.6.19 - s3fs = 0.4.2 - tqdm = 4.66.5 - - zarr = 2.18.2 + - zarr = 2.18.3 # EXT.PERF: - - dask = 2024.8.1 - - distributed = 2024.8.1 + - dask = 2024.9.0 + - distributed = 2024.9.0 - h5netcdf = 1.3.0 - pyarrow = 17.0.0 # EXT.PLOT: - - IPython = 8.26.0 + - IPython = 8.27.0 - cartopy = 0.23.0 - ipykernel = 6.29.5 - - ipywidgets = 8.1.3 + - ipywidgets = 8.1.5 - matplotlib = 3.9.2 - pyproj = 3.6.1 - seaborn = 0.13.2 @@ -42,18 +42,18 @@ dependencies: - aiofiles = 24.1.0 - black = 24.8.0 - bottleneck = 1.4.0 - - cfgrib = 0.9.14.0 + - cfgrib = 0.9.14.1 - cftime = 1.6.4 - codespell = 2.3.0 - flake8 = 7.1.1 - numpy = 1.26.4 - pandas = 2.2.2 - pip = 24.2 - - pytest = 8.3.2 + - pytest = 8.3.3 - pytest-cov = 5.0.0 - - pytest-env = 1.1.3 + - pytest-env = 1.1.5 - pytest-localftpserver - - setuptools = 72.1.0 + - setuptools = 74.1.2 # - sphinx = - # PIP: diff --git a/ci/requirements/py3.10-core-free.yml b/ci/requirements/py3.10-core-free.yml index 94f62622..8337ad83 100644 --- a/ci/requirements/py3.10-core-free.yml +++ b/ci/requirements/py3.10-core-free.yml @@ -2,7 +2,7 @@ name: argopy-tests channels: - conda-forge dependencies: - - python = 3.10.14 + - python = 3.10 # CORE: - aiohttp diff --git a/ci/requirements/py3.10-core-pinned.yml b/ci/requirements/py3.10-core-pinned.yml index 95e4e481..21d23f30 100644 --- a/ci/requirements/py3.10-core-pinned.yml +++ b/ci/requirements/py3.10-core-pinned.yml @@ -5,35 +5,35 @@ dependencies: - python = 3.10.14 # CORE: - - aiohttp = 3.10.4 + - aiohttp = 3.10.5 - decorator = 5.1.1 - - erddapy = 2.2.0 - - fsspec = 2024.6.1 + - erddapy = 2.2.3 + - fsspec = 2024.9.0 - netCDF4 = 1.7.1 - packaging = 24.1 - requests = 2.32.3 - - scipy = 1.14.0 + - scipy = 1.14.1 - toolz = 0.12.1 - xarray = 2024.2.0 # EXT.UTIL: -# - boto3 = 1.35.0 +# - boto3 = 1.35.22 # - gsw = 3.6.19 # - s3fs = 0.4.2 # - tqdm = 4.66.5 -# - zarr = 2.18.2 +# - zarr = 2.18.3 # EXT.PERF: -# - dask = 2024.8.1 -# - distributed = 2024.8.1 +# - dask = 2024.9.0 +# - distributed = 2024.9.0 # - h5netcdf = 1.3.0 # - pyarrow = 17.0.0 # EXT.PLOT: -# - IPython = 8.26.0 +# - IPython = 8.27.0 # - cartopy = 0.23.0 # - ipykernel = 6.29.5 -# - ipywidgets = 8.1.3 +# - ipywidgets = 8.1.5 # - matplotlib = 3.9.2 # - pyproj = 3.6.1 # - seaborn = 0.13.2 @@ -42,18 +42,18 @@ dependencies: - aiofiles = 24.1.0 - black = 24.8.0 - bottleneck = 1.4.0 - - cfgrib = 0.9.14.0 + - cfgrib = 0.9.14.1 - cftime = 1.6.4 - codespell = 2.3.0 - flake8 = 7.1.1 - numpy = 1.26.4 - pandas = 2.2.2 - pip = 24.2 - - pytest = 8.3.2 + - pytest = 8.3.3 - pytest-cov = 5.0.0 - - pytest-env = 1.1.3 + - pytest-env = 1.1.5 - pytest-localftpserver - - setuptools = 72.1.0 + - setuptools = 74.1.2 # - sphinx = - # PIP: diff --git a/ci/requirements/py3.9-all-free.yml b/ci/requirements/py3.9-all-free.yml index 5db5b278..6946525e 100644 --- a/ci/requirements/py3.9-all-free.yml +++ b/ci/requirements/py3.9-all-free.yml @@ -2,7 +2,7 @@ name: argopy-tests channels: - conda-forge dependencies: - - python = 3.9.19 + - python = 3.9 # CORE: - aiohttp diff --git a/ci/requirements/py3.9-all-pinned.yml b/ci/requirements/py3.9-all-pinned.yml index 62ca9fa9..543790fa 100644 --- a/ci/requirements/py3.9-all-pinned.yml +++ b/ci/requirements/py3.9-all-pinned.yml @@ -5,10 +5,10 @@ dependencies: - python = 3.9.19 # CORE: - - aiohttp = 3.10.4 + - aiohttp = 3.10.5 - decorator = 5.1.1 - erddapy = 2.2.0 - - fsspec = 2024.6.1 + - fsspec = 2024.9.0 - netCDF4 = 1.7.1 - packaging = 24.1 - requests = 2.32.3 @@ -17,7 +17,7 @@ dependencies: - xarray = 2024.2.0 # EXT.UTIL: - - boto3 = 1.35.0 + - boto3 = 1.35.22 - gsw = 3.6.19 - s3fs = 0.4.2 - tqdm = 4.66.5 @@ -33,7 +33,7 @@ dependencies: - IPython = 8.18.1 - cartopy = 0.23.0 - ipykernel = 6.29.5 - - ipywidgets = 8.1.3 + - ipywidgets = 8.1.5 - matplotlib = 3.9.2 - pyproj = 3.6.1 - seaborn = 0.13.2 @@ -42,20 +42,20 @@ dependencies: - aiofiles = 24.1.0 - black = 24.8.0 - bottleneck = 1.4.0 - - cfgrib = 0.9.14.0 + - cfgrib = 0.9.14.1 - cftime = 1.6.4 - - codespell + - codespell = 2.3.0 - flake8 = 7.1.1 - numpy = 1.26.4 - pandas = 2.2.2 - pip = 24.2 - - pytest = 8.3.2 + - pytest = 8.3.3 - pytest-cov = 5.0.0 - - pytest-env = 1.1.3 + - pytest-env = 1.1.5 - pytest-localftpserver - - setuptools = 72.1.0 + - setuptools = 74.1.2 # - sphinx = - # PIP: - pip: - - pytest-reportlog == 0.4.0 + - pytest-reportlog == 0.4.0 \ No newline at end of file diff --git a/ci/requirements/py3.9-core-free.yml b/ci/requirements/py3.9-core-free.yml index cc3d9a9d..60cc19cb 100644 --- a/ci/requirements/py3.9-core-free.yml +++ b/ci/requirements/py3.9-core-free.yml @@ -2,7 +2,7 @@ name: argopy-tests channels: - conda-forge dependencies: - - python = 3.9.19 + - python = 3.9 # CORE: - aiohttp diff --git a/ci/requirements/py3.9-core-pinned.yml b/ci/requirements/py3.9-core-pinned.yml index 47051c8b..7c235caa 100644 --- a/ci/requirements/py3.9-core-pinned.yml +++ b/ci/requirements/py3.9-core-pinned.yml @@ -5,10 +5,10 @@ dependencies: - python = 3.9.19 # CORE: - - aiohttp = 3.10.4 + - aiohttp = 3.10.5 - decorator = 5.1.1 - erddapy = 2.2.0 - - fsspec = 2024.6.1 + - fsspec = 2024.9.0 - netCDF4 = 1.7.1 - packaging = 24.1 - requests = 2.32.3 @@ -17,7 +17,7 @@ dependencies: - xarray = 2024.2.0 # EXT.UTIL: -# - boto3 = 1.35.0 +# - boto3 = 1.35.22 # - gsw = 3.6.19 # - s3fs = 0.4.2 # - tqdm = 4.66.5 @@ -33,7 +33,7 @@ dependencies: # - IPython = 8.18.1 # - cartopy = 0.23.0 # - ipykernel = 6.29.5 -# - ipywidgets = 8.1.3 +# - ipywidgets = 8.1.5 # - matplotlib = 3.9.2 # - pyproj = 3.6.1 # - seaborn = 0.13.2 @@ -42,20 +42,20 @@ dependencies: - aiofiles = 24.1.0 - black = 24.8.0 - bottleneck = 1.4.0 - - cfgrib = 0.9.14.0 + - cfgrib = 0.9.14.1 - cftime = 1.6.4 - - codespell + - codespell = 2.3.0 - flake8 = 7.1.1 - numpy = 1.26.4 - pandas = 2.2.2 - pip = 24.2 - - pytest = 8.3.2 + - pytest = 8.3.3 - pytest-cov = 5.0.0 - - pytest-env = 1.1.3 + - pytest-env = 1.1.5 - pytest-localftpserver - - setuptools = 72.1.0 + - setuptools = 74.1.2 # - sphinx = - # PIP: - pip: - - pytest-reportlog == 0.4.0 + - pytest-reportlog == 0.4.0 \ No newline at end of file diff --git a/cli/citests_httpdata_manager b/cli/citests_httpdata_manager index b9be6599..f41e5b46 100755 --- a/cli/citests_httpdata_manager +++ b/cli/citests_httpdata_manager @@ -108,6 +108,7 @@ DEFAULT_TARGETS = [ "ea_dataselection", "ifremer_api", "github", + "altim", ] @@ -357,7 +358,7 @@ class UriRegistry(UserList): for item in obj.data: self.delete(item) else: - raise TypeError("Can only substract a UriRegistry from another UriRegistry") + raise TypeError("Can only subtract a UriRegistry from another UriRegistry") return self diff --git a/cli/citests_httpdata_manager_altim.json b/cli/citests_httpdata_manager_altim.json index f70fe485..adf983d2 100644 --- a/cli/citests_httpdata_manager_altim.json +++ b/cli/citests_httpdata_manager_altim.json @@ -4,13 +4,13 @@ "ext": "png", "sha": "1d08ef19cbfc76909fba6d03c90c5c9d5c17c68e40e3316e8ac41109eb33fe7b", "type": "image/png", - "ts": "2024-08-22 13:03:25" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://data-argo.ifremer.fr/etc/argo-ast9-item13-AltimeterComparison/figures/6901929.png", "ext": "png", "sha": "8b31f74aba6fe7f7093a5d0d7ebe17a044472e2982bf59c5ce7157597eb8fba5", "type": "image/png", - "ts": "2024-08-22 13:03:25" + "ts": "2024-09-20 09:14:47" } ] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_argovis.json b/cli/citests_httpdata_manager_argovis.json index 18cebb6c..50c60991 100644 --- a/cli/citests_httpdata_manager_argovis.json +++ b/cli/citests_httpdata_manager_argovis.json @@ -4,90 +4,90 @@ "ext": "js", "sha": "990959c7c9e8d7c4d2530fd09d6bca6fa67c225e677686373fd6d1a2b3229229", "type": "application/json", - "ts": "2024-08-30 14:14:57" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://argovis-api.colorado.edu/argo?platform=6902746&data=pressure,temperature,salinity", "ext": "js", "sha": "1ac285919474b8e5588c10417786fd71f6465604d7003b5c622d8213d9a7ad29", "type": "application/json", - "ts": "2024-08-30 14:14:57" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://argovis-api.colorado.edu/argo?id=6902746_034&data=pressure,temperature,salinity", "ext": "js", "sha": "cae04f55309cb1fdcef6cfd3a245b0fc23236b93a0dd87ffa51b57d0d195ae2e", "type": "application/json", - "ts": "2024-08-30 14:14:57" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://argovis-api.colorado.edu/argo?id=6902746_001&data=pressure,temperature,salinity", "ext": "js", "sha": "4c7f0662242944ffadc6c04a87e9c8312b8070794da337421fb3c5e98ee74067", "type": "application/json", - "ts": "2024-08-30 14:14:57" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://argovis-api.colorado.edu/argo?id=6902746_012&data=pressure,temperature,salinity", "ext": "js", "sha": "d0f2403e46211a2969858266b1c1ecd594ed0d8771f313a0a21e56be6da17d6a", "type": "application/json", - "ts": "2024-08-30 14:14:57" + "ts": "2024-09-20 09:14:47" }, { "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-08-30 14:14:57" + "ts": "2024-09-20 09:14:47" }, { "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-08-30 14:14:57" + "ts": "2024-09-20 09:14:47" }, { "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-08-30 14:14:57" + "ts": "2024-09-20 09:14:47" }, { "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-08-30 14:14:57" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://argovis-api.colorado.edu/argo?platform=1900468&data=pressure,temperature,salinity", "ext": "js", "sha": "eb40b40373f9e49d50e1a9de3d2f53bf71444fd1f0ef9adb41270c05491a96d2", "type": "application/json", - "ts": "2024-08-30 14:14:57" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://argovis-api.colorado.edu/argo?platform=1900117&data=pressure,temperature,salinity", "ext": "js", "sha": "328cecb3db6cbdae1a48f3598045c4709bd1cc2b71b778310336928e6f411ccd", "type": "application/json", - "ts": "2024-08-30 14:14:57" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://argovis-api.colorado.edu/argo?platform=1900386&data=pressure,temperature,salinity", "ext": "js", "sha": "d4d195e9e6adf1d81a188a454638606d515fb17540993ff403b805abbfecf9a2", "type": "application/json", - "ts": "2024-08-30 14:14:57" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://argovis-api.colorado.edu/ping", "ext": "json", "sha": "f0082673deeae58d99e57f1fd92f505fc966466aff4d22c6046d57ead6a52bfa", "type": "application/json", - "ts": "2024-08-30 14:14:57" + "ts": "2024-09-20 09:14:47" } ] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_docs.json b/cli/citests_httpdata_manager_docs.json index 20c71715..a474d6b3 100644 --- a/cli/citests_httpdata_manager_docs.json +++ b/cli/citests_httpdata_manager_docs.json @@ -4,160 +4,160 @@ "ext": "html", "sha": "ba3563da17c45d0cf54c76c6f064cd5f9349f1a27932706df6adb0faeec63777", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/33951", "ext": "html", "sha": "153b4d3ac7f427e3bbeea9ec3b0a93c487fda47873f47ec33452fb61ff1ab605", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/46542", "ext": "html", "sha": "a47129e3a128f0899792c7f4055c73c75d4f58a921d5f9479220140547c85d01", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/40879", "ext": "html", "sha": "7e774d89fb0dd9623910539237a7e48dabb128fb47311e188e6bc559530fb4a4", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/35385", "ext": "html", "sha": "86c30bc8cd0e4699271da5f8145e1ad2a4f92e5784e80c0e83ced4ff493f8ec1", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/84370", "ext": "html", "sha": "81a689ce24c6900d604fbd1cf829be8d590b779896b398aa78fb83fe1d040026", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/62466", "ext": "html", "sha": "bf5c13c46e58262a417766cb7ee83528f5e245de853d4d210f0923cdfc8d88bb", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/41151", "ext": "html", "sha": "dce5c0b88dda8a2d374c20dd50fc9a6c768a56731776c1d5c60dde49707b324b", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/29824", "ext": "html", "sha": "980302fa35808db34ea92fbb30f5b43df4915037e48b8f6d6e8872dfdc17c340", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/78994", "ext": "html", "sha": "ff86679c33b92e1e89b4ba5db9006def8d8e89e4c25f9616ecb1e7a2229b1aa8", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/39795", "ext": "html", "sha": "cafd6dd329c2d1adadf5dc752f4c98ef4e1a2f463d0f3ac246820160263680e9", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/39459", "ext": "html", "sha": "2e1d8835d1da66e42d095c30534b23959d1b22fda466b397f285025f138ec229", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/39468", "ext": "html", "sha": "75e19ebe22535a74e91dcc5855a078084f74b12e6b214b4464b9ec2389381f7f", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/47998", "ext": "html", "sha": "577127670305b7a06ab3ea77e5ac5e2aa693fe288e4eb711c181347f94725a7d", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/54541", "ext": "html", "sha": "6a313102a5bd801690824452bd4fdee05e87e890c670214355cfc78932ff82b7", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/46121", "ext": "html", "sha": "9f6f876163819e670f5287f58a01be659f8b6a3a48048b9fb3c745757c881666", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/51541", "ext": "html", "sha": "13ede145ffeb1deaa7b445a4c094da587e03eb6bb9aac7bb95f3a567a56ef45c", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/57195", "ext": "html", "sha": "442c404a3a8c39fdb023df1022c3ea3d44aa19ad4f5bf26563f9d55a6ab9fe53", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/46120", "ext": "html", "sha": "54178ef5aab2a9dcd6cf5e81e30b09cd7f5d45a492e65bf516a0a4102408dd1a", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/52154", "ext": "html", "sha": "210ae117281f44939303e772d03b83f3280f86523ddff392e89ae66d5e8f3fd5", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/55637", "ext": "html", "sha": "941d81ad6852945dc830a63af6bbca89806f53c2b1cbf93556c85c42780d9588", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/46202", "ext": "html", "sha": "97351132f7d20857963c0ad559c3c1c0099da3f491e2e37b42fc2f4c41af29d9", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dx.doi.org/10.13155/97828", "ext": "html", "sha": "671de7781d554d612185553c0fd1c787e6fae0ad69d903030a8ea9d51cd6badf", "type": "text/html", - "ts": "2024-08-22 13:02:00" + "ts": "2024-09-20 09:14:47" } ] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_ea_dataselection.json b/cli/citests_httpdata_manager_ea_dataselection.json index c812a848..9e7a39a8 100644 --- a/cli/citests_httpdata_manager_ea_dataselection.json +++ b/cli/citests_httpdata_manager_ea_dataselection.json @@ -4,27 +4,27 @@ "ext": "json", "sha": "86fefaa3fd8436f967d9d226765404d7e2542a72b8446ba802211eb9f75def7f", "type": "application/json", - "ts": "2024-09-02 06:34:44" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dataselection.euro-argo.eu/api/trajectory/5904797", "ext": "json", "sha": "28aa9ecc6cc62f53304aabc5d4514cd7607d986887509485bd0ffe2806f3d1a2", "type": "application/json", - "ts": "2024-09-02 06:34:44" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dataselection.euro-argo.eu/api/trajectory/6902755", "ext": "json", "sha": "237ec57996b0c89599212910ad056d4977d2391cfd4f6739b5b864450448d0f7", "type": "application/json", - "ts": "2024-09-02 06:34:44" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://dataselection.euro-argo.eu/api/trajectory/2901623", "ext": "json", "sha": "d410e6e4cd9b1997eeca96d6c9d63101af097403e0b2d3ed363bc9779af7bf58", "type": "application/json", - "ts": "2024-09-02 06:34:44" + "ts": "2024-09-20 09:14:47" } ] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_erddap.json b/cli/citests_httpdata_manager_erddap.json index 77c8c9a4..41d6cd03 100644 --- a/cli/citests_httpdata_manager_erddap.json +++ b/cli/citests_httpdata_manager_erddap.json @@ -4,174 +4,174 @@ "ext": "nc", "sha": "afb61c9729792e19f94765e3d09751fbfd4d4610c203a24500cb875a22c30daf", "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1901393\"&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "aa8fc09df3789fb0da0f8f25e948d7914c74dd4d299d7213696962657214ac34", "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1901393|6902746\"&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "4d585d52cc490b76766865ae932294e9d345a6aef95c9d22a0bc7cc01e9ff21a", "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1901393|6902746\"&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "005e01b45d4b791bbb790b1927363294b55f6f89d69cf552d146a0698ff2f7de", "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"6902746\"&cycle_number=~\"34\"&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "3d6aa407feabc6128d30f54845ff1d78012f0e05a5e791bcf7ed21dedd551a2c", "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"6902746\"&cycle_number=~\"34\"&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "140d2bc8fe636c5238ea5e8db31d06d2222cd6a15deeb86498ae5719f2ac2567", "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"6902746\"&cycle_number=~\"1|12\"&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "08485a4e4c250f56b7231214a30c605fd7585c180f4ddefaa3bdc6e74e1dcbd0", "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"6902746\"&cycle_number=~\"1|12\"&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "d5d3e0841b891ebcbb60efc1035af2b1ea9885939bb283d7cea7187eef55ec46", "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "f195becc1569ed69a6961f6264e34ddf3f66186c3b67e3075447856d7dab84be", "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "2bc7b34edc2e090b601d17702fc0a18b70b34b00d3ceaec40873f78807da1d1e", "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&time>=1072915200.0&time<=1075507200.0&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "dc93a053d09e69fc65ff00c25eef60af3a8d83925c0882d25a0c69a1fb6710b1", "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&time>=1072915200.0&time<=1075507200.0&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "4ddbd2087dc56c95fbfc49ac218e5548bd17f5377e94cc7ebe2053020cb8b237", "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.nc?latitude,longitude,time,platform_number,cycle_number,pres,temp,psal,ptmp&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "4ea9af1eb501d466018a02be11a2ff829abb53c747293570da404d33f9ea3300", "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.ncHeader?latitude,longitude,time,platform_number,cycle_number,pres,temp,psal,ptmp&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "42b50394f9d7ae7d8677901958611a17e7c73870504361aa6b4dab7b90e4ce5d", "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.nc?latitude,longitude,time,platform_number,cycle_number,pres,temp,psal,ptmp&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&time>=1514764800.0&time<=1546300800.0&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "9a77aea46e592d8889aa3e07fc3f5b1ce313bdc96dcfe48cdadd8918dec7c60e", "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.ncHeader?latitude,longitude,time,platform_number,cycle_number,pres,temp,psal,ptmp&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&time>=1514764800.0&time<=1546300800.0&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "564a516cd24e656d25e5c5d201fd7294f5b63b2f38f50d0c81eb61c4bbc88c96", "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1900468|1900117|1900386\"&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "edb8e556cfb3c77526a59535bf58fb277422c4cadc0f967bd6dc7bc796fbbfe5", "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&platform_number=~\"1900468|1900117|1900386\"&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "d532f6c4aaf308644bb0ed56014b581ce2a60106f951d498358b28f9bc4da857", "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "20b613c1e4e8e03229397ae5c28fd2101c6889cf345afae8cd774a5c0f3c6fb3", "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "3d7710fcb9c3dab5ddca509245504a1434dc5d56c4da86cd1ca57e181895e9df", "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&time>=1185926400.0&time<=1188604800.0&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "b54d7bc9ab7e5a33d055c5838cd9af99790b396125744e5be7d68afe64a97295", "type": "application/x-netcdf", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?data_mode,latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,vertical_sampling_scheme,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&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&time>=1185926400.0&time<=1188604800.0&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "5e7aac935136d9bd8817b3d6e757dd399dbe0ef8659698f94bae2e6c6b7f83dc", "type": "text/plain", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats/index.json", "ext": "json", "sha": "f912c39019f215a08583c457d9e71d5fb594429e38c31abec934454d397d5f8e", "type": "application/json", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats-reference/index.json", "ext": "json", "sha": "f4bdba7f58e6710128352ffa25c4656e80198c3c8aa12732ec50031a987e5a1d", "type": "application/json", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" }, { "uri": "https://erddap.ifremer.fr/erddap/info/index.json", "ext": "json", "sha": "3390b51587135ad525d8886aaaac3ed55587b5e4a76004671fc568166beb5670", "type": "application/json", - "ts": "2024-08-22 12:26:41" + "ts": "2024-09-20 09:14:05" } ] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_erddap_bgc.json b/cli/citests_httpdata_manager_erddap_bgc.json index 7ee6bd43..4858f443 100644 --- a/cli/citests_httpdata_manager_erddap_bgc.json +++ b/cli/citests_httpdata_manager_erddap_bgc.json @@ -4,594 +4,594 @@ "ext": "nc", "sha": "13e4baafd53a08bad82395f9f8fe3f16ad8d8a4fed87e3f694da780f5dfd4006", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:32" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "031fe8ac8e497b428558e7780b976d5edfed829e4eab5ecf7377ec8c21b5f8c8", "type": "text/plain", - "ts": "2024-08-23 08:04:32" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "9713039c61a938d82deecc4b23c67728d7a7ddcb8d347fa53b6e37acc26ca2c2", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:32" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "fafcd91bb35dadc3241335d4101efc406c12c6d021e2f9297e1c9419855d8de7", "type": "text/plain", - "ts": "2024-08-23 08:04:32" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "6edb3a5d508d42f3ef9b87350f8fa6d837d08b74931d812e73f161e417bbf158", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:32" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "d476bead34e01db22875f061d669478cedbd49da0321133762fb1b6c6de71d6a", "type": "text/plain", - "ts": "2024-08-23 08:04:32" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"34\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "46e42f93a3bf7484f3f870b84b71a446abceac03d357ee79c1b610e469d2432b", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"34\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "2ea500dbb9b752fd02afb0d600c6c412d52699689c59a985b2a303fa6cbfef3b", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "761a3636cc1eb70a1d5d414963eb98f4da886dcdcb99db21deb87297cbb17538", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "8e702a797499254d68bdfed96a9ded235b980a011ff73259a7d659af2b15c8d7", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:08" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "a1f209c5e58df2f85698e2f09f156c5c50f27d7e0a4a84a1299c2028e8c5e349", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "2c4bddae9401c2abf9fbb856d905b06e72db05b808a3c964f4ccbc182888c8d7", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "9fb1ff9a49bf0e4ad2644b1b4762ee25331072612b782e47b0c24352b8141bbe", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "5b8f0d384e59569823737dd0b88a8f7df3da65f432766857574bddd4e87dfad7", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "fe96eefa07a581dfe52bc7f32ed4dcf9e1dd54dcf7d9702f54285e623395d5dd", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "633f38e48cba2a1b6f22384c78cd662335b4303dd6ef4b49bcfb9b14b274d30e", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"5903248\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "5e6c443ab2559f3297aee10bdb2a8db2c055131fc498367e9fd6f50310cd4f62", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"5903248\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "45c022974dcc6a475b2659026de56e6ddf8158507975b77b4fcf8d63ed00ed83", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "13c7577d5b3baf2559d640c67b3f163377121b4005b80ef78ebcd5cb3ff75a56", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "4079371c713ae21beb2b6141495eb9815bdfd06dc2021c049fd301a7a63a74aa", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "68a4b6445472e2ff3b01f2f71b3ad00bf20b22e0b83f44656014110284282e60", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "45754a9104f96f5ec071d4b93de1f1bb596a469292e31ceb9675b36f07493556", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"34\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "3958d42fb2f0ac5a77a5eb8d63044251f65e9185f1827a7b5467d9feb9a85e7b", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"34\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "cf7e2c8024a8618dad6d86445ff026531741a1261a8f48a987b6b10866dddc7f", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "e83460d15264af94aa1ad3062f0aa7c30223a12f019dfb7d2c27f3ba9f649fa6", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "4381d1587f5d53b090a9a115dd77e69cb83f4a8ea6bdd9e29fc69dd36070dd6e", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "1a3436d8b1777ffc553e84cff2cb882d62d25ae02130ca154667e196855d0450", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "7797fa984200366db82cae6470fde374f6c50df4da1ea67d42461886d762a14c", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "b3ac5fc7ba0df1ecd8f5ceb4c9499176c4f051f38a3262c8e3dc11d81a00396b", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "8c59c1e8d6274cd311886a7be29a11764202573fa264847747a20d543f13740c", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "7fbe7f313489932a78a5f0b3db415a33d8c547298ae6bb0ad08992b0c911ca64", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "838b0f1442b50f56dd5814b62d677eea93985e45026807f8d63e7e8e8bac04e7", "type": "text/plain", - "ts": "2024-08-23 08:04:33" + "ts": "2024-09-20 09:14:09" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "a146614dcc47090acd0f65a8545884d72cb3397fc69f281648922159f7d140a1", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "7a46786fd45d673ecfd0ece9487e232a7d6475010d7eb005653d0000d4a0e35f", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904240\"&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "b681c01a32dbf3e1586c5ad4ede498b4bd9dff99c18f50e0ad6ca83ed1349af4", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904240\"&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "41845d3a93d737f5845ff42678732da5d8dffd8c9fef68a0132ab66f85c579dc", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904241\"&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "aa5109b912e3a22bd7718358de3a9963285246c652f4ae30814872aec5acb82a", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904241\"&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "5234844dd54404a9d6c8a13eed24817fde317dbd386f1b586906fa9b6a613be8", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"34\"&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "87f713a612ba53905b351d623c0ca45d35326b5baab6c9deb0d3c7d0e526b48f", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"34\"&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "ca233b54ee21f0d7db3a08fee2e2e44083b3cba5ad83b3181873efcc918a4fe0", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "8676b9624e9218c139e293fa521d5b1e2eec59d05ecbd136fd3d0a42b87d6006", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "7aee9745b9a478a884788c58ce08e868d8f800f87a28c28fde551922013a9968", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "d5b0bcbc6fabdf2be62028a62f727edfaa0daa737a3eea387cd05fe67c7d2a96", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&doxy!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "3e3f92db448873a6f28b69c1d89d1b128bf44f383d5fbe31411316c478282ba9", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "347252dde63598d6f080f178f0cb55686b25d3147cb4e079835f858b5cfed3e1", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "2760c40d91dba69459083d7dff53c2ba8ecaa360776146baf52b94237f9ccd6c", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "25dc4d665bd2e5d000424f6774f63f425ab662b8f1aff472aa863a48ab508add", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&bbp700!=NaN&cdom!=NaN&chla!=NaN&cp660!=NaN&downwelling_par!=NaN&down_irradiance380!=NaN&down_irradiance412!=NaN&down_irradiance490!=NaN&doxy!=NaN&nitrate!=NaN&ph_in_situ_total!=NaN&pres!=NaN&psal!=NaN&temp!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "aec518b022df8bca055b8bce7898fa145d83f11ea633641fc0bfaadea58b9337", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "a6ad383ef6ba1b0dec7c8b66431261e9438405316abf22eca9918bcfa1152195", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "93fba7dd12ed73901c4675f6b6dc70f3dc59be2a03f072b1a74c487faeefd085", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904240\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "96a6f252aceca48d2bc971a547836d76641013ab67900f4e892f68afb9d5e0f5", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904240\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "799b192429b0b70ad6357def03afb6303bfb1e0e001035994ec21bba3c56e0bf", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:10" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904241\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "6579d5150ccb9b0b35e4976353af5cdc34f4418c69af87e9d99be6a2ff4f65f6", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"6904241\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "d8cfdf9d08b599c63396dd5267f82de08f9d132a6b34a417f2907df2ea967071", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"34\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "6f32d405b2d74be8fea94fac1f52df631845b8062e8fac1e091b8f7c678f2dd4", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"34\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "94c9d00237bca77cc0db810a4fe70ebd5609aa8309891ca731509474f330a572", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "7bf3076f8ab2a1f277fbd0bd0baf8796f658b903298875a16012abd620e4d4f4", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "c1528faa4f0e63441ecf4740b89d28b347598acf4d7d9760c6f33ec53952b0f0", "type": "text/plain", - "ts": "2024-08-23 08:04:34" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "5d2b9fc7129f17b8e93a8dc8523747a434f4ba92996fd041319a7a7dc3dc85a6", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "70d965d409c19926c8f0d6c8279508a17cc8914c424079113b7b2590ef26cbd7", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "08a080aa0bf2db9bf74dc3284afbf9ef9b8701d4dfedad2681bd2f96d2b41c2b", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "d0d11341ac89a50753c3198223de3d18584f7ab6b3bb14b0119bb4f9c016559a", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "nc", "sha": "5944bbc69f14776e0748db79a07eeb769a18e48ed0f1f8cb0336c1d7a520a943", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&doxy!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", "ext": "ncHeader", "sha": "94239c057ab2778a0770a19578a391ece696cc3f4d74ea4f5125f8f436e4aa26", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:11" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "0a42f0cc5b07b6bd02f6f2b257dc755f6c06be5559352bba7b8f231bc565de27", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "da34ffa6f17aa88619bc0fd332a359721de45eeb12bb30199ef82e3275e4bbf1", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "ac03eee631a063e5dbad1a55ec9d7d4758ff91a5a0f94e29255d3384ea4604e8", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "1895345abe65f3c5caacc66beda5d25205aaebdf0808d2b5916a8dc44fd8780e", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "d9ab8386c768a0fd57782fa57ff58852dec3ee418bb9f837ee29b995bbcc7cec", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "abd074b71be68aa219f8776bbee3ee98768583e3950a140b0c504a8948aaa2e5", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "44b40e93c90a6f895ad18418f8150b43e504812c8fc5f4db7d6146225709a786", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "296c3b60bc8ba178ad98f1a9dfd3393f9f804cab19f1032fd759bf4f4758d5ce", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "3a34c7adc3d711dd8b0f8aad7c4674124011f2119c6f4e78d71df1c34f7f6606", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,bbp700,bbp700_qc,bbp700_adjusted,bbp700_adjusted_qc,bbp700_adjusted_error,cdom,cdom_qc,cdom_adjusted,cdom_adjusted_qc,cdom_adjusted_error,chla,chla_qc,chla_adjusted,chla_adjusted_qc,chla_adjusted_error,cp660,cp660_qc,cp660_adjusted,cp660_adjusted_qc,cp660_adjusted_error,downwelling_par,downwelling_par_qc,downwelling_par_adjusted,downwelling_par_adjusted_qc,downwelling_par_adjusted_error,down_irradiance380,down_irradiance380_qc,down_irradiance380_adjusted,down_irradiance380_adjusted_qc,down_irradiance380_adjusted_error,down_irradiance412,down_irradiance412_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_qc,down_irradiance412_adjusted_error,down_irradiance490,down_irradiance490_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_qc,down_irradiance490_adjusted_error,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,nitrate,nitrate_qc,nitrate_adjusted,nitrate_adjusted_qc,nitrate_adjusted_error,ph_in_situ_total,ph_in_situ_total_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_qc,ph_in_situ_total_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error&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": "23de8192682a13edbf2bc2007658e8059afc3fef10438b87bdd415c7e0a29e4d", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "df3e127655dd8f213f57386625eccc9a229975d7adb3775c28508b94e7464274", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "cde23439a68dfdb71f996cdf139e7d6f205eda097d7863ba120bfa63237ba2fb", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "ba9d13db2937ab3eb76c0807fff5b96ab7942fced59ab562a8eaafac6e4fd7f4", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "ceaff654917be1ae672214d10c7cfebf073ac78778a214c10cbb9dd0e3dda603", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "ed00be3959267531a7164d414e1ae10e89c97ed43c1efc7bd8a8d7ded521b7f1", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "fc4cf5bfaaac049dc32495c3562f5554a47bae7d181080685d116f099902dead", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "16ff9fb5ff16da1346a2240c6434a1b56e1242541b1b9bbe7413a36aa67a08a4", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "3e96e7c1df4044a0b2f0425301e780e3d7db9aaee244868badff3115d5d71b83", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "c5d25bfb176e33a1ccff00398d309f05e33b793a0a5a8d5c57096b55b5e1290a", "type": "application/x-netcdf", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?latitude,longitude,position_qc,time,time_qc,direction,platform_number,cycle_number,config_mission_number,doxy,doxy_qc,doxy_adjusted,doxy_adjusted_qc,doxy_adjusted_error,pres,pres_qc,pres_adjusted,pres_adjusted_qc,pres_adjusted_error,temp,temp_qc,temp_adjusted,temp_adjusted_qc,temp_adjusted_error,psal,psal_qc,psal_adjusted,psal_adjusted_qc,psal_adjusted_error&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": "4b9e6c396a112619839a055109cde9c2f16949415d76d196687c2262856b2492", "type": "text/plain", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" }, { "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats-synthetic-BGC/index.json", "ext": "json", "sha": "39355008875080930830ce994ccec162ba924d3570b3e703acb32bfb2fe0f009", "type": "application/json", - "ts": "2024-08-23 08:04:35" + "ts": "2024-09-20 09:14:12" } ] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_github.json b/cli/citests_httpdata_manager_github.json index 260dfafa..9ade0e9d 100644 --- a/cli/citests_httpdata_manager_github.json +++ b/cli/citests_httpdata_manager_github.json @@ -4,27 +4,27 @@ "ext": "nc", "sha": "dff6f7de714ad05a4d6c09ef07377c6263bfe54fa99f8d1dc0b5313e3b909316", "type": "application/x-netcdf", - "ts": "2024-08-22 13:03:32" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://github.com/euroargodev/argopy-data/raw/master/ftp/ar_index_global_prof.txt", "ext": "txt", "sha": "332692d1bf34e66520aac05841ef45a1fdb1eb0bacb96dcecaf1f963d9c4e34f", "type": "text/plain", - "ts": "2024-08-22 13:03:32" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:03:32" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:03:32" + "ts": "2024-09-20 09:14:47" } ] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_ifremer_api.json b/cli/citests_httpdata_manager_ifremer_api.json index 67bfa013..3e5edc45 100644 --- a/cli/citests_httpdata_manager_ifremer_api.json +++ b/cli/citests_httpdata_manager_ifremer_api.json @@ -4,13 +4,13 @@ "ext": "json", "sha": "5cf80c9330a7befe09246770236bfd5f5147a2a0ccfd2e29ebdfba2609a197ad", "type": "application/json", - "ts": "2024-08-22 13:03:41" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://api.ifremer.fr/argopy/data/ARGO-BGC.json", "ext": "json", "sha": "3c0d46e0e115812606b9796f2d51a57b2ef226bd4c046afb67d2dc617c0ee6dd", "type": "application/json", - "ts": "2024-08-22 13:03:41" + "ts": "2024-09-20 09:14:47" } ] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_ifremer_gdac.json b/cli/citests_httpdata_manager_ifremer_gdac.json index 19145a25..a7cd082d 100644 --- a/cli/citests_httpdata_manager_ifremer_gdac.json +++ b/cli/citests_httpdata_manager_ifremer_gdac.json @@ -4,286 +4,279 @@ "ext": "nc", "sha": "5baab8b80a58383f9f2a36c5f51282d3d5b673e9f2e3904c3dbb9ff600ceb230", "type": "application/x-netcdf", - "ts": "2024-08-22 12:59:52" + "ts": "2024-09-20 09:14:20" }, { "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_090.nc", "ext": "nc", "sha": "61826c0b5eaa64c194edf932dad4a3588b4b557089ce8b045e3a327e22111227", "type": "application/x-netcdf", - "ts": "2024-08-22 12:59:57" + "ts": "2024-09-20 09:14:27" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901458/1901458_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/3900706/3900706_prof.nc", "ext": "nc", - "sha": "01b049d8bfb0a4e104e59f3e084e763c4a0e78606476144ec3657abe695a2f5e", + "sha": "87b2352dbddbca447627615252066c642bb2f5b1d16c59a64e226eeffe65914d", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/3900296/3900296_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902072/1902072_prof.nc", "ext": "nc", - "sha": "2c26380148e45b76e7f5d8867e84405be9e5f4f1a5211e89abb36b7e8ce7e859", + "sha": "62f05073f9219dce4491a0d29e730c2f71afbf5f17b83cd06dfaa5b0da08ece6", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901462/1901462_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1900561/1900561_prof.nc", "ext": "nc", - "sha": "2ae6fc97206e120dde68592ec863c874fc7cff132749bbbdf6c48865c60d24d5", + "sha": "465e4dda08985393838c626c8e77396b9fe39a06b993467dd2d442a24c472d7b", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901467/1901467_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/3900707/3900707_prof.nc", "ext": "nc", - "sha": "2dc90517bda298b776b21e5f2510769216c153e4fd1b6b7ade4c9a1803aec902", + "sha": "1d8ba196cf4c82844027ad17622e31cd214cecb1881015341f9c90103bbb2a2a", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901692/1901692_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901589/1901589_prof.nc", "ext": "nc", - "sha": "125fbde9f271588262a6abce052f563406e76fabc97154c4b4592d256c69b200", + "sha": "34bdcd0292644dec5925b7d89a311a9021f11a0e35ac5d0889aae181be9a76b6", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901820/1901820_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902436/1902436_prof.nc", "ext": "nc", - "sha": "3c16609cd4c11dda82abcb41f3a501ddc15c502e80507c41417fa61daa712b51", + "sha": "60066a9c43e4103277e70c81607c6a78e3d3db53dd7b65c40f519ae457218302", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1902072/1902072_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/39008/39008_prof.nc", "ext": "nc", - "sha": "62f05073f9219dce4491a0d29e730c2f71afbf5f17b83cd06dfaa5b0da08ece6", + "sha": "98bab99907e1e8f80a4158a0b171b0187661247ba1760d7b66c6a7e5392bf225", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/3900707/3900707_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902401/1902401_prof.nc", "ext": "nc", - "sha": "1d8ba196cf4c82844027ad17622e31cd214cecb1881015341f9c90103bbb2a2a", + "sha": "40fd4997660cf5b89a50139c7b931810371acb774849aa4f4c170669a1a3f8a5", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/3900564/3900564_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1900500/1900500_prof.nc", "ext": "nc", - "sha": "148da521a45d125dd127860a552fd231b10fe1fbf85c0b491c8d732a6ade0191", + "sha": "8953e390e5d3c15c828b78237fcc2e248e2a86fe03b6282a7e848325d3ee3cb6", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1902400/1902400_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902414/1902414_prof.nc", "ext": "nc", - "sha": "e60de23c325823b63bad40d6bd763fd3f3c7408a08962f76b08f49bdba816448", + "sha": "37b4fe616c2f98f48939f6dd7e69b4d52ebb965d9b5fddd9091c0898b4acd73a", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/13859/13859_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901826/1901826_prof.nc", "ext": "nc", - "sha": "7424d25381dab63d8bf90539fcd38dbd8e2618ddb25552c1b47be04aee3eb47f", + "sha": "1e8980bc79037a776ceb21fde05c9ac45420e41013a1851d308666552e8ce8ee", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/3901242/3901242_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901820/1901820_prof.nc", "ext": "nc", - "sha": "44cd4faa933a86d8833096fc987432a596715c33db7b44cdd140d9b8b5308295", + "sha": "3c16609cd4c11dda82abcb41f3a501ddc15c502e80507c41417fa61daa712b51", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901450/1901450_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901462/1901462_prof.nc", "ext": "nc", - "sha": "661a469dfbbd13a6c296ab4bf13d142f073cb2699998ed8575f4f7b6e796c996", + "sha": "2ae6fc97206e120dde68592ec863c874fc7cff132749bbbdf6c48865c60d24d5", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/3900706/3900706_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/13859/13859_prof.nc", "ext": "nc", - "sha": "87b2352dbddbca447627615252066c642bb2f5b1d16c59a64e226eeffe65914d", + "sha": "7424d25381dab63d8bf90539fcd38dbd8e2618ddb25552c1b47be04aee3eb47f", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901589/1901589_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1900783/1900783_prof.nc", "ext": "nc", - "sha": "34bdcd0292644dec5925b7d89a311a9021f11a0e35ac5d0889aae181be9a76b6", + "sha": "20cbe5a0eed5d67a198d8f87770d554409deabcb79acfcc63c900443812c379a", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901826/1901826_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/3901242/3901242_prof.nc", "ext": "nc", - "sha": "1e8980bc79037a776ceb21fde05c9ac45420e41013a1851d308666552e8ce8ee", + "sha": "44cd4faa933a86d8833096fc987432a596715c33db7b44cdd140d9b8b5308295", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1902401/1902401_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901450/1901450_prof.nc", "ext": "nc", - "sha": "40fd4997660cf5b89a50139c7b931810371acb774849aa4f4c170669a1a3f8a5", + "sha": "661a469dfbbd13a6c296ab4bf13d142f073cb2699998ed8575f4f7b6e796c996", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1902436/1902436_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901467/1901467_prof.nc", "ext": "nc", - "sha": "60066a9c43e4103277e70c81607c6a78e3d3db53dd7b65c40f519ae457218302", + "sha": "2dc90517bda298b776b21e5f2510769216c153e4fd1b6b7ade4c9a1803aec902", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1900783/1900783_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/3900564/3900564_prof.nc", "ext": "nc", - "sha": "20cbe5a0eed5d67a198d8f87770d554409deabcb79acfcc63c900443812c379a", + "sha": "148da521a45d125dd127860a552fd231b10fe1fbf85c0b491c8d732a6ade0191", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901685/1901685_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1900818/1900818_prof.nc", "ext": "nc", - "sha": "705387652d52a694d070c7c18e1616530e2544f7539d6d5e210332d86cfe23f9", + "sha": "769ba7376a0f14aa14f310bf323ecea1885da9113b36a1a8bc3a5508c0eb5a00", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901806/1901806_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901449/1901449_prof.nc", "ext": "nc", - "sha": "700ae50b274601f3a221689ea7b3b76d46e5035832ecd6d1fdf341edfe27a597", + "sha": "99b96aa829f6683cb035a11eb1628e5d03f9168ef52e964ed8a3dccd67390054", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1900561/1900561_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901458/1901458_prof.nc", "ext": "nc", - "sha": "465e4dda08985393838c626c8e77396b9fe39a06b993467dd2d442a24c472d7b", + "sha": "01b049d8bfb0a4e104e59f3e084e763c4a0e78606476144ec3657abe695a2f5e", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1900818/1900818_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902415/1902415_prof.nc", "ext": "nc", - "sha": "769ba7376a0f14aa14f310bf323ecea1885da9113b36a1a8bc3a5508c0eb5a00", + "sha": "28a3d6682b41b12fa25eac5ca11b15de5abcb970ee991efe14d51712dd90405f", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/13858/13858_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901692/1901692_prof.nc", "ext": "nc", - "sha": "729d60a7d1b546ab122bcd8f2f88550652bd0a92de69c3b528fcd45b2b2707e6", + "sha": "125fbde9f271588262a6abce052f563406e76fabc97154c4b4592d256c69b200", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1902415/1902415_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902400/1902400_prof.nc", "ext": "nc", - "sha": "28a3d6682b41b12fa25eac5ca11b15de5abcb970ee991efe14d51712dd90405f", + "sha": "e60de23c325823b63bad40d6bd763fd3f3c7408a08962f76b08f49bdba816448", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/39008/39008_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901806/1901806_prof.nc", "ext": "nc", - "sha": "98bab99907e1e8f80a4158a0b171b0187661247ba1760d7b66c6a7e5392bf225", + "sha": "700ae50b274601f3a221689ea7b3b76d46e5035832ecd6d1fdf341edfe27a597", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1900500/1900500_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901709/1901709_prof.nc", "ext": "nc", - "sha": "8953e390e5d3c15c828b78237fcc2e248e2a86fe03b6282a7e848325d3ee3cb6", + "sha": "9361751935dfa1ca2d0bd61eec17c517b9d7f47cc01e7c34dcc55b67addeae19", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901449/1901449_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/3900296/3900296_prof.nc", "ext": "nc", - "sha": "99b96aa829f6683cb035a11eb1628e5d03f9168ef52e964ed8a3dccd67390054", + "sha": "2c26380148e45b76e7f5d8867e84405be9e5f4f1a5211e89abb36b7e8ce7e859", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/39015/39015_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/13858/13858_prof.nc", "ext": "nc", - "sha": "b8b77811a58f9104387ccdf3c5b15c0a423b74f0e3a4004bb172e6420fbe2cdd", + "sha": "729d60a7d1b546ab122bcd8f2f88550652bd0a92de69c3b528fcd45b2b2707e6", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1901709/1901709_prof.nc", + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901685/1901685_prof.nc", "ext": "nc", - "sha": "9361751935dfa1ca2d0bd61eec17c517b9d7f47cc01e7c34dcc55b67addeae19", + "sha": "705387652d52a694d070c7c18e1616530e2544f7539d6d5e210332d86cfe23f9", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { "uri": "https://data-argo.ifremer.fr/dac/aoml/1902070/1902070_prof.nc", "ext": "nc", "sha": "d091612ad7c1f8187ba25eefc9f68a303c39646626c425c891362909cf47bcc8", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" - }, - { - "uri": "https://data-argo.ifremer.fr/dac/aoml/1902414/1902414_prof.nc", - "ext": "nc", - "sha": "37b4fe616c2f98f48939f6dd7e69b4d52ebb965d9b5fddd9091c0898b4acd73a", - "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:01" + "ts": "2024-09-20 09:14:35" }, { "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_001.nc", "ext": "nc", "sha": "4ff9d2d81bf838cd912985cc9e5d4763f2b6860b4334fa352237e21517d93611", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:06" + "ts": "2024-09-20 09:14:40" }, { "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_002.nc", "ext": "nc", "sha": "19dae4d3c5269c14618df62f1150eeda1536347047db31a8c19ca01c5a1b408a", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:06" + "ts": "2024-09-20 09:14:40" }, { "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_003.nc", "ext": "nc", "sha": "dd5a8ab1c038f6c6093360f16b874617f2da4fb6beb22ff4a68449956a2c9fba", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:06" + "ts": "2024-09-20 09:14:40" }, { "uri": "https://data-argo.ifremer.fr/dac/aoml/13858/profiles/R13858_004.nc", "ext": "nc", "sha": "5974bc7ae4645de10b254671f22517dea9b886a8d07daa633740d4be56654848", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:06" + "ts": "2024-09-20 09:14:40" }, { "uri": "https://data-argo.ifremer.fr/dac/aoml/13859/profiles/R13859_001.nc", "ext": "nc", "sha": "4d8d211924c073f7ce74fd9ffc6319698224643bb5b55e6aed016534033bf122", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:06" + "ts": "2024-09-20 09:14:40" }, { "uri": "https://data-argo.ifremer.fr/ar_index_global_prof.txt.gz", "ext": "gz", "sha": "05c1dd2e89c619af221fa155a81c3cd4a262131187f8eb3a8eda266ae2706d53", "type": "application/x-gzip", - "ts": "2024-08-22 13:00:06" + "ts": "2024-09-20 09:14:40" }, { "uri": "https://data-argo.ifremer.fr/dac", "ext": "html", "sha": "c054d15eec83bae19b8604a691a5066af9b97a4ce90d5b72676f732c5d8b636d", "type": "text/html", - "ts": "2024-08-22 13:00:06" + "ts": "2024-09-20 09:14:40" } ] \ 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 index 5b312f04..7fbe9775 100644 --- a/cli/citests_httpdata_manager_ifremer_gdac_bgc.json +++ b/cli/citests_httpdata_manager_ifremer_gdac_bgc.json @@ -4,41 +4,41 @@ "ext": "nc", "sha": "edb7631698039a5ff0e389d6791b07800dc004058e8aa91cf6d38bf1769f2b83", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:21" + "ts": "2024-09-20 09:14:42" }, { "uri": "https://data-argo.ifremer.fr/dac/coriolis/3902131/3902131_Sprof.nc", "ext": "nc", "sha": "9ac344b346e765c2fd099bdc175e2473b69457657f13e0c145883d624c42125b", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:22" + "ts": "2024-09-20 09:14:43" }, { "uri": "https://data-argo.ifremer.fr/dac/coriolis/6903247/6903247_Sprof.nc", "ext": "nc", "sha": "5eaf037dd59f0db0e55a3cf7371f4e2550d73dc6a1df732d8d489fc8eb73a485", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:22" + "ts": "2024-09-20 09:14:45" }, { "uri": "https://data-argo.ifremer.fr/dac/coriolis/5904989/profiles/SD5904989_012.nc", "ext": "nc", "sha": "41d59c8d3eb1cea1c97953a93242fc58d94e52a0c5e4d08f0e6b4ef480b5d825", "type": "application/x-netcdf", - "ts": "2024-08-22 13:00:23" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://data-argo.ifremer.fr/argo_bio-profile_index.txt.gz", "ext": "gz", "sha": "109e79b4798289619a901d65865b957fe8064f390d06d4e7ee9eb40657bab444", "type": "application/x-gzip", - "ts": "2024-08-22 13:00:23" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://data-argo.ifremer.fr/argo_synthetic-profile_index.txt.gz", "ext": "gz", "sha": "608114c1d0fad1409ff406acd5fc04b86e071e5d2e76da15f55d9b0b635c86ec", "type": "application/x-gzip", - "ts": "2024-08-22 13:00:23" + "ts": "2024-09-20 09:14:47" } ] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_nvs.json b/cli/citests_httpdata_manager_nvs.json index d6a64667..227b4677 100644 --- a/cli/citests_httpdata_manager_nvs.json +++ b/cli/citests_httpdata_manager_nvs.json @@ -4,244 +4,244 @@ "ext": "json", "sha": "a710bd6c5eff99fce61c4e165dea53857a278e472febd783e210c8b7bdb25eda", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/RR2/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "6d57f2755018695c32823b761ba552329c9fc903dcfb84232691b2b4d92784b3", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/RD2/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "ceb40cf78b87922ec6b3fe0d589bf8f1cde1d9f3e8b5eee8b802897d41cb996c", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/RP2/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "c16f43521f4e1dca7b0080fb519623f0549472d435cb9d51d47ae566bc9fdfe6", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R03/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "ebdc6ce705160d0e429a599a788433f399b6eeea27d07c61a3e1c6baa949d7ec", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R04/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "976c1cec8bdf83a123624964d2f74cd5af98dd54d654b1078f8eebe51c57cc2d", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R05/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "5e1038afcd7fa32054cfc96c8dc0f3a6dae11b86fcad47795dfa30253652c16f", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R06/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "5f3d1109028808eed08f60733a6f58ab8ec8613345234a67c23eef6341817076", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R07/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "b637c6ec1bebc25856000206bfc22c6afb091ae388d311989ec839c8127bf462", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R08/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "3b3f761904b50b1ec263c317ce97e1d7c9a274afaba1174ed236238c2da101ff", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R09/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "7da84086dd9aaeab787f121d57cd8de7ddc1d15a31de30a89215f9570c70d859", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R10/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "aec7dd03c6bfd5550099f8ccf0f433e0d12d557e274ed114054f70585d33ba94", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R11/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "bb6577ae0ef9548983948a19637a8ffdf7a8f251c3a9f5a661a3ba414705644f", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R12/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "c78fa91988e96ad5e0d54e273c8d3bc63e79dfcdafbcdf1bc5e4edf8e7105513", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R13/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "5a5ba4173ec3e86eb130b8f7d02a17f4d1ad65d959186d6e308ef6f824e936e1", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R15/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "4c78a777b4e4af13aef1f9139ceb5fddad753bfcd7246425d6448e5262655bd2", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/RMC/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "f53d3f618df452ec32e1b3c148275328b49863b2e4cc3fc793206976aa934ec7", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/RTV/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "0819f83da75f4015ffab5293e03ab30799fee9dbc0c26d1feceb43f72e18bfea", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R16/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "49fb14861dcc61e983b008996f601ea8b4314e46653e2af2381a9c289f551221", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R18/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "44a8212688a625768443e7cd547779265f303b74783517bb3680abf2629db8de", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R19/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "208f7853196d1056f243bc19513a3eb290aa54d931fff43c397d97edfc9051a7", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R20/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "235bd3ec4783b14ead8e0b4dc7a32b66e323eb230d6afc8ab7ac222adce34ef6", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R21/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "0e924d764d60dc3ecad8a8bbbd0ca30c57d9a83c8d6027fd7f9081d35d05a6ba", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R22/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "f5431ce20497c13c4ae0cd5d8fdf234cdcea3919b29cabed391e51a943bcd4c1", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R23/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "32d1c5feaaf75f908ea8573410a390871d6a6e44770cfb84141edb49a133f118", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R24/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "b455fd6e5024dfba03c5674537d6f94fc7ca99d16603ee2be54e7fcd332c3f9f", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R25/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "36e6314a009ae3674ac0883ffda1ab4a041df6cf10474c5084a6c1826c64e30a", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R26/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "1555ff843864b325ce6547cc4608ca86db5770ca2955d99c48da940563e932e2", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R27/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "27d7b1ef7aaa76798f7f8eedc7fec0eb510c808949d926dc2ffa754fe958b870", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R28/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "568034bdb70ee1e12cccbb6616784c8c463e80c14ff6301f7fc0b34945f5c819", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R29/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "a6be3006f99d62a1b27578991bbf38c842b639b096cfff5f4f84bd430ab5549a", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R30/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "bc042c069ff58f65702ded887bb8e9d780322e4bc5fa883ca2b6cb64fe9c88d4", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R40/current/?_profile=nvs&_mediatype=application/ld+json", "ext": "json", "sha": "683edb12dc06650e5d8271ed444af120bff3311b9bb7c0ad60035dc07af150c3", "type": "application/json", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://vocab.nerc.ac.uk/collection/R03/current/?_profile=nvs&_mediatype=text/turtle", "ext": "txt", "sha": "f694b62ce2d9c9a9ed8c754e6d922be225d2c5adcac4561fb6d5e022a65d1d04", "type": "text/plain", - "ts": "2024-08-22 13:02:13" + "ts": "2024-09-20 09:14:47" } ] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_oops.json b/cli/citests_httpdata_manager_oops.json index 84fc1f5f..fc46bd90 100644 --- a/cli/citests_httpdata_manager_oops.json +++ b/cli/citests_httpdata_manager_oops.json @@ -4,90 +4,90 @@ "ext": "json", "sha": "2dd1ce221e25128b947dacb8ea904de17ce1b12384f8aef909396aa8ae4c5957", "type": "application/json", - "ts": "2024-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "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-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" }, { "uri": "https://www.ocean-ops.org/api/1/oceanops-api.yaml", "ext": "yaml", "sha": "4e2f9e17a10cdf4b1e9cb06c33e9927948fb229c3f10e63b46a6eef51910970b", "type": "text/yaml", - "ts": "2024-08-22 13:01:48" + "ts": "2024-09-20 09:14:47" } ] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_topo.json b/cli/citests_httpdata_manager_topo.json index 1b4de33e..5e5a3b2e 100644 --- a/cli/citests_httpdata_manager_topo.json +++ b/cli/citests_httpdata_manager_topo.json @@ -4,6 +4,6 @@ "ext": "nc", "sha": "1d16184686cce8f1b47b0170491f9ce23c3f58fa654beee9aece9158ed2f7d68", "type": "application/x-netcdf", - "ts": "2024-08-22 13:01:33" + "ts": "2024-09-20 09:14:47" } ] \ No newline at end of file diff --git a/cli/create_json_assets b/cli/create_json_assets new file mode 100644 index 00000000..dc9ef0f8 --- /dev/null +++ b/cli/create_json_assets @@ -0,0 +1,616 @@ +#!/usr/bin/env python +# coding: utf-8 + +# # Create json data files for the static/assets folder + +# In[1]: + + +import json +import pandas as pd +import numpy as np + +import os +import sys +sys.path.append(os.path.join(os.path.dirname(__file__), "..")) + +import argopy +from argopy import ArgoNVSReferenceTables +from argopy.stores import filestore + + +output_folder = "../argopy/static/assets/" + + +# # data_types.json +# +# For all possible Argo variables, give the expected data type +# + +# ## str + +# In[2]: + + +list_str = [ + "PLATFORM_NUMBER", + "DATA_MODE", + "DIRECTION", + "DATA_CENTRE", + "DATA_TYPE", + "FORMAT_VERSION", + "HANDBOOK_VERSION", + "PROJECT_NAME", + "PI_NAME", + "STATION_PARAMETERS", + "DATA_CENTER", + "DC_REFERENCE", + "DATA_STATE_INDICATOR", + "PLATFORM_TYPE", + "FIRMWARE_VERSION", + "POSITIONING_SYSTEM", + "PARAMETER", + "SCIENTIFIC_CALIB_EQUATION", + "SCIENTIFIC_CALIB_COEFFICIENT", + "SCIENTIFIC_CALIB_COMMENT", + "HISTORY_INSTITUTION", + "HISTORY_STEP", + "HISTORY_SOFTWARE", + "HISTORY_SOFTWARE_RELEASE", + "HISTORY_REFERENCE", + "HISTORY_QCTEST", + "HISTORY_ACTION", + "HISTORY_PARAMETER", + "VERTICAL_SAMPLING_SCHEME", + "FLOAT_SERIAL_NO", + "PARAMETER_DATA_MODE", + + # Trajectory file variables: + 'TRAJECTORY_PARAMETERS', 'POSITION_ACCURACY', 'GROUNDED', 'SATELLITE_NAME', 'HISTORY_INDEX_DIMENSION', + + # Technical file variables: + 'TECHNICAL_PARAMETER_NAME', 'TECHNICAL_PARAMETER_VALUE', 'PTT', + + # Metadata file variables: + 'END_MISSION_STATUS', + 'TRANS_SYSTEM', + 'TRANS_SYSTEM_ID', + 'TRANS_FREQUENCY', + 'PLATFORM_FAMILY', + 'PLATFORM_MAKER', + 'MANUAL_VERSION', + 'STANDARD_FORMAT_ID', + 'DAC_FORMAT_ID', + 'ANOMALY', + 'BATTERY_TYPE', + 'BATTERY_PACKS', + 'CONTROLLER_BOARD_TYPE_PRIMARY', + 'CONTROLLER_BOARD_TYPE_SECONDARY', + 'CONTROLLER_BOARD_SERIAL_NO_PRIMARY', + 'CONTROLLER_BOARD_SERIAL_NO_SECONDARY', + 'SPECIAL_FEATURES', + 'FLOAT_OWNER', + 'OPERATING_INSTITUTION', + 'CUSTOMISATION', + 'DEPLOYMENT_PLATFORM', + 'DEPLOYMENT_CRUISE_ID', + 'DEPLOYMENT_REFERENCE_STATION_ID', + 'LAUNCH_CONFIG_PARAMETER_NAME', + 'CONFIG_PARAMETER_NAME', + 'CONFIG_MISSION_COMMENT', + 'SENSOR', + 'SENSOR_MAKER', + 'SENSOR_MODEL', + 'SENSOR_SERIAL_NO', + 'PARAMETER_SENSOR', + 'PARAMETER_UNITS', + 'PARAMETER_ACCURACY', + 'PARAMETER_RESOLUTION', + 'PREDEPLOYMENT_CALIB_EQUATION', + 'PREDEPLOYMENT_CALIB_COEFFICIENT', + 'PREDEPLOYMENT_CALIB_COMMENT', +] +[list_str.append("PROFILE_{}_QC".format(v)) for v in list(ArgoNVSReferenceTables().tbl(3)["altLabel"])]; +[list_str.append("{}_DATA_MODE".format(v)) for v in list(ArgoNVSReferenceTables().tbl(3)["altLabel"])]; + + +# ## int + +# In[3]: + + +list_int = [ + "PLATFORM_NUMBER", + "WMO_INST_TYPE", + "CYCLE_NUMBER", + "CONFIG_MISSION_NUMBER", + + # Trajectory file variables: + 'JULD_STATUS', 'JULD_ADJUSTED_STATUS', 'JULD_DESCENT_START_STATUS', + 'JULD_FIRST_STABILIZATION_STATUS', 'JULD_DESCENT_END_STATUS', 'JULD_PARK_START_STATUS', 'JULD_PARK_END_STATUS', + 'JULD_DEEP_DESCENT_END_STATUS', 'JULD_DEEP_PARK_START_STATUS', 'JULD_DEEP_ASCENT_START_STATUS', + 'JULD_ASCENT_START_STATUS', 'JULD_ASCENT_END_STATUS', 'JULD_TRANSMISSION_START_STATUS', + 'JULD_FIRST_MESSAGE_STATUS', 'JULD_FIRST_LOCATION_STATUS', 'JULD_LAST_LOCATION_STATUS', + 'JULD_LAST_MESSAGE_STATUS', 'JULD_TRANSMISSION_END_STATUS', 'REPRESENTATIVE_PARK_PRESSURE_STATUS', +] + + +# ## datetime + +# In[4]: + + +list_datetime = [ + "REFERENCE_DATE_TIME", + "DATE_CREATION", + "DATE_UPDATE", + "JULD", + "JULD_LOCATION", + "SCIENTIFIC_CALIB_DATE", + "HISTORY_DATE", + "TIME", + + # Metadata file variables: + 'LAUNCH_DATE', 'START_DATE', 'STARTUP_DATE', 'END_MISSION_DATE', +] + + +# ## save data + +# In[5]: + + +data = { + "name": "data_types", + "long_name": "Expected data types of Argo variables", + "last_update": pd.to_datetime('now', utc=True).isoformat(), + "data": { + 'str': list_str, + 'int': list_int, + 'datetime': list_datetime, + } +} +# print(json.dumps(data)) +with open(output_folder + "data_types.json", 'w') as f: + json.dump(data, f, indent=2) + + +# In[6]: + + +# Test load: +result = filestore().open_json(output_folder + "data_types.json") +result.keys(), result['data'].keys() + + +# # dict_institutions + +# In[7]: + + +nvs = ArgoNVSReferenceTables(cache=True) +institutions = {} +for row in nvs.tbl(4).iterrows(): + institutions.update({row[1]['altLabel']: row[1]['prefLabel']}) +institutions + + +# ## Save data + +# In[8]: + + +data = { + "name": "institutions", + "long_name": "Institution names from Argo reference table 4", + "last_update": pd.to_datetime('now', utc=True).isoformat(), + "data": { + 'institutions': institutions, + } +} +# print(json.dumps(data)) +with open(output_folder + "institutions.json", 'w') as f: + json.dump(data, f, indent=2) + + +# In[9]: + + +# Test load: +result = filestore().open_json(output_folder + "institutions.json") +result.keys(), result['data'].keys() + + +# # dict profilers + +# In[10]: + + +nvs = ArgoNVSReferenceTables(cache=True) +profilers = {} +for row in nvs.tbl(8).iterrows(): + profilers.update({row[1]['altLabel']: row[1]['prefLabel']}) +profilers + + +# ## Save data + +# In[11]: + + +data = { + "name": "profilers", + "long_name": "Profiler codes and description from Argo reference table 8", + "last_update": pd.to_datetime('now', utc=True).isoformat(), + "data": { + 'profilers': profilers, + } +} +# print(json.dumps(data)) +with open(output_folder + "profilers.json", 'w') as f: + json.dump(data, f, indent=2) + + +# In[12]: + + +# Test load: +result = filestore().open_json(output_folder + "profilers.json") +result.keys(), result['data'].keys() + + +# # API-Coriolis: parameter codes +# +# Content to work with https://api-coriolis.ifremer.fr/legacy/parameter?code=%s +# +# Make dict to work with parameter codes + +# In[13]: + + +store = argopy.stores.httpstore(cache=False) +store + + +# In[14]: + + +def get_codemeta(x): + try: + data = store.open_json("https://api-coriolis.ifremer.fr/legacy/parameter?code=%s" % str(x)) + return data + except: + return None + +valid_codes = [] +for code in np.arange(1, 1000): + code_meta = get_codemeta(code) + if code_meta: + # print(code, code_meta['label']) + valid_codes.append(code) +print("Found %i valid codes" % len(valid_codes)) +print(valid_codes) + + +# In[15]: + + +def get_code_for_param(name): + strict = PARAMS.loc[PARAMS['gf3_strict_name'] == name] + extended = PARAMS.loc[PARAMS['gf3_extended_name'] == name] + if strict.shape[0]>=1: + use = strict + else: + use = extended + return int(use['code'].values[0]) + +def get_param_for_code(code): + row = PARAMS.loc[PARAMS['code']==str(code)] + if row['gf3_strict_name'].values[0]: + return row['gf3_strict_name'].values[0] + else: + return row['gf3_extended_name'].values[0] + + +# In[16]: + + +# Retrieve data: +# parameter_codes = [28,35,30, 66,68,70, 67,69,71] # core-Argo variables P,T,S (PARAM, PARAM_ADJUSTED, PARAM_ERROR) +parameter_codes = valid_codes +PARAMS = {'unit': [], + 'time_sampling': [], + 'code': [], + 'gf3_strict_name': [], + 'gf3_extended_name': [], + 'parent_code': [], + 'label': [], + 'param_type': [], + } +for code in parameter_codes: + code_meta = get_codemeta(code) + for key, value in code_meta.items(): + PARAMS[key].append(value) +PARAMS = pd.DataFrame(PARAMS) + + +# In[17]: + + +# Make useful dict to go from code to param and from param to code: +# (we also update the list of valid_codes to retain only those with a non empty name) +code_to_param = {} +param_to_code = {} +record_valid_codes = [] +for ii, param in PARAMS.iterrows(): + param_name = get_param_for_code(param['code']) + param_code = get_code_for_param(param_name) + if param_name != '': + record_valid_codes.append(param_code) + code_to_param.update({str(param_code): param.to_dict()}) + param_to_code.update({param_name: param.to_dict()}) + # print(ii, param_code, param_name) + +print("We'll record %i parameter data" % len(record_valid_codes)) + + +# ## Save data + +# In[18]: + + +data = { + "name": "parameters", + "long_name": "All valid requests to https://api-coriolis.ifremer.fr/legacy/parameter?code={code}", + "last_update": pd.to_datetime('now', utc=True).isoformat(), + "data": { + "valid_codes": [str(v) for v in record_valid_codes], # We use str because it's key to use in code_to_param dict + "valid_params": list(param_to_code.keys()), + "codes": code_to_param, + "params": param_to_code, + } +} + +with open(output_folder + "api_coriolis_parameter_codes.json", 'w') as f: + json.dump(data, f, indent=2, default=str) + + +# In[19]: + + +# Test load: +result = filestore().open_json(output_folder + "api_coriolis_parameter_codes.json") +result.keys(), result['data'].keys() + + +# # Catalogue for ArgoDocs + +# In[20]: + + +catalogue = [ + { + "category": "Argo data formats", + "title": "Argo user's manual", + "doi": "10.13155/29825", + "id": 29825 + }, + { + "category": "Quality control", + "title": "Argo Quality Control Manual for CTD and Trajectory Data", + "doi": "10.13155/33951", + "id": 33951 + }, + { + "category": "Quality control", + "title": "Argo quality control manual for dissolved oxygen concentration", + "doi": "10.13155/46542", + "id": 46542 + }, + { + "category": "Quality control", + "title": "Argo quality control manual for biogeochemical data", + "doi": "10.13155/40879", + "id": 40879 + }, + { + "category": "Quality control", + "title": "BGC-Argo quality control manual for the Chlorophyll-A concentration", + "doi": "10.13155/35385", + "id": 35385 + }, + { + "category": "Quality control", + "title": "BGC-Argo quality control manual for nitrate concentration", + "doi": "10.13155/84370", + "id": 84370 + }, + { + "category": "Quality control", + "title": "Quality control for BGC-Argo radiometry", + "doi": "10.13155/62466", + "id": 62466 + }, + { + "category": "Cookbooks", + "title": "Argo DAC profile cookbook", + "doi": "10.13155/41151", + "id": 41151 + }, + { + "category": "Cookbooks", + "title": "Argo DAC trajectory cookbook", + "doi": "10.13155/29824", + "id": 29824 + }, + { + "category": "Cookbooks", + "title": "DMQC Cookbook for Core Argo parameters", + "doi": "10.13155/78994", + "id": 78994 + }, + { + "category": "Cookbooks", + "title": "Processing Argo oxygen data at the DAC level", + "doi": "10.13155/39795", + "id": 39795 + }, + { + "category": "Cookbooks", + "title": "Processing Bio-Argo particle backscattering at the DAC level", + "doi": "10.13155/39459", + "id": 39459 + }, + { + "category": "Cookbooks", + "title": "Processing BGC-Argo chlorophyll-A concentration at the DAC level", + "doi": "10.13155/39468", + "id": 39468 + }, + { + "category": "Cookbooks", + "title": "Processing Argo measurement timing information at the DAC level", + "doi": "10.13155/47998", + "id": 47998 + }, + { + "category": "Cookbooks", + "title": "Processing BGC-Argo CDOM concentration at the DAC level", + "doi": "10.13155/54541", + "id": 54541 + }, + { + "category": "Cookbooks", + "title": "Processing Bio-Argo nitrate concentration at the DAC Level", + "doi": "10.13155/46121", + "id": 46121 + }, + { + "category": "Cookbooks", + "title": "Processing BGC-Argo Radiometric data at the DAC level", + "doi": "10.13155/51541", + "id": 51541 + }, + { + "category": "Cookbooks", + "title": "Processing BGC-Argo pH data at the DAC level", + "doi": "10.13155/57195", + "id": 57195 + }, + { + "category": "Cookbooks", + "title": "Description of the Argo GDAC File Checks: Data Format and Consistency Checks", + "doi": "10.13155/46120", + "id": 46120 + }, + { + "category": "Cookbooks", + "title": "Description of the Argo GDAC File Merge Process", + "doi": "10.13155/52154", + "id": 52154 + }, + { + "category": "Cookbooks", + "title": "BGC-Argo synthetic profile file processing and format on Coriolis GDAC", + "doi": "10.13155/55637", + "id": 55637 + }, + { + "category": "Cookbooks", + "title": "Argo GDAC cookbook", + "doi": "10.13155/46202", + "id": 46202 + }, + { + "category": "Cookbooks", + "title": "Processing BGC-Argo pH data at the DAC level", + "doi": "10.13155/57195", + "id": 57195 + }, + { + "category": "Cookbooks", + "title": "Processing BGC-Argo nitrate concentration at the DAC Level", + "doi": "10.13155/46121", + "id": 46121 + }, + { + "category": "Cookbooks", + "title": "Processing BGC-Argo pH data at the DAC level", + "doi": "10.13155/57195", + "id": 57195 + }, + { + "category": "Quality Control", + "title": "BGC-Argo quality control manual for pH", + "doi": "10.13155/97828", + "id": 97828 + }, +] + + +# ## Save data + +# In[21]: + + +data = { + "name": "ADMT documentation catalogue", + "long_name": "Titles and DOIs of all the official ADMT documentation", + "last_update": pd.to_datetime('now', utc=True).isoformat(), + "data": { + 'catalogue': catalogue, + } +} +# print(json.dumps(data)) +with open(output_folder + "admt_documentation_catalogue.json", 'w') as f: + json.dump(data, f, indent=2) + + +# In[22]: + + +# Test load: +result = filestore().open_json(output_folder + "admt_documentation_catalogue.json") +result.keys(), result['data'].keys() + + +# # List of BGC variables + +# ## Synthetic file variables + +# In[23]: + + +# # We get the list of variables from the ArgoIndex +# from argopy import ArgoIndex +# params = ArgoIndex(index_file='bgc-s').load().read_params() + + +# In[24]: + + +# We get the list of variables from the Ifremer Erddap, serving the S files: +from argopy.stores import httpstore +data = httpstore().open_json( + "https://erddap.ifremer.fr/erddap" + "/info/ArgoFloats-synthetic-BGC/index.json" + ) +bgc_vlist_erddap = [row[1].upper() for row in data["table"]["rows"] if row[0] == "variable"] +bgc_vlist_erddap.sort() + + +# ### Save data + +# In[25]: + + +data = { + "name": "BGC synthetic netcdf files variables", + "long_name": "Variables from the Ifremer Erddap ArgoFloats-synthetic-BGC dataset based on GDAC synthetic netcdf files", + "last_update": pd.to_datetime('now', utc=True).isoformat(), + "data": { + 'variables': bgc_vlist_erddap, + } +} +# print(json.dumps(data)) +with open(output_folder + "variables_bgc_synthetic.json", 'w') as f: + json.dump(data, f, indent=2) diff --git a/docs/_static/argopy-cheatsheet-v0.1.17.pdf b/docs/_static/argopy-cheatsheet-v0.1.17.pdf new file mode 100644 index 00000000..2d947800 Binary files /dev/null and b/docs/_static/argopy-cheatsheet-v0.1.17.pdf differ diff --git a/docs/_static/argopy-cheatsheet.pdf b/docs/_static/argopy-cheatsheet.pdf index 030fe034..2d947800 100644 Binary files a/docs/_static/argopy-cheatsheet.pdf and b/docs/_static/argopy-cheatsheet.pdf differ diff --git a/docs/cheatsheet.rst b/docs/cheatsheet.rst index f2d38ebe..ec280d78 100644 --- a/docs/cheatsheet.rst +++ b/docs/cheatsheet.rst @@ -3,7 +3,7 @@ Cheat sheet =========== -.. admonition:: Last version available: v0.1.16 +.. admonition:: Last version available v0.1.17 .. centered:: :download:`Get most of the argopy API in a small pdf <_static/argopy-cheatsheet.pdf>` diff --git a/docs/whats-new.rst b/docs/whats-new.rst index b0120cc7..01c6fc30 100644 --- a/docs/whats-new.rst +++ b/docs/whats-new.rst @@ -8,13 +8,16 @@ What's New |pypi dwn| |conda dwn| -Coming up next --------------- +v0.1.17 (20 Sep. 2024) +---------------------- -Features and front-end API -^^^^^^^^^^^^^^^^^^^^^^^^^^ +.. admonition:: This is the last minor version release + + We're very happy to announce that this v0.1.17 is the last of the minor version releases. Its main role is to introduce deprecation warnings before things break in the major version release. + + Comping up soon by the end of October the first **major argopy release: v1.0.0** -.. important:: Introduces deprecation warnings before the upcoming major release v1.0.0. (:pr:`389`) by `G. Maze `_. +.. important:: List of deprecations before the upcoming major release v1.0.0. (:pr:`389`) by `G. Maze `_. .. currentmodule:: xarray diff --git a/setup.py b/setup.py index 4fb7aaa1..05e1c9b7 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setuptools.setup( name="argopy", - version="0.1.16", + version="0.1.17", author="argopy Developers", author_email="gmaze@ifremer.fr", description="A python library for Argo data beginners and experts", @@ -30,7 +30,7 @@ "Operating System :: POSIX", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", ], entry_points={ "xarray.backends": ["argo=argopy.xarray:ArgoEngine"],