traj-dist-rs 1.0.0-rc.5

High-performance trajectory distance & similarity measures in Rust with Python bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
use crate::binding::PyDpResult;
use crate::binding::sequence::types::{PointRef, PyTrajectoryType};
use crate::distance::base::TrajectoryCalculator;
use crate::distance::distance_type::DistanceType;
use crate::traits::{AsCoord, CoordSequence};
use pyo3::exceptions::PyValueError;
use pyo3::prelude::*;
use pyo3_stub_gen::{define_stub_info_gatherer, derive::gen_stub_pyfunction};
use std::str::FromStr;

/// Compute the ERP (Edit distance with Real Penalty) distance between two trajectories
///
/// This is the **traj-dist compatible** implementation that matches the (buggy) implementation
/// in traj-dist. This version should be used when compatibility with traj-dist is required.
///
/// ERP is a distance measure for trajectories that uses a gap point `g` as a penalty
/// for insertions and deletions. The distance is computed using dynamic programming.
///
/// **Note**: This implementation has a bug in the DP matrix initialization where it uses
/// the total sum of distances to g instead of cumulative sums. This matches the bug in
/// traj-dist's Python implementation.
///
/// # Arguments
/// * `t1` - First trajectory (list of [longitude, latitude] pairs)
/// * `t2` - Second trajectory (list of [longitude, latitude] pairs)
/// * `dist_type` - Distance type: "euclidean" or "spherical"
/// * `g` - Gap point for penalty (list of [longitude, latitude] or None for centroid)
/// * `use_full_matrix` - If true, compute and return the full DP matrix;
///                        if false (default), return None for the matrix to save space
///
/// # Returns
/// * A `DpResult` object with two properties:
///   - `distance`: ERP distance as f64
///   - `matrix`: numpy array of shape (n0+1, n1+1) if use_full_matrix=True, else None
///
/// # Examples
/// ```python
/// import traj_dist_rs
///
/// t1 = [[0.0, 0.0], [1.0, 1.0]]
/// t2 = [[0.0, 1.0], [1.0, 0.0]]
/// result = traj_dist_rs.erp_compat_traj_dist(t1, t2, "euclidean", g=[0.0, 0.0])
/// print(result.distance)  # Distance value
/// print(result.matrix)  # None
///
/// result = traj_dist_rs.erp_compat_traj_dist(t1, t2, "euclidean", g=[0.0, 0.0], use_full_matrix=True)
/// print(result.matrix)  # numpy array
/// ```
#[gen_stub_pyfunction]
#[pyfunction(signature = (t1, t2, dist_type, g, use_full_matrix=false))]
pub fn erp_compat_traj_dist(
    #[gen_stub(override_type(type_repr="typing.List[typing.List[float]] | numpy.ndarray", imports=("typing", "numpy")))]
    t1: &Bound<'_, PyAny>,
    #[gen_stub(override_type(type_repr="typing.List[typing.List[float]] | numpy.ndarray", imports=("typing", "numpy")))]
    t2: &Bound<'_, PyAny>,
    dist_type: String,
    #[gen_stub(
        override_type(
            type_repr="typing.Optional[typing.List[float]]",
            imports=("typing")
        )
    )]
    g: Option<Vec<f64>>,
    use_full_matrix: bool,
) -> PyResult<PyDpResult> {
    // Convert Python objects to PyTrajectoryType
    let traj1 = PyTrajectoryType::try_from(t1)?;
    let traj2 = PyTrajectoryType::try_from(t2)?;

    // Compute centroid if g is None
    let gap_point = if let Some(g_vec) = g {
        if g_vec.len() != 2 {
            return Err(PyValueError::new_err(
                "Gap point g must have exactly 2 coordinates",
            ));
        }
        [g_vec[0], g_vec[1]]
    } else {
        // Compute centroid of both trajectories
        let n1 = traj1.len();
        let n2 = traj2.len();
        if n1 == 0 || n2 == 0 {
            return Err(PyValueError::new_err(
                "Cannot compute centroid for empty trajectory",
            ));
        }

        let mut sum_x = 0.0;
        let mut sum_y = 0.0;

        for i in 0..n1 {
            let p = traj1.get(i);
            sum_x += p.x();
            sum_y += p.y();
        }

        for j in 0..n2 {
            let p = traj2.get(j);
            sum_x += p.x();
            sum_y += p.y();
        }

        let total = (n1 + n2) as f64;
        [sum_x / total, sum_y / total]
    };

    // Parse distance type using FromStr from strum
    let distance_type = DistanceType::from_str(&dist_type).map_err(|_| {
        PyValueError::new_err(format!(
            "Invalid distance type '{}'. Expected 'euclidean' or 'spherical'",
            dist_type
        ))
    })?;

    let gap_point = PointRef::new(&gap_point, 0);
    let calculator = TrajectoryCalculator::new(&traj1, &traj2, distance_type);
    let result =
        crate::distance::erp::erp_compat_traj_dist(&calculator, &gap_point, use_full_matrix);

    Ok(PyDpResult { inner: result })
}

