participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
5 rows where station_code = "AU003D" 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 |
---|---|---|---|---|---|
4396404 | 4396404 | 20240530162023_TF4d8 | AU003D | 2024-06-01T12:06:55.039Z | 2024-06-08T12:14:07.001Z |
4396196 | 4396196 | 20240530133521_kZFfe | AU003D | 2024-06-01T12:06:09.059Z | 2024-06-08T12:14:06.342Z |
4396067 | 4396067 | 20240530113230_V6uDB | AU003D | 2024-06-01T12:05:32.575Z | 2024-06-08T12:14:05.756Z |
4396055 | 4396055 | 20240530111428_l7v5y | AU003D | 2024-06-01T12:05:30.090Z | 2024-06-08T12:14:05.641Z |
4351569 | 4351569 | 20240511131743_H6XZ6 | AU003D | 2024-05-22T12:00:14.432Z | 2024-05-22T12:00:14.432Z |
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);