participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where station_code = "AU001T" 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 |
---|---|---|---|---|---|
5458088 | 5458088 | 20241102163931_lZ19n | AU001T | 2024-11-03T14:08:48.185Z | 2024-11-11T14:22:39.619Z |
5458086 | 5458086 | 20241102163929_YpWD3 | AU001T | 2024-11-03T14:08:47.821Z | 2024-11-11T14:22:39.461Z |
5458082 | 5458082 | 20241102161538_nA1bT | AU001T | 2024-11-03T14:08:46.453Z | 2024-11-11T14:22:38.833Z |
5450116 | 5450116 | 20241031175613_qD3Cn | AU001T | 2024-11-02T12:14:36.477Z | 2024-11-09T14:24:13.668Z |
5371557 | 5371557 | 20241024150310_WFiOm | AU001T | 2024-10-26T12:12:10.783Z | 2024-11-02T12:28:22.385Z |
3529960 | 3529960 | 20231206165000_uSXXh | AU001T | 2024-01-06T00:05:01.968Z | 2024-01-06T00:05:01.968Z |
3517745 | 3517745 | 20231205170757_hXuLA | AU001T | 2024-01-06T00:04:59.501Z | 2024-01-06T00:04:59.501Z |
3383511 | 3383511 | 20231113115816_2Plla | AU001T | 2024-01-06T00:04:18.055Z | 2024-01-06T00:04:18.055Z |
3359789 | 3359789 | 20231110122805_kWlNe | AU001T | 2024-01-06T00:04:13.082Z | 2024-01-06T00:04:13.082Z |
3316526 | 3316526 | 20231105153617_733Ne | AU001T | 2024-01-06T00:03:53.528Z | 2024-01-06T00:03:53.528Z |
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);