participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
8 rows where meteor_unique_trajectory_identifier = "20241102065220_X02ou" 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 |
---|---|---|---|---|---|
5455230 | 5455230 | 20241102065220_X02ou | USL01E | 2024-11-03T14:00:12.437Z | 2024-11-08T14:20:19.457Z |
5455229 | 5455229 | 20241102065220_X02ou | USL019 | 2024-11-03T14:00:12.436Z | 2024-11-08T14:20:19.457Z |
5455228 | 5455228 | 20241102065220_X02ou | USL018 | 2024-11-03T14:00:12.432Z | 2024-11-08T14:20:19.457Z |
5455226 | 5455226 | 20241102065220_X02ou | USL00A | 2024-11-03T14:00:12.429Z | 2024-11-08T14:20:19.457Z |
5455227 | 5455227 | 20241102065220_X02ou | USL014 | 2024-11-03T14:00:12.429Z | 2024-11-08T14:20:19.457Z |
5455225 | 5455225 | 20241102065220_X02ou | USL009 | 2024-11-03T14:00:12.412Z | 2024-11-08T14:20:19.457Z |
5455224 | 5455224 | 20241102065220_X02ou | USL007 | 2024-11-03T14:00:12.389Z | 2024-11-08T14:20:19.457Z |
5455223 | 5455223 | 20241102065220_X02ou | US000G | 2024-11-03T14:00:12.372Z | 2024-11-08T14:20:19.457Z |
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);