participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
18 rows where meteor_unique_trajectory_identifier = "20230820011346_CK2mB" 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 |
---|---|---|---|---|---|
2858787 | 2858787 | 20230820011346_CK2mB | UK0002 | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858788 | 2858788 | 20230820011346_CK2mB | UK000T | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858789 | 2858789 | 20230820011346_CK2mB | UK001S | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858790 | 2858790 | 20230820011346_CK2mB | UK0025 | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858791 | 2858791 | 20230820011346_CK2mB | UK0026 | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858792 | 2858792 | 20230820011346_CK2mB | UK0049 | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858793 | 2858793 | 20230820011346_CK2mB | UK004F | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858794 | 2858794 | 20230820011346_CK2mB | UK004G | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858795 | 2858795 | 20230820011346_CK2mB | UK005S | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858796 | 2858796 | 20230820011346_CK2mB | UK0060 | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858797 | 2858797 | 20230820011346_CK2mB | UK006S | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858798 | 2858798 | 20230820011346_CK2mB | UK007H | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858799 | 2858799 | 20230820011346_CK2mB | UK007L | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858800 | 2858800 | 20230820011346_CK2mB | UK007V | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858801 | 2858801 | 20230820011346_CK2mB | UK008B | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858802 | 2858802 | 20230820011346_CK2mB | UK008W | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858803 | 2858803 | 20230820011346_CK2mB | UK008X | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858804 | 2858804 | 20230820011346_CK2mB | UK0092 | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
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);