participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
24 rows where station_code = "BR0011" 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 |
---|---|---|---|---|---|
2350268 | 2350268 | 20230327050040_yVzSI | BR0011 | 2024-01-05T23:56:25.852Z | 2024-01-05T23:56:25.852Z |
2345976 | 2345976 | 20230324231641_EkojC | BR0011 | 2024-01-05T23:56:22.561Z | 2024-01-05T23:56:22.561Z |
2345121 | 2345121 | 20230324061204_m0I60 | BR0011 | 2024-01-05T23:56:22.304Z | 2024-01-05T23:56:22.304Z |
2344970 | 2344970 | 20230324042719_ZHkmT | BR0011 | 2024-01-05T23:56:21.059Z | 2024-01-05T23:56:21.059Z |
2344094 | 2344094 | 20230324014329_OrzDb | BR0011 | 2024-01-05T23:56:20.932Z | 2024-01-05T23:56:20.932Z |
2343968 | 2343968 | 20230324010234_Felvz | BR0011 | 2024-01-05T23:56:20.915Z | 2024-01-05T23:56:20.915Z |
2343672 | 2343672 | 20230323230228_rzftf | BR0011 | 2024-01-05T23:56:20.872Z | 2024-01-05T23:56:20.872Z |
2331259 | 2331259 | 20230317031518_GFKe0 | BR0011 | 2024-01-05T23:56:10.358Z | 2024-01-05T23:56:10.358Z |
1631565 | 1631565 | 20220903064715_kVzXb | BR0011 | 2024-01-05T23:49:49.877Z | 2024-01-05T23:49:49.877Z |
1631402 | 1631402 | 20220903051455_mlroP | BR0011 | 2024-01-05T23:49:49.855Z | 2024-01-05T23:49:49.855Z |
1627904 | 1627904 | 20220902054621_X35iN | BR0011 | 2024-01-05T23:49:48.102Z | 2024-01-05T23:49:48.102Z |
1601252 | 1601252 | 20220827052646_repF6 | BR0011 | 2024-01-05T23:49:34.435Z | 2024-01-05T23:49:34.435Z |
1575514 | 1575514 | 20220819075726_eCEnj | BR0011 | 2024-01-05T23:49:16.177Z | 2024-01-05T23:49:16.177Z |
1507001 | 1507001 | 20220808071431_7I7ol | BR0011 | 2024-01-05T23:48:50.823Z | 2024-01-05T23:48:50.823Z |
1479718 | 1479718 | 20220805072001_nGie3 | BR0011 | 2024-01-05T23:48:37.091Z | 2024-01-05T23:48:37.091Z |
1463731 | 1463731 | 20220802080903_YSwzB | BR0011 | 2024-01-05T23:48:25.618Z | 2024-01-05T23:48:25.618Z |
1463564 | 1463564 | 20220802065417_81dWz | BR0011 | 2024-01-05T23:48:25.482Z | 2024-01-05T23:48:25.482Z |
1445363 | 1445363 | 20220728073105_sJKD5 | BR0011 | 2024-01-05T23:48:12.264Z | 2024-01-05T23:48:12.264Z |
1445287 | 1445287 | 20220728064108_3s0cK | BR0011 | 2024-01-05T23:48:12.252Z | 2024-01-05T23:48:12.252Z |
1434718 | 1434718 | 20220724063250_yAGla | BR0011 | 2024-01-05T23:48:07.205Z | 2024-01-05T23:48:07.205Z |
1414936 | 1414936 | 20220711080043_9f472 | BR0011 | 2024-01-05T23:47:45.794Z | 2024-01-05T23:47:45.794Z |
1405984 | 1405984 | 20220708073942_fUV3A | BR0011 | 2024-01-05T23:47:38.230Z | 2024-01-05T23:47:38.230Z |
1402772 | 1402772 | 20220707054828_HMV13 | BR0011 | 2024-01-05T23:47:35.532Z | 2024-01-05T23:47:35.532Z |
1383829 | 1383829 | 20220629031751_BByEz | BR0011 | 2024-01-05T23:47:20.469Z | 2024-01-05T23:47:20.469Z |
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);