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 = "20260322182457_XKuYQ" 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
9569908 9569908 20260322182457_XKuYQ KR0010 2026-03-24T12:22:20.616Z 2026-03-30T12:30:24.780Z
9569909 9569909 20260322182457_XKuYQ KR0015 2026-03-24T12:22:20.616Z 2026-03-30T12:30:24.780Z
9569910 9569910 20260322182457_XKuYQ KR0016 2026-03-24T12:22:20.616Z 2026-03-30T12:30:24.780Z
9569911 9569911 20260322182457_XKuYQ KR001N 2026-03-24T12:22:20.616Z 2026-03-30T12:30:24.780Z
9569912 9569912 20260322182457_XKuYQ KR001Y 2026-03-24T12:22:20.616Z 2026-03-30T12:30:24.780Z
9569913 9569913 20260322182457_XKuYQ KR0026 2026-03-24T12:22:20.616Z 2026-03-30T12:30:24.780Z
9569914 9569914 20260322182457_XKuYQ KR0028 2026-03-24T12:22:20.616Z 2026-03-30T12:30:24.780Z
9569915 9569915 20260322182457_XKuYQ KR002L 2026-03-24T12:22:20.616Z 2026-03-30T12:30:24.780Z
9569916 9569916 20260322182457_XKuYQ KR002P 2026-03-24T12:22:20.616Z 2026-03-30T12:30:24.780Z
9569917 9569917 20260322182457_XKuYQ KR0036 2026-03-24T12:22:20.616Z 2026-03-30T12:30:24.780Z
9569918 9569918 20260322182457_XKuYQ KR003M 2026-03-24T12:22:20.616Z 2026-03-30T12:30:24.780Z
9569919 9569919 20260322182457_XKuYQ KR003T 2026-03-24T12:22:20.616Z 2026-03-30T12:30:24.780Z
9569906 9569906 20260322182457_XKuYQ KR0004 2026-03-24T12:22:20.615Z 2026-03-30T12:30:24.780Z
9569907 9569907 20260322182457_XKuYQ KR000L 2026-03-24T12:22:20.615Z 2026-03-30T12:30:24.780Z

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