participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20260315121622_bKi2y" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9488776 | 9488776 | 20260315121622_bKi2y | NZ000R | 2026-03-16T12:15:48.542Z | 2026-03-23T12:22:32.420Z |
| 9488777 | 9488777 | 20260315121622_bKi2y | NZ0021 | 2026-03-16T12:15:48.542Z | 2026-03-23T12:22:32.420Z |
| 9488778 | 9488778 | 20260315121622_bKi2y | NZ003V | 2026-03-16T12:15:48.542Z | 2026-03-23T12:22:32.420Z |
| 9488779 | 9488779 | 20260315121622_bKi2y | NZ003Z | 2026-03-16T12:15:48.542Z | 2026-03-23T12:22:32.421Z |
| 9488780 | 9488780 | 20260315121622_bKi2y | NZ0044 | 2026-03-16T12:15:48.542Z | 2026-03-23T12:22:32.421Z |
| 9488781 | 9488781 | 20260315121622_bKi2y | NZ004F | 2026-03-16T12:15:48.542Z | 2026-03-23T12:22:32.421Z |
| 9488782 | 9488782 | 20260315121622_bKi2y | NZ005M | 2026-03-16T12:15:48.542Z | 2026-03-23T12:22:32.421Z |
| 9488783 | 9488783 | 20260315121622_bKi2y | NZ0069 | 2026-03-16T12:15:48.542Z | 2026-03-23T12:22:32.421Z |
| 9488784 | 9488784 | 20260315121622_bKi2y | NZ007B | 2026-03-16T12:15:48.542Z | 2026-03-23T12:22:32.421Z |
| 9488775 | 9488775 | 20260315121622_bKi2y | NZ000H | 2026-03-16T12:15:48.541Z | 2026-03-23T12:22:32.420Z |
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);