participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
18 rows where meteor_unique_trajectory_identifier = "20240413204406_aPcNQ" 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 |
---|---|---|---|---|---|
4184467 | 4184467 | 20240413204406_aPcNQ | UK00C1 | 2024-04-15T12:01:40.258Z | 2024-04-22T12:22:06.681Z |
4184466 | 4184466 | 20240413204406_aPcNQ | UK00BF | 2024-04-15T12:01:40.256Z | 2024-04-22T12:22:06.681Z |
4184462 | 4184462 | 20240413204406_aPcNQ | UK0098 | 2024-04-15T12:01:40.237Z | 2024-04-22T12:22:06.681Z |
4184463 | 4184463 | 20240413204406_aPcNQ | UK009D | 2024-04-15T12:01:40.237Z | 2024-04-22T12:22:06.681Z |
4184464 | 4184464 | 20240413204406_aPcNQ | UK009P | 2024-04-15T12:01:40.237Z | 2024-04-22T12:22:06.681Z |
4184465 | 4184465 | 20240413204406_aPcNQ | UK00AT | 2024-04-15T12:01:40.237Z | 2024-04-22T12:22:06.681Z |
4184461 | 4184461 | 20240413204406_aPcNQ | UK008J | 2024-04-15T12:01:40.224Z | 2024-04-22T12:22:06.681Z |
4184460 | 4184460 | 20240413204406_aPcNQ | UK0083 | 2024-04-15T12:01:40.223Z | 2024-04-22T12:22:06.681Z |
4184458 | 4184458 | 20240413204406_aPcNQ | UK006A | 2024-04-15T12:01:40.200Z | 2024-04-22T12:22:06.681Z |
4184459 | 4184459 | 20240413204406_aPcNQ | UK007M | 2024-04-15T12:01:40.200Z | 2024-04-22T12:22:06.681Z |
4184457 | 4184457 | 20240413204406_aPcNQ | UK005V | 2024-04-15T12:01:40.182Z | 2024-04-22T12:22:06.681Z |
4184456 | 4184456 | 20240413204406_aPcNQ | UK004N | 2024-04-15T12:01:40.157Z | 2024-04-22T12:22:06.681Z |
4184454 | 4184454 | 20240413204406_aPcNQ | UK003X | 2024-04-15T12:01:40.131Z | 2024-04-22T12:22:06.681Z |
4184455 | 4184455 | 20240413204406_aPcNQ | UK0042 | 2024-04-15T12:01:40.131Z | 2024-04-22T12:22:06.681Z |
4184453 | 4184453 | 20240413204406_aPcNQ | UK003U | 2024-04-15T12:01:40.123Z | 2024-04-22T12:22:06.681Z |
4184452 | 4184452 | 20240413204406_aPcNQ | UK002Z | 2024-04-15T12:01:40.106Z | 2024-04-22T12:22:06.681Z |
4184451 | 4184451 | 20240413204406_aPcNQ | UK001L | 2024-04-15T12:01:40.102Z | 2024-04-22T12:22:06.681Z |
4184450 | 4184450 | 20240413204406_aPcNQ | UK000Y | 2024-04-15T12:01:40.090Z | 2024-04-22T12:22:06.681Z |
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);