participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240602162329_p30kO" 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 |
---|---|---|---|---|---|
4404990 | 4404990 | 20240602162329_p30kO | KR002E | 2024-06-04T12:03:53.025Z | 2024-06-11T12:13:30.482Z |
4404991 | 4404991 | 20240602162329_p30kO | KR002J | 2024-06-04T12:03:53.025Z | 2024-06-11T12:13:30.482Z |
4404992 | 4404992 | 20240602162329_p30kO | KR002M | 2024-06-04T12:03:53.025Z | 2024-06-11T12:13:30.482Z |
4404993 | 4404993 | 20240602162329_p30kO | KR002U | 2024-06-04T12:03:53.025Z | 2024-06-11T12:13:30.482Z |
4404994 | 4404994 | 20240602162329_p30kO | KR0038 | 2024-06-04T12:03:53.025Z | 2024-06-11T12:13:30.482Z |
4404995 | 4404995 | 20240602162329_p30kO | KR003N | 2024-06-04T12:03:53.025Z | 2024-06-11T12:13:30.482Z |
4404996 | 4404996 | 20240602162329_p30kO | KR003U | 2024-06-04T12:03:53.025Z | 2024-06-11T12:13:30.482Z |
4404987 | 4404987 | 20240602162329_p30kO | KR000R | 2024-06-04T12:03:53.024Z | 2024-06-11T12:13:30.482Z |
4404988 | 4404988 | 20240602162329_p30kO | KR0014 | 2024-06-04T12:03:53.024Z | 2024-06-11T12:13:30.482Z |
4404989 | 4404989 | 20240602162329_p30kO | KR001Q | 2024-06-04T12:03:53.024Z | 2024-06-11T12:13:30.482Z |
4404985 | 4404985 | 20240602162329_p30kO | KR000G | 2024-06-04T12:03:53.016Z | 2024-06-11T12:13:30.482Z |
4404986 | 4404986 | 20240602162329_p30kO | KR000Q | 2024-06-04T12:03:53.016Z | 2024-06-11T12:13:30.482Z |
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);