participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20260321235806_OqLBC" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: updated_at, created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9552387 | 9552387 | 20260321235806_OqLBC | UK00CZ | 2026-03-23T12:00:19.198Z | 2026-03-30T12:27:23.106Z |
| 9552386 | 9552386 | 20260321235806_OqLBC | UK00BW | 2026-03-23T12:00:19.194Z | 2026-03-30T12:27:23.106Z |
| 9552385 | 9552385 | 20260321235806_OqLBC | UK00B5 | 2026-03-23T12:00:19.182Z | 2026-03-30T12:27:23.106Z |
| 9552384 | 9552384 | 20260321235806_OqLBC | UK00AU | 2026-03-23T12:00:19.176Z | 2026-03-30T12:27:23.106Z |
| 9552383 | 9552383 | 20260321235806_OqLBC | UK00AP | 2026-03-23T12:00:19.171Z | 2026-03-30T12:27:23.106Z |
| 9552382 | 9552382 | 20260321235806_OqLBC | UK00AB | 2026-03-23T12:00:19.155Z | 2026-03-30T12:27:23.106Z |
| 9552381 | 9552381 | 20260321235806_OqLBC | UK00A2 | 2026-03-23T12:00:19.150Z | 2026-03-30T12:27:23.106Z |
| 9552380 | 9552380 | 20260321235806_OqLBC | UK009W | 2026-03-23T12:00:19.135Z | 2026-03-30T12:27:23.079Z |
| 9552379 | 9552379 | 20260321235806_OqLBC | UK008Q | 2026-03-23T12:00:19.120Z | 2026-03-30T12:27:23.079Z |
| 9552378 | 9552378 | 20260321235806_OqLBC | UK008D | 2026-03-23T12:00:19.111Z | 2026-03-30T12:27:23.079Z |
| 9552377 | 9552377 | 20260321235806_OqLBC | UK007Q | 2026-03-23T12:00:19.098Z | 2026-03-30T12:27:23.079Z |
| 9552376 | 9552376 | 20260321235806_OqLBC | UK006H | 2026-03-23T12:00:19.076Z | 2026-03-30T12:27:23.079Z |
| 9552375 | 9552375 | 20260321235806_OqLBC | UK000H | 2026-03-23T12:00:19.065Z | 2026-03-30T12:27:23.079Z |
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);