participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240604120449_3shDl" 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 |
---|---|---|---|---|---|
4412682 | 4412682 | 20240604120449_3shDl | KR002U | 2024-06-06T12:00:26.036Z | 2024-06-13T12:08:28.049Z |
4412683 | 4412683 | 20240604120449_3shDl | KR002Y | 2024-06-06T12:00:26.036Z | 2024-06-13T12:08:28.049Z |
4412684 | 4412684 | 20240604120449_3shDl | KR0037 | 2024-06-06T12:00:26.036Z | 2024-06-13T12:08:28.049Z |
4412685 | 4412685 | 20240604120449_3shDl | KR003N | 2024-06-06T12:00:26.036Z | 2024-06-13T12:08:28.049Z |
4412681 | 4412681 | 20240604120449_3shDl | KR002S | 2024-06-06T12:00:26.035Z | 2024-06-13T12:08:28.049Z |
4412674 | 4412674 | 20240604120449_3shDl | KR0007 | 2024-06-06T12:00:26.024Z | 2024-06-13T12:08:28.049Z |
4412675 | 4412675 | 20240604120449_3shDl | KR000P | 2024-06-06T12:00:26.024Z | 2024-06-13T12:08:28.049Z |
4412676 | 4412676 | 20240604120449_3shDl | KR000S | 2024-06-06T12:00:26.024Z | 2024-06-13T12:08:28.049Z |
4412677 | 4412677 | 20240604120449_3shDl | KR0011 | 2024-06-06T12:00:26.024Z | 2024-06-13T12:08:28.049Z |
4412678 | 4412678 | 20240604120449_3shDl | KR0014 | 2024-06-06T12:00:26.024Z | 2024-06-13T12:08:28.049Z |
4412679 | 4412679 | 20240604120449_3shDl | KR001C | 2024-06-06T12:00:26.024Z | 2024-06-13T12:08:28.049Z |
4412680 | 4412680 | 20240604120449_3shDl | KR001X | 2024-06-06T12:00:26.024Z | 2024-06-13T12:08:28.049Z |
4412673 | 4412673 | 20240604120449_3shDl | KR0004 | 2024-06-06T12:00:26.013Z | 2024-06-13T12:08:28.049Z |
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);