data_gen¶
data.data_gen
¶
filter_overlaps(targets, min_dist_km=2.0)
¶
Removes targets that are geographically too close to each other.
Source code in ground_segment/data/data_gen.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | |
haversine(lon1, lat1, lon2, lat2)
¶
Calculates the distance in kilometers between two points.
Source code in ground_segment/data/data_gen.py
31 32 33 34 35 36 37 38 39 40 41 42 43 | |