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 = "20240304050613_32tcz" 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
4027194 4027194 20240304050613_32tcz UK00C1 2024-03-05T14:09:00.658Z 2024-03-12T12:15:35.130Z
4027177 4027177 20240304050613_32tcz UK0006 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.129Z
4027178 4027178 20240304050613_32tcz UK0026 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.129Z
4027179 4027179 20240304050613_32tcz UK002H 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.129Z
4027180 4027180 20240304050613_32tcz UK003L 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.129Z
4027181 4027181 20240304050613_32tcz UK004G 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.129Z
4027182 4027182 20240304050613_32tcz UK005S 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.129Z
4027183 4027183 20240304050613_32tcz UK005V 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.129Z
4027184 4027184 20240304050613_32tcz UK0067 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.129Z
4027185 4027185 20240304050613_32tcz UK007L 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.129Z
4027186 4027186 20240304050613_32tcz UK007P 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.129Z
4027187 4027187 20240304050613_32tcz UK008W 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.129Z
4027188 4027188 20240304050613_32tcz UK009G 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.129Z
4027189 4027189 20240304050613_32tcz UK009T 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.129Z
4027190 4027190 20240304050613_32tcz UK009W 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.129Z
4027191 4027191 20240304050613_32tcz UK00B0 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.130Z
4027192 4027192 20240304050613_32tcz UK00B2 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.130Z
4027193 4027193 20240304050613_32tcz UK00B6 2024-03-05T14:09:00.657Z 2024-03-12T12:15:35.130Z

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