participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240915021309_nvDxB" 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 |
---|---|---|---|---|---|
5114993 | 5114993 | 20240915021309_nvDxB | UK001K | 2024-09-18T12:05:50.408Z | 2024-09-23T12:16:15.454Z |
5114994 | 5114994 | 20240915021309_nvDxB | UK001S | 2024-09-18T12:05:50.408Z | 2024-09-23T12:16:15.454Z |
5114995 | 5114995 | 20240915021309_nvDxB | UK0024 | 2024-09-18T12:05:50.408Z | 2024-09-23T12:16:15.454Z |
5114996 | 5114996 | 20240915021309_nvDxB | UK004R | 2024-09-18T12:05:50.408Z | 2024-09-23T12:16:15.454Z |
5114997 | 5114997 | 20240915021309_nvDxB | UK0051 | 2024-09-18T12:05:50.408Z | 2024-09-23T12:16:15.454Z |
5114998 | 5114998 | 20240915021309_nvDxB | UK0060 | 2024-09-18T12:05:50.408Z | 2024-09-23T12:16:15.454Z |
5114999 | 5114999 | 20240915021309_nvDxB | UK007Q | 2024-09-18T12:05:50.408Z | 2024-09-23T12:16:15.454Z |
5115000 | 5115000 | 20240915021309_nvDxB | UK008B | 2024-09-18T12:05:50.408Z | 2024-09-23T12:16:15.454Z |
5115001 | 5115001 | 20240915021309_nvDxB | UK009K | 2024-09-18T12:05:50.408Z | 2024-09-23T12:16:15.454Z |
5115002 | 5115002 | 20240915021309_nvDxB | UK00AP | 2024-09-18T12:05:50.408Z | 2024-09-23T12:16:15.454Z |
5115003 | 5115003 | 20240915021309_nvDxB | UK00AU | 2024-09-18T12:05:50.408Z | 2024-09-23T12:16:15.454Z |
5115004 | 5115004 | 20240915021309_nvDxB | UK00BK | 2024-09-18T12:05:50.408Z | 2024-09-23T12:16:15.454Z |
5115005 | 5115005 | 20240915021309_nvDxB | UK00C6 | 2024-09-18T12:05:50.408Z | 2024-09-23T12:16:15.454Z |
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);