/// Compute the ERP (Edit distance with Real Penalty) distance between two trajectories
///
/// This is the **standard** ERP implementation with correct cumulative initialization.
/// This version should be used for new applications where correctness is more important
/// than compatibility with traj-dist.
///
/// ERP is a distance measure for trajectories that uses a gap point `g` as a penalty
/// for insertions and deletions. The distance is computed using dynamic programming.
///
/// **Note**: This implementation correctly accumulates distances by index in the DP matrix
/// initialization, unlike the buggy implementation in traj-dist.
///
/// # Arguments
/// * `t1` - First trajectory (list of [longitude, latitude] pairs)
/// * `t2` - Second trajectory (list of [longitude, latitude] pairs)
/// * `dist_type` - Distance type: "euclidean" or "spherical"
/// * `g` - Gap point for penalty (list of [longitude, latitude] or None for centroid)
/// * `use_full_matrix` - If true, compute and return the full DP matrix;
///                        if false (default), return None for the matrix to save space
///
/// # Returns
/// * A `DpResult` object with two properties:
///   - `distance`: ERP distance as f64
///   - `matrix`: numpy array of shape (n0+1, n1+1) if use_full_matrix=True, else None
///
/// # Examples
/// ```python
/// import traj_dist_rs
///
/// t1 = [[0.0, 0.0], [1.0, 1.0]]
/// t2 = [[0.0, 1.0], [1.0, 0.0]]
/// result = traj_dist_rs.erp_standard(t1, t2, "euclidean", g=[0.0, 0.0])
/// print(result.distance)  # Distance value
/// print(result.matrix)  # None
///
/// result = traj_dist_rs.erp_standard(t1, t2, "euclidean", g=[0.0, 0.0], use_full_matrix=True)
/// print(result.matrix)  # numpy array
/// ```
#[gen_stub_pyfunction]
#[pyfunction(signature = (t1, t2, dist_type, g, use_full_matrix=false))]
pub fn erp_standard(
    #[gen_stub(override_type(type_repr="typing.List[typing.List[float]] | numpy.ndarray", imports=("typing", "numpy")))]
    t1: &Bound<'_, PyAny>,
    #[gen_stub(override_type(type_repr="typing.List[typing.List[float]] | numpy.ndarray", imports=("typing", "numpy")))]
    t2: &Bound<'_, PyAny>,
    dist_type: String,
    #[gen_stub(
        override_type(
            type_repr="typing.Optional[typing.List[float]]",
            imports=("typing")
        )
    )]
    g: Option<Vec<f64>>,
    use_full_matrix: bool,
) -> PyResult<PyDpResult> {
    // Convert Python objects to PyTrajectoryType
    let traj1 = PyTrajectoryType::try_from(t1)?;
    let traj2 = PyTrajectoryType::try_from(t2)?;

    // Compute centroid if g is None
    let gap_point = if let Some(g_vec) = g {
        if g_vec.len() != 2 {
            return Err(PyValueError::new_err(
                "Gap point g must have exactly 2 coordinates",
            ));
        }
        [g_vec[0], g_vec[1]]
    } else {
        // Compute centroid of both trajectories
        let n1 = traj1.len();
        let n2 = traj2.len();
        if n1 == 0 || n2 == 0 {
            return Err(PyValueError::new_err(
                "Cannot compute centroid for empty trajectory",
            ));
        }

        let mut sum_x = 0.0;
        let mut sum_y = 0.0;

        for i in 0..n1 {
            let p = traj1.get(i);
            sum_x += p.x();
            sum_y += p.y();
        }

        for j in 0..n2 {
            let p = traj2.get(j);
            sum_x += p.x();
            sum_y += p.y();
        }

        let total = (n1 + n2) as f64;
        [sum_x / total, sum_y / total]
    };

    // Parse distance type using FromStr from strum
    let distance_type = DistanceType::from_str(&dist_type).map_err(|_| {
        PyValueError::new_err(format!(
            "Invalid distance type '{}'. Expected 'euclidean' or 'spherical'",
            dist_type
        ))
    })?;

    let gap_point = PointRef::new(&gap_point, 0);
    let calculator = TrajectoryCalculator::new(&traj1, &traj2, distance_type);
    let result = crate::distance::erp::erp_standard(&calculator, &gap_point, use_full_matrix);

    Ok(PyDpResult { inner: result })
}

