participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20260319032026_6v53H" 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 |
|---|---|---|---|---|---|
| 9520505 | 9520505 | 20260319032026_6v53H | UK000J | 2026-03-20T12:06:28.896Z | 2026-03-27T12:40:44.191Z |
| 9520506 | 9520506 | 20260319032026_6v53H | UK002F | 2026-03-20T12:06:28.896Z | 2026-03-27T12:40:44.191Z |
| 9520507 | 9520507 | 20260319032026_6v53H | UK0035 | 2026-03-20T12:06:28.896Z | 2026-03-27T12:40:44.191Z |
| 9520508 | 9520508 | 20260319032026_6v53H | UK005M | 2026-03-20T12:06:28.896Z | 2026-03-27T12:40:44.191Z |
| 9520509 | 9520509 | 20260319032026_6v53H | UK0086 | 2026-03-20T12:06:28.896Z | 2026-03-27T12:40:44.191Z |
| 9520510 | 9520510 | 20260319032026_6v53H | UK0087 | 2026-03-20T12:06:28.896Z | 2026-03-27T12:40:44.191Z |
| 9520511 | 9520511 | 20260319032026_6v53H | UK008F | 2026-03-20T12:06:28.896Z | 2026-03-27T12:40:44.191Z |
| 9520512 | 9520512 | 20260319032026_6v53H | UK00A0 | 2026-03-20T12:06:28.896Z | 2026-03-27T12:40:44.191Z |
| 9520513 | 9520513 | 20260319032026_6v53H | UK00A3 | 2026-03-20T12:06:28.896Z | 2026-03-27T12:40:44.191Z |
| 9520514 | 9520514 | 20260319032026_6v53H | UK00AE | 2026-03-20T12:06:28.896Z | 2026-03-27T12:40:44.191Z |
| 9520515 | 9520515 | 20260319032026_6v53H | UK00AL | 2026-03-20T12:06:28.896Z | 2026-03-27T12:40:44.191Z |
| 9520516 | 9520516 | 20260319032026_6v53H | UK00C2 | 2026-03-20T12:06:28.896Z | 2026-03-27T12:40:44.191Z |
| 9520517 | 9520517 | 20260319032026_6v53H | UK00CC | 2026-03-20T12:06:28.896Z | 2026-03-27T12:40:44.191Z |
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);