participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where station_code = "CAWT07" 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 |
---|---|---|---|---|---|
2853468 | 2853468 | 20230819092338_hVYlu | CAWT07 | 2024-01-06T00:01:01.927Z | 2024-01-06T00:01:01.927Z |
2853341 | 2853341 | 20230819084818_3eutI | CAWT07 | 2024-01-06T00:01:01.911Z | 2024-01-06T00:01:01.911Z |
2852835 | 2852835 | 20230819063047_yDqNS | CAWT07 | 2024-01-06T00:01:01.851Z | 2024-01-06T00:01:01.851Z |
2852687 | 2852687 | 20230819052856_pbTja | CAWT07 | 2024-01-06T00:01:01.829Z | 2024-01-06T00:01:01.829Z |
2852671 | 2852671 | 20230819052406_WZId1 | CAWT07 | 2024-01-06T00:01:01.827Z | 2024-01-06T00:01:01.827Z |
2851999 | 2851999 | 20230819023656_0NMoh | CAWT07 | 2024-01-06T00:01:01.742Z | 2024-01-06T00:01:01.742Z |
2851811 | 2851811 | 20230819021127_oHO33 | CAWT07 | 2024-01-06T00:01:01.716Z | 2024-01-06T00:01:01.716Z |
2752347 | 2752347 | 20230811081723_kjgK9 | CAWT07 | 2024-01-06T00:00:33.591Z | 2024-01-06T00:00:33.591Z |
2752280 | 2752280 | 20230811080001_cc5VZ | CAWT07 | 2024-01-06T00:00:33.581Z | 2024-01-06T00:00:33.581Z |
2752030 | 2752030 | 20230811070301_bXQAZ | CAWT07 | 2024-01-06T00:00:33.544Z | 2024-01-06T00:00:33.544Z |
2751897 | 2751897 | 20230811062418_FgDj3 | CAWT07 | 2024-01-06T00:00:33.524Z | 2024-01-06T00:00:33.524Z |
2751880 | 2751880 | 20230811061607_XTkL7 | CAWT07 | 2024-01-06T00:00:33.521Z | 2024-01-06T00:00:33.521Z |
2751774 | 2751774 | 20230811050758_93w3R | CAWT07 | 2024-01-06T00:00:32.124Z | 2024-01-06T00:00:32.124Z |
2194903 | 2194903 | 20230114114623_aciLd | CAWT07 | 2024-01-05T23:54:16.408Z | 2024-01-05T23:54:16.408Z |
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);