participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
18 rows where meteor_unique_trajectory_identifier = "20240416234932_olZvf" 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 |
|---|---|---|---|---|---|
| 4200759 | 4200759 | 20240416234932_olZvf | UK00B0 | 2024-04-18T12:02:05.796Z | 2024-04-25T12:21:06.164Z |
| 4200760 | 4200760 | 20240416234932_olZvf | UK00B1 | 2024-04-18T12:02:05.796Z | 2024-04-25T12:21:06.164Z |
| 4200761 | 4200761 | 20240416234932_olZvf | UK00B2 | 2024-04-18T12:02:05.796Z | 2024-04-25T12:21:06.164Z |
| 4200762 | 4200762 | 20240416234932_olZvf | UK00B6 | 2024-04-18T12:02:05.796Z | 2024-04-25T12:21:06.164Z |
| 4200745 | 4200745 | 20240416234932_olZvf | UK0001 | 2024-04-18T12:02:05.795Z | 2024-04-25T12:21:06.164Z |
| 4200746 | 4200746 | 20240416234932_olZvf | UK0006 | 2024-04-18T12:02:05.795Z | 2024-04-25T12:21:06.164Z |
| 4200747 | 4200747 | 20240416234932_olZvf | UK000S | 2024-04-18T12:02:05.795Z | 2024-04-25T12:21:06.164Z |
| 4200748 | 4200748 | 20240416234932_olZvf | UK001Z | 2024-04-18T12:02:05.795Z | 2024-04-25T12:21:06.164Z |
| 4200749 | 4200749 | 20240416234932_olZvf | UK002W | 2024-04-18T12:02:05.795Z | 2024-04-25T12:21:06.164Z |
| 4200750 | 4200750 | 20240416234932_olZvf | UK0031 | 2024-04-18T12:02:05.795Z | 2024-04-25T12:21:06.164Z |
| 4200751 | 4200751 | 20240416234932_olZvf | UK0049 | 2024-04-18T12:02:05.795Z | 2024-04-25T12:21:06.164Z |
| 4200752 | 4200752 | 20240416234932_olZvf | UK007B | 2024-04-18T12:02:05.795Z | 2024-04-25T12:21:06.164Z |
| 4200753 | 4200753 | 20240416234932_olZvf | UK007L | 2024-04-18T12:02:05.795Z | 2024-04-25T12:21:06.164Z |
| 4200754 | 4200754 | 20240416234932_olZvf | UK009G | 2024-04-18T12:02:05.795Z | 2024-04-25T12:21:06.164Z |
| 4200755 | 4200755 | 20240416234932_olZvf | UK009K | 2024-04-18T12:02:05.795Z | 2024-04-25T12:21:06.164Z |
| 4200756 | 4200756 | 20240416234932_olZvf | UK009W | 2024-04-18T12:02:05.795Z | 2024-04-25T12:21:06.164Z |
| 4200757 | 4200757 | 20240416234932_olZvf | UK00A5 | 2024-04-18T12:02:05.795Z | 2024-04-25T12:21:06.164Z |
| 4200758 | 4200758 | 20240416234932_olZvf | UK00AE | 2024-04-18T12:02:05.795Z | 2024-04-25T12:21:06.164Z |
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);