/// Compute the ERP (Edit distance with Real Penalty) distance using a precomputed distance matrix
///
/// This is the **traj-dist compatible** implementation that matches the (buggy) implementation
/// in traj-dist. This version should be used when compatibility with traj-dist is required.
///
/// This function allows you to use a precomputed distance matrix and extra distance arrays
/// instead of computing distances on the fly.
///
/// # Arguments
/// * `distance_matrix` - A 2D numpy array where `matrix[i][j]` is the distance between
///                       point i of trajectory 1 and point j of trajectory 2
/// * `seq0_gap_dists` - A 1D numpy array where `seq0_gap_dists[i]` is the distance between
///                      point i of trajectory 1 and the gap point g
/// * `seq1_gap_dists` - A 1D numpy array where `seq1_gap_dists[j]` is the distance between
///                      point j of trajectory 2 and the gap point g
/// * `use_full_matrix` - If true, compute and return the full DP matrix;
///                        if false (default), return None for the matrix to save space
///
/// # Returns
/// * A `DpResult` object with two properties:
///   - `distance`: ERP distance as f64
///   - `matrix`: numpy array of shape (n0+1, n1+1) if use_full_matrix=True, else None
///
/// # Examples
/// ```python
/// import traj_dist_rs
/// import numpy as np
///
/// dist_matrix = np.array([
///     [1.0, 1.0],
///     [1.0, 1.0],
/// ])
/// seq0_gap_dists = np.array([1.0, 1.0])
/// seq1_gap_dists = np.array([1.0, 1.0])
///
/// # Without matrix
/// result = traj_dist_rs.erp_compat_traj_dist_with_matrix(dist_matrix, seq0_gap_dists, seq1_gap_dists)
/// print(result.distance)  # Distance value
/// print(result.matrix)  # None
///
/// # With matrix
/// result = traj_dist_rs.erp_compat_traj_dist_with_matrix(dist_matrix, seq0_gap_dists, seq1_gap_dists, use_full_matrix=True)
/// print(result.matrix)  # numpy array
/// ```
#[gen_stub_pyfunction]
#[pyfunction(signature = (distance_matrix, seq0_gap_dists, seq1_gap_dists, use_full_matrix=false))]
pub fn erp_compat_traj_dist_with_matrix<'py>(
    #[gen_stub(override_type(type_repr="numpy.ndarray", imports=("numpy",)))]
    distance_matrix: &Bound<'py, PyAny>,
    #[gen_stub(override_type(type_repr="numpy.ndarray", imports=("numpy",)))]
    seq0_gap_dists: &Bound<'py, PyAny>,
    #[gen_stub(override_type(type_repr="numpy.ndarray", imports=("numpy",)))]
    seq1_gap_dists: &Bound<'py, PyAny>,
    use_full_matrix: bool,
) -> PyResult<PyDpResult> {
    use numpy::{PyArrayMethods, PyUntypedArrayMethods};

    // Convert distance_matrix to flat array (zero-copy)
    let dist_array = distance_matrix
        .downcast::<numpy::PyArray2<f64>>()
        .map_err(|_| {
            PyValueError::new_err("distance_matrix must be a 2D numpy array of float64 values")
        })?;

    let dist_readonly = dist_array.readonly();
    let dist_shape = dist_readonly.shape();

    if dist_shape.len() != 2 {
        return Err(PyValueError::new_err(format!(
            "distance_matrix must be a 2D array, got shape {:?}",
            dist_shape
        )));
    }

    let n0 = dist_shape[0];
    let n1 = dist_shape[1];

    // Check if array is contiguous (C-order) for zero-copy
    let dist_view = dist_readonly.as_array();
    if !dist_view.is_standard_layout() {
        return Err(PyValueError::new_err(
            "distance_matrix must be contiguous (C-order)",
        ));
    }

    // Zero-copy: get raw pointer directly
    let dist_data_ptr = dist_view.as_ptr();
    let distance_matrix_slice = unsafe { std::slice::from_raw_parts(dist_data_ptr, n0 * n1) };

    // Convert seq0_gap_dists to slice (zero-copy)
    let seq0_array = seq0_gap_dists
        .downcast::<numpy::PyArray1<f64>>()
        .map_err(|_| {
            PyValueError::new_err("seq0_gap_dists must be a 1D numpy array of float64 values")
        })?;

    let seq0_readonly = seq0_array.readonly();
    let seq0_slice = seq0_readonly.as_slice()?;

    // Convert seq1_gap_dists to slice (zero-copy)
    let seq1_array = seq1_gap_dists
        .downcast::<numpy::PyArray1<f64>>()
        .map_err(|_| {
            PyValueError::new_err("seq1_gap_dists must be a 1D numpy array of float64 values")
        })?;

    let seq1_readonly = seq1_array.readonly();
    let seq1_slice = seq1_readonly.as_slice()?;

    // Create a precomputed distance calculator with extra distances (zero-copy)
    let calculator = crate::distance::base::PrecomputedDistanceCalculator::with_extra_distances(
        distance_matrix_slice,
        n0,
        n1,
        Some(seq0_slice),
        Some(seq1_slice),
    );

    // Compute ERP using the calculator
    let result = crate::distance::erp::erp_compat_traj_dist_with_distances(
        &calculator,
        seq0_slice,
        seq1_slice,
        use_full_matrix,
    );

    Ok(PyDpResult { inner: result })
}

