participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20241124101342_7ExEa" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
5594310 | 5594310 | 20241124101342_7ExEa | NZ0045 | 2024-11-25T14:05:25.191Z | 2024-11-25T14:05:25.191Z |
5594311 | 5594311 | 20241124101342_7ExEa | NZ004X | 2024-11-25T14:05:25.191Z | 2024-11-25T14:05:25.191Z |
5594301 | 5594301 | 20241124101342_7ExEa | NZ000S | 2024-11-25T14:05:25.171Z | 2024-11-25T14:05:25.171Z |
5594302 | 5594302 | 20241124101342_7ExEa | NZ0010 | 2024-11-25T14:05:25.171Z | 2024-11-25T14:05:25.171Z |
5594303 | 5594303 | 20241124101342_7ExEa | NZ0019 | 2024-11-25T14:05:25.171Z | 2024-11-25T14:05:25.171Z |
5594304 | 5594304 | 20241124101342_7ExEa | NZ002F | 2024-11-25T14:05:25.171Z | 2024-11-25T14:05:25.171Z |
5594305 | 5594305 | 20241124101342_7ExEa | NZ002T | 2024-11-25T14:05:25.171Z | 2024-11-25T14:05:25.171Z |
5594306 | 5594306 | 20241124101342_7ExEa | NZ0039 | 2024-11-25T14:05:25.171Z | 2024-11-25T14:05:25.171Z |
5594307 | 5594307 | 20241124101342_7ExEa | NZ003V | 2024-11-25T14:05:25.171Z | 2024-11-25T14:05:25.171Z |
5594308 | 5594308 | 20241124101342_7ExEa | NZ003Z | 2024-11-25T14:05:25.171Z | 2024-11-25T14:05:25.171Z |
5594309 | 5594309 | 20241124101342_7ExEa | NZ0044 | 2024-11-25T14:05:25.171Z | 2024-11-25T14:05:25.171Z |
5594300 | 5594300 | 20241124101342_7ExEa | NZ000H | 2024-11-25T14:05:25.170Z | 2024-11-25T14:05:25.170Z |
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);