participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20230816214442_S5t25" 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 |
---|---|---|---|---|---|
2836495 | 2836495 | 20230816214442_S5t25 | UK0002 | 2024-01-06T00:00:57.398Z | 2024-01-06T00:00:57.398Z |
2836496 | 2836496 | 20230816214442_S5t25 | UK000D | 2024-01-06T00:00:57.398Z | 2024-01-06T00:00:57.398Z |
2836497 | 2836497 | 20230816214442_S5t25 | UK000H | 2024-01-06T00:00:57.398Z | 2024-01-06T00:00:57.398Z |
2836498 | 2836498 | 20230816214442_S5t25 | UK000T | 2024-01-06T00:00:57.398Z | 2024-01-06T00:00:57.398Z |
2836499 | 2836499 | 20230816214442_S5t25 | UK001K | 2024-01-06T00:00:57.398Z | 2024-01-06T00:00:57.398Z |
2836500 | 2836500 | 20230816214442_S5t25 | UK001S | 2024-01-06T00:00:57.398Z | 2024-01-06T00:00:57.398Z |
2836501 | 2836501 | 20230816214442_S5t25 | UK003C | 2024-01-06T00:00:57.398Z | 2024-01-06T00:00:57.398Z |
2836502 | 2836502 | 20230816214442_S5t25 | UK003Z | 2024-01-06T00:00:57.398Z | 2024-01-06T00:00:57.398Z |
2836503 | 2836503 | 20230816214442_S5t25 | UK004G | 2024-01-06T00:00:57.398Z | 2024-01-06T00:00:57.398Z |
2836504 | 2836504 | 20230816214442_S5t25 | UK005V | 2024-01-06T00:00:57.398Z | 2024-01-06T00:00:57.398Z |
2836505 | 2836505 | 20230816214442_S5t25 | UK007L | 2024-01-06T00:00:57.398Z | 2024-01-06T00:00:57.398Z |
2836506 | 2836506 | 20230816214442_S5t25 | UK0084 | 2024-01-06T00:00:57.398Z | 2024-01-06T00:00:57.398Z |
2836507 | 2836507 | 20230816214442_S5t25 | UK008B | 2024-01-06T00:00:57.398Z | 2024-01-06T00:00:57.398Z |
2836508 | 2836508 | 20230816214442_S5t25 | UK008E | 2024-01-06T00:00:57.398Z | 2024-01-06T00:00:57.398Z |
2836509 | 2836509 | 20230816214442_S5t25 | UK008X | 2024-01-06T00:00:57.398Z | 2024-01-06T00:00:57.398Z |
2836510 | 2836510 | 20230816214442_S5t25 | UK0092 | 2024-01-06T00:00:57.398Z | 2024-01-06T00:00:57.398Z |
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);