participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
9 rows where meteor_unique_trajectory_identifier = "20240728083041_7NC9p" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4723175 | 4723175 | 20240728083041_7NC9p | US000U | 2024-07-31T12:09:11.306Z | 2024-08-05T12:20:12.144Z |
4723176 | 4723176 | 20240728083041_7NC9p | USL001 | 2024-07-31T12:09:11.306Z | 2024-08-05T12:20:12.144Z |
4723177 | 4723177 | 20240728083041_7NC9p | USL002 | 2024-07-31T12:09:11.306Z | 2024-08-05T12:20:12.144Z |
4723178 | 4723178 | 20240728083041_7NC9p | USL003 | 2024-07-31T12:09:11.306Z | 2024-08-05T12:20:12.144Z |
4723179 | 4723179 | 20240728083041_7NC9p | USL008 | 2024-07-31T12:09:11.306Z | 2024-08-05T12:20:12.144Z |
4723180 | 4723180 | 20240728083041_7NC9p | USL00C | 2024-07-31T12:09:11.306Z | 2024-08-05T12:20:12.144Z |
4723181 | 4723181 | 20240728083041_7NC9p | USL00M | 2024-07-31T12:09:11.306Z | 2024-08-05T12:20:12.145Z |
4723182 | 4723182 | 20240728083041_7NC9p | USL00Q | 2024-07-31T12:09:11.306Z | 2024-08-05T12:20:12.145Z |
4723183 | 4723183 | 20240728083041_7NC9p | USL018 | 2024-07-31T12:09:11.306Z | 2024-08-05T12:20:12.145Z |
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);