participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20260321230307_yNYQL" 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 |
|---|---|---|---|---|---|
| 9561118 | 9561118 | 20260321230307_yNYQL | UK000D | 2026-03-23T12:12:11.993Z | 2026-03-29T12:21:05.261Z |
| 9561119 | 9561119 | 20260321230307_yNYQL | UK000H | 2026-03-23T12:12:11.993Z | 2026-03-29T12:21:05.261Z |
| 9561120 | 9561120 | 20260321230307_yNYQL | UK000T | 2026-03-23T12:12:11.993Z | 2026-03-29T12:21:05.261Z |
| 9561121 | 9561121 | 20260321230307_yNYQL | UK003E | 2026-03-23T12:12:11.993Z | 2026-03-29T12:21:05.261Z |
| 9561122 | 9561122 | 20260321230307_yNYQL | UK007Q | 2026-03-23T12:12:11.993Z | 2026-03-29T12:21:05.261Z |
| 9561123 | 9561123 | 20260321230307_yNYQL | UK008D | 2026-03-23T12:12:11.993Z | 2026-03-29T12:21:05.261Z |
| 9561124 | 9561124 | 20260321230307_yNYQL | UK009K | 2026-03-23T12:12:11.993Z | 2026-03-29T12:21:05.261Z |
| 9561125 | 9561125 | 20260321230307_yNYQL | UK009W | 2026-03-23T12:12:11.993Z | 2026-03-29T12:21:05.261Z |
| 9561126 | 9561126 | 20260321230307_yNYQL | UK00AB | 2026-03-23T12:12:11.993Z | 2026-03-29T12:21:05.261Z |
| 9561127 | 9561127 | 20260321230307_yNYQL | UK00AP | 2026-03-23T12:12:11.993Z | 2026-03-29T12:21:05.261Z |
| 9561128 | 9561128 | 20260321230307_yNYQL | UK00AU | 2026-03-23T12:12:11.993Z | 2026-03-29T12:21:05.261Z |
| 9561129 | 9561129 | 20260321230307_yNYQL | UK00B5 | 2026-03-23T12:12:11.993Z | 2026-03-29T12:21:05.261Z |
| 9561130 | 9561130 | 20260321230307_yNYQL | UK00BW | 2026-03-23T12:12:11.993Z | 2026-03-29T12:21:05.261Z |
| 9561131 | 9561131 | 20260321230307_yNYQL | UK00CZ | 2026-03-23T12:12:11.993Z | 2026-03-29T12:21:05.261Z |
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);