participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
20 rows where meteor_unique_trajectory_identifier = "20240115192849_8ZzTV" 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 |
---|---|---|---|---|---|
3836505 | 3836505 | 20240115192849_8ZzTV | KR001H | 2024-01-18T14:13:36.699Z | 2024-01-24T14:19:09.473Z |
3836506 | 3836506 | 20240115192849_8ZzTV | KR001K | 2024-01-18T14:13:36.699Z | 2024-01-24T14:19:09.473Z |
3836507 | 3836507 | 20240115192849_8ZzTV | KR0026 | 2024-01-18T14:13:36.699Z | 2024-01-24T14:19:09.473Z |
3836508 | 3836508 | 20240115192849_8ZzTV | KR0027 | 2024-01-18T14:13:36.699Z | 2024-01-24T14:19:09.473Z |
3836509 | 3836509 | 20240115192849_8ZzTV | KR0028 | 2024-01-18T14:13:36.699Z | 2024-01-24T14:19:09.473Z |
3836510 | 3836510 | 20240115192849_8ZzTV | KR002L | 2024-01-18T14:13:36.699Z | 2024-01-24T14:19:09.473Z |
3836511 | 3836511 | 20240115192849_8ZzTV | KR002P | 2024-01-18T14:13:36.699Z | 2024-01-24T14:19:09.473Z |
3836512 | 3836512 | 20240115192849_8ZzTV | KR002T | 2024-01-18T14:13:36.699Z | 2024-01-24T14:19:09.473Z |
3836513 | 3836513 | 20240115192849_8ZzTV | KR0030 | 2024-01-18T14:13:36.699Z | 2024-01-24T14:19:09.473Z |
3836514 | 3836514 | 20240115192849_8ZzTV | KR003B | 2024-01-18T14:13:36.699Z | 2024-01-24T14:19:09.473Z |
3836515 | 3836515 | 20240115192849_8ZzTV | KR003M | 2024-01-18T14:13:36.699Z | 2024-01-24T14:19:09.473Z |
3836516 | 3836516 | 20240115192849_8ZzTV | KR003T | 2024-01-18T14:13:36.699Z | 2024-01-24T14:19:09.473Z |
3836497 | 3836497 | 20240115192849_8ZzTV | KR0004 | 2024-01-18T14:13:36.698Z | 2024-01-24T14:19:09.473Z |
3836498 | 3836498 | 20240115192849_8ZzTV | KR000D | 2024-01-18T14:13:36.698Z | 2024-01-24T14:19:09.473Z |
3836499 | 3836499 | 20240115192849_8ZzTV | KR000J | 2024-01-18T14:13:36.698Z | 2024-01-24T14:19:09.473Z |
3836500 | 3836500 | 20240115192849_8ZzTV | KR000L | 2024-01-18T14:13:36.698Z | 2024-01-24T14:19:09.473Z |
3836501 | 3836501 | 20240115192849_8ZzTV | KR0010 | 2024-01-18T14:13:36.698Z | 2024-01-24T14:19:09.473Z |
3836502 | 3836502 | 20240115192849_8ZzTV | KR0018 | 2024-01-18T14:13:36.698Z | 2024-01-24T14:19:09.473Z |
3836503 | 3836503 | 20240115192849_8ZzTV | KR001B | 2024-01-18T14:13:36.698Z | 2024-01-24T14:19:09.473Z |
3836504 | 3836504 | 20240115192849_8ZzTV | KR001E | 2024-01-18T14:13:36.698Z | 2024-01-24T14:19:09.473Z |
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);