participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240609155142_16LBC" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4444332 | 4444332 | 20240609155142_16LBC | KR0004 | 2024-06-11T12:06:43.537Z | 2024-06-17T12:15:23.348Z |
4444333 | 4444333 | 20240609155142_16LBC | KR000L | 2024-06-11T12:06:43.537Z | 2024-06-17T12:15:23.348Z |
4444334 | 4444334 | 20240609155142_16LBC | KR0016 | 2024-06-11T12:06:43.537Z | 2024-06-17T12:15:23.348Z |
4444335 | 4444335 | 20240609155142_16LBC | KR0017 | 2024-06-11T12:06:43.537Z | 2024-06-17T12:15:23.348Z |
4444336 | 4444336 | 20240609155142_16LBC | KR0018 | 2024-06-11T12:06:43.537Z | 2024-06-17T12:15:23.348Z |
4444337 | 4444337 | 20240609155142_16LBC | KR001X | 2024-06-11T12:06:43.537Z | 2024-06-17T12:15:23.348Z |
4444338 | 4444338 | 20240609155142_16LBC | KR001Y | 2024-06-11T12:06:43.537Z | 2024-06-17T12:15:23.348Z |
4444339 | 4444339 | 20240609155142_16LBC | KR0021 | 2024-06-11T12:06:43.537Z | 2024-06-17T12:15:23.348Z |
4444340 | 4444340 | 20240609155142_16LBC | KR0025 | 2024-06-11T12:06:43.537Z | 2024-06-17T12:15:23.348Z |
4444341 | 4444341 | 20240609155142_16LBC | KR0026 | 2024-06-11T12:06:43.537Z | 2024-06-17T12:15:23.348Z |
4444342 | 4444342 | 20240609155142_16LBC | KR0027 | 2024-06-11T12:06:43.537Z | 2024-06-17T12:15:23.348Z |
4444343 | 4444343 | 20240609155142_16LBC | KR002H | 2024-06-11T12:06:43.537Z | 2024-06-17T12:15:23.348Z |
4444344 | 4444344 | 20240609155142_16LBC | KR002L | 2024-06-11T12:06:43.537Z | 2024-06-17T12:15:23.348Z |
4444345 | 4444345 | 20240609155142_16LBC | KR0030 | 2024-06-11T12:06:43.537Z | 2024-06-17T12:15:23.348Z |
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);