participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240115194631_22KLY" 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 |
---|---|---|---|---|---|
3836688 | 3836688 | 20240115194631_22KLY | KR0004 | 2024-01-18T14:13:52.634Z | 2024-01-24T14:19:10.590Z |
3836689 | 3836689 | 20240115194631_22KLY | KR000J | 2024-01-18T14:13:52.634Z | 2024-01-24T14:19:10.590Z |
3836690 | 3836690 | 20240115194631_22KLY | KR000L | 2024-01-18T14:13:52.634Z | 2024-01-24T14:19:10.590Z |
3836691 | 3836691 | 20240115194631_22KLY | KR0010 | 2024-01-18T14:13:52.634Z | 2024-01-24T14:19:10.590Z |
3836692 | 3836692 | 20240115194631_22KLY | KR0015 | 2024-01-18T14:13:52.634Z | 2024-01-24T14:19:10.590Z |
3836693 | 3836693 | 20240115194631_22KLY | KR0018 | 2024-01-18T14:13:52.634Z | 2024-01-24T14:19:10.590Z |
3836694 | 3836694 | 20240115194631_22KLY | KR001B | 2024-01-18T14:13:52.634Z | 2024-01-24T14:19:10.590Z |
3836695 | 3836695 | 20240115194631_22KLY | KR002L | 2024-01-18T14:13:52.634Z | 2024-01-24T14:19:10.590Z |
3836696 | 3836696 | 20240115194631_22KLY | KR002P | 2024-01-18T14:13:52.634Z | 2024-01-24T14:19:10.590Z |
3836697 | 3836697 | 20240115194631_22KLY | KR0030 | 2024-01-18T14:13:52.634Z | 2024-01-24T14:19:10.590Z |
3836698 | 3836698 | 20240115194631_22KLY | KR003B | 2024-01-18T14:13:52.634Z | 2024-01-24T14:19:10.590Z |
3836699 | 3836699 | 20240115194631_22KLY | KR003M | 2024-01-18T14:13:52.634Z | 2024-01-24T14:19:10.590Z |
3836700 | 3836700 | 20240115194631_22KLY | KR003T | 2024-01-18T14:13:52.634Z | 2024-01-24T14:19:10.590Z |
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);