participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
21 rows where station_code = "BR000P" 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 |
---|---|---|---|---|---|
3684093 | 3684093 | 20231218062035_gjC9B | BR000P | 2024-01-06T00:05:38.535Z | 2024-01-06T00:05:38.535Z |
2622438 | 2622438 | 20230717055053_x2vJJ | BR000P | 2024-01-05T23:59:36.257Z | 2024-01-05T23:59:36.257Z |
2605295 | 2605295 | 20230713032435_GHf8C | BR000P | 2024-01-05T23:59:28.946Z | 2024-01-05T23:59:28.946Z |
2593754 | 2593754 | 20230709063353_yqpug | BR000P | 2024-01-05T23:59:22.684Z | 2024-01-05T23:59:22.684Z |
2497331 | 2497331 | 20230528071219_AEMIh | BR000P | 2024-01-05T23:58:07.369Z | 2024-01-05T23:58:07.369Z |
2497115 | 2497115 | 20230528025038_CgSOn | BR000P | 2024-01-05T23:58:07.339Z | 2024-01-05T23:58:07.339Z |
2471486 | 2471486 | 20230520080842_BGJqk | BR000P | 2024-01-05T23:57:52.635Z | 2024-01-05T23:57:52.635Z |
2471443 | 2471443 | 20230520072021_dB6Rm | BR000P | 2024-01-05T23:57:52.630Z | 2024-01-05T23:57:52.630Z |
2471438 | 2471438 | 20230520071638_2XQhY | BR000P | 2024-01-05T23:57:52.629Z | 2024-01-05T23:57:52.629Z |
2471441 | 2471441 | 20230520071739_5C3Kn | BR000P | 2024-01-05T23:57:52.629Z | 2024-01-05T23:57:52.629Z |
2471365 | 2471365 | 20230520062343_YRHWJ | BR000P | 2024-01-05T23:57:52.621Z | 2024-01-05T23:57:52.621Z |
2471319 | 2471319 | 20230520051135_emIu8 | BR000P | 2024-01-05T23:57:52.615Z | 2024-01-05T23:57:52.615Z |
2471086 | 2471086 | 20230520015615_YF9MA | BR000P | 2024-01-05T23:57:52.596Z | 2024-01-05T23:57:52.596Z |
2471061 | 2471061 | 20230520014744_LMIhY | BR000P | 2024-01-05T23:57:52.593Z | 2024-01-05T23:57:52.593Z |
2466952 | 2466952 | 20230518071125_m9har | BR000P | 2024-01-05T23:57:49.816Z | 2024-01-05T23:57:49.816Z |
2466854 | 2466854 | 20230518032600_Wf2J2 | BR000P | 2024-01-05T23:57:49.791Z | 2024-01-05T23:57:49.791Z |
2464897 | 2464897 | 20230517055333_2ifAM | BR000P | 2024-01-05T23:57:47.873Z | 2024-01-05T23:57:47.873Z |
2464869 | 2464869 | 20230517053221_0gzVD | BR000P | 2024-01-05T23:57:47.866Z | 2024-01-05T23:57:47.866Z |
2464872 | 2464872 | 20230517053535_vGYz4 | BR000P | 2024-01-05T23:57:47.866Z | 2024-01-05T23:57:47.866Z |
2464861 | 2464861 | 20230517052100_VMJ3n | BR000P | 2024-01-05T23:57:47.863Z | 2024-01-05T23:57:47.863Z |
2464834 | 2464834 | 20230517042859_27SS6 | BR000P | 2024-01-05T23:57:47.855Z | 2024-01-05T23:57:47.855Z |
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);