participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240721222825_Ir3Mh" 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 |
---|---|---|---|---|---|
4675415 | 4675415 | 20240721222825_Ir3Mh | UK0099 | 2024-07-23T12:01:12.813Z | 2024-07-30T12:18:05.910Z |
4675416 | 4675416 | 20240721222825_Ir3Mh | UK00A4 | 2024-07-23T12:01:12.813Z | 2024-07-30T12:18:05.910Z |
4675417 | 4675417 | 20240721222825_Ir3Mh | UK00BH | 2024-07-23T12:01:12.813Z | 2024-07-30T12:18:05.910Z |
4675418 | 4675418 | 20240721222825_Ir3Mh | UK00CJ | 2024-07-23T12:01:12.813Z | 2024-07-30T12:18:05.910Z |
4675410 | 4675410 | 20240721222825_Ir3Mh | UK003W | 2024-07-23T12:01:12.798Z | 2024-07-30T12:18:05.910Z |
4675411 | 4675411 | 20240721222825_Ir3Mh | UK0041 | 2024-07-23T12:01:12.798Z | 2024-07-30T12:18:05.910Z |
4675412 | 4675412 | 20240721222825_Ir3Mh | UK005E | 2024-07-23T12:01:12.798Z | 2024-07-30T12:18:05.910Z |
4675413 | 4675413 | 20240721222825_Ir3Mh | UK007N | 2024-07-23T12:01:12.798Z | 2024-07-30T12:18:05.910Z |
4675414 | 4675414 | 20240721222825_Ir3Mh | UK008M | 2024-07-23T12:01:12.798Z | 2024-07-30T12:18:05.910Z |
4675407 | 4675407 | 20240721222825_Ir3Mh | UK000F | 2024-07-23T12:01:12.782Z | 2024-07-30T12:18:05.910Z |
4675408 | 4675408 | 20240721222825_Ir3Mh | UK002F | 2024-07-23T12:01:12.782Z | 2024-07-30T12:18:05.910Z |
4675409 | 4675409 | 20240721222825_Ir3Mh | UK002Y | 2024-07-23T12:01:12.782Z | 2024-07-30T12:18:05.910Z |
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);