participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
9 rows where meteor_unique_trajectory_identifier = "20240324033309_k2D32" 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 |
---|---|---|---|---|---|
4110789 | 4110789 | 20240324033309_k2D32 | UK007B | 2024-03-25T12:03:44.694Z | 2024-04-01T12:16:09.605Z |
4110790 | 4110790 | 20240324033309_k2D32 | UK007E | 2024-03-25T12:03:44.694Z | 2024-04-01T12:16:09.605Z |
4110791 | 4110791 | 20240324033309_k2D32 | UK009A | 2024-03-25T12:03:44.694Z | 2024-04-01T12:16:09.605Z |
4110792 | 4110792 | 20240324033309_k2D32 | UK00AK | 2024-03-25T12:03:44.694Z | 2024-04-01T12:16:09.605Z |
4110793 | 4110793 | 20240324033309_k2D32 | UK00AP | 2024-03-25T12:03:44.694Z | 2024-04-01T12:16:09.605Z |
4110794 | 4110794 | 20240324033309_k2D32 | UK00BE | 2024-03-25T12:03:44.694Z | 2024-04-01T12:16:09.605Z |
4110788 | 4110788 | 20240324033309_k2D32 | UK006X | 2024-03-25T12:03:44.684Z | 2024-04-01T12:16:09.605Z |
4110786 | 4110786 | 20240324033309_k2D32 | UK0025 | 2024-03-25T12:03:44.670Z | 2024-04-01T12:16:09.605Z |
4110787 | 4110787 | 20240324033309_k2D32 | UK002W | 2024-03-25T12:03:44.670Z | 2024-04-01T12:16:09.605Z |
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);