participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20230120220134_3jFZi" 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 |
---|---|---|---|---|---|
2216242 | 2216242 | 20230120220134_3jFZi | UK001U | 2024-01-05T23:54:30.746Z | 2024-01-05T23:54:30.746Z |
2216243 | 2216243 | 20230120220134_3jFZi | UK001X | 2024-01-05T23:54:30.746Z | 2024-01-05T23:54:30.746Z |
2216244 | 2216244 | 20230120220134_3jFZi | UK002H | 2024-01-05T23:54:30.746Z | 2024-01-05T23:54:30.746Z |
2216245 | 2216245 | 20230120220134_3jFZi | UK0030 | 2024-01-05T23:54:30.746Z | 2024-01-05T23:54:30.746Z |
2216246 | 2216246 | 20230120220134_3jFZi | UK0033 | 2024-01-05T23:54:30.746Z | 2024-01-05T23:54:30.746Z |
2216247 | 2216247 | 20230120220134_3jFZi | UK003P | 2024-01-05T23:54:30.746Z | 2024-01-05T23:54:30.746Z |
2216248 | 2216248 | 20230120220134_3jFZi | UK003X | 2024-01-05T23:54:30.746Z | 2024-01-05T23:54:30.746Z |
2216249 | 2216249 | 20230120220134_3jFZi | UK0042 | 2024-01-05T23:54:30.746Z | 2024-01-05T23:54:30.746Z |
2216250 | 2216250 | 20230120220134_3jFZi | UK0050 | 2024-01-05T23:54:30.746Z | 2024-01-05T23:54:30.746Z |
2216251 | 2216251 | 20230120220134_3jFZi | UK005L | 2024-01-05T23:54:30.746Z | 2024-01-05T23:54:30.746Z |
2216252 | 2216252 | 20230120220134_3jFZi | UK0067 | 2024-01-05T23:54:30.746Z | 2024-01-05T23:54:30.746Z |
2216253 | 2216253 | 20230120220134_3jFZi | UK0083 | 2024-01-05T23:54:30.746Z | 2024-01-05T23:54:30.746Z |
2216241 | 2216241 | 20230120220134_3jFZi | UK001L | 2024-01-05T23:54:30.745Z | 2024-01-05T23:54:30.745Z |
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);