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

29 rows where meteor_unique_trajectory_identifier = "20240303233219_K3Vxc" 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
4023757 4023757 20240303233219_K3Vxc UK0032 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023758 4023758 20240303233219_K3Vxc UK003X 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023759 4023759 20240303233219_K3Vxc UK004D 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023760 4023760 20240303233219_K3Vxc UK004N 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023761 4023761 20240303233219_K3Vxc UK006L 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023762 4023762 20240303233219_K3Vxc UK0072 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023763 4023763 20240303233219_K3Vxc UK007N 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023764 4023764 20240303233219_K3Vxc UK007P 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023765 4023765 20240303233219_K3Vxc UK0098 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023766 4023766 20240303233219_K3Vxc UK0099 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023767 4023767 20240303233219_K3Vxc UK009D 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023768 4023768 20240303233219_K3Vxc UK009P 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023769 4023769 20240303233219_K3Vxc UK00AE 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023770 4023770 20240303233219_K3Vxc UK00AT 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023771 4023771 20240303233219_K3Vxc UK00B0 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023772 4023772 20240303233219_K3Vxc UK00BA 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023773 4023773 20240303233219_K3Vxc UK00BF 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023774 4023774 20240303233219_K3Vxc UK00C1 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023775 4023775 20240303233219_K3Vxc UK00C2 2024-03-05T14:04:40.313Z 2024-03-12T12:15:19.839Z
4023747 4023747 20240303233219_K3Vxc IE0004 2024-03-05T14:04:40.312Z 2024-03-12T12:15:19.838Z
4023748 4023748 20240303233219_K3Vxc UK000S 2024-03-05T14:04:40.312Z 2024-03-12T12:15:19.838Z
4023749 4023749 20240303233219_K3Vxc UK001L 2024-03-05T14:04:40.312Z 2024-03-12T12:15:19.838Z
4023750 4023750 20240303233219_K3Vxc UK001Z 2024-03-05T14:04:40.312Z 2024-03-12T12:15:19.838Z
4023751 4023751 20240303233219_K3Vxc UK0026 2024-03-05T14:04:40.312Z 2024-03-12T12:15:19.838Z
4023752 4023752 20240303233219_K3Vxc UK0027 2024-03-05T14:04:40.312Z 2024-03-12T12:15:19.838Z
4023753 4023753 20240303233219_K3Vxc UK002H 2024-03-05T14:04:40.312Z 2024-03-12T12:15:19.838Z
4023754 4023754 20240303233219_K3Vxc UK002Z 2024-03-05T14:04:40.312Z 2024-03-12T12:15:19.838Z
4023755 4023755 20240303233219_K3Vxc UK0030 2024-03-05T14:04:40.312Z 2024-03-12T12:15:19.838Z
4023756 4023756 20240303233219_K3Vxc UK0031 2024-03-05T14:04:40.312Z 2024-03-12T12:15:19.839Z

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