participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260314045232_u4kWc" 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 |
|---|---|---|---|---|---|
| 9477384 | 9477384 | 20260314045232_u4kWc | UK0006 | 2026-03-15T12:08:13.601Z | 2026-03-22T12:42:02.597Z |
| 9477385 | 9477385 | 20260314045232_u4kWc | UK000D | 2026-03-15T12:08:13.601Z | 2026-03-22T12:42:02.597Z |
| 9477386 | 9477386 | 20260314045232_u4kWc | UK000H | 2026-03-15T12:08:13.601Z | 2026-03-22T12:42:02.597Z |
| 9477387 | 9477387 | 20260314045232_u4kWc | UK0024 | 2026-03-15T12:08:13.601Z | 2026-03-22T12:42:02.597Z |
| 9477388 | 9477388 | 20260314045232_u4kWc | UK003E | 2026-03-15T12:08:13.601Z | 2026-03-22T12:42:02.597Z |
| 9477389 | 9477389 | 20260314045232_u4kWc | UK0089 | 2026-03-15T12:08:13.601Z | 2026-03-22T12:42:02.597Z |
| 9477390 | 9477390 | 20260314045232_u4kWc | UK009W | 2026-03-15T12:08:13.601Z | 2026-03-22T12:42:02.597Z |
| 9477391 | 9477391 | 20260314045232_u4kWc | UK00A1 | 2026-03-15T12:08:13.601Z | 2026-03-22T12:42:02.597Z |
| 9477392 | 9477392 | 20260314045232_u4kWc | UK00AU | 2026-03-15T12:08:13.601Z | 2026-03-22T12:42:02.597Z |
| 9477393 | 9477393 | 20260314045232_u4kWc | UK00B5 | 2026-03-15T12:08:13.601Z | 2026-03-22T12:42:02.597Z |
| 9477394 | 9477394 | 20260314045232_u4kWc | UK00BK | 2026-03-15T12:08:13.601Z | 2026-03-22T12:42:02.597Z |
| 9477395 | 9477395 | 20260314045232_u4kWc | UK00DH | 2026-03-15T12:08:13.601Z | 2026-03-22T12:42:02.597Z |
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);