participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240518152426_mySmf" 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 |
---|---|---|---|---|---|
4369487 | 4369487 | 20240518152426_mySmf | KR003B | 2024-05-26T12:08:21.188Z | 2024-05-26T12:09:53.275Z |
4369488 | 4369488 | 20240518152426_mySmf | KR003T | 2024-05-26T12:08:21.188Z | 2024-05-26T12:09:53.275Z |
4369482 | 4369482 | 20240518152426_mySmf | KR0014 | 2024-05-26T12:08:21.187Z | 2024-05-26T12:09:53.275Z |
4369483 | 4369483 | 20240518152426_mySmf | KR001C | 2024-05-26T12:08:21.187Z | 2024-05-26T12:09:53.275Z |
4369484 | 4369484 | 20240518152426_mySmf | KR001X | 2024-05-26T12:08:21.187Z | 2024-05-26T12:09:53.275Z |
4369485 | 4369485 | 20240518152426_mySmf | KR002K | 2024-05-26T12:08:21.187Z | 2024-05-26T12:09:53.275Z |
4369486 | 4369486 | 20240518152426_mySmf | KR002Z | 2024-05-26T12:08:21.187Z | 2024-05-26T12:09:53.275Z |
4369481 | 4369481 | 20240518152426_mySmf | KR000S | 2024-05-26T12:08:21.162Z | 2024-05-26T12:09:53.275Z |
4369477 | 4369477 | 20240518152426_mySmf | KR0004 | 2024-05-26T12:08:21.161Z | 2024-05-26T12:09:53.275Z |
4369478 | 4369478 | 20240518152426_mySmf | KR0007 | 2024-05-26T12:08:21.161Z | 2024-05-26T12:09:53.275Z |
4369479 | 4369479 | 20240518152426_mySmf | KR000D | 2024-05-26T12:08:21.161Z | 2024-05-26T12:09:53.275Z |
4369480 | 4369480 | 20240518152426_mySmf | KR000L | 2024-05-26T12:08:21.161Z | 2024-05-26T12:09:53.275Z |
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);