participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
4 rows where station_code = "UK00B6_2" 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 |
|---|---|---|---|---|---|
| 9111423 | 9111423 | 20251231010909_lx22K | UK00B6_2 | 2026-01-01T14:11:25.518Z | 2026-01-08T15:06:39.312Z |
| 6268375 | 6268375 | 20250304024119_iPsOE | UK00B6_2 | 2025-03-07T15:08:00.257Z | 2025-03-11T13:22:43.587Z |
| 6192819 | 6192819 | 20250228004312_XFvDq | UK00B6_2 | 2025-03-01T14:11:36.438Z | 2025-03-08T15:23:39.469Z |
| 6192144 | 6192144 | 20250227232235_e300U | UK00B6_2 | 2025-03-01T14:10:04.289Z | 2025-03-08T15:23:20.533Z |
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);