participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
18 rows where meteor_unique_trajectory_identifier = "20240729003102_ys74u" 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 |
---|---|---|---|---|---|
4731302 | 4731302 | 20240729003102_ys74u | UK003D | 2024-08-01T12:02:09.912Z | 2024-08-06T12:14:40.075Z |
4731303 | 4731303 | 20240729003102_ys74u | UK003N | 2024-08-01T12:02:09.912Z | 2024-08-06T12:14:40.075Z |
4731304 | 4731304 | 20240729003102_ys74u | UK004F | 2024-08-01T12:02:09.912Z | 2024-08-06T12:14:40.075Z |
4731305 | 4731305 | 20240729003102_ys74u | UK0079 | 2024-08-01T12:02:09.912Z | 2024-08-06T12:14:40.075Z |
4731306 | 4731306 | 20240729003102_ys74u | UK007H | 2024-08-01T12:02:09.912Z | 2024-08-06T12:14:40.075Z |
4731307 | 4731307 | 20240729003102_ys74u | UK007R | 2024-08-01T12:02:09.912Z | 2024-08-06T12:14:40.075Z |
4731308 | 4731308 | 20240729003102_ys74u | UK0084 | 2024-08-01T12:02:09.912Z | 2024-08-06T12:14:40.075Z |
4731309 | 4731309 | 20240729003102_ys74u | UK008Q | 2024-08-01T12:02:09.912Z | 2024-08-06T12:14:40.075Z |
4731310 | 4731310 | 20240729003102_ys74u | UK0092 | 2024-08-01T12:02:09.912Z | 2024-08-06T12:14:40.075Z |
4731311 | 4731311 | 20240729003102_ys74u | UK00B1 | 2024-08-01T12:02:09.912Z | 2024-08-06T12:14:40.075Z |
4731312 | 4731312 | 20240729003102_ys74u | UK00BC | 2024-08-01T12:02:09.912Z | 2024-08-06T12:14:40.075Z |
4731313 | 4731313 | 20240729003102_ys74u | UK00C7 | 2024-08-01T12:02:09.912Z | 2024-08-06T12:14:40.075Z |
4731296 | 4731296 | 20240729003102_ys74u | BE000H | 2024-08-01T12:02:09.901Z | 2024-08-06T12:14:40.075Z |
4731297 | 4731297 | 20240729003102_ys74u | UK0001 | 2024-08-01T12:02:09.901Z | 2024-08-06T12:14:40.075Z |
4731298 | 4731298 | 20240729003102_ys74u | UK0022 | 2024-08-01T12:02:09.901Z | 2024-08-06T12:14:40.075Z |
4731299 | 4731299 | 20240729003102_ys74u | UK002Q | 2024-08-01T12:02:09.901Z | 2024-08-06T12:14:40.075Z |
4731300 | 4731300 | 20240729003102_ys74u | UK002W | 2024-08-01T12:02:09.901Z | 2024-08-06T12:14:40.075Z |
4731301 | 4731301 | 20240729003102_ys74u | UK0039 | 2024-08-01T12:02:09.901Z | 2024-08-06T12:14:40.075Z |
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);