participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20230809223727_TM1hL" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
2733914 | 2733914 | 20230809223727_TM1hL | UK0099 | 2024-01-06T00:00:27.317Z | 2024-01-06T00:00:27.317Z |
2733915 | 2733915 | 20230809223727_TM1hL | UK009L | 2024-01-06T00:00:27.317Z | 2024-01-06T00:00:27.317Z |
2733916 | 2733916 | 20230809223727_TM1hL | UK00A4 | 2024-01-06T00:00:27.317Z | 2024-01-06T00:00:27.317Z |
2733901 | 2733901 | 20230809223727_TM1hL | BE0001 | 2024-01-06T00:00:27.316Z | 2024-01-06T00:00:27.316Z |
2733902 | 2733902 | 20230809223727_TM1hL | BE000A | 2024-01-06T00:00:27.316Z | 2024-01-06T00:00:27.316Z |
2733903 | 2733903 | 20230809223727_TM1hL | NL000M | 2024-01-06T00:00:27.316Z | 2024-01-06T00:00:27.316Z |
2733904 | 2733904 | 20230809223727_TM1hL | UK0004 | 2024-01-06T00:00:27.316Z | 2024-01-06T00:00:27.316Z |
2733905 | 2733905 | 20230809223727_TM1hL | UK002F | 2024-01-06T00:00:27.316Z | 2024-01-06T00:00:27.316Z |
2733906 | 2733906 | 20230809223727_TM1hL | UK003W | 2024-01-06T00:00:27.316Z | 2024-01-06T00:00:27.316Z |
2733907 | 2733907 | 20230809223727_TM1hL | UK003X | 2024-01-06T00:00:27.316Z | 2024-01-06T00:00:27.316Z |
2733908 | 2733908 | 20230809223727_TM1hL | UK004P | 2024-01-06T00:00:27.316Z | 2024-01-06T00:00:27.316Z |
2733909 | 2733909 | 20230809223727_TM1hL | UK005E | 2024-01-06T00:00:27.316Z | 2024-01-06T00:00:27.316Z |
2733910 | 2733910 | 20230809223727_TM1hL | UK0063 | 2024-01-06T00:00:27.316Z | 2024-01-06T00:00:27.316Z |
2733911 | 2733911 | 20230809223727_TM1hL | UK007C | 2024-01-06T00:00:27.316Z | 2024-01-06T00:00:27.316Z |
2733912 | 2733912 | 20230809223727_TM1hL | UK007N | 2024-01-06T00:00:27.316Z | 2024-01-06T00:00:27.316Z |
2733913 | 2733913 | 20230809223727_TM1hL | UK008F | 2024-01-06T00:00:27.316Z | 2024-01-06T00:00:27.316Z |
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);