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

30 rows where meteor_unique_trajectory_identifier = "20240304004416_Vxuzj" 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
4024413 4024413 20240304004416_Vxuzj UK0099 2024-03-05T14:05:31.684Z 2024-03-12T12:15:22.218Z
4024414 4024414 20240304004416_Vxuzj UK00AA 2024-03-05T14:05:31.684Z 2024-03-12T12:15:22.218Z
4024415 4024415 20240304004416_Vxuzj UK00AE 2024-03-05T14:05:31.684Z 2024-03-12T12:15:22.218Z
4024416 4024416 20240304004416_Vxuzj UK00AL 2024-03-05T14:05:31.684Z 2024-03-12T12:15:22.218Z
4024417 4024417 20240304004416_Vxuzj UK00AM 2024-03-05T14:05:31.684Z 2024-03-12T12:15:22.218Z
4024418 4024418 20240304004416_Vxuzj UK00B0 2024-03-05T14:05:31.684Z 2024-03-12T12:15:22.218Z
4024419 4024419 20240304004416_Vxuzj UK00C2 2024-03-05T14:05:31.684Z 2024-03-12T12:15:22.218Z
4024390 4024390 20240304004416_Vxuzj UK000Z 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.217Z
4024391 4024391 20240304004416_Vxuzj UK001L 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.217Z
4024392 4024392 20240304004416_Vxuzj UK001T 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.217Z
4024393 4024393 20240304004416_Vxuzj UK002X 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024394 4024394 20240304004416_Vxuzj UK002Z 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024395 4024395 20240304004416_Vxuzj UK0032 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024396 4024396 20240304004416_Vxuzj UK003B 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024397 4024397 20240304004416_Vxuzj UK003T 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024398 4024398 20240304004416_Vxuzj UK003X 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024399 4024399 20240304004416_Vxuzj UK004B 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024400 4024400 20240304004416_Vxuzj UK004D 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024401 4024401 20240304004416_Vxuzj UK004V 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024402 4024402 20240304004416_Vxuzj UK005H 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024403 4024403 20240304004416_Vxuzj UK006A 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024404 4024404 20240304004416_Vxuzj UK006C 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024405 4024405 20240304004416_Vxuzj UK006T 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024406 4024406 20240304004416_Vxuzj UK006V 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024407 4024407 20240304004416_Vxuzj UK006Z 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024408 4024408 20240304004416_Vxuzj UK0075 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024409 4024409 20240304004416_Vxuzj UK007N 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024410 4024410 20240304004416_Vxuzj UK0087 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024411 4024411 20240304004416_Vxuzj UK0088 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z
4024412 4024412 20240304004416_Vxuzj UK008G 2024-03-05T14:05:31.683Z 2024-03-12T12:15:22.218Z

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