participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240811223827_ieSYj" 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 |
---|---|---|---|---|---|
4971662 | 4971662 | 20240811223827_ieSYj | UK000J | 2024-09-05T12:09:53.113Z | 2024-09-06T12:08:56.361Z |
4971663 | 4971663 | 20240811223827_ieSYj | UK000R | 2024-09-05T12:09:53.113Z | 2024-09-06T12:08:56.361Z |
4971664 | 4971664 | 20240811223827_ieSYj | UK0026 | 2024-09-05T12:09:53.113Z | 2024-09-06T12:08:56.361Z |
4971665 | 4971665 | 20240811223827_ieSYj | UK0035 | 2024-09-05T12:09:53.113Z | 2024-09-06T12:08:56.361Z |
4971666 | 4971666 | 20240811223827_ieSYj | UK003X | 2024-09-05T12:09:53.113Z | 2024-09-06T12:08:56.361Z |
4971667 | 4971667 | 20240811223827_ieSYj | UK005M | 2024-09-05T12:09:53.113Z | 2024-09-06T12:08:56.361Z |
4971668 | 4971668 | 20240811223827_ieSYj | UK006L | 2024-09-05T12:09:53.113Z | 2024-09-06T12:08:56.361Z |
4971669 | 4971669 | 20240811223827_ieSYj | UK0086 | 2024-09-05T12:09:53.113Z | 2024-09-06T12:08:56.361Z |
4971670 | 4971670 | 20240811223827_ieSYj | UK0099 | 2024-09-05T12:09:53.113Z | 2024-09-06T12:08:56.361Z |
4971671 | 4971671 | 20240811223827_ieSYj | UK00AL | 2024-09-05T12:09:53.113Z | 2024-09-06T12:08:56.361Z |
4971672 | 4971672 | 20240811223827_ieSYj | UK00AT | 2024-09-05T12:09:53.113Z | 2024-09-06T12:08:56.361Z |
4971673 | 4971673 | 20240811223827_ieSYj | UK00BH | 2024-09-05T12:09:53.113Z | 2024-09-06T12:08:56.361Z |
4971674 | 4971674 | 20240811223827_ieSYj | UK00C2 | 2024-09-05T12:09:53.113Z | 2024-09-06T12:08:56.361Z |
4971675 | 4971675 | 20240811223827_ieSYj | UK00CC | 2024-09-05T12:09:53.113Z | 2024-09-06T12:08:56.361Z |
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);