participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where station_code = "DE0015" 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 |
---|---|---|---|---|---|
5584143 | 5584143 | 20241116191512_l8gKA | DE0015 | 2024-11-23T14:25:37.890Z | 2024-11-23T14:25:37.890Z |
5569770 | 5569770 | 20241120172211_b282q | DE0015 | 2024-11-22T14:14:06.809Z | 2024-11-23T14:22:51.794Z |
5548873 | 5548873 | 20241117020358_BsZkE | DE0015 | 2024-11-18T14:10:22.002Z | 2024-11-23T14:25:41.800Z |
5548861 | 5548861 | 20241117015945_CxQ9c | DE0015 | 2024-11-18T14:10:21.013Z | 2024-11-23T14:25:41.774Z |
5548852 | 5548852 | 20241117015844_fH41S | DE0015 | 2024-11-18T14:10:19.863Z | 2024-11-23T14:25:41.756Z |
5548819 | 5548819 | 20241117015102_mWr0O | DE0015 | 2024-11-18T14:10:16.323Z | 2024-11-23T14:25:41.645Z |
5548584 | 5548584 | 20241117002736_uHaIj | DE0015 | 2024-11-18T14:09:32.308Z | 2024-11-23T14:25:40.830Z |
5548553 | 5548553 | 20241117001707_B0LUg | DE0015 | 2024-11-18T14:09:27.411Z | 2024-11-23T14:25:40.737Z |
5548270 | 5548270 | 20241116215951_chAR6 | DE0015 | 2024-11-18T14:08:37.208Z | 2024-11-23T14:25:39.435Z |
5548158 | 5548158 | 20241116202403_q8z7Q | DE0015 | 2024-11-18T14:08:21.544Z | 2024-11-23T14:25:38.819Z |
157354 | 157354 | 20200128202517_OtEE3 | DE0015 | 2024-01-05T23:20:55.706Z | 2024-01-05T23:20:55.706Z |
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);