participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where station_code = "US002Z" 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 |
---|---|---|---|---|---|
5538866 | 5538866 | 20241113050600_Ucq8B | US002Z | 2024-11-14T14:14:01.100Z | 2024-11-14T14:14:16.691Z |
5412674 | 5412674 | 20241028070247_U1PZA | US002Z | 2024-10-30T12:00:17.932Z | 2024-11-06T14:27:01.617Z |
5389497 | 5389497 | 20241026071016_sO2iS | US002Z | 2024-10-28T12:00:27.323Z | 2024-11-04T14:28:22.816Z |
5356739 | 5356739 | 20241023074932_2nSe9 | US002Z | 2024-10-25T12:01:29.585Z | 2024-11-01T12:26:36.949Z |
5336172 | 5336172 | 20241022074919_vgC5w | US002Z | 2024-10-23T12:01:37.466Z | 2024-10-31T12:29:39.335Z |
5295388 | 5295388 | 20241013074020_vM6if | US002Z | 2024-10-14T12:02:13.366Z | 2024-10-22T12:24:11.623Z |
5286040 | 5286040 | 20241012071743_elQRv | US002Z | 2024-10-13T12:01:19.768Z | 2024-10-21T12:22:48.342Z |
5275907 | 5275907 | 20241010033707_yBM19 | US002Z | 2024-10-11T12:16:35.220Z | 2024-10-18T12:22:21.114Z |
5270117 | 5270117 | 20241010084204_rVEjq | US002Z | 2024-10-11T12:03:41.312Z | 2024-10-19T12:26:57.703Z |
5270025 | 5270025 | 20241010081930_swfkW | US002Z | 2024-10-11T12:03:28.034Z | 2024-10-19T12:26:56.883Z |
5269596 | 5269596 | 20241010061955_M2cGh | US002Z | 2024-10-11T12:02:07.733Z | 2024-10-19T12:26:52.282Z |
5263852 | 5263852 | 20241009062307_vFhnP | US002Z | 2024-10-10T12:02:24.227Z | 2024-10-18T12:21:38.533Z |
5250504 | 5250504 | 20241006091753_giBP3 | US002Z | 2024-10-08T12:08:22.813Z | 2024-10-15T12:28:48.199Z |
5201856 | 5201856 | 20241001083105_mCzpK | US002Z | 2024-10-02T12:05:19.909Z | 2024-10-10T12:24:38.345Z |
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);