participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
18 rows where meteor_unique_trajectory_identifier = "20221006013011_SqJVa" 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 |
---|---|---|---|---|---|
1742048 | 1742048 | 20221006013011_SqJVa | UK0002 | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742049 | 1742049 | 20221006013011_SqJVa | UK0006 | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742050 | 1742050 | 20221006013011_SqJVa | UK001S | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742051 | 1742051 | 20221006013011_SqJVa | UK001U | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742052 | 1742052 | 20221006013011_SqJVa | UK001X | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742053 | 1742053 | 20221006013011_SqJVa | UK001Z | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742054 | 1742054 | 20221006013011_SqJVa | UK0020 | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742055 | 1742055 | 20221006013011_SqJVa | UK002V | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742056 | 1742056 | 20221006013011_SqJVa | UK0035 | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742057 | 1742057 | 20221006013011_SqJVa | UK003F | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742058 | 1742058 | 20221006013011_SqJVa | UK003H | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742059 | 1742059 | 20221006013011_SqJVa | UK003P | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742060 | 1742060 | 20221006013011_SqJVa | UK003Z | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742061 | 1742061 | 20221006013011_SqJVa | UK004N | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742062 | 1742062 | 20221006013011_SqJVa | UK005S | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742063 | 1742063 | 20221006013011_SqJVa | UK0067 | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742064 | 1742064 | 20221006013011_SqJVa | UK0070 | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
1742065 | 1742065 | 20221006013011_SqJVa | UK007A | 2024-01-05T23:50:49.231Z | 2024-01-05T23:50:49.231Z |
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);