participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20230414002249_L03J2" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 2381034 | 2381034 | 20230414002249_L03J2 | BE0001 | 2024-01-05T23:56:52.711Z | 2024-01-05T23:56:52.711Z |
| 2381035 | 2381035 | 20230414002249_L03J2 | FR000F | 2024-01-05T23:56:52.711Z | 2024-01-05T23:56:52.711Z |
| 2381036 | 2381036 | 20230414002249_L03J2 | NL000M | 2024-01-05T23:56:52.711Z | 2024-01-05T23:56:52.711Z |
| 2381037 | 2381037 | 20230414002249_L03J2 | UK0004 | 2024-01-05T23:56:52.711Z | 2024-01-05T23:56:52.711Z |
| 2381038 | 2381038 | 20230414002249_L03J2 | UK0056 | 2024-01-05T23:56:52.711Z | 2024-01-05T23:56:52.711Z |
| 2381039 | 2381039 | 20230414002249_L03J2 | UK005E | 2024-01-05T23:56:52.711Z | 2024-01-05T23:56:52.711Z |
| 2381040 | 2381040 | 20230414002249_L03J2 | UK005G | 2024-01-05T23:56:52.711Z | 2024-01-05T23:56:52.711Z |
| 2381041 | 2381041 | 20230414002249_L03J2 | UK006D | 2024-01-05T23:56:52.711Z | 2024-01-05T23:56:52.711Z |
| 2381042 | 2381042 | 20230414002249_L03J2 | UK006P | 2024-01-05T23:56:52.711Z | 2024-01-05T23:56:52.711Z |
| 2381043 | 2381043 | 20230414002249_L03J2 | UK007W | 2024-01-05T23:56:52.711Z | 2024-01-05T23:56:52.711Z |
| 2381044 | 2381044 | 20230414002249_L03J2 | UK007Y | 2024-01-05T23:56:52.711Z | 2024-01-05T23:56:52.711Z |
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);