participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
22 rows where meteor_unique_trajectory_identifier = "20240118060054_PyJXU" 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 |
---|---|---|---|---|---|
3856815 | 3856815 | 20240118060054_PyJXU | UK006A | 2024-01-21T14:10:00.704Z | 2024-01-26T14:21:28.480Z |
3856816 | 3856816 | 20240118060054_PyJXU | UK006C | 2024-01-21T14:10:00.704Z | 2024-01-26T14:21:28.480Z |
3856817 | 3856817 | 20240118060054_PyJXU | UK006E | 2024-01-21T14:10:00.704Z | 2024-01-26T14:21:28.480Z |
3856818 | 3856818 | 20240118060054_PyJXU | UK006T | 2024-01-21T14:10:00.704Z | 2024-01-26T14:21:28.480Z |
3856819 | 3856819 | 20240118060054_PyJXU | UK006Z | 2024-01-21T14:10:00.704Z | 2024-01-26T14:21:28.480Z |
3856820 | 3856820 | 20240118060054_PyJXU | UK0074 | 2024-01-21T14:10:00.704Z | 2024-01-26T14:21:28.480Z |
3856821 | 3856821 | 20240118060054_PyJXU | UK007N | 2024-01-21T14:10:00.704Z | 2024-01-26T14:21:28.480Z |
3856822 | 3856822 | 20240118060054_PyJXU | UK0087 | 2024-01-21T14:10:00.704Z | 2024-01-26T14:21:28.480Z |
3856823 | 3856823 | 20240118060054_PyJXU | UK0088 | 2024-01-21T14:10:00.704Z | 2024-01-26T14:21:28.481Z |
3856824 | 3856824 | 20240118060054_PyJXU | UK008G | 2024-01-21T14:10:00.704Z | 2024-01-26T14:21:28.481Z |
3856825 | 3856825 | 20240118060054_PyJXU | UK0099 | 2024-01-21T14:10:00.704Z | 2024-01-26T14:21:28.481Z |
3856826 | 3856826 | 20240118060054_PyJXU | UK00AM | 2024-01-21T14:10:00.704Z | 2024-01-26T14:21:28.481Z |
3856805 | 3856805 | 20240118060054_PyJXU | UK000Z | 2024-01-21T14:10:00.703Z | 2024-01-26T14:21:28.480Z |
3856806 | 3856806 | 20240118060054_PyJXU | UK001N | 2024-01-21T14:10:00.703Z | 2024-01-26T14:21:28.480Z |
3856807 | 3856807 | 20240118060054_PyJXU | UK001T | 2024-01-21T14:10:00.703Z | 2024-01-26T14:21:28.480Z |
3856808 | 3856808 | 20240118060054_PyJXU | UK002X | 2024-01-21T14:10:00.703Z | 2024-01-26T14:21:28.480Z |
3856809 | 3856809 | 20240118060054_PyJXU | UK003B | 2024-01-21T14:10:00.703Z | 2024-01-26T14:21:28.480Z |
3856810 | 3856810 | 20240118060054_PyJXU | UK003T | 2024-01-21T14:10:00.703Z | 2024-01-26T14:21:28.480Z |
3856811 | 3856811 | 20240118060054_PyJXU | UK003X | 2024-01-21T14:10:00.703Z | 2024-01-26T14:21:28.480Z |
3856812 | 3856812 | 20240118060054_PyJXU | UK004V | 2024-01-21T14:10:00.703Z | 2024-01-26T14:21:28.480Z |
3856813 | 3856813 | 20240118060054_PyJXU | UK005H | 2024-01-21T14:10:00.703Z | 2024-01-26T14:21:28.480Z |
3856814 | 3856814 | 20240118060054_PyJXU | UK005R | 2024-01-21T14:10:00.703Z | 2024-01-26T14:21:28.480Z |
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);