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

21 rows where meteor_unique_trajectory_identifier = "20240728222836_PCsC6" sorted by created_at descending

✎ View and edit SQL

This data as json, copyable, CSV (advanced)

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

Link rowid meteor_unique_trajectory_identifier station_code created_at ▲ updated_at
4728758 4728758 20240728222836_PCsC6 UK000S 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.406Z
4728759 4728759 20240728222836_PCsC6 UK001Z 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.406Z
4728760 4728760 20240728222836_PCsC6 UK0026 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.406Z
4728761 4728761 20240728222836_PCsC6 UK0027 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.406Z
4728762 4728762 20240728222836_PCsC6 UK002H 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.406Z
4728763 4728763 20240728222836_PCsC6 UK0030 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.406Z
4728764 4728764 20240728222836_PCsC6 UK0031 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.406Z
4728765 4728765 20240728222836_PCsC6 UK003L 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.406Z
4728766 4728766 20240728222836_PCsC6 UK004D 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.406Z
4728767 4728767 20240728222836_PCsC6 UK0050 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.406Z
4728768 4728768 20240728222836_PCsC6 UK0070 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.406Z
4728769 4728769 20240728222836_PCsC6 UK007P 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.406Z
4728770 4728770 20240728222836_PCsC6 UK009D 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.406Z
4728771 4728771 20240728222836_PCsC6 UK009G 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.407Z
4728772 4728772 20240728222836_PCsC6 UK009K 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.407Z
4728773 4728773 20240728222836_PCsC6 UK009P 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.407Z
4728774 4728774 20240728222836_PCsC6 UK009S 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.407Z
4728775 4728775 20240728222836_PCsC6 UK00B0 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.407Z
4728776 4728776 20240728222836_PCsC6 UK00B2 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.407Z
4728777 4728777 20240728222836_PCsC6 UK00BA 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.407Z
4728778 4728778 20240728222836_PCsC6 UK00BL 2024-07-31T12:13:33.938Z 2024-08-05T12:20:30.407Z

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