participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
22 rows where station_code = "BR000V" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
2497378 | 2497378 | 20230528075728_WFqGt | BR000V | 2024-01-05T23:58:07.376Z | 2024-01-05T23:58:07.376Z |
2497332 | 2497332 | 20230528071219_AEMIh | BR000V | 2024-01-05T23:58:07.369Z | 2024-01-05T23:58:07.369Z |
2497116 | 2497116 | 20230528025038_CgSOn | BR000V | 2024-01-05T23:58:07.339Z | 2024-01-05T23:58:07.339Z |
2471487 | 2471487 | 20230520080842_BGJqk | BR000V | 2024-01-05T23:57:52.635Z | 2024-01-05T23:57:52.635Z |
2471444 | 2471444 | 20230520072021_dB6Rm | BR000V | 2024-01-05T23:57:52.630Z | 2024-01-05T23:57:52.630Z |
2471439 | 2471439 | 20230520071638_2XQhY | BR000V | 2024-01-05T23:57:52.629Z | 2024-01-05T23:57:52.629Z |
2471442 | 2471442 | 20230520071739_5C3Kn | BR000V | 2024-01-05T23:57:52.629Z | 2024-01-05T23:57:52.629Z |
2471366 | 2471366 | 20230520062343_YRHWJ | BR000V | 2024-01-05T23:57:52.621Z | 2024-01-05T23:57:52.621Z |
2471320 | 2471320 | 20230520051135_emIu8 | BR000V | 2024-01-05T23:57:52.615Z | 2024-01-05T23:57:52.615Z |
2471087 | 2471087 | 20230520015615_YF9MA | BR000V | 2024-01-05T23:57:52.596Z | 2024-01-05T23:57:52.596Z |
2471062 | 2471062 | 20230520014744_LMIhY | BR000V | 2024-01-05T23:57:52.593Z | 2024-01-05T23:57:52.593Z |
2466953 | 2466953 | 20230518071125_m9har | BR000V | 2024-01-05T23:57:49.816Z | 2024-01-05T23:57:49.816Z |
2466855 | 2466855 | 20230518032600_Wf2J2 | BR000V | 2024-01-05T23:57:49.791Z | 2024-01-05T23:57:49.791Z |
2464982 | 2464982 | 20230517080109_2V73Y | BR000V | 2024-01-05T23:57:47.894Z | 2024-01-05T23:57:47.894Z |
2464945 | 2464945 | 20230517070336_2w03V | BR000V | 2024-01-05T23:57:47.884Z | 2024-01-05T23:57:47.884Z |
2464898 | 2464898 | 20230517055333_2ifAM | BR000V | 2024-01-05T23:57:47.873Z | 2024-01-05T23:57:47.873Z |
2464870 | 2464870 | 20230517053221_0gzVD | BR000V | 2024-01-05T23:57:47.866Z | 2024-01-05T23:57:47.866Z |
2464873 | 2464873 | 20230517053535_vGYz4 | BR000V | 2024-01-05T23:57:47.866Z | 2024-01-05T23:57:47.866Z |
2464862 | 2464862 | 20230517052100_VMJ3n | BR000V | 2024-01-05T23:57:47.863Z | 2024-01-05T23:57:47.863Z |
2464835 | 2464835 | 20230517042859_27SS6 | BR000V | 2024-01-05T23:57:47.855Z | 2024-01-05T23:57:47.855Z |
2389491 | 2389491 | 20230417035930_XCZtO | BR000V | 2024-01-05T23:56:57.215Z | 2024-01-05T23:56:57.215Z |
2382139 | 2382139 | 20230414071649_p3Xda | BR000V | 2024-01-05T23:56:52.835Z | 2024-01-05T23:56:52.835Z |
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);