participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240810005017_4t2XU" 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 |
---|---|---|---|---|---|
4921247 | 4921247 | 20240810005017_4t2XU | UK0088 | 2024-08-30T12:14:00.651Z | 2024-09-02T12:26:54.297Z |
4921248 | 4921248 | 20240810005017_4t2XU | UK009Q | 2024-08-30T12:14:00.651Z | 2024-09-02T12:26:54.297Z |
4921249 | 4921249 | 20240810005017_4t2XU | UK00BN | 2024-08-30T12:14:00.651Z | 2024-09-02T12:26:54.297Z |
4921239 | 4921239 | 20240810005017_4t2XU | UK004D | 2024-08-30T12:14:00.644Z | 2024-09-02T12:26:54.297Z |
4921240 | 4921240 | 20240810005017_4t2XU | UK0057 | 2024-08-30T12:14:00.644Z | 2024-09-02T12:26:54.297Z |
4921241 | 4921241 | 20240810005017_4t2XU | UK006A | 2024-08-30T12:14:00.644Z | 2024-09-02T12:26:54.297Z |
4921242 | 4921242 | 20240810005017_4t2XU | UK006J | 2024-08-30T12:14:00.644Z | 2024-09-02T12:26:54.297Z |
4921243 | 4921243 | 20240810005017_4t2XU | UK006T | 2024-08-30T12:14:00.644Z | 2024-09-02T12:26:54.297Z |
4921244 | 4921244 | 20240810005017_4t2XU | UK0074 | 2024-08-30T12:14:00.644Z | 2024-09-02T12:26:54.297Z |
4921245 | 4921245 | 20240810005017_4t2XU | UK007M | 2024-08-30T12:14:00.644Z | 2024-09-02T12:26:54.297Z |
4921246 | 4921246 | 20240810005017_4t2XU | UK0082 | 2024-08-30T12:14:00.644Z | 2024-09-02T12:26:54.297Z |
4921238 | 4921238 | 20240810005017_4t2XU | UK002P | 2024-08-30T12:14:00.618Z | 2024-09-02T12:26:54.297Z |
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);