participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240229222028_EU9kU" 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 |
---|---|---|---|---|---|
4011872 | 4011872 | 20240229222028_EU9kU | UK0089 | 2024-03-02T14:06:27.515Z | 2024-03-09T14:17:43.192Z |
4011873 | 4011873 | 20240229222028_EU9kU | UK009D | 2024-03-02T14:06:27.515Z | 2024-03-09T14:17:43.192Z |
4011874 | 4011874 | 20240229222028_EU9kU | UK009P | 2024-03-02T14:06:27.515Z | 2024-03-09T14:17:43.192Z |
4011875 | 4011875 | 20240229222028_EU9kU | UK00B0 | 2024-03-02T14:06:27.515Z | 2024-03-09T14:17:43.192Z |
4011876 | 4011876 | 20240229222028_EU9kU | UK00BA | 2024-03-02T14:06:27.515Z | 2024-03-09T14:17:43.192Z |
4011877 | 4011877 | 20240229222028_EU9kU | UK00BK | 2024-03-02T14:06:27.515Z | 2024-03-09T14:17:43.192Z |
4011866 | 4011866 | 20240229222028_EU9kU | UK001S | 2024-03-02T14:06:27.503Z | 2024-03-09T14:17:43.192Z |
4011867 | 4011867 | 20240229222028_EU9kU | UK001Z | 2024-03-02T14:06:27.503Z | 2024-03-09T14:17:43.192Z |
4011868 | 4011868 | 20240229222028_EU9kU | UK0031 | 2024-03-02T14:06:27.503Z | 2024-03-09T14:17:43.192Z |
4011869 | 4011869 | 20240229222028_EU9kU | UK003F | 2024-03-02T14:06:27.503Z | 2024-03-09T14:17:43.192Z |
4011870 | 4011870 | 20240229222028_EU9kU | UK005S | 2024-03-02T14:06:27.503Z | 2024-03-09T14:17:43.192Z |
4011871 | 4011871 | 20240229222028_EU9kU | UK0067 | 2024-03-02T14:06:27.503Z | 2024-03-09T14:17:43.192Z |
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);