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

6 rows where meteor_unique_trajectory_identifier = "20251130072543_cy3ss" sorted by created_at descending

✎ View and edit SQL

This data as json, copyable, CSV (advanced)

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

Link rowid meteor_unique_trajectory_identifier station_code created_at ▲ updated_at
8668327 8668327 20251130072543_cy3ss US0003 2025-12-02T14:42:19.504Z 2025-12-06T14:50:30.483Z
8668328 8668328 20251130072543_cy3ss US000G 2025-12-02T14:42:19.504Z 2025-12-06T14:50:30.483Z
8668329 8668329 20251130072543_cy3ss US000J 2025-12-02T14:42:19.504Z 2025-12-06T14:50:30.483Z
8668330 8668330 20251130072543_cy3ss US000R 2025-12-02T14:42:19.504Z 2025-12-06T14:50:30.483Z
8668331 8668331 20251130072543_cy3ss USL017 2025-12-02T14:42:19.504Z 2025-12-06T14:50:30.483Z
8668332 8668332 20251130072543_cy3ss USL01B 2025-12-02T14:42:19.504Z 2025-12-06T14:50:30.483Z

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