participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20220408010302_LTH96" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
1260758 | 1260758 | 20220408010302_LTH96 | UK002X | 2024-01-05T23:43:54.854Z | 2024-01-05T23:43:54.854Z |
1260759 | 1260759 | 20220408010302_LTH96 | UK002Z | 2024-01-05T23:43:54.854Z | 2024-01-05T23:43:54.854Z |
1260760 | 1260760 | 20220408010302_LTH96 | UK0030 | 2024-01-05T23:43:54.854Z | 2024-01-05T23:43:54.854Z |
1260761 | 1260761 | 20220408010302_LTH96 | UK003B | 2024-01-05T23:43:54.854Z | 2024-01-05T23:43:54.854Z |
1260762 | 1260762 | 20220408010302_LTH96 | UK003G | 2024-01-05T23:43:54.854Z | 2024-01-05T23:43:54.854Z |
1260763 | 1260763 | 20220408010302_LTH96 | UK003X | 2024-01-05T23:43:54.854Z | 2024-01-05T23:43:54.854Z |
1260764 | 1260764 | 20220408010302_LTH96 | UK0046 | 2024-01-05T23:43:54.854Z | 2024-01-05T23:43:54.854Z |
1260765 | 1260765 | 20220408010302_LTH96 | UK004D | 2024-01-05T23:43:54.854Z | 2024-01-05T23:43:54.854Z |
1260766 | 1260766 | 20220408010302_LTH96 | UK0050 | 2024-01-05T23:43:54.854Z | 2024-01-05T23:43:54.854Z |
1260767 | 1260767 | 20220408010302_LTH96 | UK005H | 2024-01-05T23:43:54.854Z | 2024-01-05T23:43:54.854Z |
1260754 | 1260754 | 20220408010302_LTH96 | UK0003 | 2024-01-05T23:43:54.853Z | 2024-01-05T23:43:54.853Z |
1260755 | 1260755 | 20220408010302_LTH96 | UK001L | 2024-01-05T23:43:54.853Z | 2024-01-05T23:43:54.853Z |
1260756 | 1260756 | 20220408010302_LTH96 | UK001N | 2024-01-05T23:43:54.853Z | 2024-01-05T23:43:54.853Z |
1260757 | 1260757 | 20220408010302_LTH96 | UK002R | 2024-01-05T23:43:54.853Z | 2024-01-05T23:43:54.853Z |
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);