participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20260320042519_x3y6D" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9534790 | 9534790 | 20260320042519_x3y6D | US000H | 2026-03-21T12:08:55.157Z | 2026-03-28T12:34:22.171Z |
| 9534791 | 9534791 | 20260320042519_x3y6D | US000J | 2026-03-21T12:08:55.157Z | 2026-03-28T12:34:22.171Z |
| 9534792 | 9534792 | 20260320042519_x3y6D | US000L | 2026-03-21T12:08:55.157Z | 2026-03-28T12:34:22.171Z |
| 9534793 | 9534793 | 20260320042519_x3y6D | US000R | 2026-03-21T12:08:55.157Z | 2026-03-28T12:34:22.171Z |
| 9534794 | 9534794 | 20260320042519_x3y6D | US005W | 2026-03-21T12:08:55.157Z | 2026-03-28T12:34:22.171Z |
| 9534795 | 9534795 | 20260320042519_x3y6D | USL01B | 2026-03-21T12:08:55.157Z | 2026-03-28T12:34:22.171Z |
| 9534786 | 9534786 | 20260320042519_x3y6D | US0001 | 2026-03-21T12:08:55.118Z | 2026-03-28T12:34:22.171Z |
| 9534787 | 9534787 | 20260320042519_x3y6D | US0004 | 2026-03-21T12:08:55.118Z | 2026-03-28T12:34:22.171Z |
| 9534788 | 9534788 | 20260320042519_x3y6D | US0005 | 2026-03-21T12:08:55.118Z | 2026-03-28T12:34:22.171Z |
| 9534789 | 9534789 | 20260320042519_x3y6D | US0007 | 2026-03-21T12:08:55.118Z | 2026-03-28T12:34:22.171Z |
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);