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

20 rows where meteor_unique_trajectory_identifier = "20240212013222_ijtEc" sorted by created_at descending

✎ View and edit SQL

This data as json, copyable, CSV (advanced)

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

Link rowid meteor_unique_trajectory_identifier station_code created_at ▲ updated_at
3952588 3952588 20240212013222_ijtEc UK0041 2024-02-13T14:06:33.421Z 2024-02-20T14:25:51.308Z
3952589 3952589 20240212013222_ijtEc UK006B 2024-02-13T14:06:33.421Z 2024-02-20T14:25:51.308Z
3952590 3952590 20240212013222_ijtEc UK006L 2024-02-13T14:06:33.421Z 2024-02-20T14:25:51.308Z
3952591 3952591 20240212013222_ijtEc UK0075 2024-02-13T14:06:33.421Z 2024-02-20T14:25:51.308Z
3952592 3952592 20240212013222_ijtEc UK007R 2024-02-13T14:06:33.421Z 2024-02-20T14:25:51.308Z
3952593 3952593 20240212013222_ijtEc UK008F 2024-02-13T14:06:33.421Z 2024-02-20T14:25:51.308Z
3952594 3952594 20240212013222_ijtEc UK0098 2024-02-13T14:06:33.421Z 2024-02-20T14:25:51.308Z
3952595 3952595 20240212013222_ijtEc UK00A0 2024-02-13T14:06:33.421Z 2024-02-20T14:25:51.308Z
3952596 3952596 20240212013222_ijtEc UK00AE 2024-02-13T14:06:33.421Z 2024-02-20T14:25:51.308Z
3952597 3952597 20240212013222_ijtEc UK00AG 2024-02-13T14:06:33.421Z 2024-02-20T14:25:51.308Z
3952598 3952598 20240212013222_ijtEc UK00AL 2024-02-13T14:06:33.421Z 2024-02-20T14:25:51.308Z
3952599 3952599 20240212013222_ijtEc UK00AT 2024-02-13T14:06:33.421Z 2024-02-20T14:25:51.308Z
3952600 3952600 20240212013222_ijtEc UK00B1 2024-02-13T14:06:33.421Z 2024-02-20T14:25:51.308Z
3952601 3952601 20240212013222_ijtEc UK00BF 2024-02-13T14:06:33.421Z 2024-02-20T14:25:51.308Z
3952602 3952602 20240212013222_ijtEc UK00BH 2024-02-13T14:06:33.421Z 2024-02-20T14:25:51.308Z
3952583 3952583 20240212013222_ijtEc UK000S 2024-02-13T14:06:33.420Z 2024-02-20T14:25:51.308Z
3952584 3952584 20240212013222_ijtEc UK002F 2024-02-13T14:06:33.420Z 2024-02-20T14:25:51.308Z
3952585 3952585 20240212013222_ijtEc UK002W 2024-02-13T14:06:33.420Z 2024-02-20T14:25:51.308Z
3952586 3952586 20240212013222_ijtEc UK0034 2024-02-13T14:06:33.420Z 2024-02-20T14:25:51.308Z
3952587 3952587 20240212013222_ijtEc UK0035 2024-02-13T14:06:33.420Z 2024-02-20T14:25:51.308Z

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