participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20240115210253_RKY6c" 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 |
---|---|---|---|---|---|
3837563 | 3837563 | 20240115210253_RKY6c | KR002T | 2024-01-18T14:14:32.864Z | 2024-01-24T14:19:14.906Z |
3837564 | 3837564 | 20240115210253_RKY6c | KR0030 | 2024-01-18T14:14:32.864Z | 2024-01-24T14:19:14.906Z |
3837565 | 3837565 | 20240115210253_RKY6c | KR003B | 2024-01-18T14:14:32.864Z | 2024-01-24T14:19:14.906Z |
3837566 | 3837566 | 20240115210253_RKY6c | KR003G | 2024-01-18T14:14:32.864Z | 2024-01-24T14:19:14.906Z |
3837567 | 3837567 | 20240115210253_RKY6c | KR003M | 2024-01-18T14:14:32.864Z | 2024-01-24T14:19:14.906Z |
3837552 | 3837552 | 20240115210253_RKY6c | KR0004 | 2024-01-18T14:14:32.863Z | 2024-01-24T14:19:14.906Z |
3837553 | 3837553 | 20240115210253_RKY6c | KR0010 | 2024-01-18T14:14:32.863Z | 2024-01-24T14:19:14.906Z |
3837554 | 3837554 | 20240115210253_RKY6c | KR0015 | 2024-01-18T14:14:32.863Z | 2024-01-24T14:19:14.906Z |
3837555 | 3837555 | 20240115210253_RKY6c | KR0016 | 2024-01-18T14:14:32.863Z | 2024-01-24T14:19:14.906Z |
3837556 | 3837556 | 20240115210253_RKY6c | KR0018 | 2024-01-18T14:14:32.863Z | 2024-01-24T14:19:14.906Z |
3837557 | 3837557 | 20240115210253_RKY6c | KR001B | 2024-01-18T14:14:32.863Z | 2024-01-24T14:19:14.906Z |
3837558 | 3837558 | 20240115210253_RKY6c | KR001E | 2024-01-18T14:14:32.863Z | 2024-01-24T14:19:14.906Z |
3837559 | 3837559 | 20240115210253_RKY6c | KR001H | 2024-01-18T14:14:32.863Z | 2024-01-24T14:19:14.906Z |
3837560 | 3837560 | 20240115210253_RKY6c | KR0026 | 2024-01-18T14:14:32.863Z | 2024-01-24T14:19:14.906Z |
3837561 | 3837561 | 20240115210253_RKY6c | KR002L | 2024-01-18T14:14:32.863Z | 2024-01-24T14:19:14.906Z |
3837562 | 3837562 | 20240115210253_RKY6c | KR002P | 2024-01-18T14:14:32.863Z | 2024-01-24T14:19:14.906Z |
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);