Look up observation data.
Observation Data as JSON
dart
for Deep-ocean Assessment and Reporting of Tsunami./station/name/sensorCode/method/aspect
, for example, NZE/water-height/40/15s/nil
.sensorCode
,method
, and aspect
can be -
for wildcard matching, for instance, NZE/water-height/-/15s/nil
will try to match water-height series with any sensor code and method=15s and aspect=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).
1m
(1 minute), 5m
,
10m
, 15m
, 30m
, 1h
(1 hour), 2h
,
3h
, 4h
, 6h
, 8h
, 12h
, or 1d
(1 day)
min
for minimum, max
for maximum,
mean
for mean, sum
for summation, or perc(N)
for (N)th percentile (eg. perc95
).
Response has the JSON struct of:
[ { "data": [ { "val": 5237100, "err": 0, "qc": "", "ts": "2021-03-05T00:00:00Z" }, (repeated) ], "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", (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", } } ] }, { // repeated JSON objects if multiple series matched } ]
[ { "data": [ { "val": 5237100, "err": 0, "qc": "", "ts": "2021-03-05T00:00:00Z" }, (repeated) ], "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", } ]
Observation Data as CSV
The same as Data as JSON
curl --header "Accept: text/csv" -o dart.csv https://tilde.geonet.org.nz/v4/data/dart/NZE/water-height/40/15s/nil/2021-03-05/2021-03-05
domain,station,name,sensorCode,method,aspect,timestamp,value,valueUnit,error,errorUnit,qualityControl dart,NZE,water-height,40,15s,nil,2021-03-05T00:00:00Z,5778684.0000000,m,0.0000000,m, dart,NZE,water-height,40,15s,nil,2021-03-05T00:15:00Z,5778681.0000000,m,0.0000000,m, dart,NZE,water-height,40,15s,nil,2021-03-05T00:30:00Z,5778679.0000000,m,0.0000000,m, dart,NZE,water-height,40,15s,nil,2021-03-05T00:45:00Z,5778679.0000000,m,0.0000000,m, dart,NZE,water-height,40,15s,nil,2021-03-05T01:00:00Z,5778678.0000000,m,0.0000000,m, dart,NZE,water-height,40,15s,nil,2021-03-05T01:15:00Z,5778676.0000000,m,0.0000000,m, dart,NZE,water-height,40,15s,nil,2021-03-05T01:30:00Z,5778675.0000000,m,0.0000000,m, dart,NZE,water-height,40,15s,nil,2021-03-05T01:45:00Z,5778674.0000000,m,0.0000000,m, dart,NZE,water-height,40,15s,nil,2021-03-05T02:00:00Z,5778671.0000000,m,0.0000000,m, dart,NZE,water-height,40,15s,nil,2021-03-05T02:15:00Z,5778670.0000000,m,0.0000000,m, dart,NZE,water-height,40,15s,nil,2021-03-05T02:30:00Z,5778668.0000000,m,0.0000000,m, ...