participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240410014105_X2fQZ" 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 |
|---|---|---|---|---|---|
| 4169563 | 4169563 | 20240410014105_X2fQZ | UK0001 | 2024-04-11T12:14:52.523Z | 2024-04-18T12:21:15.471Z |
| 4169564 | 4169564 | 20240410014105_X2fQZ | UK0006 | 2024-04-11T12:14:52.523Z | 2024-04-18T12:21:15.471Z |
| 4169565 | 4169565 | 20240410014105_X2fQZ | UK0009 | 2024-04-11T12:14:52.523Z | 2024-04-18T12:21:15.471Z |
| 4169566 | 4169566 | 20240410014105_X2fQZ | UK000F | 2024-04-11T12:14:52.523Z | 2024-04-18T12:21:15.471Z |
| 4169567 | 4169567 | 20240410014105_X2fQZ | UK000S | 2024-04-11T12:14:52.523Z | 2024-04-18T12:21:15.471Z |
| 4169568 | 4169568 | 20240410014105_X2fQZ | UK002Q | 2024-04-11T12:14:52.523Z | 2024-04-18T12:21:15.471Z |
| 4169569 | 4169569 | 20240410014105_X2fQZ | UK002W | 2024-04-11T12:14:52.523Z | 2024-04-18T12:21:15.471Z |
| 4169570 | 4169570 | 20240410014105_X2fQZ | UK005N | 2024-04-11T12:14:52.523Z | 2024-04-18T12:21:15.471Z |
| 4169571 | 4169571 | 20240410014105_X2fQZ | UK007L | 2024-04-11T12:14:52.523Z | 2024-04-18T12:21:15.471Z |
| 4169572 | 4169572 | 20240410014105_X2fQZ | UK0084 | 2024-04-11T12:14:52.523Z | 2024-04-18T12:21:15.471Z |
| 4169573 | 4169573 | 20240410014105_X2fQZ | UK009G | 2024-04-11T12:14:52.523Z | 2024-04-18T12:21:15.471Z |
| 4169574 | 4169574 | 20240410014105_X2fQZ | UK009V | 2024-04-11T12:14:52.523Z | 2024-04-18T12:21:15.471Z |
| 4169575 | 4169575 | 20240410014105_X2fQZ | UK009W | 2024-04-11T12:14:52.523Z | 2024-04-18T12:21:15.471Z |
| 4169576 | 4169576 | 20240410014105_X2fQZ | UK00A5 | 2024-04-11T12:14:52.523Z | 2024-04-18T12:21:15.471Z |
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);