participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where station_code = "BR000H" 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 |
---|---|---|---|---|---|
3965701 | 3965701 | 20240214021021_Y0CwQ | BR000H | 2024-02-15T14:07:21.638Z | 2024-02-22T14:23:56.881Z |
3684092 | 3684092 | 20231218062035_gjC9B | BR000H | 2024-01-06T00:05:38.535Z | 2024-01-06T00:05:38.535Z |
2622437 | 2622437 | 20230717055053_x2vJJ | BR000H | 2024-01-05T23:59:36.257Z | 2024-01-05T23:59:36.257Z |
2593753 | 2593753 | 20230709063353_yqpug | BR000H | 2024-01-05T23:59:22.684Z | 2024-01-05T23:59:22.684Z |
2568642 | 2568642 | 20230627073736_0CdUV | BR000H | 2024-01-05T23:59:05.611Z | 2024-01-05T23:59:05.611Z |
2497377 | 2497377 | 20230528075728_WFqGt | BR000H | 2024-01-05T23:58:07.376Z | 2024-01-05T23:58:07.376Z |
2497330 | 2497330 | 20230528071219_AEMIh | BR000H | 2024-01-05T23:58:07.369Z | 2024-01-05T23:58:07.369Z |
2471440 | 2471440 | 20230520071739_5C3Kn | BR000H | 2024-01-05T23:57:52.629Z | 2024-01-05T23:57:52.629Z |
2471364 | 2471364 | 20230520062343_YRHWJ | BR000H | 2024-01-05T23:57:52.621Z | 2024-01-05T23:57:52.621Z |
2464896 | 2464896 | 20230517055333_2ifAM | BR000H | 2024-01-05T23:57:47.873Z | 2024-01-05T23:57:47.873Z |
2464871 | 2464871 | 20230517053535_vGYz4 | BR000H | 2024-01-05T23:57:47.866Z | 2024-01-05T23:57:47.866Z |
2464860 | 2464860 | 20230517052100_VMJ3n | BR000H | 2024-01-05T23:57:47.863Z | 2024-01-05T23:57:47.863Z |
2464833 | 2464833 | 20230517042859_27SS6 | BR000H | 2024-01-05T23:57:47.855Z | 2024-01-05T23:57:47.855Z |
2389490 | 2389490 | 20230417035930_XCZtO | BR000H | 2024-01-05T23:56:57.215Z | 2024-01-05T23:56:57.215Z |
2382138 | 2382138 | 20230414071649_p3Xda | BR000H | 2024-01-05T23:56:52.835Z | 2024-01-05T23:56:52.835Z |
1507000 | 1507000 | 20220808071431_7I7ol | BR000H | 2024-01-05T23:48:50.823Z | 2024-01-05T23:48:50.823Z |
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);