participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240807014000_C2mFc" 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 |
---|---|---|---|---|---|
4881197 | 4881197 | 20240807014000_C2mFc | UK00AM | 2024-08-20T12:13:52.277Z | 2024-08-27T12:15:04.037Z |
4881184 | 4881184 | 20240807014000_C2mFc | UK001L | 2024-08-20T12:13:52.276Z | 2024-08-27T12:15:04.037Z |
4881185 | 4881185 | 20240807014000_C2mFc | UK002Z | 2024-08-20T12:13:52.276Z | 2024-08-27T12:15:04.037Z |
4881186 | 4881186 | 20240807014000_C2mFc | UK0032 | 2024-08-20T12:13:52.276Z | 2024-08-27T12:15:04.037Z |
4881187 | 4881187 | 20240807014000_C2mFc | UK003T | 2024-08-20T12:13:52.276Z | 2024-08-27T12:15:04.037Z |
4881188 | 4881188 | 20240807014000_C2mFc | UK003V | 2024-08-20T12:13:52.276Z | 2024-08-27T12:15:04.037Z |
4881189 | 4881189 | 20240807014000_C2mFc | UK004D | 2024-08-20T12:13:52.276Z | 2024-08-27T12:15:04.037Z |
4881190 | 4881190 | 20240807014000_C2mFc | UK0050 | 2024-08-20T12:13:52.276Z | 2024-08-27T12:15:04.037Z |
4881191 | 4881191 | 20240807014000_C2mFc | UK005H | 2024-08-20T12:13:52.276Z | 2024-08-27T12:15:04.037Z |
4881192 | 4881192 | 20240807014000_C2mFc | UK006A | 2024-08-20T12:13:52.276Z | 2024-08-27T12:15:04.037Z |
4881193 | 4881193 | 20240807014000_C2mFc | UK006T | 2024-08-20T12:13:52.276Z | 2024-08-27T12:15:04.037Z |
4881194 | 4881194 | 20240807014000_C2mFc | UK006V | 2024-08-20T12:13:52.276Z | 2024-08-27T12:15:04.037Z |
4881195 | 4881195 | 20240807014000_C2mFc | UK007M | 2024-08-20T12:13:52.276Z | 2024-08-27T12:15:04.037Z |
4881196 | 4881196 | 20240807014000_C2mFc | UK008G | 2024-08-20T12:13:52.276Z | 2024-08-27T12:15:04.037Z |
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);