participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20240415202949_16f62" 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 |
---|---|---|---|---|---|
4194147 | 4194147 | 20240415202949_16f62 | UK009W | 2024-04-17T12:00:30.504Z | 2024-04-24T12:22:45.419Z |
4194148 | 4194148 | 20240415202949_16f62 | UK00A5 | 2024-04-17T12:00:30.504Z | 2024-04-24T12:22:45.419Z |
4194145 | 4194145 | 20240415202949_16f62 | UK009K | 2024-04-17T12:00:30.502Z | 2024-04-24T12:22:45.419Z |
4194146 | 4194146 | 20240415202949_16f62 | UK009S | 2024-04-17T12:00:30.502Z | 2024-04-24T12:22:45.419Z |
4194144 | 4194144 | 20240415202949_16f62 | UK009G | 2024-04-17T12:00:30.499Z | 2024-04-24T12:22:45.419Z |
4194143 | 4194143 | 20240415202949_16f62 | UK008Q | 2024-04-17T12:00:30.489Z | 2024-04-24T12:22:45.419Z |
4194142 | 4194142 | 20240415202949_16f62 | UK0084 | 2024-04-17T12:00:30.473Z | 2024-04-24T12:22:45.419Z |
4194140 | 4194140 | 20240415202949_16f62 | UK007B | 2024-04-17T12:00:30.458Z | 2024-04-24T12:22:45.419Z |
4194141 | 4194141 | 20240415202949_16f62 | UK007L | 2024-04-17T12:00:30.458Z | 2024-04-24T12:22:45.419Z |
4194139 | 4194139 | 20240415202949_16f62 | UK007A | 2024-04-17T12:00:30.450Z | 2024-04-24T12:22:45.419Z |
4194138 | 4194138 | 20240415202949_16f62 | UK003Z | 2024-04-17T12:00:30.437Z | 2024-04-24T12:22:45.419Z |
4194137 | 4194137 | 20240415202949_16f62 | UK003D | 2024-04-17T12:00:30.429Z | 2024-04-24T12:22:45.419Z |
4194136 | 4194136 | 20240415202949_16f62 | UK001Z | 2024-04-17T12:00:30.409Z | 2024-04-24T12:22:45.419Z |
4194135 | 4194135 | 20240415202949_16f62 | UK001E | 2024-04-17T12:00:30.398Z | 2024-04-24T12:22:45.419Z |
4194134 | 4194134 | 20240415202949_16f62 | UK0009 | 2024-04-17T12:00:30.397Z | 2024-04-24T12:22:45.419Z |
4194133 | 4194133 | 20240415202949_16f62 | UK0006 | 2024-04-17T12:00:30.379Z | 2024-04-24T12:22:45.419Z |
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);