participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240728014836_s09lN" 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 |
---|---|---|---|---|---|
4716856 | 4716856 | 20240728014836_s09lN | UK004M | 2024-07-30T12:08:11.041Z | 2024-08-05T12:19:50.700Z |
4716857 | 4716857 | 20240728014836_s09lN | UK0050 | 2024-07-30T12:08:11.041Z | 2024-08-05T12:19:50.700Z |
4716858 | 4716858 | 20240728014836_s09lN | UK0072 | 2024-07-30T12:08:11.041Z | 2024-08-05T12:19:50.700Z |
4716859 | 4716859 | 20240728014836_s09lN | UK007M | 2024-07-30T12:08:11.041Z | 2024-08-05T12:19:50.700Z |
4716860 | 4716860 | 20240728014836_s09lN | UK007P | 2024-07-30T12:08:11.041Z | 2024-08-05T12:19:50.700Z |
4716861 | 4716861 | 20240728014836_s09lN | UK0083 | 2024-07-30T12:08:11.041Z | 2024-08-05T12:19:50.700Z |
4716862 | 4716862 | 20240728014836_s09lN | UK008J | 2024-07-30T12:08:11.041Z | 2024-08-05T12:19:50.700Z |
4716863 | 4716863 | 20240728014836_s09lN | UK009P | 2024-07-30T12:08:11.041Z | 2024-08-05T12:19:50.700Z |
4716864 | 4716864 | 20240728014836_s09lN | UK009S | 2024-07-30T12:08:11.041Z | 2024-08-05T12:19:50.700Z |
4716865 | 4716865 | 20240728014836_s09lN | UK00AJ | 2024-07-30T12:08:11.041Z | 2024-08-05T12:19:50.700Z |
4716866 | 4716866 | 20240728014836_s09lN | UK00B0 | 2024-07-30T12:08:11.041Z | 2024-08-05T12:19:50.700Z |
4716867 | 4716867 | 20240728014836_s09lN | UK00BA | 2024-07-30T12:08:11.041Z | 2024-08-05T12:19:50.700Z |
4716868 | 4716868 | 20240728014836_s09lN | UK00CH | 2024-07-30T12:08:11.041Z | 2024-08-05T12:19:50.700Z |
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);