participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20240414033438_SVUft" 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 |
---|---|---|---|---|---|
4186185 | 4186185 | 20240414033438_SVUft | UK0008 | 2024-04-15T12:06:12.552Z | 2024-04-22T12:22:27.937Z |
4186186 | 4186186 | 20240414033438_SVUft | UK000Z | 2024-04-15T12:06:12.552Z | 2024-04-22T12:22:27.937Z |
4186187 | 4186187 | 20240414033438_SVUft | UK001T | 2024-04-15T12:06:12.552Z | 2024-04-22T12:22:27.937Z |
4186188 | 4186188 | 20240414033438_SVUft | UK002X | 2024-04-15T12:06:12.552Z | 2024-04-22T12:22:27.937Z |
4186189 | 4186189 | 20240414033438_SVUft | UK003T | 2024-04-15T12:06:12.552Z | 2024-04-22T12:22:27.937Z |
4186190 | 4186190 | 20240414033438_SVUft | UK004B | 2024-04-15T12:06:12.552Z | 2024-04-22T12:22:27.937Z |
4186191 | 4186191 | 20240414033438_SVUft | UK004V | 2024-04-15T12:06:12.552Z | 2024-04-22T12:22:27.937Z |
4186192 | 4186192 | 20240414033438_SVUft | UK005H | 2024-04-15T12:06:12.552Z | 2024-04-22T12:22:27.937Z |
4186193 | 4186193 | 20240414033438_SVUft | UK006A | 2024-04-15T12:06:12.552Z | 2024-04-22T12:22:27.937Z |
4186194 | 4186194 | 20240414033438_SVUft | UK006C | 2024-04-15T12:06:12.552Z | 2024-04-22T12:22:27.937Z |
4186195 | 4186195 | 20240414033438_SVUft | UK006T | 2024-04-15T12:06:12.552Z | 2024-04-22T12:22:27.937Z |
4186196 | 4186196 | 20240414033438_SVUft | UK0074 | 2024-04-15T12:06:12.552Z | 2024-04-22T12:22:27.937Z |
4186197 | 4186197 | 20240414033438_SVUft | UK008H | 2024-04-15T12:06:12.552Z | 2024-04-22T12:22:27.937Z |
4186198 | 4186198 | 20240414033438_SVUft | UK00A3 | 2024-04-15T12:06:12.552Z | 2024-04-22T12:22:27.937Z |
4186199 | 4186199 | 20240414033438_SVUft | UK00AM | 2024-04-15T12:06:12.552Z | 2024-04-22T12:22:27.937Z |
4186200 | 4186200 | 20240414033438_SVUft | UK00C2 | 2024-04-15T12:06:12.552Z | 2024-04-22T12:22:27.937Z |
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);