participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20260214054442_81tWg" 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 |
|---|---|---|---|---|---|
| 9323591 | 9323591 | 20260214054442_81tWg | UK00BA | 2026-02-15T14:06:42.376Z | 2026-02-23T14:46:34.279Z |
| 9323592 | 9323592 | 20260214054442_81tWg | UK00C1 | 2026-02-15T14:06:42.376Z | 2026-02-23T14:46:34.279Z |
| 9323593 | 9323593 | 20260214054442_81tWg | UK00CK | 2026-02-15T14:06:42.376Z | 2026-02-23T14:46:34.279Z |
| 9323589 | 9323589 | 20260214054442_81tWg | UK00AT | 2026-02-15T14:06:42.375Z | 2026-02-23T14:46:34.279Z |
| 9323590 | 9323590 | 20260214054442_81tWg | UK00B0 | 2026-02-15T14:06:42.375Z | 2026-02-23T14:46:34.279Z |
| 9323582 | 9323582 | 20260214054442_81tWg | UK003U | 2026-02-15T14:06:42.369Z | 2026-02-23T14:46:34.279Z |
| 9323583 | 9323583 | 20260214054442_81tWg | UK005L | 2026-02-15T14:06:42.369Z | 2026-02-23T14:46:34.279Z |
| 9323584 | 9323584 | 20260214054442_81tWg | UK005V | 2026-02-15T14:06:42.369Z | 2026-02-23T14:46:34.279Z |
| 9323585 | 9323585 | 20260214054442_81tWg | UK007P | 2026-02-15T14:06:42.369Z | 2026-02-23T14:46:34.279Z |
| 9323586 | 9323586 | 20260214054442_81tWg | UK0083 | 2026-02-15T14:06:42.369Z | 2026-02-23T14:46:34.279Z |
| 9323587 | 9323587 | 20260214054442_81tWg | UK008J | 2026-02-15T14:06:42.369Z | 2026-02-23T14:46:34.279Z |
| 9323588 | 9323588 | 20260214054442_81tWg | UK009P | 2026-02-15T14:06:42.369Z | 2026-02-23T14:46:34.279Z |
| 9323580 | 9323580 | 20260214054442_81tWg | UK0030 | 2026-02-15T14:06:42.345Z | 2026-02-23T14:46:34.279Z |
| 9323581 | 9323581 | 20260214054442_81tWg | UK0031 | 2026-02-15T14:06:42.345Z | 2026-02-23T14:46:34.279Z |
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);