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 = "20240418030121_i91ge" 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
4213796 4213796 20240418030121_i91ge UK00AP 2024-04-20T12:03:51.278Z 2024-04-26T12:16:56.278Z
4213797 4213797 20240418030121_i91ge UK00AT 2024-04-20T12:03:51.278Z 2024-04-26T12:16:56.278Z
4213798 4213798 20240418030121_i91ge UK00B2 2024-04-20T12:03:51.278Z 2024-04-26T12:16:56.278Z
4213799 4213799 20240418030121_i91ge UK00B6 2024-04-20T12:03:51.278Z 2024-04-26T12:16:56.278Z
4213800 4213800 20240418030121_i91ge UK00C1 2024-04-20T12:03:51.278Z 2024-04-26T12:16:56.278Z
4213788 4213788 20240418030121_i91ge UK0089 2024-04-20T12:03:51.263Z 2024-04-26T12:16:56.278Z
4213789 4213789 20240418030121_i91ge UK008K 2024-04-20T12:03:51.263Z 2024-04-26T12:16:56.278Z
4213790 4213790 20240418030121_i91ge UK008Q 2024-04-20T12:03:51.263Z 2024-04-26T12:16:56.278Z
4213791 4213791 20240418030121_i91ge UK009J 2024-04-20T12:03:51.263Z 2024-04-26T12:16:56.278Z
4213792 4213792 20240418030121_i91ge UK009S 2024-04-20T12:03:51.263Z 2024-04-26T12:16:56.278Z
4213793 4213793 20240418030121_i91ge UK009T 2024-04-20T12:03:51.263Z 2024-04-26T12:16:56.278Z
4213794 4213794 20240418030121_i91ge UK009V 2024-04-20T12:03:51.263Z 2024-04-26T12:16:56.278Z
4213795 4213795 20240418030121_i91ge UK009W 2024-04-20T12:03:51.263Z 2024-04-26T12:16:56.278Z
4213776 4213776 20240418030121_i91ge UK0006 2024-04-20T12:03:51.250Z 2024-04-26T12:16:56.278Z
4213777 4213777 20240418030121_i91ge UK0009 2024-04-20T12:03:51.250Z 2024-04-26T12:16:56.278Z
4213778 4213778 20240418030121_i91ge UK001Z 2024-04-20T12:03:51.250Z 2024-04-26T12:16:56.278Z
4213779 4213779 20240418030121_i91ge UK003C 2024-04-20T12:03:51.250Z 2024-04-26T12:16:56.278Z
4213780 4213780 20240418030121_i91ge UK003D 2024-04-20T12:03:51.250Z 2024-04-26T12:16:56.278Z
4213781 4213781 20240418030121_i91ge UK004G 2024-04-20T12:03:51.250Z 2024-04-26T12:16:56.278Z
4213782 4213782 20240418030121_i91ge UK005N 2024-04-20T12:03:51.250Z 2024-04-26T12:16:56.278Z
4213783 4213783 20240418030121_i91ge UK005S 2024-04-20T12:03:51.250Z 2024-04-26T12:16:56.278Z
4213784 4213784 20240418030121_i91ge UK0070 2024-04-20T12:03:51.250Z 2024-04-26T12:16:56.278Z
4213785 4213785 20240418030121_i91ge UK007B 2024-04-20T12:03:51.250Z 2024-04-26T12:16:56.278Z
4213786 4213786 20240418030121_i91ge UK007H 2024-04-20T12:03:51.250Z 2024-04-26T12:16:56.278Z
4213787 4213787 20240418030121_i91ge UK007L 2024-04-20T12:03:51.250Z 2024-04-26T12:16:56.278Z

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