participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240414023324_Y4RXr" 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 |
---|---|---|---|---|---|
4185918 | 4185918 | 20240414023324_Y4RXr | UK000Z | 2024-04-15T12:05:28.548Z | 2024-04-22T12:22:23.589Z |
4185919 | 4185919 | 20240414023324_Y4RXr | UK001R | 2024-04-15T12:05:28.548Z | 2024-04-22T12:22:23.589Z |
4185920 | 4185920 | 20240414023324_Y4RXr | UK001T | 2024-04-15T12:05:28.548Z | 2024-04-22T12:22:23.589Z |
4185921 | 4185921 | 20240414023324_Y4RXr | UK002X | 2024-04-15T12:05:28.548Z | 2024-04-22T12:22:23.589Z |
4185922 | 4185922 | 20240414023324_Y4RXr | UK002Z | 2024-04-15T12:05:28.548Z | 2024-04-22T12:22:23.589Z |
4185923 | 4185923 | 20240414023324_Y4RXr | UK0032 | 2024-04-15T12:05:28.548Z | 2024-04-22T12:22:23.589Z |
4185924 | 4185924 | 20240414023324_Y4RXr | UK005H | 2024-04-15T12:05:28.548Z | 2024-04-22T12:22:23.589Z |
4185925 | 4185925 | 20240414023324_Y4RXr | UK005R | 2024-04-15T12:05:28.548Z | 2024-04-22T12:22:23.589Z |
4185926 | 4185926 | 20240414023324_Y4RXr | UK006T | 2024-04-15T12:05:28.548Z | 2024-04-22T12:22:23.589Z |
4185927 | 4185927 | 20240414023324_Y4RXr | UK0088 | 2024-04-15T12:05:28.548Z | 2024-04-22T12:22:23.589Z |
4185928 | 4185928 | 20240414023324_Y4RXr | UK008G | 2024-04-15T12:05:28.548Z | 2024-04-22T12:22:23.589Z |
4185929 | 4185929 | 20240414023324_Y4RXr | UK00A3 | 2024-04-15T12:05:28.548Z | 2024-04-22T12:22:23.589Z |
4185930 | 4185930 | 20240414023324_Y4RXr | UK00AA | 2024-04-15T12:05:28.548Z | 2024-04-22T12:22:23.589Z |
4185931 | 4185931 | 20240414023324_Y4RXr | UK00AM | 2024-04-15T12:05:28.548Z | 2024-04-22T12:22:23.589Z |
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);