participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
19 rows where meteor_unique_trajectory_identifier = "20240131000404_Y1YrA" sorted by created_at descending
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 |
---|---|---|---|---|---|
3901347 | 3901347 | 20240131000404_Y1YrA | UK0042 | 2024-02-01T14:03:04.808Z | 2024-02-08T14:20:11.803Z |
3901348 | 3901348 | 20240131000404_Y1YrA | UK0050 | 2024-02-01T14:03:04.808Z | 2024-02-08T14:20:11.803Z |
3901349 | 3901349 | 20240131000404_Y1YrA | UK005H | 2024-02-01T14:03:04.808Z | 2024-02-08T14:20:11.803Z |
3901350 | 3901350 | 20240131000404_Y1YrA | UK006A | 2024-02-01T14:03:04.808Z | 2024-02-08T14:20:11.803Z |
3901351 | 3901351 | 20240131000404_Y1YrA | UK0072 | 2024-02-01T14:03:04.808Z | 2024-02-08T14:20:11.803Z |
3901352 | 3901352 | 20240131000404_Y1YrA | UK007M | 2024-02-01T14:03:04.808Z | 2024-02-08T14:20:11.803Z |
3901353 | 3901353 | 20240131000404_Y1YrA | UK0083 | 2024-02-01T14:03:04.808Z | 2024-02-08T14:20:11.803Z |
3901354 | 3901354 | 20240131000404_Y1YrA | UK0090 | 2024-02-01T14:03:04.808Z | 2024-02-08T14:20:11.803Z |
3901355 | 3901355 | 20240131000404_Y1YrA | UK0098 | 2024-02-01T14:03:04.808Z | 2024-02-08T14:20:11.803Z |
3901356 | 3901356 | 20240131000404_Y1YrA | UK009P | 2024-02-01T14:03:04.808Z | 2024-02-08T14:20:11.803Z |
3901357 | 3901357 | 20240131000404_Y1YrA | UK00AM | 2024-02-01T14:03:04.808Z | 2024-02-08T14:20:11.803Z |
3901358 | 3901358 | 20240131000404_Y1YrA | UK00BF | 2024-02-01T14:03:04.808Z | 2024-02-08T14:20:11.803Z |
3901343 | 3901343 | 20240131000404_Y1YrA | UK0032 | 2024-02-01T14:03:04.789Z | 2024-02-08T14:20:11.803Z |
3901344 | 3901344 | 20240131000404_Y1YrA | UK003B | 2024-02-01T14:03:04.789Z | 2024-02-08T14:20:11.803Z |
3901345 | 3901345 | 20240131000404_Y1YrA | UK003U | 2024-02-01T14:03:04.789Z | 2024-02-08T14:20:11.803Z |
3901346 | 3901346 | 20240131000404_Y1YrA | UK003X | 2024-02-01T14:03:04.789Z | 2024-02-08T14:20:11.803Z |
3901340 | 3901340 | 20240131000404_Y1YrA | UK001N | 2024-02-01T14:03:04.788Z | 2024-02-08T14:20:11.803Z |
3901341 | 3901341 | 20240131000404_Y1YrA | UK002U | 2024-02-01T14:03:04.788Z | 2024-02-08T14:20:11.803Z |
3901342 | 3901342 | 20240131000404_Y1YrA | UK002Z | 2024-02-01T14:03:04.788Z | 2024-02-08T14:20:11.803Z |
Advanced export
JSON shape: default, array, newline-delimited
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);