participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240811211411_8jnLv" 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 |
---|---|---|---|---|---|
4965418 | 4965418 | 20240811211411_8jnLv | UK00CC | 2024-09-04T12:06:56.756Z | 2024-09-06T12:05:55.502Z |
4965417 | 4965417 | 20240811211411_8jnLv | UK00AZ | 2024-09-04T12:06:56.753Z | 2024-09-06T12:05:55.502Z |
4965416 | 4965416 | 20240811211411_8jnLv | UK00A3 | 2024-09-04T12:06:56.749Z | 2024-09-06T12:05:55.502Z |
4965409 | 4965409 | 20240811211411_8jnLv | UK002F | 2024-09-04T12:06:56.746Z | 2024-09-06T12:05:55.502Z |
4965410 | 4965410 | 20240811211411_8jnLv | UK002K | 2024-09-04T12:06:56.746Z | 2024-09-06T12:05:55.502Z |
4965411 | 4965411 | 20240811211411_8jnLv | UK003X | 2024-09-04T12:06:56.746Z | 2024-09-06T12:05:55.502Z |
4965412 | 4965412 | 20240811211411_8jnLv | UK006C | 2024-09-04T12:06:56.746Z | 2024-09-06T12:05:55.502Z |
4965413 | 4965413 | 20240811211411_8jnLv | UK006G | 2024-09-04T12:06:56.746Z | 2024-09-06T12:05:55.502Z |
4965414 | 4965414 | 20240811211411_8jnLv | UK0099 | 2024-09-04T12:06:56.746Z | 2024-09-06T12:05:55.502Z |
4965415 | 4965415 | 20240811211411_8jnLv | UK00A0 | 2024-09-04T12:06:56.746Z | 2024-09-06T12:05:55.502Z |
4965408 | 4965408 | 20240811211411_8jnLv | UK001T | 2024-09-04T12:06:56.738Z | 2024-09-06T12:05:55.502Z |
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);