participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
19 rows where meteor_unique_trajectory_identifier = "20221008032728_EFOGd" 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 |
---|---|---|---|---|---|
1752437 | 1752437 | 20221008032728_EFOGd | UK0008 | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752438 | 1752438 | 20221008032728_EFOGd | UK001N | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752439 | 1752439 | 20221008032728_EFOGd | UK001Y | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752440 | 1752440 | 20221008032728_EFOGd | UK002X | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752441 | 1752441 | 20221008032728_EFOGd | UK0030 | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752442 | 1752442 | 20221008032728_EFOGd | UK0031 | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752443 | 1752443 | 20221008032728_EFOGd | UK0032 | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752444 | 1752444 | 20221008032728_EFOGd | UK003B | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752445 | 1752445 | 20221008032728_EFOGd | UK003G | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752446 | 1752446 | 20221008032728_EFOGd | UK003R | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752447 | 1752447 | 20221008032728_EFOGd | UK003X | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752448 | 1752448 | 20221008032728_EFOGd | UK004B | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752449 | 1752449 | 20221008032728_EFOGd | UK004V | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752450 | 1752450 | 20221008032728_EFOGd | UK0056 | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752451 | 1752451 | 20221008032728_EFOGd | UK005H | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752452 | 1752452 | 20221008032728_EFOGd | UK006A | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752453 | 1752453 | 20221008032728_EFOGd | UK006T | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752454 | 1752454 | 20221008032728_EFOGd | UK006V | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
1752455 | 1752455 | 20221008032728_EFOGd | UK006Z | 2024-01-05T23:50:53.198Z | 2024-01-05T23:50:53.198Z |
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);