participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240812003453_0p92e" 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 |
---|---|---|---|---|---|
4982558 | 4982558 | 20240812003453_0p92e | BE000B | 2024-09-06T12:14:56.046Z | 2024-09-06T12:14:56.046Z |
4982559 | 4982559 | 20240812003453_0p92e | BE000R | 2024-09-06T12:14:56.046Z | 2024-09-06T12:14:56.046Z |
4982560 | 4982560 | 20240812003453_0p92e | DE0005 | 2024-09-06T12:14:56.046Z | 2024-09-06T12:14:56.046Z |
4982561 | 4982561 | 20240812003453_0p92e | DE000S | 2024-09-06T12:14:56.046Z | 2024-09-06T12:14:56.046Z |
4982562 | 4982562 | 20240812003453_0p92e | DE000W | 2024-09-06T12:14:56.046Z | 2024-09-06T12:14:56.046Z |
4982563 | 4982563 | 20240812003453_0p92e | FR000F | 2024-09-06T12:14:56.046Z | 2024-09-06T12:14:56.046Z |
4982564 | 4982564 | 20240812003453_0p92e | UK0004 | 2024-09-06T12:14:56.046Z | 2024-09-06T12:14:56.046Z |
4982565 | 4982565 | 20240812003453_0p92e | UK002K | 2024-09-06T12:14:56.046Z | 2024-09-06T12:14:56.046Z |
4982566 | 4982566 | 20240812003453_0p92e | UK006G | 2024-09-06T12:14:56.046Z | 2024-09-06T12:14:56.046Z |
4982567 | 4982567 | 20240812003453_0p92e | UK006U | 2024-09-06T12:14:56.046Z | 2024-09-06T12:14:56.046Z |
4982568 | 4982568 | 20240812003453_0p92e | UK00AN | 2024-09-06T12:14:56.046Z | 2024-09-06T12:14:56.046Z |
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);