participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20231111035149_iEINi" 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 |
---|---|---|---|---|---|
3370776 | 3370776 | 20231111035149_iEINi | UK002G | 2024-01-06T00:04:15.367Z | 2024-01-06T00:04:15.367Z |
3370777 | 3370777 | 20231111035149_iEINi | UK002Q | 2024-01-06T00:04:15.367Z | 2024-01-06T00:04:15.367Z |
3370778 | 3370778 | 20231111035149_iEINi | UK003D | 2024-01-06T00:04:15.367Z | 2024-01-06T00:04:15.367Z |
3370779 | 3370779 | 20231111035149_iEINi | UK006D | 2024-01-06T00:04:15.367Z | 2024-01-06T00:04:15.367Z |
3370780 | 3370780 | 20231111035149_iEINi | UK007B | 2024-01-06T00:04:15.367Z | 2024-01-06T00:04:15.367Z |
3370781 | 3370781 | 20231111035149_iEINi | UK007C | 2024-01-06T00:04:15.367Z | 2024-01-06T00:04:15.367Z |
3370782 | 3370782 | 20231111035149_iEINi | UK007E | 2024-01-06T00:04:15.367Z | 2024-01-06T00:04:15.367Z |
3370783 | 3370783 | 20231111035149_iEINi | UK007H | 2024-01-06T00:04:15.367Z | 2024-01-06T00:04:15.367Z |
3370784 | 3370784 | 20231111035149_iEINi | UK007R | 2024-01-06T00:04:15.367Z | 2024-01-06T00:04:15.367Z |
3370785 | 3370785 | 20231111035149_iEINi | UK009J | 2024-01-06T00:04:15.367Z | 2024-01-06T00:04:15.367Z |
3370786 | 3370786 | 20231111035149_iEINi | UK009L | 2024-01-06T00:04:15.367Z | 2024-01-06T00:04:15.367Z |
3370787 | 3370787 | 20231111035149_iEINi | UK00B1 | 2024-01-06T00:04:15.367Z | 2024-01-06T00:04:15.367Z |
3370772 | 3370772 | 20231111035149_iEINi | BE000H | 2024-01-06T00:04:15.366Z | 2024-01-06T00:04:15.366Z |
3370773 | 3370773 | 20231111035149_iEINi | UK000F | 2024-01-06T00:04:15.366Z | 2024-01-06T00:04:15.366Z |
3370774 | 3370774 | 20231111035149_iEINi | UK001P | 2024-01-06T00:04:15.366Z | 2024-01-06T00:04:15.366Z |
3370775 | 3370775 | 20231111035149_iEINi | UK002C | 2024-01-06T00:04:15.366Z | 2024-01-06T00:04:15.366Z |
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);