participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240304012158_BAl31" 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 |
---|---|---|---|---|---|
4024697 | 4024697 | 20240304012158_BAl31 | UK0006 | 2024-03-05T14:06:08.625Z | 2024-03-12T12:15:23.245Z |
4024698 | 4024698 | 20240304012158_BAl31 | UK0009 | 2024-03-05T14:06:08.625Z | 2024-03-12T12:15:23.245Z |
4024699 | 4024699 | 20240304012158_BAl31 | UK000F | 2024-03-05T14:06:08.625Z | 2024-03-12T12:15:23.245Z |
4024700 | 4024700 | 20240304012158_BAl31 | UK002J | 2024-03-05T14:06:08.625Z | 2024-03-12T12:15:23.245Z |
4024701 | 4024701 | 20240304012158_BAl31 | UK002Q | 2024-03-05T14:06:08.625Z | 2024-03-12T12:15:23.245Z |
4024702 | 4024702 | 20240304012158_BAl31 | UK002W | 2024-03-05T14:06:08.625Z | 2024-03-12T12:15:23.245Z |
4024703 | 4024703 | 20240304012158_BAl31 | UK003M | 2024-03-05T14:06:08.625Z | 2024-03-12T12:15:23.245Z |
4024704 | 4024704 | 20240304012158_BAl31 | UK005N | 2024-03-05T14:06:08.625Z | 2024-03-12T12:15:23.245Z |
4024705 | 4024705 | 20240304012158_BAl31 | UK007B | 2024-03-05T14:06:08.625Z | 2024-03-12T12:15:23.245Z |
4024706 | 4024706 | 20240304012158_BAl31 | UK0084 | 2024-03-05T14:06:08.625Z | 2024-03-12T12:15:23.245Z |
4024707 | 4024707 | 20240304012158_BAl31 | UK00A5 | 2024-03-05T14:06:08.625Z | 2024-03-12T12:15:23.245Z |
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);