participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
9 rows where meteor_unique_trajectory_identifier = "20260324131835_pDZjr" 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 |
|---|---|---|---|---|---|
| 9573666 | 9573666 | 20260324131835_pDZjr | NZ000R | 2026-03-25T12:08:35.475Z | 2026-04-02T12:36:18.163Z |
| 9573667 | 9573667 | 20260324131835_pDZjr | NZ000S | 2026-03-25T12:08:35.475Z | 2026-04-02T12:36:18.163Z |
| 9573668 | 9573668 | 20260324131835_pDZjr | NZ0015 | 2026-03-25T12:08:35.475Z | 2026-04-02T12:36:18.163Z |
| 9573669 | 9573669 | 20260324131835_pDZjr | NZ001E | 2026-03-25T12:08:35.475Z | 2026-04-02T12:36:18.163Z |
| 9573670 | 9573670 | 20260324131835_pDZjr | NZ002T | 2026-03-25T12:08:35.475Z | 2026-04-02T12:36:18.163Z |
| 9573671 | 9573671 | 20260324131835_pDZjr | NZ002U | 2026-03-25T12:08:35.475Z | 2026-04-02T12:36:18.163Z |
| 9573672 | 9573672 | 20260324131835_pDZjr | NZ004C | 2026-03-25T12:08:35.475Z | 2026-04-02T12:36:18.163Z |
| 9573673 | 9573673 | 20260324131835_pDZjr | NZ005M | 2026-03-25T12:08:35.475Z | 2026-04-02T12:36:18.163Z |
| 9573674 | 9573674 | 20260324131835_pDZjr | NZ007B | 2026-03-25T12:08:35.475Z | 2026-04-02T12:36:18.163Z |
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);