participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
9 rows where meteor_unique_trajectory_identifier = "20240227211716_fuj27" 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 |
---|---|---|---|---|---|
4006913 | 4006913 | 20240227211716_fuj27 | UK00BN | 2024-02-29T14:04:00.722Z | 2024-03-07T14:19:01.635Z |
4006910 | 4006910 | 20240227211716_fuj27 | UK009Q | 2024-02-29T14:04:00.721Z | 2024-03-07T14:19:01.635Z |
4006911 | 4006911 | 20240227211716_fuj27 | UK00AA | 2024-02-29T14:04:00.721Z | 2024-03-07T14:19:01.635Z |
4006912 | 4006912 | 20240227211716_fuj27 | UK00AQ | 2024-02-29T14:04:00.721Z | 2024-03-07T14:19:01.635Z |
4006909 | 4006909 | 20240227211716_fuj27 | UK007G | 2024-02-29T14:04:00.710Z | 2024-03-07T14:19:01.635Z |
4006908 | 4006908 | 20240227211716_fuj27 | UK0055 | 2024-02-29T14:04:00.696Z | 2024-03-07T14:19:01.635Z |
4006907 | 4006907 | 20240227211716_fuj27 | UK002P | 2024-02-29T14:04:00.687Z | 2024-03-07T14:19:01.635Z |
4006906 | 4006906 | 20240227211716_fuj27 | UK001R | 2024-02-29T14:04:00.674Z | 2024-03-07T14:19:01.635Z |
4006905 | 4006905 | 20240227211716_fuj27 | UK001H | 2024-02-29T14:04:00.662Z | 2024-03-07T14:19:01.635Z |
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);