participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20240121062537_Yr23u" 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 |
---|---|---|---|---|---|
3871243 | 3871243 | 20240121062537_Yr23u | UK007M | 2024-01-23T14:04:04.933Z | 2024-01-29T14:18:20.097Z |
3871244 | 3871244 | 20240121062537_Yr23u | UK00AM | 2024-01-23T14:04:04.933Z | 2024-01-29T14:18:20.097Z |
3871245 | 3871245 | 20240121062537_Yr23u | UK00B0 | 2024-01-23T14:04:04.933Z | 2024-01-29T14:18:20.097Z |
3871237 | 3871237 | 20240121062537_Yr23u | UK001N | 2024-01-23T14:04:04.917Z | 2024-01-29T14:18:20.097Z |
3871238 | 3871238 | 20240121062537_Yr23u | UK002U | 2024-01-23T14:04:04.917Z | 2024-01-29T14:18:20.097Z |
3871239 | 3871239 | 20240121062537_Yr23u | UK006A | 2024-01-23T14:04:04.917Z | 2024-01-29T14:18:20.097Z |
3871240 | 3871240 | 20240121062537_Yr23u | UK006E | 2024-01-23T14:04:04.917Z | 2024-01-29T14:18:20.097Z |
3871241 | 3871241 | 20240121062537_Yr23u | UK006V | 2024-01-23T14:04:04.917Z | 2024-01-29T14:18:20.097Z |
3871242 | 3871242 | 20240121062537_Yr23u | UK0074 | 2024-01-23T14:04:04.917Z | 2024-01-29T14:18:20.097Z |
3871236 | 3871236 | 20240121062537_Yr23u | UK000X | 2024-01-23T14:04:04.907Z | 2024-01-29T14:18:20.097Z |
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);