participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260318164923_MhA0U" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9528853 | 9528853 | 20260318164923_MhA0U | NZ0037 | 2026-03-20T12:22:33.825Z | 2026-03-26T12:38:38.579Z |
| 9528854 | 9528854 | 20260318164923_MhA0U | NZ003A | 2026-03-20T12:22:33.825Z | 2026-03-26T12:38:38.580Z |
| 9528855 | 9528855 | 20260318164923_MhA0U | NZ004M | 2026-03-20T12:22:33.825Z | 2026-03-26T12:38:38.580Z |
| 9528856 | 9528856 | 20260318164923_MhA0U | NZ0059 | 2026-03-20T12:22:33.825Z | 2026-03-26T12:38:38.580Z |
| 9528857 | 9528857 | 20260318164923_MhA0U | NZ005D | 2026-03-20T12:22:33.825Z | 2026-03-26T12:38:38.580Z |
| 9528846 | 9528846 | 20260318164923_MhA0U | NZ0017 | 2026-03-20T12:22:33.824Z | 2026-03-26T12:38:38.579Z |
| 9528847 | 9528847 | 20260318164923_MhA0U | NZ001J | 2026-03-20T12:22:33.824Z | 2026-03-26T12:38:38.579Z |
| 9528848 | 9528848 | 20260318164923_MhA0U | NZ0022 | 2026-03-20T12:22:33.824Z | 2026-03-26T12:38:38.579Z |
| 9528849 | 9528849 | 20260318164923_MhA0U | NZ0024 | 2026-03-20T12:22:33.824Z | 2026-03-26T12:38:38.579Z |
| 9528850 | 9528850 | 20260318164923_MhA0U | NZ002K | 2026-03-20T12:22:33.824Z | 2026-03-26T12:38:38.579Z |
| 9528851 | 9528851 | 20260318164923_MhA0U | NZ002L | 2026-03-20T12:22:33.824Z | 2026-03-26T12:38:38.579Z |
| 9528852 | 9528852 | 20260318164923_MhA0U | NZ0036 | 2026-03-20T12:22:33.824Z | 2026-03-26T12:38:38.579Z |
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);