participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240628225212_ATBZq" sorted by created_at descending
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 |
---|---|---|---|---|---|
4520096 | 4520096 | 20240628225212_ATBZq | UK007N | 2024-06-30T12:03:42.897Z | 2024-07-07T12:13:46.773Z |
4520097 | 4520097 | 20240628225212_ATBZq | UK0099 | 2024-06-30T12:03:42.897Z | 2024-07-07T12:13:46.773Z |
4520098 | 4520098 | 20240628225212_ATBZq | UK009A | 2024-06-30T12:03:42.897Z | 2024-07-07T12:13:46.773Z |
4520099 | 4520099 | 20240628225212_ATBZq | UK00A4 | 2024-06-30T12:03:42.897Z | 2024-07-07T12:13:46.773Z |
4520100 | 4520100 | 20240628225212_ATBZq | UK00CA | 2024-06-30T12:03:42.897Z | 2024-07-07T12:13:46.773Z |
4520092 | 4520092 | 20240628225212_ATBZq | UK003X | 2024-06-30T12:03:42.872Z | 2024-07-07T12:13:46.773Z |
4520093 | 4520093 | 20240628225212_ATBZq | UK005E | 2024-06-30T12:03:42.872Z | 2024-07-07T12:13:46.773Z |
4520094 | 4520094 | 20240628225212_ATBZq | UK0062 | 2024-06-30T12:03:42.872Z | 2024-07-07T12:13:46.773Z |
4520095 | 4520095 | 20240628225212_ATBZq | UK006D | 2024-06-30T12:03:42.872Z | 2024-07-07T12:13:46.773Z |
4520087 | 4520087 | 20240628225212_ATBZq | NL000M | 2024-06-30T12:03:42.844Z | 2024-07-07T12:13:46.772Z |
4520088 | 4520088 | 20240628225212_ATBZq | UK002F | 2024-06-30T12:03:42.844Z | 2024-07-07T12:13:46.772Z |
4520089 | 4520089 | 20240628225212_ATBZq | UK0031 | 2024-06-30T12:03:42.844Z | 2024-07-07T12:13:46.772Z |
4520090 | 4520090 | 20240628225212_ATBZq | UK003A | 2024-06-30T12:03:42.844Z | 2024-07-07T12:13:46.772Z |
4520091 | 4520091 | 20240628225212_ATBZq | UK003W | 2024-06-30T12:03:42.844Z | 2024-07-07T12:13:46.773Z |
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);