participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20240416215607_w1y4l" 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 |
---|---|---|---|---|---|
4200465 | 4200465 | 20240416215607_w1y4l | UK008K | 2024-04-18T12:01:31.295Z | 2024-04-25T12:21:00.338Z |
4200466 | 4200466 | 20240416215607_w1y4l | UK008Q | 2024-04-18T12:01:31.295Z | 2024-04-25T12:21:00.338Z |
4200467 | 4200467 | 20240416215607_w1y4l | UK009K | 2024-04-18T12:01:31.295Z | 2024-04-25T12:21:00.338Z |
4200468 | 4200468 | 20240416215607_w1y4l | UK009S | 2024-04-18T12:01:31.295Z | 2024-04-25T12:21:00.338Z |
4200469 | 4200469 | 20240416215607_w1y4l | UK009T | 2024-04-18T12:01:31.295Z | 2024-04-25T12:21:00.338Z |
4200470 | 4200470 | 20240416215607_w1y4l | UK00A5 | 2024-04-18T12:01:31.295Z | 2024-04-25T12:21:00.338Z |
4200471 | 4200471 | 20240416215607_w1y4l | UK00B2 | 2024-04-18T12:01:31.295Z | 2024-04-25T12:21:00.338Z |
4200457 | 4200457 | 20240416215607_w1y4l | UK0006 | 2024-04-18T12:01:31.276Z | 2024-04-25T12:21:00.338Z |
4200458 | 4200458 | 20240416215607_w1y4l | UK001Z | 2024-04-18T12:01:31.276Z | 2024-04-25T12:21:00.338Z |
4200459 | 4200459 | 20240416215607_w1y4l | UK0031 | 2024-04-18T12:01:31.276Z | 2024-04-25T12:21:00.338Z |
4200460 | 4200460 | 20240416215607_w1y4l | UK0049 | 2024-04-18T12:01:31.276Z | 2024-04-25T12:21:00.338Z |
4200461 | 4200461 | 20240416215607_w1y4l | UK007A | 2024-04-18T12:01:31.276Z | 2024-04-25T12:21:00.338Z |
4200462 | 4200462 | 20240416215607_w1y4l | UK007B | 2024-04-18T12:01:31.276Z | 2024-04-25T12:21:00.338Z |
4200463 | 4200463 | 20240416215607_w1y4l | UK007L | 2024-04-18T12:01:31.276Z | 2024-04-25T12:21:00.338Z |
4200464 | 4200464 | 20240416215607_w1y4l | UK007V | 2024-04-18T12:01:31.276Z | 2024-04-25T12:21:00.338Z |
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);