participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240509224025_DFtl4" 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 |
---|---|---|---|---|---|
4341520 | 4341520 | 20240509224025_DFtl4 | UK009L | 2024-05-19T12:09:18.940Z | 2024-05-21T12:10:14.452Z |
4341521 | 4341521 | 20240509224025_DFtl4 | UK009V | 2024-05-19T12:09:18.940Z | 2024-05-21T12:10:14.452Z |
4341522 | 4341522 | 20240509224025_DFtl4 | UK00A5 | 2024-05-19T12:09:18.940Z | 2024-05-21T12:10:14.452Z |
4341523 | 4341523 | 20240509224025_DFtl4 | UK00B1 | 2024-05-19T12:09:18.940Z | 2024-05-21T12:10:14.452Z |
4341516 | 4341516 | 20240509224025_DFtl4 | UK006D | 2024-05-19T12:09:18.921Z | 2024-05-21T12:10:14.452Z |
4341517 | 4341517 | 20240509224025_DFtl4 | UK007R | 2024-05-19T12:09:18.921Z | 2024-05-21T12:10:14.452Z |
4341518 | 4341518 | 20240509224025_DFtl4 | UK007V | 2024-05-19T12:09:18.921Z | 2024-05-21T12:10:14.452Z |
4341519 | 4341519 | 20240509224025_DFtl4 | UK009E | 2024-05-19T12:09:18.921Z | 2024-05-21T12:10:14.452Z |
4341515 | 4341515 | 20240509224025_DFtl4 | UK005N | 2024-05-19T12:09:18.904Z | 2024-05-21T12:10:14.452Z |
4341513 | 4341513 | 20240509224025_DFtl4 | UK000S | 2024-05-19T12:09:18.889Z | 2024-05-21T12:10:14.451Z |
4341514 | 4341514 | 20240509224025_DFtl4 | UK003D | 2024-05-19T12:09:18.889Z | 2024-05-21T12:10:14.451Z |
4341512 | 4341512 | 20240509224025_DFtl4 | UK000F | 2024-05-19T12:09:18.882Z | 2024-05-21T12:10:14.451Z |
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);