participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20231022033202_8JO2s" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
3237302 | 3237302 | 20231022033202_8JO2s | UK008X | 2024-01-06T00:03:15.721Z | 2024-01-06T00:03:15.721Z |
3237303 | 3237303 | 20231022033202_8JO2s | UK009D | 2024-01-06T00:03:15.721Z | 2024-01-06T00:03:15.721Z |
3237304 | 3237304 | 20231022033202_8JO2s | UK009T | 2024-01-06T00:03:15.721Z | 2024-01-06T00:03:15.721Z |
3237290 | 3237290 | 20231022033202_8JO2s | UK0006 | 2024-01-06T00:03:15.720Z | 2024-01-06T00:03:15.720Z |
3237291 | 3237291 | 20231022033202_8JO2s | UK000U | 2024-01-06T00:03:15.720Z | 2024-01-06T00:03:15.720Z |
3237292 | 3237292 | 20231022033202_8JO2s | UK001Y | 2024-01-06T00:03:15.720Z | 2024-01-06T00:03:15.720Z |
3237293 | 3237293 | 20231022033202_8JO2s | UK001Z | 2024-01-06T00:03:15.720Z | 2024-01-06T00:03:15.720Z |
3237294 | 3237294 | 20231022033202_8JO2s | UK0026 | 2024-01-06T00:03:15.720Z | 2024-01-06T00:03:15.720Z |
3237295 | 3237295 | 20231022033202_8JO2s | UK003Z | 2024-01-06T00:03:15.720Z | 2024-01-06T00:03:15.720Z |
3237296 | 3237296 | 20231022033202_8JO2s | UK005S | 2024-01-06T00:03:15.720Z | 2024-01-06T00:03:15.720Z |
3237297 | 3237297 | 20231022033202_8JO2s | UK005V | 2024-01-06T00:03:15.720Z | 2024-01-06T00:03:15.720Z |
3237298 | 3237298 | 20231022033202_8JO2s | UK007A | 2024-01-06T00:03:15.720Z | 2024-01-06T00:03:15.720Z |
3237299 | 3237299 | 20231022033202_8JO2s | UK007L | 2024-01-06T00:03:15.720Z | 2024-01-06T00:03:15.720Z |
3237300 | 3237300 | 20231022033202_8JO2s | UK0084 | 2024-01-06T00:03:15.720Z | 2024-01-06T00:03:15.720Z |
3237301 | 3237301 | 20231022033202_8JO2s | UK008B | 2024-01-06T00:03:15.720Z | 2024-01-06T00:03:15.720Z |
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);