participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20240728003212_U6i2e" 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 |
---|---|---|---|---|---|
4714249 | 4714249 | 20240728003212_U6i2e | UK0006 | 2024-07-30T12:04:48.586Z | 2024-08-05T12:19:39.995Z |
4714250 | 4714250 | 20240728003212_U6i2e | UK0009 | 2024-07-30T12:04:48.586Z | 2024-08-05T12:19:39.995Z |
4714251 | 4714251 | 20240728003212_U6i2e | UK000D | 2024-07-30T12:04:48.586Z | 2024-08-05T12:19:39.995Z |
4714252 | 4714252 | 20240728003212_U6i2e | UK000H | 2024-07-30T12:04:48.586Z | 2024-08-05T12:19:39.995Z |
4714253 | 4714253 | 20240728003212_U6i2e | UK000T | 2024-07-30T12:04:48.586Z | 2024-08-05T12:19:39.995Z |
4714254 | 4714254 | 20240728003212_U6i2e | UK001E | 2024-07-30T12:04:48.586Z | 2024-08-05T12:19:39.995Z |
4714255 | 4714255 | 20240728003212_U6i2e | UK0022 | 2024-07-30T12:04:48.586Z | 2024-08-05T12:19:39.995Z |
4714256 | 4714256 | 20240728003212_U6i2e | UK0025 | 2024-07-30T12:04:48.586Z | 2024-08-05T12:19:39.995Z |
4714257 | 4714257 | 20240728003212_U6i2e | UK009K | 2024-07-30T12:04:48.586Z | 2024-08-05T12:19:39.995Z |
4714258 | 4714258 | 20240728003212_U6i2e | UK00AP | 2024-07-30T12:04:48.586Z | 2024-08-05T12:19:39.995Z |
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);