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

11 rows where station_code = "BR0017" 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
9807816 9807816 20260427065853_Ih3fq BR0017 2026-04-28T12:17:53.698Z 2026-05-02T12:43:38.921Z
9807787 9807787 20260427064746_To7vV BR0017 2026-04-28T12:17:46.044Z 2026-05-02T12:43:37.520Z
9807738 9807738 20260427062733_U2qYy BR0017 2026-04-28T12:17:24.552Z 2026-05-02T12:43:35.302Z
9807556 9807556 20260427050009_F3Jdx BR0017 2026-04-28T12:16:41.915Z 2026-05-02T12:43:26.030Z
9807528 9807528 20260427042719_bq4ua BR0017 2026-04-28T12:16:30.039Z 2026-05-02T12:43:17.630Z
9800783 9800783 20260426051149_WZM1t BR0017 2026-04-27T12:30:53.208Z 2026-05-02T12:53:04.236Z
9800598 9800598 20260426024857_SLcAs BR0017 2026-04-27T12:30:07.448Z 2026-05-02T12:52:57.254Z
9771064 9771064 20260424065103_zdfRA BR0017 2026-04-25T12:34:04.879Z 2026-05-02T13:12:38.180Z
9721899 9721899 20260418030334_uqiBQ BR0017 2026-04-21T12:47:34.268Z 2026-04-26T13:11:51.134Z
9681321 9681321 20260415035254_gai2B BR0017 2026-04-16T12:25:18.386Z 2026-04-23T13:12:47.866Z
9680865 9680865 20260415020607_D2wsz BR0017 2026-04-16T12:24:03.364Z 2026-04-23T13:12:35.629Z

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