participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20240707003833_zSvFg" 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 |
---|---|---|---|---|---|
4578627 | 4578627 | 20240707003833_zSvFg | UK002Z | 2024-07-09T12:01:42.943Z | 2024-07-15T12:11:57.839Z |
4578628 | 4578628 | 20240707003833_zSvFg | UK003U | 2024-07-09T12:01:42.943Z | 2024-07-15T12:11:57.839Z |
4578629 | 4578629 | 20240707003833_zSvFg | UK0070 | 2024-07-09T12:01:42.943Z | 2024-07-15T12:11:57.839Z |
4578630 | 4578630 | 20240707003833_zSvFg | UK007M | 2024-07-09T12:01:42.943Z | 2024-07-15T12:11:57.839Z |
4578631 | 4578631 | 20240707003833_zSvFg | UK007P | 2024-07-09T12:01:42.943Z | 2024-07-15T12:11:57.839Z |
4578632 | 4578632 | 20240707003833_zSvFg | UK008S | 2024-07-09T12:01:42.943Z | 2024-07-15T12:11:57.839Z |
4578633 | 4578633 | 20240707003833_zSvFg | UK0090 | 2024-07-09T12:01:42.943Z | 2024-07-15T12:11:57.839Z |
4578634 | 4578634 | 20240707003833_zSvFg | UK009K | 2024-07-09T12:01:42.943Z | 2024-07-15T12:11:57.839Z |
4578635 | 4578635 | 20240707003833_zSvFg | UK009W | 2024-07-09T12:01:42.943Z | 2024-07-15T12:11:57.839Z |
4578636 | 4578636 | 20240707003833_zSvFg | UK00AJ | 2024-07-09T12:01:42.943Z | 2024-07-15T12:11:57.839Z |
4578637 | 4578637 | 20240707003833_zSvFg | UK00BF | 2024-07-09T12:01:42.943Z | 2024-07-15T12:11:57.839Z |
4578638 | 4578638 | 20240707003833_zSvFg | UK00BK | 2024-07-09T12:01:42.943Z | 2024-07-15T12:11:57.839Z |
4578624 | 4578624 | 20240707003833_zSvFg | UK001L | 2024-07-09T12:01:42.927Z | 2024-07-15T12:11:57.839Z |
4578625 | 4578625 | 20240707003833_zSvFg | UK001Q | 2024-07-09T12:01:42.927Z | 2024-07-15T12:11:57.839Z |
4578626 | 4578626 | 20240707003833_zSvFg | UK001V | 2024-07-09T12:01:42.927Z | 2024-07-15T12:11:57.839Z |
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);