participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240330024432_dD1z4" 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 |
---|---|---|---|---|---|
4124309 | 4124309 | 20240330024432_dD1z4 | UK001L | 2024-03-31T12:07:51.679Z | 2024-04-07T12:24:23.896Z |
4124310 | 4124310 | 20240330024432_dD1z4 | UK003Y | 2024-03-31T12:07:51.679Z | 2024-04-07T12:24:23.896Z |
4124311 | 4124311 | 20240330024432_dD1z4 | UK005R | 2024-03-31T12:07:51.679Z | 2024-04-07T12:24:23.896Z |
4124312 | 4124312 | 20240330024432_dD1z4 | UK006A | 2024-03-31T12:07:51.679Z | 2024-04-07T12:24:23.896Z |
4124313 | 4124313 | 20240330024432_dD1z4 | UK006T | 2024-03-31T12:07:51.679Z | 2024-04-07T12:24:23.896Z |
4124314 | 4124314 | 20240330024432_dD1z4 | UK0072 | 2024-03-31T12:07:51.679Z | 2024-04-07T12:24:23.896Z |
4124315 | 4124315 | 20240330024432_dD1z4 | UK007M | 2024-03-31T12:07:51.679Z | 2024-04-07T12:24:23.896Z |
4124316 | 4124316 | 20240330024432_dD1z4 | UK0083 | 2024-03-31T12:07:51.679Z | 2024-04-07T12:24:23.896Z |
4124317 | 4124317 | 20240330024432_dD1z4 | UK008S | 2024-03-31T12:07:51.679Z | 2024-04-07T12:24:23.896Z |
4124318 | 4124318 | 20240330024432_dD1z4 | UK00AA | 2024-03-31T12:07:51.679Z | 2024-04-07T12:24:23.896Z |
4124319 | 4124319 | 20240330024432_dD1z4 | UK00AM | 2024-03-31T12:07:51.679Z | 2024-04-07T12:24:23.896Z |
4124320 | 4124320 | 20240330024432_dD1z4 | UK00AQ | 2024-03-31T12:07:51.679Z | 2024-04-07T12:24:23.896Z |
4124321 | 4124321 | 20240330024432_dD1z4 | UK00B0 | 2024-03-31T12:07:51.679Z | 2024-04-07T12:24:23.897Z |
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);