participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20240811225224_3MoNo" 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 |
---|---|---|---|---|---|
4972963 | 4972963 | 20240811225224_3MoNo | BE0003 | 2024-09-05T12:10:39.962Z | 2024-09-06T12:09:37.352Z |
4972964 | 4972964 | 20240811225224_3MoNo | BE0006 | 2024-09-05T12:10:39.962Z | 2024-09-06T12:09:37.352Z |
4972965 | 4972965 | 20240811225224_3MoNo | BE000B | 2024-09-05T12:10:39.962Z | 2024-09-06T12:09:37.352Z |
4972966 | 4972966 | 20240811225224_3MoNo | BE000L | 2024-09-05T12:10:39.962Z | 2024-09-06T12:09:37.352Z |
4972967 | 4972967 | 20240811225224_3MoNo | BE000M | 2024-09-05T12:10:39.962Z | 2024-09-06T12:09:37.352Z |
4972968 | 4972968 | 20240811225224_3MoNo | BE000Q | 2024-09-05T12:10:39.962Z | 2024-09-06T12:09:37.352Z |
4972969 | 4972969 | 20240811225224_3MoNo | DE0005 | 2024-09-05T12:10:39.962Z | 2024-09-06T12:09:37.352Z |
4972970 | 4972970 | 20240811225224_3MoNo | DE000W | 2024-09-05T12:10:39.962Z | 2024-09-06T12:09:37.352Z |
4972971 | 4972971 | 20240811225224_3MoNo | FR000F | 2024-09-05T12:10:39.962Z | 2024-09-06T12:09:37.352Z |
4972972 | 4972972 | 20240811225224_3MoNo | FR000Y | 2024-09-05T12:10:39.962Z | 2024-09-06T12:09:37.352Z |
4972973 | 4972973 | 20240811225224_3MoNo | NL0006 | 2024-09-05T12:10:39.962Z | 2024-09-06T12:09:37.352Z |
4972974 | 4972974 | 20240811225224_3MoNo | UK0004 | 2024-09-05T12:10:39.962Z | 2024-09-06T12:09:37.352Z |
4972975 | 4972975 | 20240811225224_3MoNo | UK002F | 2024-09-05T12:10:39.962Z | 2024-09-06T12:09:37.352Z |
4972976 | 4972976 | 20240811225224_3MoNo | UK009L | 2024-09-05T12:10:39.962Z | 2024-09-06T12:09:37.352Z |
4972977 | 4972977 | 20240811225224_3MoNo | UK00B1 | 2024-09-05T12:10:39.962Z | 2024-09-06T12:09:37.352Z |
4972978 | 4972978 | 20240811225224_3MoNo | UK00CJ | 2024-09-05T12:10:39.962Z | 2024-09-06T12:09:37.352Z |
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);