participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
20 rows where meteor_unique_trajectory_identifier = "20240304021241_y5IJB" 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 |
|---|---|---|---|---|---|
| 4025226 | 4025226 | 20240304021241_y5IJB | UK000S | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025227 | 4025227 | 20240304021241_y5IJB | UK000Y | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025228 | 4025228 | 20240304021241_y5IJB | UK001Z | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025229 | 4025229 | 20240304021241_y5IJB | UK0026 | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025230 | 4025230 | 20240304021241_y5IJB | UK0029 | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025231 | 4025231 | 20240304021241_y5IJB | UK002H | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025232 | 4025232 | 20240304021241_y5IJB | UK0031 | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025233 | 4025233 | 20240304021241_y5IJB | UK0035 | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025234 | 4025234 | 20240304021241_y5IJB | UK003X | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025235 | 4025235 | 20240304021241_y5IJB | UK004D | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025236 | 4025236 | 20240304021241_y5IJB | UK004G | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025237 | 4025237 | 20240304021241_y5IJB | UK005V | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025238 | 4025238 | 20240304021241_y5IJB | UK007N | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025239 | 4025239 | 20240304021241_y5IJB | UK007P | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025240 | 4025240 | 20240304021241_y5IJB | UK0098 | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025241 | 4025241 | 20240304021241_y5IJB | UK009J | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025242 | 4025242 | 20240304021241_y5IJB | UK009T | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025243 | 4025243 | 20240304021241_y5IJB | UK00AE | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025244 | 4025244 | 20240304021241_y5IJB | UK00BF | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
| 4025245 | 4025245 | 20240304021241_y5IJB | UK00C1 | 2024-03-05T14:06:50.081Z | 2024-03-12T12:15:26.358Z |
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);