participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
8 rows where meteor_unique_trajectory_identifier = "20241004162329_Kh9jz" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
5232163 | 5232163 | 20241004162329_Kh9jz | KR003Q | 2024-10-06T12:11:27.619Z | 2024-10-13T12:26:18.872Z |
5232164 | 5232164 | 20241004162329_Kh9jz | KR003S | 2024-10-06T12:11:27.619Z | 2024-10-13T12:26:18.872Z |
5232157 | 5232157 | 20241004162329_Kh9jz | KR000J | 2024-10-06T12:11:27.618Z | 2024-10-13T12:26:18.872Z |
5232158 | 5232158 | 20241004162329_Kh9jz | KR000K | 2024-10-06T12:11:27.618Z | 2024-10-13T12:26:18.872Z |
5232159 | 5232159 | 20241004162329_Kh9jz | KR002F | 2024-10-06T12:11:27.618Z | 2024-10-13T12:26:18.872Z |
5232160 | 5232160 | 20241004162329_Kh9jz | KR002N | 2024-10-06T12:11:27.618Z | 2024-10-13T12:26:18.872Z |
5232161 | 5232161 | 20241004162329_Kh9jz | KR002P | 2024-10-06T12:11:27.618Z | 2024-10-13T12:26:18.872Z |
5232162 | 5232162 | 20241004162329_Kh9jz | KR0036 | 2024-10-06T12:11:27.618Z | 2024-10-13T12:26:18.872Z |
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);