participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
18 rows where meteor_unique_trajectory_identifier = "20240316043630_u2PUY" 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 |
|---|---|---|---|---|---|
| 4078161 | 4078161 | 20240316043630_u2PUY | UK006D | 2024-03-17T12:09:20.547Z | 2024-03-24T12:20:55.995Z |
| 4078162 | 4078162 | 20240316043630_u2PUY | UK0075 | 2024-03-17T12:09:20.547Z | 2024-03-24T12:20:55.995Z |
| 4078163 | 4078163 | 20240316043630_u2PUY | UK007N | 2024-03-17T12:09:20.547Z | 2024-03-24T12:20:55.995Z |
| 4078164 | 4078164 | 20240316043630_u2PUY | UK009E | 2024-03-17T12:09:20.547Z | 2024-03-24T12:20:55.995Z |
| 4078165 | 4078165 | 20240316043630_u2PUY | UK00A0 | 2024-03-17T12:09:20.547Z | 2024-03-24T12:20:55.995Z |
| 4078166 | 4078166 | 20240316043630_u2PUY | UK00AN | 2024-03-17T12:09:20.547Z | 2024-03-24T12:20:55.995Z |
| 4078167 | 4078167 | 20240316043630_u2PUY | UK00AT | 2024-03-17T12:09:20.547Z | 2024-03-24T12:20:55.995Z |
| 4078168 | 4078168 | 20240316043630_u2PUY | UK00B1 | 2024-03-17T12:09:20.547Z | 2024-03-24T12:20:55.995Z |
| 4078151 | 4078151 | 20240316043630_u2PUY | UK000F | 2024-03-17T12:09:20.546Z | 2024-03-24T12:20:55.995Z |
| 4078152 | 4078152 | 20240316043630_u2PUY | UK000S | 2024-03-17T12:09:20.546Z | 2024-03-24T12:20:55.995Z |
| 4078153 | 4078153 | 20240316043630_u2PUY | UK0029 | 2024-03-17T12:09:20.546Z | 2024-03-24T12:20:55.995Z |
| 4078154 | 4078154 | 20240316043630_u2PUY | UK002W | 2024-03-17T12:09:20.546Z | 2024-03-24T12:20:55.995Z |
| 4078155 | 4078155 | 20240316043630_u2PUY | UK002Y | 2024-03-17T12:09:20.546Z | 2024-03-24T12:20:55.995Z |
| 4078156 | 4078156 | 20240316043630_u2PUY | UK0031 | 2024-03-17T12:09:20.546Z | 2024-03-24T12:20:55.995Z |
| 4078157 | 4078157 | 20240316043630_u2PUY | UK003X | 2024-03-17T12:09:20.546Z | 2024-03-24T12:20:55.995Z |
| 4078158 | 4078158 | 20240316043630_u2PUY | UK005M | 2024-03-17T12:09:20.546Z | 2024-03-24T12:20:55.995Z |
| 4078159 | 4078159 | 20240316043630_u2PUY | UK0062 | 2024-03-17T12:09:20.546Z | 2024-03-24T12:20:55.995Z |
| 4078160 | 4078160 | 20240316043630_u2PUY | UK006B | 2024-03-17T12:09:20.546Z | 2024-03-24T12:20:55.995Z |
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);