participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240421203823_29IBc" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4229993 | 4229993 | 20240421203823_29IBc | UK00A5 | 2024-04-23T12:08:54.988Z | 2024-04-29T12:18:52.704Z |
4229994 | 4229994 | 20240421203823_29IBc | UK00BW | 2024-04-23T12:08:54.988Z | 2024-04-29T12:18:52.704Z |
4229989 | 4229989 | 20240421203823_29IBc | UK003Z | 2024-04-23T12:08:54.947Z | 2024-04-29T12:18:52.704Z |
4229990 | 4229990 | 20240421203823_29IBc | UK007L | 2024-04-23T12:08:54.947Z | 2024-04-29T12:18:52.704Z |
4229991 | 4229991 | 20240421203823_29IBc | UK007V | 2024-04-23T12:08:54.947Z | 2024-04-29T12:18:52.704Z |
4229992 | 4229992 | 20240421203823_29IBc | UK008W | 2024-04-23T12:08:54.947Z | 2024-04-29T12:18:52.704Z |
4229987 | 4229987 | 20240421203823_29IBc | UK001Z | 2024-04-23T12:08:54.913Z | 2024-04-29T12:18:52.704Z |
4229988 | 4229988 | 20240421203823_29IBc | UK002J | 2024-04-23T12:08:54.913Z | 2024-04-29T12:18:52.704Z |
4229984 | 4229984 | 20240421203823_29IBc | UK0006 | 2024-04-23T12:08:54.912Z | 2024-04-29T12:18:52.703Z |
4229985 | 4229985 | 20240421203823_29IBc | UK0009 | 2024-04-23T12:08:54.912Z | 2024-04-29T12:18:52.704Z |
4229986 | 4229986 | 20240421203823_29IBc | UK001E | 2024-04-23T12:08:54.912Z | 2024-04-29T12:18:52.704Z |
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);