participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240810231856_TvHeF" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4940773 | 4940773 | 20240810231856_TvHeF | UK000F | 2024-09-01T12:10:42.964Z | 2024-09-06T12:23:39.501Z |
4940774 | 4940774 | 20240810231856_TvHeF | UK002F | 2024-09-01T12:10:42.964Z | 2024-09-06T12:23:39.501Z |
4940775 | 4940775 | 20240810231856_TvHeF | UK0035 | 2024-09-01T12:10:42.964Z | 2024-09-06T12:23:39.501Z |
4940776 | 4940776 | 20240810231856_TvHeF | UK003X | 2024-09-01T12:10:42.964Z | 2024-09-06T12:23:39.501Z |
4940777 | 4940777 | 20240810231856_TvHeF | UK0041 | 2024-09-01T12:10:42.964Z | 2024-09-06T12:23:39.501Z |
4940778 | 4940778 | 20240810231856_TvHeF | UK004A | 2024-09-01T12:10:42.964Z | 2024-09-06T12:23:39.501Z |
4940779 | 4940779 | 20240810231856_TvHeF | UK0062 | 2024-09-01T12:10:42.964Z | 2024-09-06T12:23:39.501Z |
4940780 | 4940780 | 20240810231856_TvHeF | UK006B | 2024-09-01T12:10:42.964Z | 2024-09-06T12:23:39.501Z |
4940781 | 4940781 | 20240810231856_TvHeF | UK0099 | 2024-09-01T12:10:42.964Z | 2024-09-06T12:23:39.501Z |
4940782 | 4940782 | 20240810231856_TvHeF | UK009A | 2024-09-01T12:10:42.964Z | 2024-09-06T12:23:39.501Z |
4940783 | 4940783 | 20240810231856_TvHeF | UK00A0 | 2024-09-01T12:10:42.964Z | 2024-09-06T12:23:39.501Z |
4940784 | 4940784 | 20240810231856_TvHeF | UK00AN | 2024-09-01T12:10:42.964Z | 2024-09-06T12:23:39.501Z |
4940785 | 4940785 | 20240810231856_TvHeF | UK00BH | 2024-09-01T12:10:42.964Z | 2024-09-06T12:23:39.501Z |
4940772 | 4940772 | 20240810231856_TvHeF | BE000H | 2024-09-01T12:10:42.963Z | 2024-09-06T12:23:39.501Z |
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);