participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
9 rows where station_code = "CAC0A6" 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 |
|---|---|---|---|---|---|
| 9808371 | 9808371 | 20260427083745_dzjs9 | CAC0A6 | 2026-04-28T12:19:52.196Z | 2026-05-02T12:44:14.217Z |
| 9808148 | 9808148 | 20260427075746_6bjyk | CAC0A6 | 2026-04-28T12:19:10.422Z | 2026-05-02T12:44:02.918Z |
| 9807991 | 9807991 | 20260427072408_HyoO3 | CAC0A6 | 2026-04-28T12:18:30.755Z | 2026-05-02T12:43:56.285Z |
| 9807893 | 9807893 | 20260427071012_dNhz6 | CAC0A6 | 2026-04-28T12:18:13.169Z | 2026-05-02T12:43:45.605Z |
| 9807786 | 9807786 | 20260427064730_feSds | CAC0A6 | 2026-04-28T12:17:45.308Z | 2026-05-02T12:43:37.287Z |
| 9788326 | 9788326 | 20260425083048_ZfcTQ | CAC0A6 | 2026-04-26T12:24:12.806Z | 2026-05-02T13:03:12.303Z |
| 9773177 | 9773177 | 20260423061225_zrxmv | CAC0A6 | 2026-04-25T12:51:33.919Z | 2026-04-30T13:12:43.603Z |
| 9770595 | 9770595 | 20260424034625_oDgI4 | CAC0A6 | 2026-04-25T12:32:28.935Z | 2026-05-02T13:12:25.508Z |
| 9770474 | 9770474 | 20260424032519_SnRA2 | CAC0A6 | 2026-04-25T12:32:04.251Z | 2026-05-02T13:12:21.688Z |
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);