/// Compute the ERP (Edit distance with Real Penalty) distance using a precomputed distance matrix
///
/// This is the **standard** ERP implementation with correct cumulative initialization.
/// This version should be used for new applications where correctness is more important
/// than compatibility with traj-dist.
///
/// This function allows you to use a precomputed distance matrix and extra distance arrays
/// instead of computing distances on the fly.
///
/// # Arguments
/// * `distance_matrix` - A 2D numpy array where `matrix[i][j]` is the distance between
///                       point i of trajectory 1 and point j of trajectory 2
/// * `seq0_gap_dists` - A 1D numpy array where `seq0_gap_dists[i]` is the distance between
///                      point i of trajectory 1 and the gap point g
/// * `seq1_gap_dists` - A 1D numpy array where `seq1_gap_dists[j]` is the distance between
///                      point j of trajectory 2 and the gap point g
/// * `use_full_matrix` - If true, compute and return the full DP matrix;
///                        if false (default), return None for the matrix to save space
///
/// # Returns
/// * A `DpResult` object with two properties:
///   - `distance`: ERP distance as f64
///   - `matrix`: numpy array of shape (n0+1, n1+1) if use_full_matrix=True, else None
///
/// # Examples
/// ```python
/// import traj_dist_rs
/// import numpy as np
///
/// dist_matrix = np.array([
///     [1.0, 1.0],
///     [1.0, 1.0],
/// ])
/// seq0_gap_dists = np.array([1.0, 1.0])
/// seq1_gap_dists = np.array([1.0, 1.0])
///
/// # Without matrix
/// result = traj_dist_rs.erp_standard_with_matrix(dist_matrix, seq0_gap_dists, seq1_gap_dists)
/// print(result.distance)  # Distance value
/// print(result.matrix)  # None
///
/// # With matrix
/// result = traj_dist_rs.erp_standard_with_matrix(dist_matrix, seq0_gap_dists, seq1_gap_dists, use_full_matrix=True)
/// print(result.matrix)  # numpy array
/// ```
#[gen_stub_pyfunction]
#[pyfunction(signature = (distance_matrix, seq0_gap_dists, seq1_gap_dists, use_full_matrix=false))]
pub fn erp_standard_with_matrix<'py>(
    #[gen_stub(override_type(type_repr="numpy.ndarray", imports=("numpy",)))]
    distance_matrix: &Bound<'py, PyAny>,
    #[gen_stub(override_type(type_repr="numpy.ndarray", imports=("numpy",)))]
    seq0_gap_dists: &Bound<'py, PyAny>,
    #[gen_stub(override_type(type_repr="numpy.ndarray", imports=("numpy",)))]
    seq1_gap_dists: &Bound<'py, PyAny>,
    use_full_matrix: bool,
) -> PyResult<PyDpResult> {
    use numpy::{PyArrayMethods, PyUntypedArrayMethods};

    // Convert distance_matrix to flat array (zero-copy)
    let dist_array = distance_matrix
        .downcast::<numpy::PyArray2<f64>>()
        .map_err(|_| {
            PyValueError::new_err("distance_matrix must be a 2D numpy array of float64 values")
        })?;

    let dist_readonly = dist_array.readonly();
    let dist_shape = dist_readonly.shape();

    if dist_shape.len() != 2 {
        return Err(PyValueError::new_err(format!(
            "distance_matrix must be a 2D array, got shape {:?}",
            dist_shape
        )));
    }

    let n0 = dist_shape[0];
    let n1 = dist_shape[1];

    // Check if array is contiguous (C-order) for zero-copy
    let dist_view = dist_readonly.as_array();
    if !dist_view.is_standard_layout() {
        return Err(PyValueError::new_err(
            "distance_matrix must be contiguous (C-order)",
        ));
    }

    // Zero-copy: get raw pointer directly
    let dist_data_ptr = dist_view.as_ptr();
    let distance_matrix_slice = unsafe { std::slice::from_raw_parts(dist_data_ptr, n0 * n1) };

    // Convert seq0_gap_dists to slice (zero-copy)
    let seq0_array = seq0_gap_dists
        .downcast::<numpy::PyArray1<f64>>()
        .map_err(|_| {
            PyValueError::new_err("seq0_gap_dists must be a 1D numpy array of float64 values")
        })?;

    let seq0_readonly = seq0_array.readonly();
    let seq0_slice = seq0_readonly.as_slice()?;

    // Convert seq1_gap_dists to slice (zero-copy)
    let seq1_array = seq1_gap_dists
        .downcast::<numpy::PyArray1<f64>>()
        .map_err(|_| {
            PyValueError::new_err("seq1_gap_dists must be a 1D numpy array of float64 values")
        })?;

    let seq1_readonly = seq1_array.readonly();
    let seq1_slice = seq1_readonly.as_slice()?;

    // Create a precomputed distance calculator with extra distances (zero-copy)
    let calculator = crate::distance::base::PrecomputedDistanceCalculator::with_extra_distances(
        distance_matrix_slice,
        n0,
        n1,
        Some(seq0_slice),
        Some(seq1_slice),
    );

    // Compute ERP using the calculator
    let result = crate::distance::erp::erp_standard_with_distances(
        &calculator,
        seq0_slice,
        seq1_slice,
        use_full_matrix,
    );

    Ok(PyDpResult { inner: result })
}

define_stub_info_gatherer!(stub_info);