participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
4 rows where station_code = "UK008B_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 |
|---|---|---|---|---|---|
| 8848378 | 8848378 | 20251213233336_w3yJA | UK008B_2 | 2025-12-19T14:18:28.410Z | 2025-12-23T14:25:59.621Z |
| 8754976 | 8754976 | 20251210023755_Ft2DK | UK008B_2 | 2025-12-13T15:43:36.165Z | 2025-12-17T15:29:16.039Z |
| 6223297 | 6223297 | 20250302221042_b8yce | UK008B_2 | 2025-03-04T14:09:05.848Z | 2025-03-11T13:29:49.006Z |
| 6223220 | 6223220 | 20250302220544_u9b5n | UK008B_2 | 2025-03-04T14:08:56.674Z | 2025-03-11T13:29:47.605Z |
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);