participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
5 rows where station_code = "BE000P_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 |
|---|---|---|---|---|---|
| 6841933 | 6841933 | 20250601011104_2RDqU | BE000P_2 | 2025-06-02T12:13:34.533Z | 2025-06-09T12:45:43.663Z |
| 6279756 | 6279756 | 20250307023232_yvnYq | BE000P_2 | 2025-03-08T14:14:46.110Z | 2025-03-15T12:35:05.796Z |
| 6205582 | 6205582 | 20250301045518_UCu3r | BE000P_2 | 2025-03-02T14:16:14.593Z | 2025-03-09T13:31:27.111Z |
| 5960719 | 5960719 | 20250121053452_dt0pb | BE000P_2 | 2025-01-22T14:01:10.842Z | 2025-01-30T14:32:59.662Z |
| 5884713 | 5884713 | 20250103033530_Fkjw8 | BE000P_2 | 2025-01-04T14:19:15.568Z | 2025-01-11T14:41:37.241Z |
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);