participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240331043712_zCSeS" 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 |
---|---|---|---|---|---|
4130411 | 4130411 | 20240331043712_zCSeS | UK001L | 2024-04-01T12:08:08.169Z | 2024-04-08T12:18:52.296Z |
4130412 | 4130412 | 20240331043712_zCSeS | UK0027 | 2024-04-01T12:08:08.169Z | 2024-04-08T12:18:52.296Z |
4130413 | 4130413 | 20240331043712_zCSeS | UK002H | 2024-04-01T12:08:08.169Z | 2024-04-08T12:18:52.296Z |
4130414 | 4130414 | 20240331043712_zCSeS | UK0030 | 2024-04-01T12:08:08.169Z | 2024-04-08T12:18:52.296Z |
4130415 | 4130415 | 20240331043712_zCSeS | UK003X | 2024-04-01T12:08:08.169Z | 2024-04-08T12:18:52.296Z |
4130416 | 4130416 | 20240331043712_zCSeS | UK006L | 2024-04-01T12:08:08.169Z | 2024-04-08T12:18:52.296Z |
4130417 | 4130417 | 20240331043712_zCSeS | UK0098 | 2024-04-01T12:08:08.169Z | 2024-04-08T12:18:52.296Z |
4130418 | 4130418 | 20240331043712_zCSeS | UK0099 | 2024-04-01T12:08:08.169Z | 2024-04-08T12:18:52.296Z |
4130419 | 4130419 | 20240331043712_zCSeS | UK009G | 2024-04-01T12:08:08.169Z | 2024-04-08T12:18:52.296Z |
4130420 | 4130420 | 20240331043712_zCSeS | UK009P | 2024-04-01T12:08:08.169Z | 2024-04-08T12:18:52.296Z |
4130421 | 4130421 | 20240331043712_zCSeS | UK00AE | 2024-04-01T12:08:08.169Z | 2024-04-08T12:18:52.296Z |
4130422 | 4130422 | 20240331043712_zCSeS | UK00BA | 2024-04-01T12:08:08.169Z | 2024-04-08T12:18:52.296Z |
4130423 | 4130423 | 20240331043712_zCSeS | UK00C1 | 2024-04-01T12:08:08.169Z | 2024-04-08T12:18:52.296Z |
4130424 | 4130424 | 20240331043712_zCSeS | UK00C2 | 2024-04-01T12:08:08.169Z | 2024-04-08T12:18:52.296Z |
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);