participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where station_code = "AU001V_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 |
---|---|---|---|---|---|
6307684 | 6307684 | 20250310135009_zK9KU | AU001V_2 | 2025-03-11T12:24:06.217Z | 2025-03-17T12:34:45.304Z |
6277763 | 6277763 | 20250306205219_PXxR7 | AU001V_2 | 2025-03-08T14:07:58.045Z | 2025-03-15T12:34:08.293Z |
6271895 | 6271895 | 20250304123325_xPoq3 | AU001V_2 | 2025-03-07T15:13:47.027Z | 2025-03-11T13:25:54.456Z |
6252896 | 6252896 | 20250304180721_zuTKT | AU001V_2 | 2025-03-07T14:34:54.018Z | 2025-03-13T12:41:11.514Z |
6221464 | 6221464 | 20250302184403_x4WZq | AU001V_2 | 2025-03-04T14:02:59.983Z | 2025-03-11T13:28:16.830Z |
6220937 | 6220937 | 20250302164502_9tIyv | AU001V_2 | 2025-03-04T14:00:25.008Z | 2025-03-11T13:27:41.371Z |
6211378 | 6211378 | 20250301174454_FSX7R | AU001V_2 | 2025-03-03T14:02:02.895Z | 2025-03-10T13:41:49.804Z |
6156708 | 6156708 | 20250223200435_b8Ba2 | AU001V_2 | 2025-02-25T14:04:10.315Z | 2025-03-04T15:22:43.452Z |
4670373 | 4670373 | 20240719143117_2sD8C | AU001V_2 | 2024-07-21T12:01:05.034Z | 2024-07-28T12:14:48.641Z |
3576626 | 3576626 | 20231211192720_4SUsu | AU001V_2 | 2024-01-06T00:05:15.017Z | 2024-01-06T00:05:15.017Z |
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);