participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20240805152156_WVh2x" 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 |
---|---|---|---|---|---|
4845003 | 4845003 | 20240805152156_WVh2x | NZ0001 | 2024-08-16T12:08:45.263Z | 2024-08-19T12:19:59.861Z |
4845004 | 4845004 | 20240805152156_WVh2x | NZ0002 | 2024-08-16T12:08:45.263Z | 2024-08-19T12:19:59.861Z |
4845005 | 4845005 | 20240805152156_WVh2x | NZ000F | 2024-08-16T12:08:45.263Z | 2024-08-19T12:19:59.861Z |
4845006 | 4845006 | 20240805152156_WVh2x | NZ0012 | 2024-08-16T12:08:45.263Z | 2024-08-19T12:19:59.861Z |
4845007 | 4845007 | 20240805152156_WVh2x | NZ0018 | 2024-08-16T12:08:45.263Z | 2024-08-19T12:19:59.861Z |
4845008 | 4845008 | 20240805152156_WVh2x | NZ001B | 2024-08-16T12:08:45.263Z | 2024-08-19T12:19:59.861Z |
4845009 | 4845009 | 20240805152156_WVh2x | NZ0026 | 2024-08-16T12:08:45.263Z | 2024-08-19T12:19:59.861Z |
4845010 | 4845010 | 20240805152156_WVh2x | NZ0027 | 2024-08-16T12:08:45.263Z | 2024-08-19T12:19:59.861Z |
4845011 | 4845011 | 20240805152156_WVh2x | NZ002C | 2024-08-16T12:08:45.263Z | 2024-08-19T12:19:59.861Z |
4845012 | 4845012 | 20240805152156_WVh2x | NZ0035 | 2024-08-16T12:08:45.263Z | 2024-08-19T12:19:59.861Z |
4845013 | 4845013 | 20240805152156_WVh2x | NZ0044 | 2024-08-16T12:08:45.263Z | 2024-08-19T12:19:59.861Z |
4845014 | 4845014 | 20240805152156_WVh2x | NZ0045 | 2024-08-16T12:08:45.263Z | 2024-08-19T12:19:59.861Z |
4845015 | 4845015 | 20240805152156_WVh2x | NZ004D | 2024-08-16T12:08:45.263Z | 2024-08-19T12:19:59.861Z |
4845016 | 4845016 | 20240805152156_WVh2x | NZ004V | 2024-08-16T12:08:45.263Z | 2024-08-19T12:19:59.861Z |
4845017 | 4845017 | 20240805152156_WVh2x | NZ004X | 2024-08-16T12:08:45.263Z | 2024-08-19T12:19:59.861Z |
4845018 | 4845018 | 20240805152156_WVh2x | NZ0051 | 2024-08-16T12:08:45.263Z | 2024-08-19T12:19:59.861Z |
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);