participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20231111054428_2JvFZ" 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 |
---|---|---|---|---|---|
3373231 | 3373231 | 20231111054428_2JvFZ | UK00A9 | 2024-01-06T00:04:15.538Z | 2024-01-06T00:04:15.538Z |
3373232 | 3373232 | 20231111054428_2JvFZ | UK00AE | 2024-01-06T00:04:15.538Z | 2024-01-06T00:04:15.538Z |
3373233 | 3373233 | 20231111054428_2JvFZ | UK00AT | 2024-01-06T00:04:15.538Z | 2024-01-06T00:04:15.538Z |
3373222 | 3373222 | 20231111054428_2JvFZ | UK002S | 2024-01-06T00:04:15.537Z | 2024-01-06T00:04:15.537Z |
3373223 | 3373223 | 20231111054428_2JvFZ | UK0031 | 2024-01-06T00:04:15.537Z | 2024-01-06T00:04:15.537Z |
3373224 | 3373224 | 20231111054428_2JvFZ | UK0035 | 2024-01-06T00:04:15.537Z | 2024-01-06T00:04:15.537Z |
3373225 | 3373225 | 20231111054428_2JvFZ | UK004D | 2024-01-06T00:04:15.537Z | 2024-01-06T00:04:15.537Z |
3373226 | 3373226 | 20231111054428_2JvFZ | UK005V | 2024-01-06T00:04:15.537Z | 2024-01-06T00:04:15.537Z |
3373227 | 3373227 | 20231111054428_2JvFZ | UK006L | 2024-01-06T00:04:15.537Z | 2024-01-06T00:04:15.537Z |
3373228 | 3373228 | 20231111054428_2JvFZ | UK0070 | 2024-01-06T00:04:15.537Z | 2024-01-06T00:04:15.537Z |
3373229 | 3373229 | 20231111054428_2JvFZ | UK009S | 2024-01-06T00:04:15.537Z | 2024-01-06T00:04:15.537Z |
3373230 | 3373230 | 20231111054428_2JvFZ | UK009T | 2024-01-06T00:04:15.537Z | 2024-01-06T00:04:15.537Z |
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);