participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where station_code = "BR001J" 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 |
---|---|---|---|---|---|
2982019 | 2982019 | 20230912073739_7nXtJ | BR001J | 2024-01-06T00:01:45.154Z | 2024-01-06T00:01:45.154Z |
2981965 | 2981965 | 20230912065607_Qriei | BR001J | 2024-01-06T00:01:45.146Z | 2024-01-06T00:01:45.146Z |
2981932 | 2981932 | 20230912062153_grG39 | BR001J | 2024-01-06T00:01:45.140Z | 2024-01-06T00:01:45.140Z |
2884827 | 2884827 | 20230823054044_MmAg1 | BR001J | 2024-01-06T00:01:10.262Z | 2024-01-06T00:01:10.262Z |
2884654 | 2884654 | 20230823042336_5b5Yc | BR001J | 2024-01-06T00:01:10.237Z | 2024-01-06T00:01:10.237Z |
2884591 | 2884591 | 20230823035542_kHp6D | BR001J | 2024-01-06T00:01:10.226Z | 2024-01-06T00:01:10.226Z |
2852833 | 2852833 | 20230819062851_J9b0a | BR001J | 2024-01-06T00:01:01.850Z | 2024-01-06T00:01:01.850Z |
2847427 | 2847427 | 20230818052138_fKYrt | BR001J | 2024-01-06T00:00:59.915Z | 2024-01-06T00:00:59.915Z |
2713415 | 2713415 | 20230807054753_pxTIz | BR001J | 2024-01-06T00:00:19.433Z | 2024-01-06T00:00:19.433Z |
2703249 | 2703249 | 20230806071329_Gioxg | BR001J | 2024-01-06T00:00:17.226Z | 2024-01-06T00:00:17.226Z |
2688236 | 2688236 | 20230802083341_adNm2 | BR001J | 2024-01-06T00:00:10.472Z | 2024-01-06T00:00:10.472Z |
2649649 | 2649649 | 20230724052458_bJEVb | BR001J | 2024-01-05T23:59:48.517Z | 2024-01-05T23:59:48.517Z |
2646131 | 2646131 | 20230723075230_zFlrr | BR001J | 2024-01-05T23:59:45.191Z | 2024-01-05T23:59:45.191Z |
2612204 | 2612204 | 20230715071842_fY848 | BR001J | 2024-01-05T23:59:32.630Z | 2024-01-05T23:59:32.630Z |
2599033 | 2599033 | 20230711030717_RNSEW | BR001J | 2024-01-05T23:59:25.571Z | 2024-01-05T23:59:25.571Z |
2590347 | 2590347 | 20230707234834_3r7fV | BR001J | 2024-01-05T23:59:21.099Z | 2024-01-05T23:59:21.099Z |
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);