participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240119061849_cdsGm" sorted by created_at descending
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 |
---|---|---|---|---|---|
3867609 | 3867609 | 20240119061849_cdsGm | UK0001 | 2024-01-22T14:07:40.645Z | 2024-01-27T14:20:24.928Z |
3867610 | 3867610 | 20240119061849_cdsGm | UK000F | 2024-01-22T14:07:40.645Z | 2024-01-27T14:20:24.928Z |
3867611 | 3867611 | 20240119061849_cdsGm | UK0039 | 2024-01-22T14:07:40.645Z | 2024-01-27T14:20:24.928Z |
3867612 | 3867612 | 20240119061849_cdsGm | UK003M | 2024-01-22T14:07:40.645Z | 2024-01-27T14:20:24.928Z |
3867613 | 3867613 | 20240119061849_cdsGm | UK005N | 2024-01-22T14:07:40.645Z | 2024-01-27T14:20:24.928Z |
3867614 | 3867614 | 20240119061849_cdsGm | UK0078 | 2024-01-22T14:07:40.645Z | 2024-01-27T14:20:24.928Z |
3867615 | 3867615 | 20240119061849_cdsGm | UK007R | 2024-01-22T14:07:40.645Z | 2024-01-27T14:20:24.928Z |
3867616 | 3867616 | 20240119061849_cdsGm | UK0084 | 2024-01-22T14:07:40.645Z | 2024-01-27T14:20:24.928Z |
3867617 | 3867617 | 20240119061849_cdsGm | UK009A | 2024-01-22T14:07:40.645Z | 2024-01-27T14:20:24.928Z |
3867618 | 3867618 | 20240119061849_cdsGm | UK009V | 2024-01-22T14:07:40.645Z | 2024-01-27T14:20:24.928Z |
3867619 | 3867619 | 20240119061849_cdsGm | UK00A5 | 2024-01-22T14:07:40.645Z | 2024-01-27T14:20:24.928Z |
3867620 | 3867620 | 20240119061849_cdsGm | UK00B1 | 2024-01-22T14:07:40.645Z | 2024-01-27T14:20:24.928Z |
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);