participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20240602180401_JpkhS" 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 |
---|---|---|---|---|---|
4405576 | 4405576 | 20240602180401_JpkhS | KR003M | 2024-06-04T12:04:58.791Z | 2024-06-11T12:13:31.724Z |
4405577 | 4405577 | 20240602180401_JpkhS | KR003N | 2024-06-04T12:04:58.791Z | 2024-06-11T12:13:31.724Z |
4405578 | 4405578 | 20240602180401_JpkhS | KR003Q | 2024-06-04T12:04:58.791Z | 2024-06-11T12:13:31.724Z |
4405564 | 4405564 | 20240602180401_JpkhS | KR0002 | 2024-06-04T12:04:58.790Z | 2024-06-11T12:13:31.724Z |
4405565 | 4405565 | 20240602180401_JpkhS | KR000D | 2024-06-04T12:04:58.790Z | 2024-06-11T12:13:31.724Z |
4405566 | 4405566 | 20240602180401_JpkhS | KR000J | 2024-06-04T12:04:58.790Z | 2024-06-11T12:13:31.724Z |
4405567 | 4405567 | 20240602180401_JpkhS | KR000L | 2024-06-04T12:04:58.790Z | 2024-06-11T12:13:31.724Z |
4405568 | 4405568 | 20240602180401_JpkhS | KR000S | 2024-06-04T12:04:58.790Z | 2024-06-11T12:13:31.724Z |
4405569 | 4405569 | 20240602180401_JpkhS | KR001B | 2024-06-04T12:04:58.790Z | 2024-06-11T12:13:31.724Z |
4405570 | 4405570 | 20240602180401_JpkhS | KR001C | 2024-06-04T12:04:58.790Z | 2024-06-11T12:13:31.724Z |
4405571 | 4405571 | 20240602180401_JpkhS | KR001D | 2024-06-04T12:04:58.790Z | 2024-06-11T12:13:31.724Z |
4405572 | 4405572 | 20240602180401_JpkhS | KR0022 | 2024-06-04T12:04:58.790Z | 2024-06-11T12:13:31.724Z |
4405573 | 4405573 | 20240602180401_JpkhS | KR002K | 2024-06-04T12:04:58.790Z | 2024-06-11T12:13:31.724Z |
4405574 | 4405574 | 20240602180401_JpkhS | KR002U | 2024-06-04T12:04:58.790Z | 2024-06-11T12:13:31.724Z |
4405575 | 4405575 | 20240602180401_JpkhS | KR002V | 2024-06-04T12:04:58.790Z | 2024-06-11T12:13:31.724Z |
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);