participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20240330015441_DnSlt" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4124001 | 4124001 | 20240330015441_DnSlt | UK001L | 2024-03-31T12:07:34.348Z | 2024-04-07T12:24:22.302Z |
4124002 | 4124002 | 20240330015441_DnSlt | UK001S | 2024-03-31T12:07:34.348Z | 2024-04-07T12:24:22.302Z |
4124003 | 4124003 | 20240330015441_DnSlt | UK001U | 2024-03-31T12:07:34.348Z | 2024-04-07T12:24:22.302Z |
4124004 | 4124004 | 20240330015441_DnSlt | UK0030 | 2024-03-31T12:07:34.348Z | 2024-04-07T12:24:22.302Z |
4124005 | 4124005 | 20240330015441_DnSlt | UK005L | 2024-03-31T12:07:34.348Z | 2024-04-07T12:24:22.302Z |
4124006 | 4124006 | 20240330015441_DnSlt | UK005S | 2024-03-31T12:07:34.348Z | 2024-04-07T12:24:22.302Z |
4124007 | 4124007 | 20240330015441_DnSlt | UK008J | 2024-03-31T12:07:34.348Z | 2024-04-07T12:24:22.302Z |
4124008 | 4124008 | 20240330015441_DnSlt | UK009D | 2024-03-31T12:07:34.348Z | 2024-04-07T12:24:22.302Z |
4124009 | 4124009 | 20240330015441_DnSlt | UK009K | 2024-03-31T12:07:34.348Z | 2024-04-07T12:24:22.302Z |
4124010 | 4124010 | 20240330015441_DnSlt | UK009P | 2024-03-31T12:07:34.348Z | 2024-04-07T12:24:22.302Z |
4124011 | 4124011 | 20240330015441_DnSlt | UK00AJ | 2024-03-31T12:07:34.348Z | 2024-04-07T12:24:22.302Z |
4124012 | 4124012 | 20240330015441_DnSlt | UK00B0 | 2024-03-31T12:07:34.348Z | 2024-04-07T12:24:22.302Z |
4124013 | 4124013 | 20240330015441_DnSlt | UK00BA | 2024-03-31T12:07:34.348Z | 2024-04-07T12:24:22.302Z |
4124014 | 4124014 | 20240330015441_DnSlt | UK00BK | 2024-03-31T12:07:34.348Z | 2024-04-07T12:24:22.302Z |
4124015 | 4124015 | 20240330015441_DnSlt | UK00BW | 2024-03-31T12:07:34.348Z | 2024-04-07T12:24:22.302Z |
4124016 | 4124016 | 20240330015441_DnSlt | UK00C1 | 2024-03-31T12:07:34.348Z | 2024-04-07T12:24:22.302Z |
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);