participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
6 rows where station_code = "BR001R" 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 |
---|---|---|---|---|---|
5556557 | 5556557 | 20241118232716_23yyc | BR001R | 2024-11-20T14:10:44.043Z | 2024-11-22T14:22:18.338Z |
5554020 | 5554020 | 20241119052859_cJ2Bl | BR001R | 2024-11-20T14:00:25.359Z | 2024-11-22T14:19:27.016Z |
5553977 | 5553977 | 20241119050553_WIlHz | BR001R | 2024-11-20T14:00:16.247Z | 2024-11-22T14:19:25.234Z |
5553493 | 5553493 | 20241118025728_tVHe7 | BR001R | 2024-11-19T14:10:42.733Z | 2024-11-22T14:22:53.552Z |
5553428 | 5553428 | 20241118023133_tyHjz | BR001R | 2024-11-19T14:10:33.581Z | 2024-11-22T14:22:53.170Z |
5552917 | 5552917 | 20241117232512_J2yUP | BR001R | 2024-11-19T14:09:46.440Z | 2024-11-22T14:22:49.187Z |
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);