participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240613122946_C7HPV" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4461543 | 4461543 | 20240613122946_C7HPV | KR001D | 2024-06-15T12:07:08.114Z | 2024-06-21T12:11:44.414Z |
4461544 | 4461544 | 20240613122946_C7HPV | KR0022 | 2024-06-15T12:07:08.114Z | 2024-06-21T12:11:44.414Z |
4461545 | 4461545 | 20240613122946_C7HPV | KR002E | 2024-06-15T12:07:08.114Z | 2024-06-21T12:11:44.414Z |
4461546 | 4461546 | 20240613122946_C7HPV | KR002K | 2024-06-15T12:07:08.114Z | 2024-06-21T12:11:44.414Z |
4461547 | 4461547 | 20240613122946_C7HPV | KR002N | 2024-06-15T12:07:08.114Z | 2024-06-21T12:11:44.414Z |
4461548 | 4461548 | 20240613122946_C7HPV | KR002V | 2024-06-15T12:07:08.114Z | 2024-06-21T12:11:44.414Z |
4461549 | 4461549 | 20240613122946_C7HPV | KR003X | 2024-06-15T12:07:08.114Z | 2024-06-21T12:11:44.414Z |
4461539 | 4461539 | 20240613122946_C7HPV | KR0010 | 2024-06-15T12:07:08.098Z | 2024-06-21T12:11:44.413Z |
4461540 | 4461540 | 20240613122946_C7HPV | KR0011 | 2024-06-15T12:07:08.098Z | 2024-06-21T12:11:44.414Z |
4461541 | 4461541 | 20240613122946_C7HPV | KR0012 | 2024-06-15T12:07:08.098Z | 2024-06-21T12:11:44.414Z |
4461542 | 4461542 | 20240613122946_C7HPV | KR001C | 2024-06-15T12:07:08.098Z | 2024-06-21T12:11:44.414Z |
4461537 | 4461537 | 20240613122946_C7HPV | KR000K | 2024-06-15T12:07:08.084Z | 2024-06-21T12:11:44.413Z |
4461538 | 4461538 | 20240613122946_C7HPV | KR000S | 2024-06-15T12:07:08.084Z | 2024-06-21T12:11:44.413Z |
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);