participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240211085631_2JstU" 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 |
---|---|---|---|---|---|
3947936 | 3947936 | 20240211085631_2JstU | NZ0017 | 2024-02-12T14:07:40.640Z | 2024-02-19T14:19:15.088Z |
3947937 | 3947937 | 20240211085631_2JstU | NZ0022 | 2024-02-12T14:07:40.640Z | 2024-02-19T14:19:15.088Z |
3947938 | 3947938 | 20240211085631_2JstU | NZ0024 | 2024-02-12T14:07:40.640Z | 2024-02-19T14:19:15.088Z |
3947939 | 3947939 | 20240211085631_2JstU | NZ002D | 2024-02-12T14:07:40.640Z | 2024-02-19T14:19:15.088Z |
3947940 | 3947940 | 20240211085631_2JstU | NZ002L | 2024-02-12T14:07:40.640Z | 2024-02-19T14:19:15.088Z |
3947941 | 3947941 | 20240211085631_2JstU | NZ002R | 2024-02-12T14:07:40.640Z | 2024-02-19T14:19:15.088Z |
3947942 | 3947942 | 20240211085631_2JstU | NZ002X | 2024-02-12T14:07:40.640Z | 2024-02-19T14:19:15.088Z |
3947943 | 3947943 | 20240211085631_2JstU | NZ002Z | 2024-02-12T14:07:40.640Z | 2024-02-19T14:19:15.088Z |
3947944 | 3947944 | 20240211085631_2JstU | NZ0037 | 2024-02-12T14:07:40.640Z | 2024-02-19T14:19:15.088Z |
3947945 | 3947945 | 20240211085631_2JstU | NZ003E | 2024-02-12T14:07:40.640Z | 2024-02-19T14:19:15.088Z |
3947946 | 3947946 | 20240211085631_2JstU | NZ003H | 2024-02-12T14:07:40.640Z | 2024-02-19T14:19:15.088Z |
3947947 | 3947947 | 20240211085631_2JstU | NZ003R | 2024-02-12T14:07:40.640Z | 2024-02-19T14:19:15.088Z |
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);