participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240428102453_mJZwn" 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 |
---|---|---|---|---|---|
4248451 | 4248451 | 20240428102453_mJZwn | NZ0022 | 2024-04-30T12:01:59.565Z | 2024-05-07T12:18:16.714Z |
4248452 | 4248452 | 20240428102453_mJZwn | NZ002D | 2024-04-30T12:01:59.565Z | 2024-05-07T12:18:16.714Z |
4248453 | 4248453 | 20240428102453_mJZwn | NZ002P | 2024-04-30T12:01:59.565Z | 2024-05-07T12:18:16.714Z |
4248454 | 4248454 | 20240428102453_mJZwn | NZ002W | 2024-04-30T12:01:59.565Z | 2024-05-07T12:18:16.714Z |
4248455 | 4248455 | 20240428102453_mJZwn | NZ002X | 2024-04-30T12:01:59.565Z | 2024-05-07T12:18:16.714Z |
4248456 | 4248456 | 20240428102453_mJZwn | NZ0030 | 2024-04-30T12:01:59.565Z | 2024-05-07T12:18:16.714Z |
4248457 | 4248457 | 20240428102453_mJZwn | NZ0038 | 2024-04-30T12:01:59.565Z | 2024-05-07T12:18:16.714Z |
4248458 | 4248458 | 20240428102453_mJZwn | NZ003C | 2024-04-30T12:01:59.565Z | 2024-05-07T12:18:16.714Z |
4248459 | 4248459 | 20240428102453_mJZwn | NZ003S | 2024-04-30T12:01:59.565Z | 2024-05-07T12:18:16.714Z |
4248447 | 4248447 | 20240428102453_mJZwn | NZ0004 | 2024-04-30T12:01:59.547Z | 2024-05-07T12:18:16.714Z |
4248448 | 4248448 | 20240428102453_mJZwn | NZ000X | 2024-04-30T12:01:59.547Z | 2024-05-07T12:18:16.714Z |
4248449 | 4248449 | 20240428102453_mJZwn | NZ001K | 2024-04-30T12:01:59.547Z | 2024-05-07T12:18:16.714Z |
4248450 | 4248450 | 20240428102453_mJZwn | NZ001Q | 2024-04-30T12:01:59.547Z | 2024-05-07T12:18:16.714Z |
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);