home / gmn_data_store / participating_station

Menu
  • Dashboards

participating_station

Each row represents a station recording a meteor sighting.

Data license: CC BY 4.0 license · Data source: Global Meteor Network

17 rows where meteor_unique_trajectory_identifier = "20240417031432_uyIQm" sorted by created_at descending

✎ View and edit SQL

This data as json, copyable, CSV (advanced)

Suggested facets: created_at, updated_at, created_at (date), updated_at (date)

Link rowid meteor_unique_trajectory_identifier station_code created_at ▲ updated_at
4206055 4206055 20240417031432_uyIQm UK004G 2024-04-18T12:13:23.850Z 2024-04-25T12:21:24.914Z
4206056 4206056 20240417031432_uyIQm UK005V 2024-04-18T12:13:23.850Z 2024-04-25T12:21:24.914Z
4206057 4206057 20240417031432_uyIQm UK0060 2024-04-18T12:13:23.850Z 2024-04-25T12:21:24.915Z
4206058 4206058 20240417031432_uyIQm UK0067 2024-04-18T12:13:23.850Z 2024-04-25T12:21:24.915Z
4206059 4206059 20240417031432_uyIQm UK0070 2024-04-18T12:13:23.850Z 2024-04-25T12:21:24.915Z
4206060 4206060 20240417031432_uyIQm UK007A 2024-04-18T12:13:23.850Z 2024-04-25T12:21:24.915Z
4206061 4206061 20240417031432_uyIQm UK007L 2024-04-18T12:13:23.850Z 2024-04-25T12:21:24.915Z
4206062 4206062 20240417031432_uyIQm UK008W 2024-04-18T12:13:23.850Z 2024-04-25T12:21:24.915Z
4206063 4206063 20240417031432_uyIQm UK009D 2024-04-18T12:13:23.850Z 2024-04-25T12:21:24.915Z
4206064 4206064 20240417031432_uyIQm UK009K 2024-04-18T12:13:23.850Z 2024-04-25T12:21:24.915Z
4206065 4206065 20240417031432_uyIQm UK009S 2024-04-18T12:13:23.850Z 2024-04-25T12:21:24.915Z
4206066 4206066 20240417031432_uyIQm UK00AP 2024-04-18T12:13:23.850Z 2024-04-25T12:21:24.915Z
4206067 4206067 20240417031432_uyIQm UK00B2 2024-04-18T12:13:23.850Z 2024-04-25T12:21:24.915Z
4206068 4206068 20240417031432_uyIQm UK00BD 2024-04-18T12:13:23.850Z 2024-04-25T12:21:24.915Z
4206052 4206052 20240417031432_uyIQm UK000Y 2024-04-18T12:13:23.699Z 2024-04-25T12:21:24.914Z
4206053 4206053 20240417031432_uyIQm UK001Z 2024-04-18T12:13:23.699Z 2024-04-25T12:21:24.914Z
4206054 4206054 20240417031432_uyIQm UK0035 2024-04-18T12:13:23.699Z 2024-04-25T12:21:24.914Z

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

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);
Powered by Datasette · Queries took 1.2ms · Data license: CC BY 4.0 license · Data source: Global Meteor Network