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

21 rows where meteor_unique_trajectory_identifier = "20221006035726_5zFDu" sorted by created_at descending

✎ View and edit SQL

This data as json, copyable, CSV (advanced)

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

Link rowid meteor_unique_trajectory_identifier station_code created_at ▲ updated_at
1744622 1744622 20221006035726_5zFDu UK001P 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744623 1744623 20221006035726_5zFDu UK002G 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744624 1744624 20221006035726_5zFDu UK0034 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744625 1744625 20221006035726_5zFDu UK0035 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744626 1744626 20221006035726_5zFDu UK0038 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744627 1744627 20221006035726_5zFDu UK003D 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744628 1744628 20221006035726_5zFDu UK003M 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744629 1744629 20221006035726_5zFDu UK0049 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744630 1744630 20221006035726_5zFDu UK004X 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744631 1744631 20221006035726_5zFDu UK005N 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744632 1744632 20221006035726_5zFDu UK0062 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744633 1744633 20221006035726_5zFDu UK006B 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744634 1744634 20221006035726_5zFDu UK006S 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744635 1744635 20221006035726_5zFDu UK0070 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744636 1744636 20221006035726_5zFDu UK007B 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744637 1744637 20221006035726_5zFDu UK007E 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744638 1744638 20221006035726_5zFDu UK007H 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744639 1744639 20221006035726_5zFDu UK007V 2024-01-05T23:50:49.425Z 2024-01-05T23:50:49.425Z
1744619 1744619 20221006035726_5zFDu UK0001 2024-01-05T23:50:49.424Z 2024-01-05T23:50:49.424Z
1744620 1744620 20221006035726_5zFDu UK0002 2024-01-05T23:50:49.424Z 2024-01-05T23:50:49.424Z
1744621 1744621 20221006035726_5zFDu UK000F 2024-01-05T23:50:49.424Z 2024-01-05T23:50:49.424Z

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