participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260305191402_Sr27y" 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 |
|---|---|---|---|---|---|
| 9436115 | 9436115 | 20260305191402_Sr27y | NL0013 | 2026-03-07T14:24:30.512Z | 2026-03-13T12:35:40.789Z |
| 9436116 | 9436116 | 20260305191402_Sr27y | NL0019 | 2026-03-07T14:24:30.512Z | 2026-03-13T12:35:40.789Z |
| 9436117 | 9436117 | 20260305191402_Sr27y | NL001D | 2026-03-07T14:24:30.512Z | 2026-03-13T12:35:40.789Z |
| 9436112 | 9436112 | 20260305191402_Sr27y | NL000H | 2026-03-07T14:24:30.511Z | 2026-03-13T12:35:40.789Z |
| 9436113 | 9436113 | 20260305191402_Sr27y | NL000R | 2026-03-07T14:24:30.511Z | 2026-03-13T12:35:40.789Z |
| 9436114 | 9436114 | 20260305191402_Sr27y | NL0011 | 2026-03-07T14:24:30.511Z | 2026-03-13T12:35:40.789Z |
| 9436111 | 9436111 | 20260305191402_Sr27y | NL000C | 2026-03-07T14:24:30.509Z | 2026-03-13T12:35:40.789Z |
| 9436106 | 9436106 | 20260305191402_Sr27y | DE0001 | 2026-03-07T14:24:30.494Z | 2026-03-13T12:35:40.789Z |
| 9436107 | 9436107 | 20260305191402_Sr27y | DE000B | 2026-03-07T14:24:30.494Z | 2026-03-13T12:35:40.789Z |
| 9436108 | 9436108 | 20260305191402_Sr27y | DE000W | 2026-03-07T14:24:30.494Z | 2026-03-13T12:35:40.789Z |
| 9436109 | 9436109 | 20260305191402_Sr27y | DE0013 | 2026-03-07T14:24:30.494Z | 2026-03-13T12:35:40.789Z |
| 9436110 | 9436110 | 20260305191402_Sr27y | NL0009 | 2026-03-07T14:24:30.494Z | 2026-03-13T12:35:40.789Z |
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);