participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
6 rows where station_code = "US004S" 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 |
|---|---|---|---|---|---|
| 6988335 | 6988335 | 20250628045748_pF2oG | US004S | 2025-06-29T12:14:34.206Z | 2025-07-06T12:42:46.117Z |
| 6911641 | 6911641 | 20250617062937_jABi3 | US004S | 2025-06-18T12:23:11.324Z | 2025-06-25T12:36:49.706Z |
| 6368076 | 6368076 | 20250322080710_3sJme | US004S | 2025-03-23T12:11:18.147Z | 2025-03-30T13:08:28.082Z |
| 6360928 | 6360928 | 20250321070915_vW3MH | US004S | 2025-03-22T12:15:12.233Z | 2025-03-29T13:16:32.846Z |
| 6297334 | 6297334 | 20250309122446_QJJ3s | US004S | 2025-03-10T12:19:23.760Z | 2025-03-17T12:43:43.721Z |
| 6096342 | 6096342 | 20250210122145_5SwqU | US004S | 2025-02-11T14:02:58.813Z | 2025-02-18T14:27:48.610Z |
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);