participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20260224232717_ZTUHj" 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 |
|---|---|---|---|---|---|
| 9390014 | 9390014 | 20260224232717_ZTUHj | UK00CC | 2026-02-26T14:00:11.791Z | 2026-03-05T14:35:30.540Z |
| 9390012 | 9390012 | 20260224232717_ZTUHj | UK00B1 | 2026-02-26T14:00:11.778Z | 2026-03-05T14:35:30.540Z |
| 9390013 | 9390013 | 20260224232717_ZTUHj | UK00BH | 2026-02-26T14:00:11.778Z | 2026-03-05T14:35:30.540Z |
| 9390011 | 9390011 | 20260224232717_ZTUHj | UK00AL | 2026-02-26T14:00:11.762Z | 2026-03-05T14:35:30.540Z |
| 9390010 | 9390010 | 20260224232717_ZTUHj | UK00A0 | 2026-02-26T14:00:11.748Z | 2026-03-05T14:35:30.540Z |
| 9390009 | 9390009 | 20260224232717_ZTUHj | UK008F | 2026-02-26T14:00:11.735Z | 2026-03-05T14:35:30.540Z |
| 9390007 | 9390007 | 20260224232717_ZTUHj | UK007R | 2026-02-26T14:00:11.725Z | 2026-03-05T14:35:30.540Z |
| 9390008 | 9390008 | 20260224232717_ZTUHj | UK0087 | 2026-02-26T14:00:11.725Z | 2026-03-05T14:35:30.540Z |
| 9390006 | 9390006 | 20260224232717_ZTUHj | UK003X | 2026-02-26T14:00:11.710Z | 2026-03-05T14:35:30.540Z |
| 9390005 | 9390005 | 20260224232717_ZTUHj | UK002F | 2026-02-26T14:00:11.696Z | 2026-03-05T14:35:30.540Z |
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);