participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240707161835_zsJGd" 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 |
---|---|---|---|---|---|
4592801 | 4592801 | 20240707161835_zsJGd | NZ0010 | 2024-07-10T12:09:04.143Z | 2024-07-15T12:12:20.833Z |
4592802 | 4592802 | 20240707161835_zsJGd | NZ0019 | 2024-07-10T12:09:04.143Z | 2024-07-15T12:12:20.833Z |
4592803 | 4592803 | 20240707161835_zsJGd | NZ0026 | 2024-07-10T12:09:04.143Z | 2024-07-15T12:12:20.833Z |
4592804 | 4592804 | 20240707161835_zsJGd | NZ0027 | 2024-07-10T12:09:04.143Z | 2024-07-15T12:12:20.833Z |
4592805 | 4592805 | 20240707161835_zsJGd | NZ002F | 2024-07-10T12:09:04.143Z | 2024-07-15T12:12:20.833Z |
4592806 | 4592806 | 20240707161835_zsJGd | NZ0032 | 2024-07-10T12:09:04.143Z | 2024-07-15T12:12:20.833Z |
4592807 | 4592807 | 20240707161835_zsJGd | NZ003F | 2024-07-10T12:09:04.143Z | 2024-07-15T12:12:20.833Z |
4592808 | 4592808 | 20240707161835_zsJGd | NZ0044 | 2024-07-10T12:09:04.143Z | 2024-07-15T12:12:20.833Z |
4592809 | 4592809 | 20240707161835_zsJGd | NZ0045 | 2024-07-10T12:09:04.143Z | 2024-07-15T12:12:20.833Z |
4592810 | 4592810 | 20240707161835_zsJGd | NZ004C | 2024-07-10T12:09:04.143Z | 2024-07-15T12:12:20.833Z |
4592811 | 4592811 | 20240707161835_zsJGd | NZ004D | 2024-07-10T12:09:04.143Z | 2024-07-15T12:12:20.833Z |
4592812 | 4592812 | 20240707161835_zsJGd | NZ004V | 2024-07-10T12:09:04.143Z | 2024-07-15T12:12:20.833Z |
4592813 | 4592813 | 20240707161835_zsJGd | NZ004X | 2024-07-10T12:09:04.143Z | 2024-07-15T12:12:20.833Z |
4592814 | 4592814 | 20240707161835_zsJGd | NZ0051 | 2024-07-10T12:09:04.143Z | 2024-07-15T12:12:20.833Z |
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);