pub fn resolve_detections(
detections: Vec<Detection>,
gnss: &[GnssPosition],
netelements: &[Netelement],
cutoff_distance_m: f64,
) -> Result<ResolutionOutcome, DetectionError>Expand description
Resolve every kept detection into an anchor (or a discard record).
gnss MUST be sorted by timestamp. cutoff_distance_m applies to
coordinate-only resolution only.