participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20241121215444_ES8Vs" 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 |
---|---|---|---|---|---|
5579158 | 5579158 | 20241121215444_ES8Vs | IE0004 | 2024-11-23T14:17:56.711Z | 2024-11-26T14:24:55.363Z |
5579159 | 5579159 | 20241121215444_ES8Vs | UK001L | 2024-11-23T14:17:56.711Z | 2024-11-26T14:24:55.363Z |
5579160 | 5579160 | 20241121215444_ES8Vs | UK001U | 2024-11-23T14:17:56.711Z | 2024-11-26T14:24:55.363Z |
5579161 | 5579161 | 20241121215444_ES8Vs | UK004M | 2024-11-23T14:17:56.711Z | 2024-11-26T14:24:55.363Z |
5579162 | 5579162 | 20241121215444_ES8Vs | UK0050 | 2024-11-23T14:17:56.711Z | 2024-11-26T14:24:55.363Z |
5579163 | 5579163 | 20241121215444_ES8Vs | UK005L | 2024-11-23T14:17:56.711Z | 2024-11-26T14:24:55.363Z |
5579164 | 5579164 | 20241121215444_ES8Vs | UK008J | 2024-11-23T14:17:56.711Z | 2024-11-26T14:24:55.363Z |
5579165 | 5579165 | 20241121215444_ES8Vs | UK008S | 2024-11-23T14:17:56.711Z | 2024-11-26T14:24:55.363Z |
5579166 | 5579166 | 20241121215444_ES8Vs | UK0090 | 2024-11-23T14:17:56.711Z | 2024-11-26T14:24:55.363Z |
5579167 | 5579167 | 20241121215444_ES8Vs | UK009P | 2024-11-23T14:17:56.711Z | 2024-11-26T14:24:55.363Z |
5579168 | 5579168 | 20241121215444_ES8Vs | UK00BF | 2024-11-23T14:17:56.711Z | 2024-11-26T14:24:55.363Z |
5579169 | 5579169 | 20241121215444_ES8Vs | UK00C9 | 2024-11-23T14:17:56.711Z | 2024-11-26T14:24:55.363Z |
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);