participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
7 rows where station_code = "AU001A_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 |
---|---|---|---|---|---|
6310776 | 6310776 | 20250310173226_OXVWl | AU001A_2 | 2025-03-13T12:11:41.239Z | 2025-03-19T12:36:57.734Z |
6284680 | 6284680 | 20250306150341_oqzjt | AU001A_2 | 2025-03-08T14:38:52.223Z | 2025-03-14T12:36:47.930Z |
6219661 | 6219661 | 20250301130536_zhE9g | AU001A_2 | 2025-03-03T14:36:45.032Z | 2025-03-09T13:33:24.812Z |
6211640 | 6211640 | 20250301183038_G4Wq5 | AU001A_2 | 2025-03-03T14:03:10.803Z | 2025-03-10T13:42:18.185Z |
6156905 | 6156905 | 20250223210115_UVYSp | AU001A_2 | 2025-02-25T14:05:08.445Z | 2025-03-04T15:22:59.318Z |
5771595 | 5771595 | 20241211180426_rFRTp | AU001A_2 | 2024-12-13T14:20:57.047Z | 2024-12-19T14:39:48.510Z |
5259096 | 5259096 | 20241007130026_k13Xn | AU001A_2 | 2024-10-09T12:10:20.594Z | 2024-10-16T12:21:08.218Z |
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);