participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20230820030858_wksEi" 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 |
---|---|---|---|---|---|
2860827 | 2860827 | 20230820030858_wksEi | UK0002 | 2024-01-06T00:01:03.880Z | 2024-01-06T00:01:03.880Z |
2860828 | 2860828 | 20230820030858_wksEi | UK0006 | 2024-01-06T00:01:03.880Z | 2024-01-06T00:01:03.880Z |
2860829 | 2860829 | 20230820030858_wksEi | UK0009 | 2024-01-06T00:01:03.880Z | 2024-01-06T00:01:03.880Z |
2860830 | 2860830 | 20230820030858_wksEi | UK000D | 2024-01-06T00:01:03.880Z | 2024-01-06T00:01:03.880Z |
2860831 | 2860831 | 20230820030858_wksEi | UK000H | 2024-01-06T00:01:03.880Z | 2024-01-06T00:01:03.880Z |
2860832 | 2860832 | 20230820030858_wksEi | UK001S | 2024-01-06T00:01:03.880Z | 2024-01-06T00:01:03.880Z |
2860833 | 2860833 | 20230820030858_wksEi | UK004F | 2024-01-06T00:01:03.880Z | 2024-01-06T00:01:03.880Z |
2860834 | 2860834 | 20230820030858_wksEi | UK005S | 2024-01-06T00:01:03.880Z | 2024-01-06T00:01:03.880Z |
2860835 | 2860835 | 20230820030858_wksEi | UK0060 | 2024-01-06T00:01:03.880Z | 2024-01-06T00:01:03.880Z |
2860836 | 2860836 | 20230820030858_wksEi | UK0070 | 2024-01-06T00:01:03.880Z | 2024-01-06T00:01:03.880Z |
2860837 | 2860837 | 20230820030858_wksEi | UK007H | 2024-01-06T00:01:03.880Z | 2024-01-06T00:01:03.880Z |
2860838 | 2860838 | 20230820030858_wksEi | UK008E | 2024-01-06T00:01:03.880Z | 2024-01-06T00:01:03.880Z |
2860839 | 2860839 | 20230820030858_wksEi | UK009W | 2024-01-06T00:01:03.880Z | 2024-01-06T00:01:03.880Z |
2860840 | 2860840 | 20230820030858_wksEi | UK00A5 | 2024-01-06T00:01:03.880Z | 2024-01-06T00:01:03.880Z |
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);