participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20231119014951_nZU7V" 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 |
---|---|---|---|---|---|
3428685 | 3428685 | 20231119014951_nZU7V | UK005N | 2024-01-06T00:04:30.784Z | 2024-01-06T00:04:30.784Z |
3428686 | 3428686 | 20231119014951_nZU7V | UK006R | 2024-01-06T00:04:30.784Z | 2024-01-06T00:04:30.784Z |
3428687 | 3428687 | 20231119014951_nZU7V | UK007E | 2024-01-06T00:04:30.784Z | 2024-01-06T00:04:30.784Z |
3428688 | 3428688 | 20231119014951_nZU7V | UK007R | 2024-01-06T00:04:30.784Z | 2024-01-06T00:04:30.784Z |
3428689 | 3428689 | 20231119014951_nZU7V | UK009A | 2024-01-06T00:04:30.784Z | 2024-01-06T00:04:30.784Z |
3428690 | 3428690 | 20231119014951_nZU7V | UK009J | 2024-01-06T00:04:30.784Z | 2024-01-06T00:04:30.784Z |
3428691 | 3428691 | 20231119014951_nZU7V | UK009L | 2024-01-06T00:04:30.784Z | 2024-01-06T00:04:30.784Z |
3428692 | 3428692 | 20231119014951_nZU7V | UK009V | 2024-01-06T00:04:30.784Z | 2024-01-06T00:04:30.784Z |
3428693 | 3428693 | 20231119014951_nZU7V | UK00AG | 2024-01-06T00:04:30.784Z | 2024-01-06T00:04:30.784Z |
3428694 | 3428694 | 20231119014951_nZU7V | UK00AT | 2024-01-06T00:04:30.784Z | 2024-01-06T00:04:30.784Z |
3428695 | 3428695 | 20231119014951_nZU7V | UK00B1 | 2024-01-06T00:04:30.784Z | 2024-01-06T00:04:30.784Z |
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);