participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20240101065127_AT3OC" 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 |
---|---|---|---|---|---|
3727949 | 3727949 | 20240101065127_AT3OC | UK002U | 2024-01-06T00:06:10.463Z | 2024-01-10T14:30:34.811Z |
3727950 | 3727950 | 20240101065127_AT3OC | UK002X | 2024-01-06T00:06:10.463Z | 2024-01-10T14:30:34.811Z |
3727951 | 3727951 | 20240101065127_AT3OC | UK0031 | 2024-01-06T00:06:10.463Z | 2024-01-10T14:30:34.812Z |
3727952 | 3727952 | 20240101065127_AT3OC | UK0032 | 2024-01-06T00:06:10.463Z | 2024-01-10T14:30:34.812Z |
3727953 | 3727953 | 20240101065127_AT3OC | UK004D | 2024-01-06T00:06:10.463Z | 2024-01-10T14:30:34.812Z |
3727954 | 3727954 | 20240101065127_AT3OC | UK0052 | 2024-01-06T00:06:10.463Z | 2024-01-10T14:30:34.812Z |
3727955 | 3727955 | 20240101065127_AT3OC | UK005H | 2024-01-06T00:06:10.463Z | 2024-01-10T14:30:34.812Z |
3727956 | 3727956 | 20240101065127_AT3OC | UK006A | 2024-01-06T00:06:10.463Z | 2024-01-10T14:30:34.812Z |
3727957 | 3727957 | 20240101065127_AT3OC | UK006T | 2024-01-06T00:06:10.463Z | 2024-01-10T14:30:34.812Z |
3727958 | 3727958 | 20240101065127_AT3OC | UK006V | 2024-01-06T00:06:10.463Z | 2024-01-10T14:30:34.812Z |
3727959 | 3727959 | 20240101065127_AT3OC | UK0075 | 2024-01-06T00:06:10.463Z | 2024-01-10T14:30:34.812Z |
3727960 | 3727960 | 20240101065127_AT3OC | UK0098 | 2024-01-06T00:06:10.463Z | 2024-01-10T14:30:34.812Z |
3727961 | 3727961 | 20240101065127_AT3OC | UK0099 | 2024-01-06T00:06:10.463Z | 2024-01-10T14:30:34.819Z |
3727962 | 3727962 | 20240101065127_AT3OC | UK00AL | 2024-01-06T00:06:10.463Z | 2024-01-10T14:30:34.819Z |
3727963 | 3727963 | 20240101065127_AT3OC | UK00AM | 2024-01-06T00:06:10.463Z | 2024-01-10T14:30:34.819Z |
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);