Look up observation statistics.
Observation Statistics as JSON
dart
for Deep-ocean Assessment and Reporting of Tsunami./station/name/sensorCode/method/aspect
, for example, NZE/water-height/40/15s/nil
.2021-06-04/2021-06-04
returns all data that have a
timestamp that occurs on that date i.e, between 2021-06-04 00:00:00 UTC
and 2021-06-04 24:00:00 UTC
latest
in (startdate) field in conjuction with (period), the user can simply query for the latest period of data.30d
(latest 30 days), 7d
, 2d
, 1d
, or 6h
(latest 6 hours).5,20.5,95
).Response has the JSON struct of:
{ "series": { "domain": "dart", "station": "NZE", "name": "water-height", "sensorCode": "40", "method": "15s", "aspect": "nil" }, "latitude": -36.0493, "longitude": -177.708, "elevationM": 0, "datum": "WGS84", "relativeHeightM": -5779, "valueUnit": "m", "errorUnit": "m", "first": { "val": 5778851, "err": 0, "qc": "", "ts": "2021-03-05T01:08:30Z" }, "last": { "val": 5778954, "err": 0, "qc": "", "ts": "2021-03-05T10:26:45Z" }, "maximum": { "val": 5779177, "err": 0, "qc": "", "ts": "2021-03-05T01:09:15Z" }, "minimum": { "val": 5778161, "err": 0, "qc": "", "ts": "2021-03-05T03:10:00Z" }, "count": 974, "mean": 5778591.8285, "median": 5778600.5, "populationStdDev": 210.0884, "percentiles": [ { "percentile": 5, "value": 5778229 }, { "percentile": 20.5, "value": 5778388 }, { "percentile": 95, "value": 5778912.25 } ], (if present:) "additionalMetadataMap": { "key": "value", }, "mutableMetadata": [ { "start": "2021-03-05T00:00:00Z", "end": "2021-04-05T00:00:00Z", "metadataMap": { "key": "value1", } }, { "start": "2021-04-06T00:00:00Z", "end": "2021-05-10T00:00:00Z", "metadataMap": { "key": "value2", } } ] }
{ "series": { "domain": "dart", "station": "NZE", "name": "water-height", "sensorCode": "40", "method": "15s", "aspect": "nil" }, "latitude": -36.0493, "longitude": -177.708, "elevationM": 0, "datum": "WGS84", "relativeHeightM": -5779, "mutableMetadata": null, "additionalMetadataMap": { "depth": "5779.000000", "waterLevel": "0.000000" }, "valueUnit": "m", "errorUnit": "m", "first": { "val": 5778851, "err": 0, "qc": "", "ts": "2021-03-05T01:08:30Z" }, "last": { "val": 5778954, "err": 0, "qc": "", "ts": "2021-03-05T10:26:45Z" }, "maximum": { "val": 5779177, "err": 0, "qc": "", "ts": "2021-03-05T01:09:15Z" }, "minimum": { "val": 5778161, "err": 0, "qc": "", "ts": "2021-03-05T03:10:00Z" }, "count": 974, "mean": 5778591.8285, "median": 5778600.5, "populationStdDev": 210.0884, "percentiles": [ { "percentile": 5, "value": 5778229 }, { "percentile": 95, "value": 5778912.25 } ] }