participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20241122034333_K9V9I" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
5582596 | 5582596 | 20241122034333_K9V9I | UK0084 | 2024-11-23T14:21:10.858Z | 2024-11-25T14:20:47.037Z |
5582597 | 5582597 | 20241122034333_K9V9I | UK00C7 | 2024-11-23T14:21:10.858Z | 2024-11-25T14:20:47.037Z |
5582598 | 5582598 | 20241122034333_K9V9I | UK00CA | 2024-11-23T14:21:10.858Z | 2024-11-25T14:20:47.037Z |
5582586 | 5582586 | 20241122034333_K9V9I | BE000H | 2024-11-23T14:21:10.857Z | 2024-11-25T14:20:47.037Z |
5582587 | 5582587 | 20241122034333_K9V9I | UK0009 | 2024-11-23T14:21:10.857Z | 2024-11-25T14:20:47.037Z |
5582588 | 5582588 | 20241122034333_K9V9I | UK000F | 2024-11-23T14:21:10.857Z | 2024-11-25T14:20:47.037Z |
5582589 | 5582589 | 20241122034333_K9V9I | UK0022 | 2024-11-23T14:21:10.857Z | 2024-11-25T14:20:47.037Z |
5582590 | 5582590 | 20241122034333_K9V9I | UK002Q | 2024-11-23T14:21:10.857Z | 2024-11-25T14:20:47.037Z |
5582591 | 5582591 | 20241122034333_K9V9I | UK003N | 2024-11-23T14:21:10.857Z | 2024-11-25T14:20:47.037Z |
5582592 | 5582592 | 20241122034333_K9V9I | UK004F | 2024-11-23T14:21:10.857Z | 2024-11-25T14:20:47.037Z |
5582593 | 5582593 | 20241122034333_K9V9I | UK005N | 2024-11-23T14:21:10.857Z | 2024-11-25T14:20:47.037Z |
5582594 | 5582594 | 20241122034333_K9V9I | UK007B | 2024-11-23T14:21:10.857Z | 2024-11-25T14:20:47.037Z |
5582595 | 5582595 | 20241122034333_K9V9I | UK007H | 2024-11-23T14:21:10.857Z | 2024-11-25T14:20:47.037Z |
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);