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

25 rows where meteor_unique_trajectory_identifier = "20240122061604_xhZPa" 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
3878645 3878645 20240122061604_xhZPa UK003X 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878646 3878646 20240122061604_xhZPa UK0049 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878647 3878647 20240122061604_xhZPa UK005M 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878648 3878648 20240122061604_xhZPa UK006B 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878649 3878649 20240122061604_xhZPa UK007B 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878650 3878650 20240122061604_xhZPa UK007R 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878651 3878651 20240122061604_xhZPa UK007V 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878652 3878652 20240122061604_xhZPa UK0084 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878653 3878653 20240122061604_xhZPa UK008F 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878654 3878654 20240122061604_xhZPa UK0098 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878655 3878655 20240122061604_xhZPa UK009E 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878656 3878656 20240122061604_xhZPa UK009J 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878657 3878657 20240122061604_xhZPa UK00A5 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878658 3878658 20240122061604_xhZPa UK00AE 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878659 3878659 20240122061604_xhZPa UK00AT 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878660 3878660 20240122061604_xhZPa UK00B1 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878661 3878661 20240122061604_xhZPa UK00BF 2024-01-24T14:03:43.501Z 2024-01-30T14:18:58.249Z
3878637 3878637 20240122061604_xhZPa UK000S 2024-01-24T14:03:43.490Z 2024-01-30T14:18:58.249Z
3878638 3878638 20240122061604_xhZPa UK0026 2024-01-24T14:03:43.490Z 2024-01-30T14:18:58.249Z
3878639 3878639 20240122061604_xhZPa UK0027 2024-01-24T14:03:43.490Z 2024-01-30T14:18:58.249Z
3878640 3878640 20240122061604_xhZPa UK002G 2024-01-24T14:03:43.490Z 2024-01-30T14:18:58.249Z
3878641 3878641 20240122061604_xhZPa UK0034 2024-01-24T14:03:43.490Z 2024-01-30T14:18:58.249Z
3878642 3878642 20240122061604_xhZPa UK0035 2024-01-24T14:03:43.490Z 2024-01-30T14:18:58.249Z
3878643 3878643 20240122061604_xhZPa UK003D 2024-01-24T14:03:43.490Z 2024-01-30T14:18:58.249Z
3878644 3878644 20240122061604_xhZPa UK003L 2024-01-24T14:03:43.490Z 2024-01-30T14:18:58.249Z

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