participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
17 rows where meteor_unique_trajectory_identifier = "20240811011626_P2tc4" 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 |
---|---|---|---|---|---|
4947318 | 4947318 | 20240811011626_P2tc4 | UK0031 | 2024-09-02T12:14:25.074Z | 2024-09-06T12:26:50.871Z |
4947319 | 4947319 | 20240811011626_P2tc4 | UK0035 | 2024-09-02T12:14:25.074Z | 2024-09-06T12:26:50.871Z |
4947320 | 4947320 | 20240811011626_P2tc4 | UK004D | 2024-09-02T12:14:25.074Z | 2024-09-06T12:26:50.871Z |
4947321 | 4947321 | 20240811011626_P2tc4 | UK005E | 2024-09-02T12:14:25.074Z | 2024-09-06T12:26:50.871Z |
4947322 | 4947322 | 20240811011626_P2tc4 | UK006P | 2024-09-02T12:14:25.074Z | 2024-09-06T12:26:50.871Z |
4947323 | 4947323 | 20240811011626_P2tc4 | UK0087 | 2024-09-02T12:14:25.074Z | 2024-09-06T12:26:50.871Z |
4947324 | 4947324 | 20240811011626_P2tc4 | UK0098 | 2024-09-02T12:14:25.074Z | 2024-09-06T12:26:50.871Z |
4947325 | 4947325 | 20240811011626_P2tc4 | UK0099 | 2024-09-02T12:14:25.074Z | 2024-09-06T12:26:50.871Z |
4947326 | 4947326 | 20240811011626_P2tc4 | UK00A4 | 2024-09-02T12:14:25.074Z | 2024-09-06T12:26:50.871Z |
4947327 | 4947327 | 20240811011626_P2tc4 | UK00AL | 2024-09-02T12:14:25.074Z | 2024-09-06T12:26:50.871Z |
4947328 | 4947328 | 20240811011626_P2tc4 | UK00AN | 2024-09-02T12:14:25.074Z | 2024-09-06T12:26:50.871Z |
4947329 | 4947329 | 20240811011626_P2tc4 | UK00C2 | 2024-09-02T12:14:25.074Z | 2024-09-06T12:26:50.871Z |
4947313 | 4947313 | 20240811011626_P2tc4 | UK000J | 2024-09-02T12:14:25.052Z | 2024-09-06T12:26:50.871Z |
4947314 | 4947314 | 20240811011626_P2tc4 | UK001L | 2024-09-02T12:14:25.052Z | 2024-09-06T12:26:50.871Z |
4947315 | 4947315 | 20240811011626_P2tc4 | UK002F | 2024-09-02T12:14:25.052Z | 2024-09-06T12:26:50.871Z |
4947316 | 4947316 | 20240811011626_P2tc4 | UK002X | 2024-09-02T12:14:25.052Z | 2024-09-06T12:26:50.871Z |
4947317 | 4947317 | 20240811011626_P2tc4 | UK0030 | 2024-09-02T12:14:25.052Z | 2024-09-06T12:26:50.871Z |
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);