participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20241121225427_Te9GJ" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
5579506 | 5579506 | 20241121225427_Te9GJ | UK001L | 2024-11-23T14:18:32.656Z | 2024-11-25T14:20:25.723Z |
5579507 | 5579507 | 20241121225427_Te9GJ | UK002X | 2024-11-23T14:18:32.656Z | 2024-11-25T14:20:25.723Z |
5579508 | 5579508 | 20241121225427_Te9GJ | UK002Z | 2024-11-23T14:18:32.656Z | 2024-11-25T14:20:25.723Z |
5579509 | 5579509 | 20241121225427_Te9GJ | UK0032 | 2024-11-23T14:18:32.656Z | 2024-11-25T14:20:25.723Z |
5579510 | 5579510 | 20241121225427_Te9GJ | UK003T | 2024-11-23T14:18:32.656Z | 2024-11-25T14:20:25.723Z |
5579511 | 5579511 | 20241121225427_Te9GJ | UK004D | 2024-11-23T14:18:32.656Z | 2024-11-25T14:20:25.723Z |
5579512 | 5579512 | 20241121225427_Te9GJ | UK006T | 2024-11-23T14:18:32.656Z | 2024-11-25T14:20:25.723Z |
5579513 | 5579513 | 20241121225427_Te9GJ | UK006V | 2024-11-23T14:18:32.656Z | 2024-11-25T14:20:25.723Z |
5579514 | 5579514 | 20241121225427_Te9GJ | UK0074 | 2024-11-23T14:18:32.656Z | 2024-11-25T14:20:25.723Z |
5579515 | 5579515 | 20241121225427_Te9GJ | UK0083 | 2024-11-23T14:18:32.656Z | 2024-11-25T14:20:25.723Z |
5579516 | 5579516 | 20241121225427_Te9GJ | UK008G | 2024-11-23T14:18:32.656Z | 2024-11-25T14:20:25.723Z |
5579517 | 5579517 | 20241121225427_Te9GJ | UK009C | 2024-11-23T14:18:32.656Z | 2024-11-25T14:20:25.723Z |
5579518 | 5579518 | 20241121225427_Te9GJ | UK00B0 | 2024-11-23T14:18:32.656Z | 2024-11-25T14:20:25.723Z |
5579519 | 5579519 | 20241121225427_Te9GJ | UK00CD | 2024-11-23T14:18:32.656Z | 2024-11-25T14:20:25.723Z |
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);