participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240914004411_A1rfk" 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 |
---|---|---|---|---|---|
5101730 | 5101730 | 20240914004411_A1rfk | UK0092 | 2024-09-17T12:06:10.258Z | 2024-09-22T12:17:51.911Z |
5101731 | 5101731 | 20240914004411_A1rfk | UK00A5 | 2024-09-17T12:06:10.258Z | 2024-09-22T12:17:51.911Z |
5101732 | 5101732 | 20240914004411_A1rfk | UK00AP | 2024-09-17T12:06:10.258Z | 2024-09-22T12:17:51.911Z |
5101719 | 5101719 | 20240914004411_A1rfk | UK0006 | 2024-09-17T12:06:10.254Z | 2024-09-22T12:17:51.911Z |
5101720 | 5101720 | 20240914004411_A1rfk | UK000D | 2024-09-17T12:06:10.254Z | 2024-09-22T12:17:51.911Z |
5101721 | 5101721 | 20240914004411_A1rfk | UK000H | 2024-09-17T12:06:10.254Z | 2024-09-22T12:17:51.911Z |
5101722 | 5101722 | 20240914004411_A1rfk | UK000T | 2024-09-17T12:06:10.254Z | 2024-09-22T12:17:51.911Z |
5101723 | 5101723 | 20240914004411_A1rfk | UK002J | 2024-09-17T12:06:10.254Z | 2024-09-22T12:17:51.911Z |
5101724 | 5101724 | 20240914004411_A1rfk | UK0035 | 2024-09-17T12:06:10.254Z | 2024-09-22T12:17:51.911Z |
5101725 | 5101725 | 20240914004411_A1rfk | UK003D | 2024-09-17T12:06:10.254Z | 2024-09-22T12:17:51.911Z |
5101726 | 5101726 | 20240914004411_A1rfk | UK0070 | 2024-09-17T12:06:10.254Z | 2024-09-22T12:17:51.911Z |
5101727 | 5101727 | 20240914004411_A1rfk | UK007Q | 2024-09-17T12:06:10.254Z | 2024-09-22T12:17:51.911Z |
5101728 | 5101728 | 20240914004411_A1rfk | UK0084 | 2024-09-17T12:06:10.254Z | 2024-09-22T12:17:51.911Z |
5101729 | 5101729 | 20240914004411_A1rfk | UK008K | 2024-09-17T12:06:10.254Z | 2024-09-22T12:17:51.911Z |
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);