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

14 rows where meteor_unique_trajectory_identifier = "20260128235826_YKmu1" 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
9277637 9277637 20260128235826_YKmu1 UK007P 2026-01-30T14:22:39.008Z 2026-02-06T14:47:48.941Z
9277638 9277638 20260128235826_YKmu1 UK0086 2026-01-30T14:22:39.008Z 2026-02-06T14:47:48.941Z
9277639 9277639 20260128235826_YKmu1 UK009G 2026-01-30T14:22:39.008Z 2026-02-06T14:47:48.941Z
9277640 9277640 20260128235826_YKmu1 UK009K 2026-01-30T14:22:39.008Z 2026-02-06T14:47:48.941Z
9277641 9277641 20260128235826_YKmu1 UK009W 2026-01-30T14:22:39.008Z 2026-02-06T14:47:48.941Z
9277642 9277642 20260128235826_YKmu1 UK00B0 2026-01-30T14:22:39.008Z 2026-02-06T14:47:48.941Z
9277643 9277643 20260128235826_YKmu1 UK00B1 2026-01-30T14:22:39.008Z 2026-02-06T14:47:48.941Z
9277644 9277644 20260128235826_YKmu1 UK00B2 2026-01-30T14:22:39.008Z 2026-02-06T14:47:48.941Z
9277645 9277645 20260128235826_YKmu1 UK00B6 2026-01-30T14:22:39.008Z 2026-02-06T14:47:48.941Z
9277646 9277646 20260128235826_YKmu1 UK00DG 2026-01-30T14:22:39.008Z 2026-02-06T14:47:48.941Z
9277647 9277647 20260128235826_YKmu1 UK00DN 2026-01-30T14:22:39.008Z 2026-02-06T14:47:48.941Z
9277636 9277636 20260128235826_YKmu1 UK0031 2026-01-30T14:22:39.007Z 2026-02-06T14:47:48.941Z
9277634 9277634 20260128235826_YKmu1 UK000S 2026-01-30T14:22:38.997Z 2026-02-06T14:47:48.941Z
9277635 9277635 20260128235826_YKmu1 UK0030 2026-01-30T14:22:38.997Z 2026-02-06T14:47:48.941Z

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