participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20241122053401_2V2PI" 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 |
---|---|---|---|---|---|
5574319 | 5574319 | 20241122053401_2V2PI | UK002W | 2024-11-23T14:03:01.782Z | 2024-11-25T14:17:59.520Z |
5574320 | 5574320 | 20241122053401_2V2PI | UK006S | 2024-11-23T14:03:01.782Z | 2024-11-25T14:17:59.520Z |
5574321 | 5574321 | 20241122053401_2V2PI | UK007B | 2024-11-23T14:03:01.782Z | 2024-11-25T14:17:59.520Z |
5574322 | 5574322 | 20241122053401_2V2PI | UK008Q | 2024-11-23T14:03:01.782Z | 2024-11-25T14:17:59.520Z |
5574323 | 5574323 | 20241122053401_2V2PI | UK009S | 2024-11-23T14:03:01.782Z | 2024-11-25T14:17:59.520Z |
5574324 | 5574324 | 20241122053401_2V2PI | UK00AK | 2024-11-23T14:03:01.782Z | 2024-11-25T14:17:59.520Z |
5574314 | 5574314 | 20241122053401_2V2PI | BE000H | 2024-11-23T14:03:01.781Z | 2024-11-25T14:17:59.520Z |
5574315 | 5574315 | 20241122053401_2V2PI | UK0001 | 2024-11-23T14:03:01.781Z | 2024-11-25T14:17:59.520Z |
5574316 | 5574316 | 20241122053401_2V2PI | UK0025 | 2024-11-23T14:03:01.781Z | 2024-11-25T14:17:59.520Z |
5574317 | 5574317 | 20241122053401_2V2PI | UK002J | 2024-11-23T14:03:01.781Z | 2024-11-25T14:17:59.520Z |
5574318 | 5574318 | 20241122053401_2V2PI | UK002Q | 2024-11-23T14:03:01.781Z | 2024-11-25T14:17:59.520Z |
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);