participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20240118233510_nLPC2" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
3861556 | 3861556 | 20240118233510_nLPC2 | UK0072 | 2024-01-22T14:00:36.585Z | 2024-01-27T14:18:39.395Z |
3861557 | 3861557 | 20240118233510_nLPC2 | UK0083 | 2024-01-22T14:00:36.585Z | 2024-01-27T14:18:39.395Z |
3861558 | 3861558 | 20240118233510_nLPC2 | UK008J | 2024-01-22T14:00:36.585Z | 2024-01-27T14:18:39.396Z |
3861559 | 3861559 | 20240118233510_nLPC2 | UK0090 | 2024-01-22T14:00:36.585Z | 2024-01-27T14:18:39.396Z |
3861560 | 3861560 | 20240118233510_nLPC2 | UK009D | 2024-01-22T14:00:36.585Z | 2024-01-27T14:18:39.396Z |
3861561 | 3861561 | 20240118233510_nLPC2 | UK009P | 2024-01-22T14:00:36.585Z | 2024-01-27T14:18:39.396Z |
3861562 | 3861562 | 20240118233510_nLPC2 | UK00B0 | 2024-01-22T14:00:36.585Z | 2024-01-27T14:18:39.396Z |
3861553 | 3861553 | 20240118233510_nLPC2 | UK0050 | 2024-01-22T14:00:36.570Z | 2024-01-27T14:18:39.395Z |
3861554 | 3861554 | 20240118233510_nLPC2 | UK006A | 2024-01-22T14:00:36.570Z | 2024-01-27T14:18:39.395Z |
3861555 | 3861555 | 20240118233510_nLPC2 | UK006T | 2024-01-22T14:00:36.570Z | 2024-01-27T14:18:39.395Z |
3861552 | 3861552 | 20240118233510_nLPC2 | UK004M | 2024-01-22T14:00:36.555Z | 2024-01-27T14:18:39.395Z |
3861551 | 3861551 | 20240118233510_nLPC2 | UK0042 | 2024-01-22T14:00:36.543Z | 2024-01-27T14:18:39.395Z |
3861548 | 3861548 | 20240118233510_nLPC2 | UK001L | 2024-01-22T14:00:36.527Z | 2024-01-27T14:18:39.395Z |
3861549 | 3861549 | 20240118233510_nLPC2 | UK001N | 2024-01-22T14:00:36.527Z | 2024-01-27T14:18:39.395Z |
3861550 | 3861550 | 20240118233510_nLPC2 | UK003Y | 2024-01-22T14:00:36.527Z | 2024-01-27T14:18:39.395Z |
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);