participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where station_code = "AU001W_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 |
---|---|---|---|---|---|
6310824 | 6310824 | 20250310175521_o79zF | AU001W_2 | 2025-03-13T12:11:58.289Z | 2025-03-19T12:36:58.714Z |
6291786 | 6291786 | 20250308165646_knKJJ | AU001W_2 | 2025-03-10T12:02:02.580Z | 2025-03-17T12:35:45.090Z |
6284553 | 6284553 | 20250306134244_T42XM | AU001W_2 | 2025-03-08T14:37:51.608Z | 2025-03-14T12:36:39.772Z |
6231082 | 6231082 | 20250302150605_p3wkN | AU001W_2 | 2025-03-04T14:36:57.857Z | 2025-03-10T13:53:39.863Z |
6222370 | 6222370 | 20250302203005_g0sxE | AU001W_2 | 2025-03-04T14:06:28.625Z | 2025-03-11T13:29:10.677Z |
6221341 | 6221341 | 20250302181702_Vjgmg | AU001W_2 | 2025-03-04T14:02:26.128Z | 2025-03-11T13:27:54.076Z |
6221228 | 6221228 | 20250302174806_JZ2zB | AU001W_2 | 2025-03-04T14:01:47.078Z | 2025-03-11T13:27:49.466Z |
6180420 | 6180420 | 20250225115953_jH88v | AU001W_2 | 2025-02-27T14:40:02.007Z | 2025-03-04T15:20:26.454Z |
6170428 | 6170428 | 20250224151854_JKJjp | AU001W_2 | 2025-02-26T14:33:08.390Z | 2025-03-04T15:26:32.523Z |
6162794 | 6162794 | 20250223144114_qHG3Q | AU001W_2 | 2025-02-25T14:37:25.245Z | 2025-03-03T15:24:27.473Z |
6162654 | 6162654 | 20250223124614_TuDgK | AU001W_2 | 2025-02-25T14:36:05.296Z | 2025-03-03T15:23:51.832Z |
6155055 | 6155055 | 20250222145246_jXlfN | AU001W_2 | 2025-02-24T14:42:00.220Z | 2025-03-02T15:38:42.210Z |
5936649 | 5936649 | 20250107150141_WvbQ1 | AU001W_2 | 2025-01-09T14:19:22.291Z | 2025-01-16T14:19:46.447Z |
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);