participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240807015646_jY6tc" 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 |
---|---|---|---|---|---|
4881928 | 4881928 | 20240807015646_jY6tc | UK001L | 2024-08-20T12:14:23.175Z | 2024-08-27T12:15:24.155Z |
4881929 | 4881929 | 20240807015646_jY6tc | UK002Z | 2024-08-20T12:14:23.175Z | 2024-08-27T12:15:24.155Z |
4881930 | 4881930 | 20240807015646_jY6tc | UK0032 | 2024-08-20T12:14:23.175Z | 2024-08-27T12:15:24.155Z |
4881931 | 4881931 | 20240807015646_jY6tc | UK003V | 2024-08-20T12:14:23.175Z | 2024-08-27T12:15:24.155Z |
4881932 | 4881932 | 20240807015646_jY6tc | UK0042 | 2024-08-20T12:14:23.175Z | 2024-08-27T12:15:24.155Z |
4881933 | 4881933 | 20240807015646_jY6tc | UK004D | 2024-08-20T12:14:23.175Z | 2024-08-27T12:15:24.155Z |
4881934 | 4881934 | 20240807015646_jY6tc | UK0050 | 2024-08-20T12:14:23.175Z | 2024-08-27T12:15:24.155Z |
4881935 | 4881935 | 20240807015646_jY6tc | UK005H | 2024-08-20T12:14:23.175Z | 2024-08-27T12:15:24.155Z |
4881936 | 4881936 | 20240807015646_jY6tc | UK006A | 2024-08-20T12:14:23.175Z | 2024-08-27T12:15:24.155Z |
4881937 | 4881937 | 20240807015646_jY6tc | UK0090 | 2024-08-20T12:14:23.175Z | 2024-08-27T12:15:24.155Z |
4881938 | 4881938 | 20240807015646_jY6tc | UK009S | 2024-08-20T12:14:23.175Z | 2024-08-27T12:15:24.155Z |
4881939 | 4881939 | 20240807015646_jY6tc | UK00AM | 2024-08-20T12:14:23.175Z | 2024-08-27T12:15:24.155Z |
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);