participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20240719004110_7GcNO" 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 |
---|---|---|---|---|---|
4667358 | 4667358 | 20240719004110_7GcNO | UK007N | 2024-07-20T12:03:43.226Z | 2024-07-27T12:17:10.423Z |
4667359 | 4667359 | 20240719004110_7GcNO | UK007R | 2024-07-20T12:03:43.226Z | 2024-07-27T12:17:10.423Z |
4667360 | 4667360 | 20240719004110_7GcNO | UK0092 | 2024-07-20T12:03:43.226Z | 2024-07-27T12:17:10.423Z |
4667361 | 4667361 | 20240719004110_7GcNO | UK0098 | 2024-07-20T12:03:43.226Z | 2024-07-27T12:17:10.423Z |
4667362 | 4667362 | 20240719004110_7GcNO | UK009J | 2024-07-20T12:03:43.226Z | 2024-07-27T12:17:10.423Z |
4667363 | 4667363 | 20240719004110_7GcNO | UK00AG | 2024-07-20T12:03:43.226Z | 2024-07-27T12:17:10.423Z |
4667364 | 4667364 | 20240719004110_7GcNO | UK00AT | 2024-07-20T12:03:43.226Z | 2024-07-27T12:17:10.423Z |
4667365 | 4667365 | 20240719004110_7GcNO | UK00B1 | 2024-07-20T12:03:43.226Z | 2024-07-27T12:17:10.423Z |
4667366 | 4667366 | 20240719004110_7GcNO | UK00B2 | 2024-07-20T12:03:43.226Z | 2024-07-27T12:17:10.423Z |
4667367 | 4667367 | 20240719004110_7GcNO | UK00B6 | 2024-07-20T12:03:43.226Z | 2024-07-27T12:17:10.423Z |
4667368 | 4667368 | 20240719004110_7GcNO | UK00BH | 2024-07-20T12:03:43.226Z | 2024-07-27T12:17:10.423Z |
4667354 | 4667354 | 20240719004110_7GcNO | UK000S | 2024-07-20T12:03:43.217Z | 2024-07-27T12:17:10.423Z |
4667355 | 4667355 | 20240719004110_7GcNO | UK003X | 2024-07-20T12:03:43.217Z | 2024-07-27T12:17:10.423Z |
4667356 | 4667356 | 20240719004110_7GcNO | UK0041 | 2024-07-20T12:03:43.217Z | 2024-07-27T12:17:10.423Z |
4667357 | 4667357 | 20240719004110_7GcNO | UK0062 | 2024-07-20T12:03:43.217Z | 2024-07-27T12:17:10.423Z |
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);