participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240914015933_3CQ1x" 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 |
---|---|---|---|---|---|
5103036 | 5103036 | 20240914015933_3CQ1x | UK0001 | 2024-09-17T12:07:49.006Z | 2024-09-22T12:17:54.380Z |
5103037 | 5103037 | 20240914015933_3CQ1x | UK000S | 2024-09-17T12:07:49.006Z | 2024-09-22T12:17:54.380Z |
5103038 | 5103038 | 20240914015933_3CQ1x | UK002Q | 2024-09-17T12:07:49.006Z | 2024-09-22T12:17:54.380Z |
5103039 | 5103039 | 20240914015933_3CQ1x | UK0035 | 2024-09-17T12:07:49.006Z | 2024-09-22T12:17:54.380Z |
5103040 | 5103040 | 20240914015933_3CQ1x | UK003D | 2024-09-17T12:07:49.006Z | 2024-09-22T12:17:54.380Z |
5103041 | 5103041 | 20240914015933_3CQ1x | UK004X | 2024-09-17T12:07:49.006Z | 2024-09-22T12:17:54.380Z |
5103042 | 5103042 | 20240914015933_3CQ1x | UK005N | 2024-09-17T12:07:49.006Z | 2024-09-22T12:17:54.380Z |
5103043 | 5103043 | 20240914015933_3CQ1x | UK007B | 2024-09-17T12:07:49.006Z | 2024-09-22T12:17:54.380Z |
5103044 | 5103044 | 20240914015933_3CQ1x | UK007H | 2024-09-17T12:07:49.006Z | 2024-09-22T12:17:54.380Z |
5103045 | 5103045 | 20240914015933_3CQ1x | UK0084 | 2024-09-17T12:07:49.006Z | 2024-09-22T12:17:54.380Z |
5103046 | 5103046 | 20240914015933_3CQ1x | UK008B | 2024-09-17T12:07:49.006Z | 2024-09-22T12:17:54.380Z |
5103047 | 5103047 | 20240914015933_3CQ1x | UK0092 | 2024-09-17T12:07:49.006Z | 2024-09-22T12:17:54.380Z |
5103048 | 5103048 | 20240914015933_3CQ1x | UK009A | 2024-09-17T12:07:49.006Z | 2024-09-22T12:17:54.380Z |
5103049 | 5103049 | 20240914015933_3CQ1x | UK00B1 | 2024-09-17T12:07:49.006Z | 2024-09-22T12:17:54.380Z |
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);