participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20260328071856_9mgIK" 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 |
|---|---|---|---|---|---|
| 9590171 | 9590171 | 20260328071856_9mgIK | NZ004L | 2026-03-29T12:02:08.721Z | 2026-04-06T12:37:54.510Z |
| 9590172 | 9590172 | 20260328071856_9mgIK | NZ0059 | 2026-03-29T12:02:08.721Z | 2026-04-06T12:37:54.510Z |
| 9590170 | 9590170 | 20260328071856_9mgIK | NZ003Y | 2026-03-29T12:02:08.711Z | 2026-04-06T12:37:54.510Z |
| 9590169 | 9590169 | 20260328071856_9mgIK | NZ003H | 2026-03-29T12:02:08.687Z | 2026-04-06T12:37:54.510Z |
| 9590168 | 9590168 | 20260328071856_9mgIK | NZ003A | 2026-03-29T12:02:08.658Z | 2026-04-06T12:37:54.510Z |
| 9590166 | 9590166 | 20260328071856_9mgIK | NZ002X | 2026-03-29T12:02:08.657Z | 2026-04-06T12:37:54.510Z |
| 9590167 | 9590167 | 20260328071856_9mgIK | NZ002Z | 2026-03-29T12:02:08.657Z | 2026-04-06T12:37:54.510Z |
| 9590165 | 9590165 | 20260328071856_9mgIK | NZ002K | 2026-03-29T12:02:08.647Z | 2026-04-06T12:37:54.510Z |
| 9590164 | 9590164 | 20260328071856_9mgIK | NZ002D | 2026-03-29T12:02:08.639Z | 2026-04-06T12:37:54.510Z |
| 9590163 | 9590163 | 20260328071856_9mgIK | NZ001J | 2026-03-29T12:02:08.628Z | 2026-04-06T12:37:54.510Z |
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);