participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260224231521_OFYc4" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9395242 | 9395242 | 20260224231521_OFYc4 | UK009V | 2026-02-26T14:21:13.976Z | 2026-03-04T14:19:31.852Z |
| 9395243 | 9395243 | 20260224231521_OFYc4 | UK00AG | 2026-02-26T14:21:13.976Z | 2026-03-04T14:19:31.852Z |
| 9395244 | 9395244 | 20260224231521_OFYc4 | UK00B1 | 2026-02-26T14:21:13.976Z | 2026-03-04T14:19:31.852Z |
| 9395245 | 9395245 | 20260224231521_OFYc4 | UK00B2 | 2026-02-26T14:21:13.976Z | 2026-03-04T14:19:31.852Z |
| 9395246 | 9395246 | 20260224231521_OFYc4 | UK00BC | 2026-02-26T14:21:13.976Z | 2026-03-04T14:19:31.852Z |
| 9395247 | 9395247 | 20260224231521_OFYc4 | UK00BH | 2026-02-26T14:21:13.976Z | 2026-03-04T14:19:31.852Z |
| 9395248 | 9395248 | 20260224231521_OFYc4 | UK00CA | 2026-02-26T14:21:13.976Z | 2026-03-04T14:19:31.852Z |
| 9395237 | 9395237 | 20260224231521_OFYc4 | UK000F | 2026-02-26T14:21:13.975Z | 2026-03-04T14:19:31.852Z |
| 9395238 | 9395238 | 20260224231521_OFYc4 | UK002F | 2026-02-26T14:21:13.975Z | 2026-03-04T14:19:31.852Z |
| 9395239 | 9395239 | 20260224231521_OFYc4 | UK003X | 2026-02-26T14:21:13.975Z | 2026-03-04T14:19:31.852Z |
| 9395240 | 9395240 | 20260224231521_OFYc4 | UK007R | 2026-02-26T14:21:13.975Z | 2026-03-04T14:19:31.852Z |
| 9395241 | 9395241 | 20260224231521_OFYc4 | UK0092 | 2026-02-26T14:21:13.975Z | 2026-03-04T14:19:31.852Z |
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);