participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240904104814_0gwlu" 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 |
---|---|---|---|---|---|
5002823 | 5002823 | 20240904104814_0gwlu | USL005 | 2024-09-09T12:01:04.998Z | 2024-09-13T12:19:42.244Z |
5002824 | 5002824 | 20240904104814_0gwlu | USL00A | 2024-09-09T12:01:04.998Z | 2024-09-13T12:19:42.244Z |
5002825 | 5002825 | 20240904104814_0gwlu | USL00B | 2024-09-09T12:01:04.998Z | 2024-09-13T12:19:42.244Z |
5002826 | 5002826 | 20240904104814_0gwlu | USL00E | 2024-09-09T12:01:04.998Z | 2024-09-13T12:19:42.244Z |
5002827 | 5002827 | 20240904104814_0gwlu | USL00P | 2024-09-09T12:01:04.998Z | 2024-09-13T12:19:42.244Z |
5002828 | 5002828 | 20240904104814_0gwlu | USL012 | 2024-09-09T12:01:04.998Z | 2024-09-13T12:19:42.244Z |
5002829 | 5002829 | 20240904104814_0gwlu | USL015 | 2024-09-09T12:01:04.998Z | 2024-09-13T12:19:42.244Z |
5002830 | 5002830 | 20240904104814_0gwlu | USL01A | 2024-09-09T12:01:04.998Z | 2024-09-13T12:19:42.244Z |
5002831 | 5002831 | 20240904104814_0gwlu | USL01E | 2024-09-09T12:01:04.998Z | 2024-09-13T12:19:42.244Z |
5002832 | 5002832 | 20240904104814_0gwlu | USV003 | 2024-09-09T12:01:04.998Z | 2024-09-13T12:19:42.244Z |
5002822 | 5002822 | 20240904104814_0gwlu | US0020 | 2024-09-09T12:01:04.983Z | 2024-09-13T12:19:42.244Z |
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);