participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240805133255_52zrX" 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 |
---|---|---|---|---|---|
4842387 | 4842387 | 20240805133255_52zrX | NZ0017 | 2024-08-16T12:06:21.594Z | 2024-08-19T12:18:32.432Z |
4842388 | 4842388 | 20240805133255_52zrX | NZ001J | 2024-08-16T12:06:21.594Z | 2024-08-19T12:18:32.432Z |
4842389 | 4842389 | 20240805133255_52zrX | NZ001R | 2024-08-16T12:06:21.594Z | 2024-08-19T12:18:32.432Z |
4842390 | 4842390 | 20240805133255_52zrX | NZ0022 | 2024-08-16T12:06:21.594Z | 2024-08-19T12:18:32.432Z |
4842391 | 4842391 | 20240805133255_52zrX | NZ002L | 2024-08-16T12:06:21.594Z | 2024-08-19T12:18:32.432Z |
4842392 | 4842392 | 20240805133255_52zrX | NZ002R | 2024-08-16T12:06:21.594Z | 2024-08-19T12:18:32.432Z |
4842393 | 4842393 | 20240805133255_52zrX | NZ002X | 2024-08-16T12:06:21.594Z | 2024-08-19T12:18:32.432Z |
4842394 | 4842394 | 20240805133255_52zrX | NZ0037 | 2024-08-16T12:06:21.594Z | 2024-08-19T12:18:32.432Z |
4842395 | 4842395 | 20240805133255_52zrX | NZ003A | 2024-08-16T12:06:21.594Z | 2024-08-19T12:18:32.432Z |
4842396 | 4842396 | 20240805133255_52zrX | NZ003U | 2024-08-16T12:06:21.594Z | 2024-08-19T12:18:32.432Z |
4842397 | 4842397 | 20240805133255_52zrX | NZ003Y | 2024-08-16T12:06:21.594Z | 2024-08-19T12:18:32.432Z |
4842398 | 4842398 | 20240805133255_52zrX | NZ004A | 2024-08-16T12:06:21.594Z | 2024-08-19T12:18:32.432Z |
4842399 | 4842399 | 20240805133255_52zrX | NZ0059 | 2024-08-16T12:06:21.594Z | 2024-08-19T12:18:32.432Z |
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);