participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240602174909_BflIM" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4405468 | 4405468 | 20240602174909_BflIM | KR000D | 2024-06-04T12:04:50.360Z | 2024-06-11T12:13:31.370Z |
4405469 | 4405469 | 20240602174909_BflIM | KR000J | 2024-06-04T12:04:50.360Z | 2024-06-11T12:13:31.370Z |
4405470 | 4405470 | 20240602174909_BflIM | KR000P | 2024-06-04T12:04:50.360Z | 2024-06-11T12:13:31.370Z |
4405471 | 4405471 | 20240602174909_BflIM | KR0014 | 2024-06-04T12:04:50.360Z | 2024-06-11T12:13:31.371Z |
4405472 | 4405472 | 20240602174909_BflIM | KR001C | 2024-06-04T12:04:50.360Z | 2024-06-11T12:13:31.371Z |
4405473 | 4405473 | 20240602174909_BflIM | KR0022 | 2024-06-04T12:04:50.360Z | 2024-06-11T12:13:31.371Z |
4405474 | 4405474 | 20240602174909_BflIM | KR002E | 2024-06-04T12:04:50.360Z | 2024-06-11T12:13:31.371Z |
4405475 | 4405475 | 20240602174909_BflIM | KR002J | 2024-06-04T12:04:50.360Z | 2024-06-11T12:13:31.371Z |
4405476 | 4405476 | 20240602174909_BflIM | KR002K | 2024-06-04T12:04:50.360Z | 2024-06-11T12:13:31.371Z |
4405477 | 4405477 | 20240602174909_BflIM | KR002S | 2024-06-04T12:04:50.360Z | 2024-06-11T12:13:31.371Z |
4405478 | 4405478 | 20240602174909_BflIM | KR002U | 2024-06-04T12:04:50.360Z | 2024-06-11T12:13:31.371Z |
4405479 | 4405479 | 20240602174909_BflIM | KR003M | 2024-06-04T12:04:50.360Z | 2024-06-11T12:13:31.371Z |
4405480 | 4405480 | 20240602174909_BflIM | KR003N | 2024-06-04T12:04:50.360Z | 2024-06-11T12:13:31.371Z |
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);