participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
9 rows where station_code = "BR0019" 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 |
---|---|---|---|---|---|
3965702 | 3965702 | 20240214021021_Y0CwQ | BR0019 | 2024-02-15T14:07:21.638Z | 2024-02-22T14:23:56.881Z |
3684094 | 3684094 | 20231218062035_gjC9B | BR0019 | 2024-01-06T00:05:38.535Z | 2024-01-06T00:05:38.535Z |
2622439 | 2622439 | 20230717055053_x2vJJ | BR0019 | 2024-01-05T23:59:36.257Z | 2024-01-05T23:59:36.257Z |
2605296 | 2605296 | 20230713032435_GHf8C | BR0019 | 2024-01-05T23:59:28.946Z | 2024-01-05T23:59:28.946Z |
2593755 | 2593755 | 20230709063353_yqpug | BR0019 | 2024-01-05T23:59:22.684Z | 2024-01-05T23:59:22.684Z |
2568643 | 2568643 | 20230627073736_0CdUV | BR0019 | 2024-01-05T23:59:05.611Z | 2024-01-05T23:59:05.611Z |
2464983 | 2464983 | 20230517080109_2V73Y | BR0019 | 2024-01-05T23:57:47.894Z | 2024-01-05T23:57:47.894Z |
2464946 | 2464946 | 20230517070336_2w03V | BR0019 | 2024-01-05T23:57:47.884Z | 2024-01-05T23:57:47.884Z |
2464899 | 2464899 | 20230517055333_2ifAM | BR0019 | 2024-01-05T23:57:47.873Z | 2024-01-05T23:57:47.873Z |
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);