participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20220906020449_i0qWE" 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 |
---|---|---|---|---|---|
1640976 | 1640976 | 20220906020449_i0qWE | UK000F | 2024-01-05T23:49:57.027Z | 2024-01-05T23:49:57.027Z |
1640977 | 1640977 | 20220906020449_i0qWE | UK001P | 2024-01-05T23:49:57.027Z | 2024-01-05T23:49:57.027Z |
1640978 | 1640978 | 20220906020449_i0qWE | UK002C | 2024-01-05T23:49:57.027Z | 2024-01-05T23:49:57.027Z |
1640979 | 1640979 | 20220906020449_i0qWE | UK002W | 2024-01-05T23:49:57.027Z | 2024-01-05T23:49:57.027Z |
1640980 | 1640980 | 20220906020449_i0qWE | UK003D | 2024-01-05T23:49:57.027Z | 2024-01-05T23:49:57.027Z |
1640981 | 1640981 | 20220906020449_i0qWE | UK004F | 2024-01-05T23:49:57.027Z | 2024-01-05T23:49:57.027Z |
1640982 | 1640982 | 20220906020449_i0qWE | UK004X | 2024-01-05T23:49:57.027Z | 2024-01-05T23:49:57.027Z |
1640983 | 1640983 | 20220906020449_i0qWE | UK005F | 2024-01-05T23:49:57.027Z | 2024-01-05T23:49:57.027Z |
1640984 | 1640984 | 20220906020449_i0qWE | UK005N | 2024-01-05T23:49:57.027Z | 2024-01-05T23:49:57.027Z |
1640985 | 1640985 | 20220906020449_i0qWE | UK005P | 2024-01-05T23:49:57.027Z | 2024-01-05T23:49:57.027Z |
1640986 | 1640986 | 20220906020449_i0qWE | UK0078 | 2024-01-05T23:49:57.027Z | 2024-01-05T23:49:57.027Z |
1640987 | 1640987 | 20220906020449_i0qWE | UK007H | 2024-01-05T23:49:57.027Z | 2024-01-05T23:49:57.027Z |
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);