participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
3 rows where station_code = "UK00A4_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 |
|---|---|---|---|---|---|
| 6255763 | 6255763 | 20250305000543_BWDkG | UK00A4_2 | 2025-03-07T14:44:24.053Z | 2025-03-13T12:41:50.775Z |
| 6254508 | 6254508 | 20250304215705_Yzc7v | UK00A4_2 | 2025-03-07T14:40:17.350Z | 2025-03-13T12:41:43.335Z |
| 6195250 | 6195250 | 20250228040546_Y9qeI | UK00A4_2 | 2025-03-01T14:17:42.335Z | 2025-03-08T15:24:53.253Z |
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);