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

20 rows where meteor_unique_trajectory_identifier = "20230821000534_6sZAk" 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
2866397 2866397 20230821000534_6sZAk NL000M 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866398 2866398 20230821000534_6sZAk UK000J 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866399 2866399 20230821000534_6sZAk UK0026 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866400 2866400 20230821000534_6sZAk UK0031 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866401 2866401 20230821000534_6sZAk UK0034 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866402 2866402 20230821000534_6sZAk UK0035 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866403 2866403 20230821000534_6sZAk UK003X 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866404 2866404 20230821000534_6sZAk UK0041 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866405 2866405 20230821000534_6sZAk UK0049 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866406 2866406 20230821000534_6sZAk UK004H 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866407 2866407 20230821000534_6sZAk UK004N 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866408 2866408 20230821000534_6sZAk UK004P 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866409 2866409 20230821000534_6sZAk UK005M 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866410 2866410 20230821000534_6sZAk UK0062 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866411 2866411 20230821000534_6sZAk UK007N 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866412 2866412 20230821000534_6sZAk UK008F 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866413 2866413 20230821000534_6sZAk UK0099 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866414 2866414 20230821000534_6sZAk UK009L 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866415 2866415 20230821000534_6sZAk UK00A4 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z
2866416 2866416 20230821000534_6sZAk UK00A9 2024-01-06T00:01:05.752Z 2024-01-06T00:01:05.752Z

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