participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
9 rows where meteor_unique_trajectory_identifier = "20240810223249_HC7Fi" 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 |
---|---|---|---|---|---|
4938932 | 4938932 | 20240810223249_HC7Fi | BE0006 | 2024-09-01T12:09:31.780Z | 2024-09-06T12:23:08.132Z |
4938933 | 4938933 | 20240810223249_HC7Fi | BE000L | 2024-09-01T12:09:31.780Z | 2024-09-06T12:23:08.132Z |
4938934 | 4938934 | 20240810223249_HC7Fi | BE000M | 2024-09-01T12:09:31.780Z | 2024-09-06T12:23:08.132Z |
4938935 | 4938935 | 20240810223249_HC7Fi | BE000Q | 2024-09-01T12:09:31.780Z | 2024-09-06T12:23:08.132Z |
4938936 | 4938936 | 20240810223249_HC7Fi | DE0005 | 2024-09-01T12:09:31.780Z | 2024-09-06T12:23:08.132Z |
4938937 | 4938937 | 20240810223249_HC7Fi | DE000Z | 2024-09-01T12:09:31.780Z | 2024-09-06T12:23:08.132Z |
4938938 | 4938938 | 20240810223249_HC7Fi | FR000Y | 2024-09-01T12:09:31.780Z | 2024-09-06T12:23:08.132Z |
4938939 | 4938939 | 20240810223249_HC7Fi | NL000K | 2024-09-01T12:09:31.780Z | 2024-09-06T12:23:08.132Z |
4938940 | 4938940 | 20240810223249_HC7Fi | NL000S | 2024-09-01T12:09:31.780Z | 2024-09-06T12:23:08.132Z |
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);