participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260319130531_HsdV2" 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 |
|---|---|---|---|---|---|
| 9524973 | 9524973 | 20260319130531_HsdV2 | NZ003E | 2026-03-20T12:13:43.566Z | 2026-03-27T12:41:58.784Z |
| 9524974 | 9524974 | 20260319130531_HsdV2 | NZ003H | 2026-03-20T12:13:43.566Z | 2026-03-27T12:41:58.784Z |
| 9524975 | 9524975 | 20260319130531_HsdV2 | NZ003Y | 2026-03-20T12:13:43.566Z | 2026-03-27T12:41:58.784Z |
| 9524976 | 9524976 | 20260319130531_HsdV2 | NZ0041 | 2026-03-20T12:13:43.566Z | 2026-03-27T12:41:58.784Z |
| 9524977 | 9524977 | 20260319130531_HsdV2 | NZ004A | 2026-03-20T12:13:43.566Z | 2026-03-27T12:41:58.784Z |
| 9524978 | 9524978 | 20260319130531_HsdV2 | NZ005D | 2026-03-20T12:13:43.566Z | 2026-03-27T12:41:58.784Z |
| 9524979 | 9524979 | 20260319130531_HsdV2 | NZ005E | 2026-03-20T12:13:43.566Z | 2026-03-27T12:41:58.784Z |
| 9524980 | 9524980 | 20260319130531_HsdV2 | NZ005Z | 2026-03-20T12:13:43.566Z | 2026-03-27T12:41:58.784Z |
| 9524969 | 9524969 | 20260319130531_HsdV2 | NZ0017 | 2026-03-20T12:13:43.565Z | 2026-03-27T12:41:58.784Z |
| 9524970 | 9524970 | 20260319130531_HsdV2 | NZ002H | 2026-03-20T12:13:43.565Z | 2026-03-27T12:41:58.784Z |
| 9524971 | 9524971 | 20260319130531_HsdV2 | NZ002L | 2026-03-20T12:13:43.565Z | 2026-03-27T12:41:58.784Z |
| 9524972 | 9524972 | 20260319130531_HsdV2 | NZ002R | 2026-03-20T12:13:43.565Z | 2026-03-27T12:41:58.784Z |
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);