participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240409225146_mgYRC" 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 |
---|---|---|---|---|---|
4166204 | 4166204 | 20240409225146_mgYRC | UK009P | 2024-04-11T12:05:11.206Z | 2024-04-18T12:21:08.095Z |
4166205 | 4166205 | 20240409225146_mgYRC | UK00AM | 2024-04-11T12:05:11.206Z | 2024-04-18T12:21:08.095Z |
4166199 | 4166199 | 20240409225146_mgYRC | UK006C | 2024-04-11T12:05:11.193Z | 2024-04-18T12:21:08.095Z |
4166200 | 4166200 | 20240409225146_mgYRC | UK006T | 2024-04-11T12:05:11.193Z | 2024-04-18T12:21:08.095Z |
4166201 | 4166201 | 20240409225146_mgYRC | UK006V | 2024-04-11T12:05:11.193Z | 2024-04-18T12:21:08.095Z |
4166202 | 4166202 | 20240409225146_mgYRC | UK0087 | 2024-04-11T12:05:11.193Z | 2024-04-18T12:21:08.095Z |
4166203 | 4166203 | 20240409225146_mgYRC | UK008G | 2024-04-11T12:05:11.193Z | 2024-04-18T12:21:08.095Z |
4166194 | 4166194 | 20240409225146_mgYRC | UK0032 | 2024-04-11T12:05:11.180Z | 2024-04-18T12:21:08.095Z |
4166195 | 4166195 | 20240409225146_mgYRC | UK003B | 2024-04-11T12:05:11.180Z | 2024-04-18T12:21:08.095Z |
4166196 | 4166196 | 20240409225146_mgYRC | UK004B | 2024-04-11T12:05:11.180Z | 2024-04-18T12:21:08.095Z |
4166197 | 4166197 | 20240409225146_mgYRC | UK0052 | 2024-04-11T12:05:11.180Z | 2024-04-18T12:21:08.095Z |
4166198 | 4166198 | 20240409225146_mgYRC | UK006A | 2024-04-11T12:05:11.180Z | 2024-04-18T12:21:08.095Z |
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);