participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260322031443_G2cBW" 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 |
|---|---|---|---|---|---|
| 9554506 | 9554506 | 20260322031443_G2cBW | UK006D | 2026-03-23T12:02:38.388Z | 2026-03-30T12:28:05.005Z |
| 9554507 | 9554507 | 20260322031443_G2cBW | UK007C | 2026-03-23T12:02:38.388Z | 2026-03-30T12:28:05.005Z |
| 9554508 | 9554508 | 20260322031443_G2cBW | UK007H | 2026-03-23T12:02:38.388Z | 2026-03-30T12:28:05.005Z |
| 9554509 | 9554509 | 20260322031443_G2cBW | UK007R | 2026-03-23T12:02:38.388Z | 2026-03-30T12:28:05.005Z |
| 9554510 | 9554510 | 20260322031443_G2cBW | UK009V | 2026-03-23T12:02:38.388Z | 2026-03-30T12:28:05.006Z |
| 9554511 | 9554511 | 20260322031443_G2cBW | UK00AY | 2026-03-23T12:02:38.388Z | 2026-03-30T12:28:05.006Z |
| 9554512 | 9554512 | 20260322031443_G2cBW | UK00B1 | 2026-03-23T12:02:38.388Z | 2026-03-30T12:28:05.006Z |
| 9554513 | 9554513 | 20260322031443_G2cBW | UK00CA | 2026-03-23T12:02:38.388Z | 2026-03-30T12:28:05.006Z |
| 9554502 | 9554502 | 20260322031443_G2cBW | UK000F | 2026-03-23T12:02:38.378Z | 2026-03-30T12:28:05.005Z |
| 9554503 | 9554503 | 20260322031443_G2cBW | UK003D | 2026-03-23T12:02:38.378Z | 2026-03-30T12:28:05.005Z |
| 9554504 | 9554504 | 20260322031443_G2cBW | UK005N | 2026-03-23T12:02:38.378Z | 2026-03-30T12:28:05.005Z |
| 9554505 | 9554505 | 20260322031443_G2cBW | UK005U | 2026-03-23T12:02:38.378Z | 2026-03-30T12:28:05.005Z |
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);