participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240917130329_Cl2Rx" 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 |
---|---|---|---|---|---|
5130526 | 5130526 | 20240917130329_Cl2Rx | NZ000Y | 2024-09-19T12:13:32.362Z | 2024-09-25T12:22:44.459Z |
5130527 | 5130527 | 20240917130329_Cl2Rx | NZ000Z | 2024-09-19T12:13:32.362Z | 2024-09-25T12:22:44.459Z |
5130528 | 5130528 | 20240917130329_Cl2Rx | NZ0014 | 2024-09-19T12:13:32.362Z | 2024-09-25T12:22:44.459Z |
5130529 | 5130529 | 20240917130329_Cl2Rx | NZ002L | 2024-09-19T12:13:32.362Z | 2024-09-25T12:22:44.459Z |
5130530 | 5130530 | 20240917130329_Cl2Rx | NZ002R | 2024-09-19T12:13:32.362Z | 2024-09-25T12:22:44.459Z |
5130531 | 5130531 | 20240917130329_Cl2Rx | NZ003E | 2024-09-19T12:13:32.362Z | 2024-09-25T12:22:44.459Z |
5130532 | 5130532 | 20240917130329_Cl2Rx | NZ003K | 2024-09-19T12:13:32.362Z | 2024-09-25T12:22:44.459Z |
5130533 | 5130533 | 20240917130329_Cl2Rx | NZ003N | 2024-09-19T12:13:32.362Z | 2024-09-25T12:22:44.459Z |
5130534 | 5130534 | 20240917130329_Cl2Rx | NZ0042 | 2024-09-19T12:13:32.362Z | 2024-09-25T12:22:44.459Z |
5130535 | 5130535 | 20240917130329_Cl2Rx | NZ004J | 2024-09-19T12:13:32.362Z | 2024-09-25T12:22:44.459Z |
5130536 | 5130536 | 20240917130329_Cl2Rx | NZ004L | 2024-09-19T12:13:32.362Z | 2024-09-25T12:22:44.459Z |
5130537 | 5130537 | 20240917130329_Cl2Rx | NZ004N | 2024-09-19T12:13:32.362Z | 2024-09-25T12:22:44.459Z |
5130538 | 5130538 | 20240917130329_Cl2Rx | NZ004T | 2024-09-19T12:13:32.362Z | 2024-09-25T12:22:44.459Z |
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);