participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20260328000948_g0c3C" 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 |
|---|---|---|---|---|---|
| 9592065 | 9592065 | 20260328000948_g0c3C | UK007B | 2026-03-29T12:07:09.063Z | 2026-04-05T12:35:25.854Z |
| 9592066 | 9592066 | 20260328000948_g0c3C | UK007P | 2026-03-29T12:07:09.063Z | 2026-04-05T12:35:25.854Z |
| 9592067 | 9592067 | 20260328000948_g0c3C | UK0086 | 2026-03-29T12:07:09.063Z | 2026-04-05T12:35:25.854Z |
| 9592068 | 9592068 | 20260328000948_g0c3C | UK008L | 2026-03-29T12:07:09.063Z | 2026-04-05T12:35:25.854Z |
| 9592069 | 9592069 | 20260328000948_g0c3C | UK0098 | 2026-03-29T12:07:09.063Z | 2026-04-05T12:35:25.854Z |
| 9592070 | 9592070 | 20260328000948_g0c3C | UK009J | 2026-03-29T12:07:09.063Z | 2026-04-05T12:35:25.854Z |
| 9592071 | 9592071 | 20260328000948_g0c3C | UK009S | 2026-03-29T12:07:09.063Z | 2026-04-05T12:35:25.854Z |
| 9592072 | 9592072 | 20260328000948_g0c3C | UK00AT | 2026-03-29T12:07:09.063Z | 2026-04-05T12:35:25.854Z |
| 9592073 | 9592073 | 20260328000948_g0c3C | UK00B0 | 2026-03-29T12:07:09.063Z | 2026-04-05T12:35:25.854Z |
| 9592074 | 9592074 | 20260328000948_g0c3C | UK00B1 | 2026-03-29T12:07:09.063Z | 2026-04-05T12:35:25.854Z |
| 9592075 | 9592075 | 20260328000948_g0c3C | UK00B2 | 2026-03-29T12:07:09.063Z | 2026-04-05T12:35:25.854Z |
| 9592076 | 9592076 | 20260328000948_g0c3C | UK00BA | 2026-03-29T12:07:09.063Z | 2026-04-05T12:35:25.854Z |
| 9592077 | 9592077 | 20260328000948_g0c3C | UK00BF | 2026-03-29T12:07:09.063Z | 2026-04-05T12:35:25.854Z |
| 9592078 | 9592078 | 20260328000948_g0c3C | UK00DA | 2026-03-29T12:07:09.063Z | 2026-04-05T12:35:25.854Z |
| 9592079 | 9592079 | 20260328000948_g0c3C | UK00DG | 2026-03-29T12:07:09.063Z | 2026-04-05T12:35:25.854Z |
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);