participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
21 rows where station_code = "AU0039" 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 |
---|---|---|---|---|---|
4683022 | 4683022 | 20240723155007_bCoR2 | AU0039 | 2024-07-25T12:07:23.703Z | 2024-07-31T12:18:07.191Z |
4682983 | 4682983 | 20240723154147_Cf8pi | AU0039 | 2024-07-25T12:07:19.206Z | 2024-07-31T12:18:06.694Z |
4682927 | 4682927 | 20240723143741_3KF0l | AU0039 | 2024-07-25T12:07:11.837Z | 2024-07-31T12:18:06.005Z |
4682808 | 4682808 | 20240723112239_s8Th8 | AU0039 | 2024-07-25T12:06:49.005Z | 2024-07-31T12:18:03.274Z |
4682790 | 4682790 | 20240723104509_NWkYc | AU0039 | 2024-07-25T12:06:46.373Z | 2024-07-31T12:18:02.356Z |
4680369 | 4680369 | 20240723213213_cZuhE | AU0039 | 2024-07-25T12:01:55.990Z | 2024-08-01T12:12:01.682Z |
4680360 | 4680360 | 20240723212950_05xgT | AU0039 | 2024-07-25T12:01:55.510Z | 2024-08-01T12:12:01.654Z |
4679448 | 4679448 | 20240723150202_qh3Fj | AU0039 | 2024-07-24T12:05:40.548Z | 2024-07-31T12:18:06.277Z |
4679201 | 4679201 | 20240723133643_Oo826 | AU0039 | 2024-07-24T12:05:12.354Z | 2024-07-31T12:18:05.194Z |
4676677 | 4676677 | 20240722115416_TflkN | AU0039 | 2024-07-23T12:02:54.340Z | 2024-07-30T12:18:16.892Z |
4675295 | 4675295 | 20240721215444_hKKPd | AU0039 | 2024-07-23T12:01:05.837Z | 2024-07-30T12:18:05.320Z |
4675291 | 4675291 | 20240721215430_8yzrs | AU0039 | 2024-07-23T12:01:05.596Z | 2024-07-30T12:18:05.285Z |
4675223 | 4675223 | 20240721213744_7LCQs | AU0039 | 2024-07-23T12:01:00.350Z | 2024-07-30T12:18:04.883Z |
4675149 | 4675149 | 20240721203649_Bipe2 | AU0039 | 2024-07-23T12:00:51.680Z | 2024-07-30T12:18:04.351Z |
4675141 | 4675141 | 20240721202428_EclAJ | AU0039 | 2024-07-23T12:00:50.770Z | 2024-07-30T12:18:04.284Z |
4674089 | 4674089 | 20240720214539_ibOal | AU0039 | 2024-07-22T12:01:01.338Z | 2024-07-29T12:17:09.535Z |
4674045 | 4674045 | 20240720212327_DL6wc | AU0039 | 2024-07-22T12:00:53.455Z | 2024-07-29T12:17:09.203Z |
4674033 | 4674033 | 20240720211053_A3XgT | AU0039 | 2024-07-22T12:00:51.128Z | 2024-07-29T12:17:09.143Z |
4673999 | 4673999 | 20240720204603_DoEth | AU0039 | 2024-07-22T12:00:46.616Z | 2024-07-29T12:17:08.956Z |
4673873 | 4673873 | 20240721200116_HZKDn | AU0039 | 2024-07-22T12:00:11.072Z | 2024-07-30T12:18:04.073Z |
4673871 | 4673871 | 20240721192414_PoANM | AU0039 | 2024-07-22T12:00:10.775Z | 2024-07-30T12:18:03.707Z |
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);