participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240805151320_AAYkU" 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 |
---|---|---|---|---|---|
4844781 | 4844781 | 20240805151320_AAYkU | NZ000Y | 2024-08-16T12:08:36.796Z | 2024-08-19T12:19:48.756Z |
4844782 | 4844782 | 20240805151320_AAYkU | NZ000Z | 2024-08-16T12:08:36.796Z | 2024-08-19T12:19:48.756Z |
4844783 | 4844783 | 20240805151320_AAYkU | NZ001J | 2024-08-16T12:08:36.796Z | 2024-08-19T12:19:48.756Z |
4844784 | 4844784 | 20240805151320_AAYkU | NZ001R | 2024-08-16T12:08:36.796Z | 2024-08-19T12:19:48.756Z |
4844785 | 4844785 | 20240805151320_AAYkU | NZ003E | 2024-08-16T12:08:36.796Z | 2024-08-19T12:19:48.756Z |
4844786 | 4844786 | 20240805151320_AAYkU | NZ003Y | 2024-08-16T12:08:36.796Z | 2024-08-19T12:19:48.756Z |
4844787 | 4844787 | 20240805151320_AAYkU | NZ0042 | 2024-08-16T12:08:36.796Z | 2024-08-19T12:19:48.756Z |
4844788 | 4844788 | 20240805151320_AAYkU | NZ004L | 2024-08-16T12:08:36.796Z | 2024-08-19T12:19:48.756Z |
4844789 | 4844789 | 20240805151320_AAYkU | NZ004N | 2024-08-16T12:08:36.796Z | 2024-08-19T12:19:48.756Z |
4844790 | 4844790 | 20240805151320_AAYkU | NZ004T | 2024-08-16T12:08:36.796Z | 2024-08-19T12:19:48.756Z |
4844791 | 4844791 | 20240805151320_AAYkU | NZ0059 | 2024-08-16T12:08:36.796Z | 2024-08-19T12:19:48.756Z |
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);