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 = "20240212000040_kv49T" sorted by created_at descending

✎ View and edit SQL

This data as json, copyable, CSV (advanced)

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

Link rowid meteor_unique_trajectory_identifier station_code created_at ▲ updated_at
3952172 3952172 20240212000040_kv49T UK006L 2024-02-13T14:06:03.102Z 2024-02-20T14:25:46.493Z
3952173 3952173 20240212000040_kv49T UK0070 2024-02-13T14:06:03.102Z 2024-02-20T14:25:46.493Z
3952174 3952174 20240212000040_kv49T UK0075 2024-02-13T14:06:03.102Z 2024-02-20T14:25:46.493Z
3952175 3952175 20240212000040_kv49T UK008F 2024-02-13T14:06:03.102Z 2024-02-20T14:25:46.493Z
3952176 3952176 20240212000040_kv49T UK008J 2024-02-13T14:06:03.102Z 2024-02-20T14:25:46.493Z
3952177 3952177 20240212000040_kv49T UK0098 2024-02-13T14:06:03.102Z 2024-02-20T14:25:46.493Z
3952178 3952178 20240212000040_kv49T UK00A0 2024-02-13T14:06:03.102Z 2024-02-20T14:25:46.493Z
3952179 3952179 20240212000040_kv49T UK00A4 2024-02-13T14:06:03.102Z 2024-02-20T14:25:46.493Z
3952180 3952180 20240212000040_kv49T UK00AG 2024-02-13T14:06:03.102Z 2024-02-20T14:25:46.493Z
3952181 3952181 20240212000040_kv49T UK00AL 2024-02-13T14:06:03.102Z 2024-02-20T14:25:46.493Z
3952182 3952182 20240212000040_kv49T UK00AT 2024-02-13T14:06:03.102Z 2024-02-20T14:25:46.493Z
3952183 3952183 20240212000040_kv49T UK00B1 2024-02-13T14:06:03.102Z 2024-02-20T14:25:46.493Z
3952184 3952184 20240212000040_kv49T UK00BF 2024-02-13T14:06:03.102Z 2024-02-20T14:25:46.493Z
3952165 3952165 20240212000040_kv49T UK000S 2024-02-13T14:06:03.085Z 2024-02-20T14:25:46.493Z
3952166 3952166 20240212000040_kv49T UK0026 2024-02-13T14:06:03.085Z 2024-02-20T14:25:46.493Z
3952167 3952167 20240212000040_kv49T UK0031 2024-02-13T14:06:03.085Z 2024-02-20T14:25:46.493Z
3952168 3952168 20240212000040_kv49T UK0035 2024-02-13T14:06:03.085Z 2024-02-20T14:25:46.493Z
3952169 3952169 20240212000040_kv49T UK004D 2024-02-13T14:06:03.085Z 2024-02-20T14:25:46.493Z
3952170 3952170 20240212000040_kv49T UK005M 2024-02-13T14:06:03.085Z 2024-02-20T14:25:46.493Z
3952171 3952171 20240212000040_kv49T UK005V 2024-02-13T14:06:03.085Z 2024-02-20T14:25:46.493Z

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