participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20260315032054_2cTYO" 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 |
|---|---|---|---|---|---|
| 9485545 | 9485545 | 20260315032054_2cTYO | UK0001 | 2026-03-16T12:06:48.821Z | 2026-03-23T12:21:52.878Z |
| 9485546 | 9485546 | 20260315032054_2cTYO | UK0009 | 2026-03-16T12:06:48.821Z | 2026-03-23T12:21:52.878Z |
| 9485547 | 9485547 | 20260315032054_2cTYO | UK0022 | 2026-03-16T12:06:48.821Z | 2026-03-23T12:21:52.878Z |
| 9485548 | 9485548 | 20260315032054_2cTYO | UK002Q | 2026-03-16T12:06:48.821Z | 2026-03-23T12:21:52.878Z |
| 9485549 | 9485549 | 20260315032054_2cTYO | UK003N | 2026-03-16T12:06:48.821Z | 2026-03-23T12:21:52.878Z |
| 9485550 | 9485550 | 20260315032054_2cTYO | UK007H | 2026-03-16T12:06:48.821Z | 2026-03-23T12:21:52.878Z |
| 9485551 | 9485551 | 20260315032054_2cTYO | UK0084 | 2026-03-16T12:06:48.821Z | 2026-03-23T12:21:52.878Z |
| 9485552 | 9485552 | 20260315032054_2cTYO | UK009W | 2026-03-16T12:06:48.821Z | 2026-03-23T12:21:52.878Z |
| 9485553 | 9485553 | 20260315032054_2cTYO | UK00AB | 2026-03-16T12:06:48.821Z | 2026-03-23T12:21:52.878Z |
| 9485554 | 9485554 | 20260315032054_2cTYO | UK00AP | 2026-03-16T12:06:48.821Z | 2026-03-23T12:21:52.878Z |
| 9485555 | 9485555 | 20260315032054_2cTYO | UK00C7 | 2026-03-16T12:06:48.821Z | 2026-03-23T12:21:52.878Z |
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);