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

18 rows where meteor_unique_trajectory_identifier = "20220810225311_JZB7g" 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
1527218 1527218 20220810225311_JZB7g UK0001 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527219 1527219 20220810225311_JZB7g UK001P 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527220 1527220 20220810225311_JZB7g UK0025 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527221 1527221 20220810225311_JZB7g UK002W 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527222 1527222 20220810225311_JZB7g UK0035 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527223 1527223 20220810225311_JZB7g UK003D 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527224 1527224 20220810225311_JZB7g UK003M 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527225 1527225 20220810225311_JZB7g UK003N 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527226 1527226 20220810225311_JZB7g UK0049 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527227 1527227 20220810225311_JZB7g UK004F 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527228 1527228 20220810225311_JZB7g UK004X 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527229 1527229 20220810225311_JZB7g UK005N 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527230 1527230 20220810225311_JZB7g UK005S 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527231 1527231 20220810225311_JZB7g UK0062 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527232 1527232 20220810225311_JZB7g UK006B 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527233 1527233 20220810225311_JZB7g UK007B 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527234 1527234 20220810225311_JZB7g UK007H 2024-01-05T23:48:57.864Z 2024-01-05T23:48:57.864Z
1527217 1527217 20220810225311_JZB7g BE000H 2024-01-05T23:48:57.863Z 2024-01-05T23:48:57.863Z

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