participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
23 rows where meteor_unique_trajectory_identifier = "20230520011119_EtLiA" 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 |
---|---|---|---|---|---|
2470912 | 2470912 | 20230520011119_EtLiA | UK0003 | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470913 | 2470913 | 20230520011119_EtLiA | UK000U | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470914 | 2470914 | 20230520011119_EtLiA | UK001L | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470915 | 2470915 | 20230520011119_EtLiA | UK001N | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470916 | 2470916 | 20230520011119_EtLiA | UK0027 | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470917 | 2470917 | 20230520011119_EtLiA | UK002Z | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470918 | 2470918 | 20230520011119_EtLiA | UK0031 | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470919 | 2470919 | 20230520011119_EtLiA | UK0032 | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470920 | 2470920 | 20230520011119_EtLiA | UK003F | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470921 | 2470921 | 20230520011119_EtLiA | UK0042 | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470922 | 2470922 | 20230520011119_EtLiA | UK004D | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470923 | 2470923 | 20230520011119_EtLiA | UK0050 | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470924 | 2470924 | 20230520011119_EtLiA | UK005H | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470925 | 2470925 | 20230520011119_EtLiA | UK005L | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470926 | 2470926 | 20230520011119_EtLiA | UK006A | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470927 | 2470927 | 20230520011119_EtLiA | UK006T | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470928 | 2470928 | 20230520011119_EtLiA | UK007A | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470929 | 2470929 | 20230520011119_EtLiA | UK007M | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470930 | 2470930 | 20230520011119_EtLiA | UK0083 | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470931 | 2470931 | 20230520011119_EtLiA | UK0090 | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470932 | 2470932 | 20230520011119_EtLiA | UK0098 | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470933 | 2470933 | 20230520011119_EtLiA | UK009D | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
2470934 | 2470934 | 20230520011119_EtLiA | UK009K | 2024-01-05T23:57:52.584Z | 2024-01-05T23:57:52.584Z |
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);