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

29 rows where meteor_unique_trajectory_identifier = "20240118054812_gjguX" 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
3856601 3856601 20240118054812_gjguX UK0052 2024-01-21T14:09:30.498Z 2024-01-26T14:21:25.696Z
3856602 3856602 20240118054812_gjguX UK005M 2024-01-21T14:09:30.498Z 2024-01-26T14:21:25.696Z
3856603 3856603 20240118054812_gjguX UK005U 2024-01-21T14:09:30.498Z 2024-01-26T14:21:25.696Z
3856604 3856604 20240118054812_gjguX UK0062 2024-01-21T14:09:30.498Z 2024-01-26T14:21:25.696Z
3856605 3856605 20240118054812_gjguX UK006D 2024-01-21T14:09:30.498Z 2024-01-26T14:21:25.696Z
3856606 3856606 20240118054812_gjguX UK007B 2024-01-21T14:09:30.498Z 2024-01-26T14:21:25.696Z
3856607 3856607 20240118054812_gjguX UK007E 2024-01-21T14:09:30.498Z 2024-01-26T14:21:25.697Z
3856608 3856608 20240118054812_gjguX UK007R 2024-01-21T14:09:30.498Z 2024-01-26T14:21:25.697Z
3856609 3856609 20240118054812_gjguX UK007V 2024-01-21T14:09:30.498Z 2024-01-26T14:21:25.697Z
3856610 3856610 20240118054812_gjguX UK0089 2024-01-21T14:09:30.498Z 2024-01-26T14:21:25.697Z
3856611 3856611 20240118054812_gjguX UK008K 2024-01-21T14:09:30.498Z 2024-01-26T14:21:25.697Z
3856612 3856612 20240118054812_gjguX UK008Q 2024-01-21T14:09:30.498Z 2024-01-26T14:21:25.697Z
3856613 3856613 20240118054812_gjguX UK009A 2024-01-21T14:09:30.498Z 2024-01-26T14:21:25.697Z
3856614 3856614 20240118054812_gjguX UK009L 2024-01-21T14:09:30.498Z 2024-01-26T14:21:25.697Z
3856615 3856615 20240118054812_gjguX UK009S 2024-01-21T14:09:30.498Z 2024-01-26T14:21:25.697Z
3856616 3856616 20240118054812_gjguX UK00B1 2024-01-21T14:09:30.498Z 2024-01-26T14:21:25.697Z
3856588 3856588 20240118054812_gjguX NL000M 2024-01-21T14:09:30.497Z 2024-01-26T14:21:25.696Z
3856589 3856589 20240118054812_gjguX UK000F 2024-01-21T14:09:30.497Z 2024-01-26T14:21:25.696Z
3856590 3856590 20240118054812_gjguX UK002F 2024-01-21T14:09:30.497Z 2024-01-26T14:21:25.696Z
3856591 3856591 20240118054812_gjguX UK002G 2024-01-21T14:09:30.497Z 2024-01-26T14:21:25.696Z
3856592 3856592 20240118054812_gjguX UK002H 2024-01-21T14:09:30.497Z 2024-01-26T14:21:25.696Z
3856593 3856593 20240118054812_gjguX UK002Q 2024-01-21T14:09:30.497Z 2024-01-26T14:21:25.696Z
3856594 3856594 20240118054812_gjguX UK0034 2024-01-21T14:09:30.497Z 2024-01-26T14:21:25.696Z
3856595 3856595 20240118054812_gjguX UK0035 2024-01-21T14:09:30.497Z 2024-01-26T14:21:25.696Z
3856596 3856596 20240118054812_gjguX UK003A 2024-01-21T14:09:30.497Z 2024-01-26T14:21:25.696Z
3856597 3856597 20240118054812_gjguX UK003C 2024-01-21T14:09:30.497Z 2024-01-26T14:21:25.696Z
3856598 3856598 20240118054812_gjguX UK0041 2024-01-21T14:09:30.497Z 2024-01-26T14:21:25.696Z
3856599 3856599 20240118054812_gjguX UK0049 2024-01-21T14:09:30.497Z 2024-01-26T14:21:25.696Z
3856600 3856600 20240118054812_gjguX UK004H 2024-01-21T14:09:30.497Z 2024-01-26T14:21:25.696Z

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