participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20220709020821_4RR3L" 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 |
---|---|---|---|---|---|
1408647 | 1408647 | 20220709020821_4RR3L | UK007E | 2024-01-05T23:47:40.679Z | 2024-01-05T23:47:40.679Z |
1408639 | 1408639 | 20220709020821_4RR3L | UK000W | 2024-01-05T23:47:40.678Z | 2024-01-05T23:47:40.678Z |
1408640 | 1408640 | 20220709020821_4RR3L | UK002C | 2024-01-05T23:47:40.678Z | 2024-01-05T23:47:40.678Z |
1408641 | 1408641 | 20220709020821_4RR3L | UK003D | 2024-01-05T23:47:40.678Z | 2024-01-05T23:47:40.678Z |
1408642 | 1408642 | 20220709020821_4RR3L | UK004X | 2024-01-05T23:47:40.678Z | 2024-01-05T23:47:40.678Z |
1408643 | 1408643 | 20220709020821_4RR3L | UK005F | 2024-01-05T23:47:40.678Z | 2024-01-05T23:47:40.678Z |
1408644 | 1408644 | 20220709020821_4RR3L | UK005N | 2024-01-05T23:47:40.678Z | 2024-01-05T23:47:40.678Z |
1408645 | 1408645 | 20220709020821_4RR3L | UK006R | 2024-01-05T23:47:40.678Z | 2024-01-05T23:47:40.678Z |
1408646 | 1408646 | 20220709020821_4RR3L | UK007B | 2024-01-05T23:47:40.678Z | 2024-01-05T23:47:40.678Z |
1408638 | 1408638 | 20220709020821_4RR3L | UK000F | 2024-01-05T23:47:40.677Z | 2024-01-05T23:47:40.677Z |
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);