participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
17 rows where meteor_unique_trajectory_identifier = "20240811213333_JCIWP" 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 |
---|---|---|---|---|---|
4966753 | 4966753 | 20240811213333_JCIWP | NL000M | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
4966754 | 4966754 | 20240811213333_JCIWP | UK000J | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
4966755 | 4966755 | 20240811213333_JCIWP | UK002F | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
4966756 | 4966756 | 20240811213333_JCIWP | UK002K | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
4966757 | 4966757 | 20240811213333_JCIWP | UK005G | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
4966758 | 4966758 | 20240811213333_JCIWP | UK005M | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
4966759 | 4966759 | 20240811213333_JCIWP | UK006G | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
4966760 | 4966760 | 20240811213333_JCIWP | UK0086 | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
4966761 | 4966761 | 20240811213333_JCIWP | UK0087 | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
4966762 | 4966762 | 20240811213333_JCIWP | UK0099 | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
4966763 | 4966763 | 20240811213333_JCIWP | UK00A3 | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
4966764 | 4966764 | 20240811213333_JCIWP | UK00AL | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
4966765 | 4966765 | 20240811213333_JCIWP | UK00AN | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
4966766 | 4966766 | 20240811213333_JCIWP | UK00AZ | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
4966767 | 4966767 | 20240811213333_JCIWP | UK00B1 | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
4966768 | 4966768 | 20240811213333_JCIWP | UK00BJ | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
4966769 | 4966769 | 20240811213333_JCIWP | UK00CC | 2024-09-04T12:07:34.036Z | 2024-09-06T12:06:47.087Z |
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);