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

22 rows where meteor_unique_trajectory_identifier = "20240303224527_ANAXH" sorted by created_at descending

✎ View and edit SQL

This data as json, copyable, CSV (advanced)

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

Link rowid meteor_unique_trajectory_identifier station_code created_at ▲ updated_at
4023336 4023336 20240303224527_ANAXH UK000Y 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023337 4023337 20240303224527_ANAXH UK001L 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023338 4023338 20240303224527_ANAXH UK001Z 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023339 4023339 20240303224527_ANAXH UK0026 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023340 4023340 20240303224527_ANAXH UK002H 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023341 4023341 20240303224527_ANAXH UK0030 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023342 4023342 20240303224527_ANAXH UK0032 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023343 4023343 20240303224527_ANAXH UK003F 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023344 4023344 20240303224527_ANAXH UK003X 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023345 4023345 20240303224527_ANAXH UK004D 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023346 4023346 20240303224527_ANAXH UK004N 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023347 4023347 20240303224527_ANAXH UK005V 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023348 4023348 20240303224527_ANAXH UK006L 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023349 4023349 20240303224527_ANAXH UK0072 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023350 4023350 20240303224527_ANAXH UK007M 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023351 4023351 20240303224527_ANAXH UK007P 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023352 4023352 20240303224527_ANAXH UK0098 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023353 4023353 20240303224527_ANAXH UK009T 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023354 4023354 20240303224527_ANAXH UK00AE 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023355 4023355 20240303224527_ANAXH UK00AT 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023356 4023356 20240303224527_ANAXH UK00B0 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z
4023357 4023357 20240303224527_ANAXH UK00BA 2024-03-05T14:04:03.446Z 2024-03-12T12:15:17.449Z

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