participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240518183423_jIqE2" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4370554 | 4370554 | 20240518183423_jIqE2 | KR0007 | 2024-05-26T12:09:32.861Z | 2024-05-26T12:09:53.551Z |
4370555 | 4370555 | 20240518183423_jIqE2 | KR000D | 2024-05-26T12:09:32.861Z | 2024-05-26T12:09:53.551Z |
4370556 | 4370556 | 20240518183423_jIqE2 | KR000J | 2024-05-26T12:09:32.861Z | 2024-05-26T12:09:53.551Z |
4370557 | 4370557 | 20240518183423_jIqE2 | KR000L | 2024-05-26T12:09:32.861Z | 2024-05-26T12:09:53.551Z |
4370558 | 4370558 | 20240518183423_jIqE2 | KR000S | 2024-05-26T12:09:32.861Z | 2024-05-26T12:09:53.551Z |
4370559 | 4370559 | 20240518183423_jIqE2 | KR001B | 2024-05-26T12:09:32.861Z | 2024-05-26T12:09:53.551Z |
4370560 | 4370560 | 20240518183423_jIqE2 | KR001C | 2024-05-26T12:09:32.861Z | 2024-05-26T12:09:53.551Z |
4370561 | 4370561 | 20240518183423_jIqE2 | KR001D | 2024-05-26T12:09:32.861Z | 2024-05-26T12:09:53.551Z |
4370562 | 4370562 | 20240518183423_jIqE2 | KR002U | 2024-05-26T12:09:32.861Z | 2024-05-26T12:09:53.552Z |
4370563 | 4370563 | 20240518183423_jIqE2 | KR002V | 2024-05-26T12:09:32.861Z | 2024-05-26T12:09:53.552Z |
4370564 | 4370564 | 20240518183423_jIqE2 | KR003M | 2024-05-26T12:09:32.861Z | 2024-05-26T12:09:53.552Z |
4370565 | 4370565 | 20240518183423_jIqE2 | KR003N | 2024-05-26T12:09:32.861Z | 2024-05-26T12:09:53.552Z |
4370566 | 4370566 | 20240518183423_jIqE2 | KR003T | 2024-05-26T12:09:32.861Z | 2024-05-26T12:09:53.552Z |
4370567 | 4370567 | 20240518183423_jIqE2 | KR003X | 2024-05-26T12:09:32.861Z | 2024-05-26T12:09:53.552Z |
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);