participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
8 rows where meteor_unique_trajectory_identifier = "20210528205722_qAeXB" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
607384 | 607384 | 20210528205722_qAeXB | HR0007 | 2024-01-05T23:33:26.318Z | 2024-01-05T23:33:26.318Z |
607385 | 607385 | 20210528205722_qAeXB | HR000K | 2024-01-05T23:33:26.318Z | 2024-01-05T23:33:26.318Z |
607386 | 607386 | 20210528205722_qAeXB | HR000M | 2024-01-05T23:33:26.318Z | 2024-01-05T23:33:26.318Z |
607387 | 607387 | 20210528205722_qAeXB | HR000N | 2024-01-05T23:33:26.318Z | 2024-01-05T23:33:26.318Z |
607388 | 607388 | 20210528205722_qAeXB | HR000P | 2024-01-05T23:33:26.318Z | 2024-01-05T23:33:26.318Z |
607389 | 607389 | 20210528205722_qAeXB | HR000R | 2024-01-05T23:33:26.318Z | 2024-01-05T23:33:26.318Z |
607390 | 607390 | 20210528205722_qAeXB | HR000S | 2024-01-05T23:33:26.318Z | 2024-01-05T23:33:26.318Z |
607391 | 607391 | 20210528205722_qAeXB | IT0001 | 2024-01-05T23:33:26.318Z | 2024-01-05T23:33:26.318Z |
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);