participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
22 rows where meteor_unique_trajectory_identifier = "20240810221925_JpysN" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4938389 | 4938389 | 20240810221925_JpysN | BE0005 | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.466Z |
4938390 | 4938390 | 20240810221925_JpysN | BE000C | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.466Z |
4938391 | 4938391 | 20240810221925_JpysN | BE000G | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.466Z |
4938392 | 4938392 | 20240810221925_JpysN | BE000J | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.466Z |
4938393 | 4938393 | 20240810221925_JpysN | BE000P | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.466Z |
4938394 | 4938394 | 20240810221925_JpysN | BE000T | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.466Z |
4938395 | 4938395 | 20240810221925_JpysN | DE0005 | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.466Z |
4938396 | 4938396 | 20240810221925_JpysN | NL000M | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.466Z |
4938397 | 4938397 | 20240810221925_JpysN | UK000F | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.466Z |
4938398 | 4938398 | 20240810221925_JpysN | UK002Y | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.466Z |
4938399 | 4938399 | 20240810221925_JpysN | UK0045 | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.467Z |
4938400 | 4938400 | 20240810221925_JpysN | UK004C | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.467Z |
4938401 | 4938401 | 20240810221925_JpysN | UK004E | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.467Z |
4938402 | 4938402 | 20240810221925_JpysN | UK006B | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.467Z |
4938403 | 4938403 | 20240810221925_JpysN | UK006U | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.467Z |
4938404 | 4938404 | 20240810221925_JpysN | UK007U | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.467Z |
4938405 | 4938405 | 20240810221925_JpysN | UK009X | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.467Z |
4938406 | 4938406 | 20240810221925_JpysN | UK00AF | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.467Z |
4938407 | 4938407 | 20240810221925_JpysN | UK00AN | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.467Z |
4938408 | 4938408 | 20240810221925_JpysN | UK00BC | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.467Z |
4938409 | 4938409 | 20240810221925_JpysN | UK00BJ | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.467Z |
4938410 | 4938410 | 20240810221925_JpysN | UK00CA | 2024-09-01T12:09:05.995Z | 2024-09-06T12:22:51.467Z |
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);