participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where station_code = "US0059" 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 |
---|---|---|---|---|---|
5571861 | 5571861 | 20241121005730_eXXGh | US0059 | 2024-11-22T14:17:43.205Z | 2024-11-23T14:23:36.871Z |
5571342 | 5571342 | 20241120232532_1KSGn | US0059 | 2024-11-22T14:16:53.472Z | 2024-11-23T14:23:28.136Z |
5564670 | 5564670 | 20241120031800_XzHO7 | US0059 | 2024-11-21T14:17:56.908Z | 2024-11-23T14:24:43.525Z |
5563861 | 5563861 | 20241120021050_3WsQT | US0059 | 2024-11-21T14:16:51.490Z | 2024-11-23T14:24:39.205Z |
5563237 | 5563237 | 20241120010909_tzG3y | US0059 | 2024-11-21T14:15:43.998Z | 2024-11-23T14:24:34.440Z |
5562439 | 5562439 | 20241119233818_QGMOj | US0059 | 2024-11-21T14:14:50.257Z | 2024-11-23T14:24:29.988Z |
5562017 | 5562017 | 20241119224600_F3U3A | US0059 | 2024-11-21T14:14:20.036Z | 2024-11-23T14:24:27.388Z |
5558930 | 5558930 | 20241120085058_rlcyp | US0059 | 2024-11-21T14:04:49.880Z | 2024-11-23T14:22:03.904Z |
5558803 | 5558803 | 20241120081002_8ikhZ | US0059 | 2024-11-21T14:04:26.121Z | 2024-11-23T14:22:01.572Z |
5558668 | 5558668 | 20241120072442_RUfOV | US0059 | 2024-11-21T14:04:00.471Z | 2024-11-23T14:21:58.370Z |
5558622 | 5558622 | 20241120070957_4hd6V | US0059 | 2024-11-21T14:03:51.007Z | 2024-11-23T14:21:57.476Z |
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);