participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240307023021_xdP6x" 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 |
---|---|---|---|---|---|
4041160 | 4041160 | 20240307023021_xdP6x | UK000S | 2024-03-08T14:08:36.139Z | 2024-03-15T12:19:28.315Z |
4041161 | 4041161 | 20240307023021_xdP6x | UK000Y | 2024-03-08T14:08:36.139Z | 2024-03-15T12:19:28.315Z |
4041162 | 4041162 | 20240307023021_xdP6x | UK001Z | 2024-03-08T14:08:36.139Z | 2024-03-15T12:19:28.315Z |
4041163 | 4041163 | 20240307023021_xdP6x | UK003Y | 2024-03-08T14:08:36.139Z | 2024-03-15T12:19:28.315Z |
4041164 | 4041164 | 20240307023021_xdP6x | UK003Z | 2024-03-08T14:08:36.139Z | 2024-03-15T12:19:28.315Z |
4041165 | 4041165 | 20240307023021_xdP6x | UK004N | 2024-03-08T14:08:36.139Z | 2024-03-15T12:19:28.315Z |
4041166 | 4041166 | 20240307023021_xdP6x | UK005S | 2024-03-08T14:08:36.139Z | 2024-03-15T12:19:28.315Z |
4041167 | 4041167 | 20240307023021_xdP6x | UK0067 | 2024-03-08T14:08:36.139Z | 2024-03-15T12:19:28.315Z |
4041168 | 4041168 | 20240307023021_xdP6x | UK0084 | 2024-03-08T14:08:36.139Z | 2024-03-15T12:19:28.315Z |
4041169 | 4041169 | 20240307023021_xdP6x | UK008J | 2024-03-08T14:08:36.139Z | 2024-03-15T12:19:28.315Z |
4041170 | 4041170 | 20240307023021_xdP6x | UK008U | 2024-03-08T14:08:36.139Z | 2024-03-15T12:19:28.315Z |
4041171 | 4041171 | 20240307023021_xdP6x | UK00BK | 2024-03-08T14:08:36.139Z | 2024-03-15T12:19:28.315Z |
4041172 | 4041172 | 20240307023021_xdP6x | UK00C1 | 2024-03-08T14:08:36.139Z | 2024-03-15T12:19:28.315Z |
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);