participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
6 rows where station_code = "NL000V" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9530440 | 9530440 | 20260318205444_oo2kc | NL000V | 2026-03-20T12:24:23.974Z | 2026-03-26T12:39:12.372Z |
| 9507282 | 9507282 | 20260316205316_mwUg3 | NL000V | 2026-03-18T12:20:09.047Z | 2026-03-24T12:41:43.917Z |
| 9400557 | 9400557 | 20260225183839_zN4Hi | NL000V | 2026-02-27T14:14:52.216Z | 2026-03-05T14:38:30.209Z |
| 9329690 | 9329690 | 20260214192031_v5HPR | NL000V | 2026-02-16T14:20:37.787Z | 2026-02-23T14:47:33.994Z |
| 9306077 | 9306077 | 20260207193034_9CJ93 | NL000V | 2026-02-09T14:21:46.819Z | 2026-02-16T14:59:38.630Z |
| 9222777 | 9222777 | 20260117204837_QBbHD | NL000V | 2026-01-19T14:16:11.470Z | 2026-01-26T15:01:20.459Z |
Advanced export
JSON shape: default, array, newline-delimited
CREATE TABLE participating_station
(
meteor_unique_trajectory_identifier text NOT NULL,
station_code text NOT NULL,
created_at datetime NOT NULL DEFAULT (
strftime(
'%Y-%m-%dT%H:%M:%fZ', 'now', 'utc'
)
),
updated_at datetime NOT NULL DEFAULT (
strftime(
'%Y-%m-%dT%H:%M:%fZ', 'now', 'utc'
)
),
FOREIGN KEY (meteor_unique_trajectory_identifier) REFERENCES meteor (unique_trajectory_identifier),
FOREIGN KEY (station_code) REFERENCES station (code),
UNIQUE (meteor_unique_trajectory_identifier, station_code) ON CONFLICT IGNORE
);
CREATE INDEX participating_station_station_code_covering_index ON participating_station (station_code, meteor_unique_trajectory_identifier);
CREATE INDEX participating_station_created_at_index ON participating_station (created_at);
CREATE INDEX participating_station_updated_at_index ON participating_station (updated_at);