participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where station_code = "RO000L" 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 |
|---|---|---|---|---|---|
| 9615335 | 9615335 | 20260406010154_AwxOC | RO000L | 2026-04-07T12:10:38.125Z | 2026-04-08T12:28:34.935Z |
| 9615177 | 9615177 | 20260406004445_o1IW2 | RO000L | 2026-04-07T12:10:08.659Z | 2026-04-08T12:28:28.921Z |
| 9613388 | 9613388 | 20260405195646_KH3Ze | RO000L | 2026-04-07T12:06:36.894Z | 2026-04-08T12:26:56.065Z |
| 9611499 | 9611499 | 20260405022032_hqdAQ | RO000L | 2026-04-06T12:14:49.846Z | 2026-04-08T12:32:15.118Z |
| 9610907 | 9610907 | 20260404225016_ne8PM | RO000L | 2026-04-06T12:12:00.350Z | 2026-04-08T12:31:36.568Z |
| 9610807 | 9610807 | 20260404220530_DNbEv | RO000L | 2026-04-06T12:11:28.135Z | 2026-04-08T12:31:32.347Z |
| 9588330 | 9588330 | 20260326214501_5XJKy | RO000L | 2026-03-28T12:10:53.742Z | 2026-04-04T12:41:58.994Z |
| 9584626 | 9584626 | 20260325211931_e3CEc | RO000L | 2026-03-27T12:15:51.958Z | 2026-04-03T12:39:24.828Z |
| 9579725 | 9579725 | 20260324222828_istJx | RO000L | 2026-03-26T12:14:16.799Z | 2026-04-02T12:37:27.325Z |
| 9571223 | 9571223 | 20260324004215_0i83r | RO000L | 2026-03-25T12:00:31.361Z | 2026-04-02T12:34:14.053Z |
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);