participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20240420002913_rWmjy" 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 |
---|---|---|---|---|---|
4219011 | 4219011 | 20240420002913_rWmjy | UK008Q | 2024-04-21T12:01:03.077Z | 2024-04-28T12:21:07.438Z |
4219012 | 4219012 | 20240420002913_rWmjy | UK009J | 2024-04-21T12:01:03.077Z | 2024-04-28T12:21:07.438Z |
4219013 | 4219013 | 20240420002913_rWmjy | UK009U | 2024-04-21T12:01:03.077Z | 2024-04-28T12:21:07.438Z |
4219014 | 4219014 | 20240420002913_rWmjy | UK009X | 2024-04-21T12:01:03.077Z | 2024-04-28T12:21:07.438Z |
4219015 | 4219015 | 20240420002913_rWmjy | UK00AN | 2024-04-21T12:01:03.077Z | 2024-04-28T12:21:07.438Z |
4219009 | 4219009 | 20240420002913_rWmjy | UK007B | 2024-04-21T12:01:03.067Z | 2024-04-28T12:21:07.438Z |
4219010 | 4219010 | 20240420002913_rWmjy | UK0086 | 2024-04-21T12:01:03.067Z | 2024-04-28T12:21:07.438Z |
4219008 | 4219008 | 20240420002913_rWmjy | UK006U | 2024-04-21T12:01:03.051Z | 2024-04-28T12:21:07.438Z |
4219006 | 4219006 | 20240420002913_rWmjy | UK0062 | 2024-04-21T12:01:03.038Z | 2024-04-28T12:21:07.438Z |
4219007 | 4219007 | 20240420002913_rWmjy | UK006B | 2024-04-21T12:01:03.038Z | 2024-04-28T12:21:07.438Z |
4219004 | 4219004 | 20240420002913_rWmjy | UK004C | 2024-04-21T12:01:03.025Z | 2024-04-28T12:21:07.438Z |
4219005 | 4219005 | 20240420002913_rWmjy | UK005U | 2024-04-21T12:01:03.025Z | 2024-04-28T12:21:07.438Z |
4219003 | 4219003 | 20240420002913_rWmjy | UK002Y | 2024-04-21T12:01:03.024Z | 2024-04-28T12:21:07.438Z |
4219002 | 4219002 | 20240420002913_rWmjy | UK002W | 2024-04-21T12:01:03.012Z | 2024-04-28T12:21:07.438Z |
4219001 | 4219001 | 20240420002913_rWmjy | UK000F | 2024-04-21T12:01:02.993Z | 2024-04-28T12:21:07.438Z |
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);