participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240808023117_MTd7b" 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 |
---|---|---|---|---|---|
4902837 | 4902837 | 20240808023117_MTd7b | UK00AL | 2024-08-28T12:19:25.098Z | 2024-08-28T12:19:25.098Z |
4902833 | 4902833 | 20240808023117_MTd7b | UK007R | 2024-08-28T12:19:25.097Z | 2024-08-28T12:19:25.097Z |
4902834 | 4902834 | 20240808023117_MTd7b | UK0087 | 2024-08-28T12:19:25.097Z | 2024-08-28T12:19:25.097Z |
4902835 | 4902835 | 20240808023117_MTd7b | UK0098 | 2024-08-28T12:19:25.097Z | 2024-08-28T12:19:25.097Z |
4902836 | 4902836 | 20240808023117_MTd7b | UK0099 | 2024-08-28T12:19:25.097Z | 2024-08-28T12:19:25.097Z |
4902825 | 4902825 | 20240808023117_MTd7b | UK0027 | 2024-08-28T12:19:25.090Z | 2024-08-28T12:19:25.090Z |
4902826 | 4902826 | 20240808023117_MTd7b | UK0030 | 2024-08-28T12:19:25.090Z | 2024-08-28T12:19:25.090Z |
4902827 | 4902827 | 20240808023117_MTd7b | UK003A | 2024-08-28T12:19:25.090Z | 2024-08-28T12:19:25.090Z |
4902828 | 4902828 | 20240808023117_MTd7b | UK003X | 2024-08-28T12:19:25.090Z | 2024-08-28T12:19:25.090Z |
4902829 | 4902829 | 20240808023117_MTd7b | UK005L | 2024-08-28T12:19:25.090Z | 2024-08-28T12:19:25.090Z |
4902830 | 4902830 | 20240808023117_MTd7b | UK005M | 2024-08-28T12:19:25.090Z | 2024-08-28T12:19:25.090Z |
4902831 | 4902831 | 20240808023117_MTd7b | UK006A | 2024-08-28T12:19:25.090Z | 2024-08-28T12:19:25.090Z |
4902832 | 4902832 | 20240808023117_MTd7b | UK006P | 2024-08-28T12:19:25.090Z | 2024-08-28T12:19:25.090Z |
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);