participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
9 rows where meteor_unique_trajectory_identifier = "20260223041923_bWOOb" 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 |
|---|---|---|---|---|---|
| 9373780 | 9373780 | 20260223041923_bWOOb | UK003T | 2026-02-24T14:03:55.657Z | 2026-03-03T14:31:09.584Z |
| 9373781 | 9373781 | 20260223041923_bWOOb | UK006T | 2026-02-24T14:03:55.657Z | 2026-03-03T14:31:09.584Z |
| 9373782 | 9373782 | 20260223041923_bWOOb | UK006V | 2026-02-24T14:03:55.657Z | 2026-03-03T14:31:09.584Z |
| 9373783 | 9373783 | 20260223041923_bWOOb | UK0087 | 2026-02-24T14:03:55.657Z | 2026-03-03T14:31:09.584Z |
| 9373784 | 9373784 | 20260223041923_bWOOb | UK008G | 2026-02-24T14:03:55.657Z | 2026-03-03T14:31:09.584Z |
| 9373785 | 9373785 | 20260223041923_bWOOb | UK00AE | 2026-02-24T14:03:55.657Z | 2026-03-03T14:31:09.584Z |
| 9373786 | 9373786 | 20260223041923_bWOOb | UK00AM | 2026-02-24T14:03:55.657Z | 2026-03-03T14:31:09.584Z |
| 9373787 | 9373787 | 20260223041923_bWOOb | UK00CC | 2026-02-24T14:03:55.657Z | 2026-03-03T14:31:09.584Z |
| 9373788 | 9373788 | 20260223041923_bWOOb | UK00DB | 2026-02-24T14:03:55.657Z | 2026-03-03T14:31:09.584Z |
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);