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

17 rows where meteor_unique_trajectory_identifier = "20240729012550_zszV6" 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
4733529 4733529 20240729012550_zszV6 UK00A1 2024-08-01T12:03:52.120Z 2024-08-06T12:14:47.014Z
4733530 4733530 20240729012550_zszV6 UK00AP 2024-08-01T12:03:52.120Z 2024-08-06T12:14:47.014Z
4733531 4733531 20240729012550_zszV6 UK00AU 2024-08-01T12:03:52.120Z 2024-08-06T12:14:47.014Z
4733532 4733532 20240729012550_zszV6 UK00BB 2024-08-01T12:03:52.120Z 2024-08-06T12:14:47.014Z
4733533 4733533 20240729012550_zszV6 UK00BW 2024-08-01T12:03:52.120Z 2024-08-06T12:14:47.014Z
4733517 4733517 20240729012550_zszV6 UK0009 2024-08-01T12:03:52.119Z 2024-08-06T12:14:47.014Z
4733518 4733518 20240729012550_zszV6 UK000D 2024-08-01T12:03:52.119Z 2024-08-06T12:14:47.014Z
4733519 4733519 20240729012550_zszV6 UK001K 2024-08-01T12:03:52.119Z 2024-08-06T12:14:47.014Z
4733520 4733520 20240729012550_zszV6 UK0024 2024-08-01T12:03:52.119Z 2024-08-06T12:14:47.014Z
4733521 4733521 20240729012550_zszV6 UK002H 2024-08-01T12:03:52.119Z 2024-08-06T12:14:47.014Z
4733522 4733522 20240729012550_zszV6 UK004R 2024-08-01T12:03:52.119Z 2024-08-06T12:14:47.014Z
4733523 4733523 20240729012550_zszV6 UK005S 2024-08-01T12:03:52.119Z 2024-08-06T12:14:47.014Z
4733524 4733524 20240729012550_zszV6 UK0060 2024-08-01T12:03:52.119Z 2024-08-06T12:14:47.014Z
4733525 4733525 20240729012550_zszV6 UK007Q 2024-08-01T12:03:52.119Z 2024-08-06T12:14:47.014Z
4733526 4733526 20240729012550_zszV6 UK008B 2024-08-01T12:03:52.119Z 2024-08-06T12:14:47.014Z
4733527 4733527 20240729012550_zszV6 UK008E 2024-08-01T12:03:52.119Z 2024-08-06T12:14:47.014Z
4733528 4733528 20240729012550_zszV6 UK009W 2024-08-01T12:03:52.119Z 2024-08-06T12:14:47.014Z

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