participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20260314232335_6j2Ka" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: updated_at, created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9483890 | 9483890 | 20260314232335_6j2Ka | UK004G | 2026-03-16T12:00:55.773Z | 2026-03-23T12:21:44.361Z |
| 9483891 | 9483891 | 20260314232335_6j2Ka | UK005N | 2026-03-16T12:00:55.773Z | 2026-03-23T12:21:44.361Z |
| 9483892 | 9483892 | 20260314232335_6j2Ka | UK007B | 2026-03-16T12:00:55.773Z | 2026-03-23T12:21:44.361Z |
| 9483893 | 9483893 | 20260314232335_6j2Ka | UK007R | 2026-03-16T12:00:55.773Z | 2026-03-23T12:21:44.361Z |
| 9483894 | 9483894 | 20260314232335_6j2Ka | UK0084 | 2026-03-16T12:00:55.773Z | 2026-03-23T12:21:44.361Z |
| 9483895 | 9483895 | 20260314232335_6j2Ka | UK008B | 2026-03-16T12:00:55.773Z | 2026-03-23T12:21:44.362Z |
| 9483896 | 9483896 | 20260314232335_6j2Ka | UK0092 | 2026-03-16T12:00:55.773Z | 2026-03-23T12:21:44.362Z |
| 9483897 | 9483897 | 20260314232335_6j2Ka | UK009J | 2026-03-16T12:00:55.773Z | 2026-03-23T12:21:44.362Z |
| 9483898 | 9483898 | 20260314232335_6j2Ka | UK009V | 2026-03-16T12:00:55.773Z | 2026-03-23T12:21:44.362Z |
| 9483899 | 9483899 | 20260314232335_6j2Ka | UK009W | 2026-03-16T12:00:55.773Z | 2026-03-23T12:21:44.362Z |
| 9483900 | 9483900 | 20260314232335_6j2Ka | UK00B1 | 2026-03-16T12:00:55.773Z | 2026-03-23T12:21:44.362Z |
| 9483901 | 9483901 | 20260314232335_6j2Ka | UK00BA | 2026-03-16T12:00:55.773Z | 2026-03-23T12:21:44.362Z |
| 9483902 | 9483902 | 20260314232335_6j2Ka | UK00BF | 2026-03-16T12:00:55.773Z | 2026-03-23T12:21:44.362Z |
| 9483903 | 9483903 | 20260314232335_6j2Ka | UK00DN | 2026-03-16T12:00:55.773Z | 2026-03-23T12:21:44.362Z |
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);