participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
23 rows where meteor_unique_trajectory_identifier = "20240316012040_RxF0j" 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 |
---|---|---|---|---|---|
4076554 | 4076554 | 20240316012040_RxF0j | UK007A | 2024-03-17T12:07:56.052Z | 2024-03-24T12:20:45.438Z |
4076555 | 4076555 | 20240316012040_RxF0j | UK007L | 2024-03-17T12:07:56.052Z | 2024-03-24T12:20:45.438Z |
4076556 | 4076556 | 20240316012040_RxF0j | UK007P | 2024-03-17T12:07:56.052Z | 2024-03-24T12:20:45.438Z |
4076557 | 4076557 | 20240316012040_RxF0j | UK008J | 2024-03-17T12:07:56.052Z | 2024-03-24T12:20:45.438Z |
4076558 | 4076558 | 20240316012040_RxF0j | UK008U | 2024-03-17T12:07:56.052Z | 2024-03-24T12:20:45.438Z |
4076559 | 4076559 | 20240316012040_RxF0j | UK0098 | 2024-03-17T12:07:56.052Z | 2024-03-24T12:20:45.438Z |
4076560 | 4076560 | 20240316012040_RxF0j | UK009K | 2024-03-17T12:07:56.052Z | 2024-03-24T12:20:45.438Z |
4076561 | 4076561 | 20240316012040_RxF0j | UK009P | 2024-03-17T12:07:56.052Z | 2024-03-24T12:20:45.438Z |
4076562 | 4076562 | 20240316012040_RxF0j | UK009S | 2024-03-17T12:07:56.052Z | 2024-03-24T12:20:45.438Z |
4076563 | 4076563 | 20240316012040_RxF0j | UK009T | 2024-03-17T12:07:56.052Z | 2024-03-24T12:20:45.438Z |
4076564 | 4076564 | 20240316012040_RxF0j | UK00AT | 2024-03-17T12:07:56.052Z | 2024-03-24T12:20:45.438Z |
4076565 | 4076565 | 20240316012040_RxF0j | UK00B0 | 2024-03-17T12:07:56.052Z | 2024-03-24T12:20:45.438Z |
4076566 | 4076566 | 20240316012040_RxF0j | UK00BA | 2024-03-17T12:07:56.052Z | 2024-03-24T12:20:45.438Z |
4076567 | 4076567 | 20240316012040_RxF0j | UK00BF | 2024-03-17T12:07:56.052Z | 2024-03-24T12:20:45.438Z |
4076568 | 4076568 | 20240316012040_RxF0j | UK00C1 | 2024-03-17T12:07:56.052Z | 2024-03-24T12:20:45.438Z |
4076546 | 4076546 | 20240316012040_RxF0j | UK000S | 2024-03-17T12:07:56.051Z | 2024-03-24T12:20:45.438Z |
4076547 | 4076547 | 20240316012040_RxF0j | UK000Y | 2024-03-17T12:07:56.051Z | 2024-03-24T12:20:45.438Z |
4076548 | 4076548 | 20240316012040_RxF0j | UK001L | 2024-03-17T12:07:56.051Z | 2024-03-24T12:20:45.438Z |
4076549 | 4076549 | 20240316012040_RxF0j | UK001Z | 2024-03-17T12:07:56.051Z | 2024-03-24T12:20:45.438Z |
4076550 | 4076550 | 20240316012040_RxF0j | UK0026 | 2024-03-17T12:07:56.051Z | 2024-03-24T12:20:45.438Z |
4076551 | 4076551 | 20240316012040_RxF0j | UK0027 | 2024-03-17T12:07:56.051Z | 2024-03-24T12:20:45.438Z |
4076552 | 4076552 | 20240316012040_RxF0j | UK004N | 2024-03-17T12:07:56.051Z | 2024-03-24T12:20:45.438Z |
4076553 | 4076553 | 20240316012040_RxF0j | UK0070 | 2024-03-17T12:07:56.051Z | 2024-03-24T12:20:45.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);