participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20231110193738_XmGqx" 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 |
---|---|---|---|---|---|
3363812 | 3363812 | 20231110193738_XmGqx | UK007C | 2024-01-06T00:04:13.485Z | 2024-01-06T00:04:13.485Z |
3363813 | 3363813 | 20231110193738_XmGqx | UK007H | 2024-01-06T00:04:13.485Z | 2024-01-06T00:04:13.485Z |
3363814 | 3363814 | 20231110193738_XmGqx | UK008T | 2024-01-06T00:04:13.485Z | 2024-01-06T00:04:13.485Z |
3363815 | 3363815 | 20231110193738_XmGqx | UK009A | 2024-01-06T00:04:13.485Z | 2024-01-06T00:04:13.485Z |
3363816 | 3363816 | 20231110193738_XmGqx | UK009J | 2024-01-06T00:04:13.485Z | 2024-01-06T00:04:13.485Z |
3363817 | 3363817 | 20231110193738_XmGqx | UK009U | 2024-01-06T00:04:13.485Z | 2024-01-06T00:04:13.485Z |
3363818 | 3363818 | 20231110193738_XmGqx | UK009X | 2024-01-06T00:04:13.485Z | 2024-01-06T00:04:13.485Z |
3363819 | 3363819 | 20231110193738_XmGqx | UK00AF | 2024-01-06T00:04:13.485Z | 2024-01-06T00:04:13.485Z |
3363805 | 3363805 | 20231110193738_XmGqx | UK000F | 2024-01-06T00:04:13.484Z | 2024-01-06T00:04:13.484Z |
3363806 | 3363806 | 20231110193738_XmGqx | UK002C | 2024-01-06T00:04:13.484Z | 2024-01-06T00:04:13.484Z |
3363807 | 3363807 | 20231110193738_XmGqx | UK003N | 2024-01-06T00:04:13.484Z | 2024-01-06T00:04:13.484Z |
3363808 | 3363808 | 20231110193738_XmGqx | UK0045 | 2024-01-06T00:04:13.484Z | 2024-01-06T00:04:13.484Z |
3363809 | 3363809 | 20231110193738_XmGqx | UK004F | 2024-01-06T00:04:13.484Z | 2024-01-06T00:04:13.484Z |
3363810 | 3363810 | 20231110193738_XmGqx | UK005P | 2024-01-06T00:04:13.484Z | 2024-01-06T00:04:13.484Z |
3363811 | 3363811 | 20231110193738_XmGqx | UK0078 | 2024-01-06T00:04:13.484Z | 2024-01-06T00:04:13.484Z |
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);