participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
4 rows where station_code = "UK00CZ_2" 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 |
|---|---|---|---|---|---|
| 6324210 | 6324210 | 20250315221832_CJglo | UK00CZ_2 | 2025-03-17T12:03:30.677Z | 2025-03-24T12:55:24.292Z |
| 6316073 | 6316073 | 20250313032420_UaslC | UK00CZ_2 | 2025-03-14T12:04:20.596Z | 2025-03-21T12:45:08.041Z |
| 6201790 | 6201790 | 20250228214348_t2qZ2 | UK00CZ_2 | 2025-03-02T14:06:31.848Z | 2025-03-09T13:29:12.193Z |
| 6171483 | 6171483 | 20250225200342_WFZEE | UK00CZ_2 | 2025-02-27T14:03:32.974Z | 2025-03-06T14:49:41.701Z |
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);