participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
18 rows where meteor_unique_trajectory_identifier = "20240811224622_IpTKP" 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 |
---|---|---|---|---|---|
4972456 | 4972456 | 20240811224622_IpTKP | UK000D | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972457 | 4972457 | 20240811224622_IpTKP | UK001S | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972458 | 4972458 | 20240811224622_IpTKP | UK003E | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972459 | 4972459 | 20240811224622_IpTKP | UK0051 | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972460 | 4972460 | 20240811224622_IpTKP | UK005V | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972461 | 4972461 | 20240811224622_IpTKP | UK0060 | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972462 | 4972462 | 20240811224622_IpTKP | UK007Q | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972463 | 4972463 | 20240811224622_IpTKP | UK0083 | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972464 | 4972464 | 20240811224622_IpTKP | UK008B | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972465 | 4972465 | 20240811224622_IpTKP | UK008W | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972466 | 4972466 | 20240811224622_IpTKP | UK009K | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972467 | 4972467 | 20240811224622_IpTKP | UK009W | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972468 | 4972468 | 20240811224622_IpTKP | UK00AP | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972469 | 4972469 | 20240811224622_IpTKP | UK00AT | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972470 | 4972470 | 20240811224622_IpTKP | UK00AU | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972471 | 4972471 | 20240811224622_IpTKP | UK00BB | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972472 | 4972472 | 20240811224622_IpTKP | UK00BK | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
4972473 | 4972473 | 20240811224622_IpTKP | UK00BW | 2024-09-05T12:10:25.510Z | 2024-09-06T12:09:14.260Z |
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);