participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
5 rows where station_code = "HR001X_2" 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 |
|---|---|---|---|---|---|
| 8526424 | 8526424 | 20251118222849_5lKRH | HR001X_2 | 2025-11-20T14:39:54.512Z | 2025-11-27T15:11:47.854Z |
| 8422737 | 8422737 | 20251110222601_Ax4Wp | HR001X_2 | 2025-11-12T14:16:59.987Z | 2025-11-19T15:15:31.409Z |
| 7577288 | 7577288 | 20250819025122_6cHrU | HR001X_2 | 2025-08-21T12:04:08.285Z | 2025-08-28T12:51:39.964Z |
| 5667204 | 5667204 | 20241201233844_yfA4m | HR001X_2 | 2024-12-03T14:22:49.285Z | 2024-12-10T14:32:41.070Z |
| 5656981 | 5656981 | 20241130225438_U2oBj | HR001X_2 | 2024-12-02T14:23:26.450Z | 2024-12-09T14:35:08.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);