participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260225182307_PLvM8" 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 |
|---|---|---|---|---|---|
| 9396124 | 9396124 | 20260225182307_PLvM8 | KR000A | 2026-02-26T14:22:50.670Z | 2026-03-05T14:38:27.425Z |
| 9396125 | 9396125 | 20260225182307_PLvM8 | KR000K | 2026-02-26T14:22:50.670Z | 2026-03-05T14:38:27.425Z |
| 9396126 | 9396126 | 20260225182307_PLvM8 | KR000L | 2026-02-26T14:22:50.670Z | 2026-03-05T14:38:27.425Z |
| 9396127 | 9396127 | 20260225182307_PLvM8 | KR000N | 2026-02-26T14:22:50.670Z | 2026-03-05T14:38:27.425Z |
| 9396128 | 9396128 | 20260225182307_PLvM8 | KR0012 | 2026-02-26T14:22:50.670Z | 2026-03-05T14:38:27.425Z |
| 9396129 | 9396129 | 20260225182307_PLvM8 | KR001C | 2026-02-26T14:22:50.670Z | 2026-03-05T14:38:27.425Z |
| 9396130 | 9396130 | 20260225182307_PLvM8 | KR001D | 2026-02-26T14:22:50.670Z | 2026-03-05T14:38:27.425Z |
| 9396131 | 9396131 | 20260225182307_PLvM8 | KR0022 | 2026-02-26T14:22:50.670Z | 2026-03-05T14:38:27.425Z |
| 9396132 | 9396132 | 20260225182307_PLvM8 | KR002E | 2026-02-26T14:22:50.670Z | 2026-03-05T14:38:27.425Z |
| 9396133 | 9396133 | 20260225182307_PLvM8 | KR002N | 2026-02-26T14:22:50.670Z | 2026-03-05T14:38:27.425Z |
| 9396134 | 9396134 | 20260225182307_PLvM8 | KR0036 | 2026-02-26T14:22:50.670Z | 2026-03-05T14:38:27.425Z |
| 9396135 | 9396135 | 20260225182307_PLvM8 | KR003X | 2026-02-26T14:22:50.670Z | 2026-03-05T14:38:27.425Z |
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);