participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
17 rows where meteor_unique_trajectory_identifier = "20240812004447_iu33n" 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 |
---|---|---|---|---|---|
4983467 | 4983467 | 20240812004447_iu33n | UK000S | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
4983468 | 4983468 | 20240812004447_iu33n | UK002F | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
4983469 | 4983469 | 20240812004447_iu33n | UK002K | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
4983470 | 4983470 | 20240812004447_iu33n | UK005E | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
4983471 | 4983471 | 20240812004447_iu33n | UK006G | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
4983472 | 4983472 | 20240812004447_iu33n | UK006P | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
4983473 | 4983473 | 20240812004447_iu33n | UK007Y | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
4983474 | 4983474 | 20240812004447_iu33n | UK0087 | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
4983475 | 4983475 | 20240812004447_iu33n | UK0099 | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
4983476 | 4983476 | 20240812004447_iu33n | UK009L | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
4983477 | 4983477 | 20240812004447_iu33n | UK00A0 | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
4983478 | 4983478 | 20240812004447_iu33n | UK00A3 | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
4983479 | 4983479 | 20240812004447_iu33n | UK00AL | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
4983480 | 4983480 | 20240812004447_iu33n | UK00AZ | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
4983481 | 4983481 | 20240812004447_iu33n | UK00BH | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
4983482 | 4983482 | 20240812004447_iu33n | UK00C2 | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
4983483 | 4983483 | 20240812004447_iu33n | UK00CC | 2024-09-06T12:15:34.501Z | 2024-09-06T12:15:34.501Z |
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);