participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240811015147_PhIcr" 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 |
---|---|---|---|---|---|
4949550 | 4949550 | 20240811015147_PhIcr | UK0031 | 2024-09-02T12:15:49.165Z | 2024-09-06T12:27:34.871Z |
4949551 | 4949551 | 20240811015147_PhIcr | UK0032 | 2024-09-02T12:15:49.165Z | 2024-09-06T12:27:34.871Z |
4949552 | 4949552 | 20240811015147_PhIcr | UK0042 | 2024-09-02T12:15:49.165Z | 2024-09-06T12:27:34.871Z |
4949553 | 4949553 | 20240811015147_PhIcr | UK004D | 2024-09-02T12:15:49.165Z | 2024-09-06T12:27:34.871Z |
4949554 | 4949554 | 20240811015147_PhIcr | UK0050 | 2024-09-02T12:15:49.165Z | 2024-09-06T12:27:34.871Z |
4949555 | 4949555 | 20240811015147_PhIcr | UK006A | 2024-09-02T12:15:49.165Z | 2024-09-06T12:27:34.871Z |
4949556 | 4949556 | 20240811015147_PhIcr | UK0090 | 2024-09-02T12:15:49.165Z | 2024-09-06T12:27:34.871Z |
4949557 | 4949557 | 20240811015147_PhIcr | UK00CD | 2024-09-02T12:15:49.165Z | 2024-09-06T12:27:34.871Z |
4949558 | 4949558 | 20240811015147_PhIcr | UK00CH | 2024-09-02T12:15:49.165Z | 2024-09-06T12:27:34.871Z |
4949548 | 4949548 | 20240811015147_PhIcr | UK000U | 2024-09-02T12:15:49.164Z | 2024-09-06T12:27:34.871Z |
4949549 | 4949549 | 20240811015147_PhIcr | UK002Z | 2024-09-02T12:15:49.164Z | 2024-09-06T12:27:34.871Z |
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);