participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20260217175111_BZci7" 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 |
|---|---|---|---|---|---|
| 9338848 | 9338848 | 20260217175111_BZci7 | KR000J | 2026-02-18T14:12:51.981Z | 2026-02-26T14:40:00.579Z |
| 9338849 | 9338849 | 20260217175111_BZci7 | KR0010 | 2026-02-18T14:12:51.981Z | 2026-02-26T14:40:00.579Z |
| 9338850 | 9338850 | 20260217175111_BZci7 | KR0018 | 2026-02-18T14:12:51.981Z | 2026-02-26T14:40:00.579Z |
| 9338851 | 9338851 | 20260217175111_BZci7 | KR001B | 2026-02-18T14:12:51.981Z | 2026-02-26T14:40:00.579Z |
| 9338852 | 9338852 | 20260217175111_BZci7 | KR001H | 2026-02-18T14:12:51.981Z | 2026-02-26T14:40:00.579Z |
| 9338853 | 9338853 | 20260217175111_BZci7 | KR001X | 2026-02-18T14:12:51.981Z | 2026-02-26T14:40:00.579Z |
| 9338854 | 9338854 | 20260217175111_BZci7 | KR001Y | 2026-02-18T14:12:51.981Z | 2026-02-26T14:40:00.579Z |
| 9338855 | 9338855 | 20260217175111_BZci7 | KR0022 | 2026-02-18T14:12:51.981Z | 2026-02-26T14:40:00.579Z |
| 9338856 | 9338856 | 20260217175111_BZci7 | KR0025 | 2026-02-18T14:12:51.981Z | 2026-02-26T14:40:00.579Z |
| 9338857 | 9338857 | 20260217175111_BZci7 | KR0027 | 2026-02-18T14:12:51.981Z | 2026-02-26T14:40:00.579Z |
| 9338858 | 9338858 | 20260217175111_BZci7 | KR002T | 2026-02-18T14:12:51.981Z | 2026-02-26T14:40:00.579Z |
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);