participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
22 rows where meteor_unique_trajectory_identifier = "20240811014352_jLlMF" 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 |
---|---|---|---|---|---|
4948987 | 4948987 | 20240811014352_jLlMF | BE0008 | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4948988 | 4948988 | 20240811014352_jLlMF | BE000A | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4948989 | 4948989 | 20240811014352_jLlMF | BE000B | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4948990 | 4948990 | 20240811014352_jLlMF | DE0005 | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4948991 | 4948991 | 20240811014352_jLlMF | FR000F | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4948992 | 4948992 | 20240811014352_jLlMF | FR000Z | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4948993 | 4948993 | 20240811014352_jLlMF | NL000M | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4948994 | 4948994 | 20240811014352_jLlMF | UK000F | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4948995 | 4948995 | 20240811014352_jLlMF | UK002Y | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4948996 | 4948996 | 20240811014352_jLlMF | UK0034 | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4948997 | 4948997 | 20240811014352_jLlMF | UK003W | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4948998 | 4948998 | 20240811014352_jLlMF | UK004C | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4948999 | 4948999 | 20240811014352_jLlMF | UK005G | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4949000 | 4949000 | 20240811014352_jLlMF | UK0062 | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4949001 | 4949001 | 20240811014352_jLlMF | UK006B | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4949002 | 4949002 | 20240811014352_jLlMF | UK006G | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4949003 | 4949003 | 20240811014352_jLlMF | UK006U | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4949004 | 4949004 | 20240811014352_jLlMF | UK0086 | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4949005 | 4949005 | 20240811014352_jLlMF | UK00AN | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4949006 | 4949006 | 20240811014352_jLlMF | UK00BC | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4949007 | 4949007 | 20240811014352_jLlMF | UK00BJ | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
4949008 | 4949008 | 20240811014352_jLlMF | UK00CA | 2024-09-02T12:15:28.127Z | 2024-09-06T12:27:28.768Z |
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);