participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
23 rows where meteor_unique_trajectory_identifier = "20240118213014_8Ab3P" 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 |
|---|---|---|---|---|---|
| 3860763 | 3860763 | 20240118213014_8Ab3P | UK0031 | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860764 | 3860764 | 20240118213014_8Ab3P | UK005S | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860765 | 3860765 | 20240118213014_8Ab3P | UK007N | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860766 | 3860766 | 20240118213014_8Ab3P | UK007P | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860767 | 3860767 | 20240118213014_8Ab3P | UK007R | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860768 | 3860768 | 20240118213014_8Ab3P | UK0084 | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860769 | 3860769 | 20240118213014_8Ab3P | UK008J | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860770 | 3860770 | 20240118213014_8Ab3P | UK0098 | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860771 | 3860771 | 20240118213014_8Ab3P | UK009G | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860772 | 3860772 | 20240118213014_8Ab3P | UK009J | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860773 | 3860773 | 20240118213014_8Ab3P | UK009S | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860774 | 3860774 | 20240118213014_8Ab3P | UK009T | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860775 | 3860775 | 20240118213014_8Ab3P | UK00AE | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860776 | 3860776 | 20240118213014_8Ab3P | UK00AT | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860777 | 3860777 | 20240118213014_8Ab3P | UK00B0 | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860778 | 3860778 | 20240118213014_8Ab3P | UK00B1 | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860779 | 3860779 | 20240118213014_8Ab3P | UK00B2 | 2024-01-21T14:18:40.855Z | 2024-01-26T14:22:57.580Z |
| 3860757 | 3860757 | 20240118213014_8Ab3P | UK000S | 2024-01-21T14:18:40.854Z | 2024-01-26T14:22:57.580Z |
| 3860758 | 3860758 | 20240118213014_8Ab3P | UK001Z | 2024-01-21T14:18:40.854Z | 2024-01-26T14:22:57.580Z |
| 3860759 | 3860759 | 20240118213014_8Ab3P | UK0027 | 2024-01-21T14:18:40.854Z | 2024-01-26T14:22:57.580Z |
| 3860760 | 3860760 | 20240118213014_8Ab3P | UK002G | 2024-01-21T14:18:40.854Z | 2024-01-26T14:22:57.580Z |
| 3860761 | 3860761 | 20240118213014_8Ab3P | UK002S | 2024-01-21T14:18:40.854Z | 2024-01-26T14:22:57.580Z |
| 3860762 | 3860762 | 20240118213014_8Ab3P | UK0030 | 2024-01-21T14:18:40.854Z | 2024-01-26T14:22:57.580Z |
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);