participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240104054900_kaZWp" 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 |
---|---|---|---|---|---|
3743918 | 3743918 | 20240104054900_kaZWp | UK000S | 2024-01-06T14:01:19.803Z | 2024-01-13T14:25:45.185Z |
3743919 | 3743919 | 20240104054900_kaZWp | UK002F | 2024-01-06T14:01:19.803Z | 2024-01-13T14:25:45.185Z |
3743920 | 3743920 | 20240104054900_kaZWp | UK0031 | 2024-01-06T14:01:19.803Z | 2024-01-13T14:25:45.185Z |
3743921 | 3743921 | 20240104054900_kaZWp | UK003A | 2024-01-06T14:01:19.803Z | 2024-01-13T14:25:45.185Z |
3743922 | 3743922 | 20240104054900_kaZWp | UK003X | 2024-01-06T14:01:19.803Z | 2024-01-13T14:25:45.185Z |
3743923 | 3743923 | 20240104054900_kaZWp | UK005E | 2024-01-06T14:01:19.803Z | 2024-01-13T14:25:45.186Z |
3743924 | 3743924 | 20240104054900_kaZWp | UK0063 | 2024-01-06T14:01:19.803Z | 2024-01-13T14:25:45.186Z |
3743925 | 3743925 | 20240104054900_kaZWp | UK007N | 2024-01-06T14:01:19.803Z | 2024-01-13T14:25:45.186Z |
3743926 | 3743926 | 20240104054900_kaZWp | UK0099 | 2024-01-06T14:01:19.803Z | 2024-01-13T14:25:45.186Z |
3743927 | 3743927 | 20240104054900_kaZWp | UK009L | 2024-01-06T14:01:19.803Z | 2024-01-13T14:25:45.186Z |
3743928 | 3743928 | 20240104054900_kaZWp | UK00AL | 2024-01-06T14:01:19.803Z | 2024-01-13T14:25:45.186Z |
3743929 | 3743929 | 20240104054900_kaZWp | UK00B1 | 2024-01-06T14:01:19.803Z | 2024-01-13T14:25:45.186Z |
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);