participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20231113191909_tub3z" 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 |
---|---|---|---|---|---|
3386954 | 3386954 | 20231113191909_tub3z | KR0002 | 2024-01-06T00:04:18.457Z | 2024-01-06T00:04:18.457Z |
3386955 | 3386955 | 20231113191909_tub3z | KR000J | 2024-01-06T00:04:18.457Z | 2024-01-06T00:04:18.457Z |
3386956 | 3386956 | 20231113191909_tub3z | KR000L | 2024-01-06T00:04:18.457Z | 2024-01-06T00:04:18.457Z |
3386957 | 3386957 | 20231113191909_tub3z | KR000W | 2024-01-06T00:04:18.457Z | 2024-01-06T00:04:18.457Z |
3386958 | 3386958 | 20231113191909_tub3z | KR0010 | 2024-01-06T00:04:18.457Z | 2024-01-06T00:04:18.457Z |
3386959 | 3386959 | 20231113191909_tub3z | KR001B | 2024-01-06T00:04:18.457Z | 2024-01-06T00:04:18.457Z |
3386960 | 3386960 | 20231113191909_tub3z | KR0028 | 2024-01-06T00:04:18.457Z | 2024-01-06T00:04:18.457Z |
3386961 | 3386961 | 20231113191909_tub3z | KR002F | 2024-01-06T00:04:18.457Z | 2024-01-06T00:04:18.457Z |
3386962 | 3386962 | 20231113191909_tub3z | KR0036 | 2024-01-06T00:04:18.457Z | 2024-01-06T00:04:18.457Z |
3386963 | 3386963 | 20231113191909_tub3z | KR003B | 2024-01-06T00:04:18.457Z | 2024-01-06T00:04:18.457Z |
3386964 | 3386964 | 20231113191909_tub3z | KR003M | 2024-01-06T00:04:18.457Z | 2024-01-06T00:04:18.457Z |
3386965 | 3386965 | 20231113191909_tub3z | KR003Q | 2024-01-06T00:04:18.457Z | 2024-01-06T00:04:18.457Z |
3386966 | 3386966 | 20231113191909_tub3z | KR003T | 2024-01-06T00:04:18.457Z | 2024-01-06T00:04:18.457Z |
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);