Pith. sign in

REVIEW 4 major objections 6 minor 37 references

GTRSS: Graph-based Top-$k$ Representative Similar Subtrajectory Query

T0 review · 4 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash

Pith's one-line read The paper claims that top-k similar subtrajectory search can be answered by navigating a dual-layer graph index, achieving over 90% accuracy and up to two orders of magnitude speedup.

desk verdict A genuinely new graph-based approach to subtrajectory search, but the core DTSM metric and the evaluation protocol need major repair before the reported results can be trusted. read the letter →

arxiv 2507.05542 v1 pith:4NESH2WA submitted 2025-07-07 cs.DB

classification cs.DB
keywords top-krepresentativesimilarsubtrajectoryquerygraph-basedindexingdual-layergraphtrajectorysimilarityDTSMdynamicprogrammingsearchdatamining
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper takes the Top-k Representative Similar Subtrajectory Query (TRSSQ) — find the k subtrajectories, one per trajectory, most similar to a query — and claims that it can be solved without scanning the whole database. Existing solutions filter the entire trajectory set and then validate candidates, which makes response times scale with database size. GTRSS instead builds an offline dual-layer graph in which nearby nodes are trajectories whose representative subtrajectories are similar to the same queries, then answers a query by hill-climbing from an entry point found on the sparse upper graph to a fine-grained lower graph. The paper reports that this graph-based retrieval keeps over 90% accuracy while running up to two orders of magnitude faster than prior methods, making real-time subtrajectory search plausible on million-scale trajectory collections.

What carries the argument

The load-bearing objects are the DTSM scoring scheme and the two-layer graph. DTSM (Data Trajectory Similarity Metric) is a dynamic program over a binary similarity matrix A in which A_{i,j}=1 if point p_i of one trajectory and p_j of the other are within distance α, and -1 otherwise; its recurrence Θ_s selects among six alignment conditions (C1–C6) to maximize the matched-point score of any subtrajectory pair, and a pruning step drops all pairs whose starting points are dissimilar. GARI (Global Aggregated Representative Index) is a sparse upper-level graph over one representative trajectory per grid cell, each node linked to its most similar, a random, and its least similar representative, to give both local fidelity and global reach. CNDI (Comprehensive Node Detail Index) is the lower-level graph over all trajectories, linking each trajectory to a chosen proportion of its top-ξ DTSM-similar spatially close neighbors plus random trajectories. Online search uses greedy hill-climbing on both layers, with the GARI result serving as the CNDI entry point, and records every node visited so the final top-k can be selected from the accumulated candidates.

What would settle it

Run Algorithm 1 against an exhaustive enumeration of all subtrajectory pairs (using the stated Θs scoring) on many small random trajectory pairs; if the DP ever returns less than the exhaustive maximum, or if the S≤0 early break discards a continuation that would have raised the score, the metric underlying all graph edges is not computing what the framework requires.

Watch

Extended reading notes

Core claim

The central discovery is that the TRSSQ problem has a graph structure worth exploiting: trajectories that contain top-k representative subtrajectories for the same query tend to be similar to one another, so a graph whose edges connect such trajectories can route a query directly to the relevant clusters. To build that graph, the paper introduces the Data Trajectory Similarity Metric (DTSM), a dynamic-programming score that returns the maximum similarity over all subtrajectory pairs of two trajectories, together with a pruning rule that skips dissimilar starting point pairs. The offline index has two layers: the Global Aggregated Representative Index (GARI), a sparse graph over spatially selected representative trajectories, and the Comprehensive Node Detail Index (CNDI), a graph over every trajectory with a mix of high-similarity and random neighbors. Online, the query first climbs GARI to find a good entry node, then climbs CNDI greedily and records the nodes it visits; the top-k subtrajectories are drawn from that recorded candidate set. The paper argues that this is the first graph-based solution to top-k subtrajectory search, and its experiments on two real datasets report retrieval accuracy above 90% and query speedups of up to two orders of magnitude compared with the previous TRSSQ method and other filtering baselines.

Load-bearing premise

The load-bearing premise is that the DTSM dynamic program always returns the true maximum similarity over all subtrajectory pairs, because every graph edge is built from that score; this correctness is only partially proved in the paper, with the early-termination rule and boundary conditions left unproven.

Editorial extensions

If this is right

  • If GTRSS is right, query time stops growing with database size: doubling the trajectory count no longer doubles query cost, because the search visits only a constant-degree neighbourhood of the graph rather than scanning the data.
  • The dual-layer design separates the two failure modes of approximate search: GARI supplies a reliable starting point (avoiding poor local optima), while CNDI's random edges provide an escape mechanism when the deterministic neighbours lead to a dead end.
  • Because online scoring is pluggable (the paper instantiates it with ExactS, CMA, PSS, and POS), the graph index works with DTW, EDR, and ERP alike, so the speedup transfers across similarity measures.
  • Accuracy degrades gracefully rather than sharply as k grows, since recording intermediate nodes makes the candidate set larger than the final answer set; the ablation study attributes measurable gains to this node tracking.
  • Offline construction cost, dominated by DTSM pairwise scoring, is what limits the approach in practice; the paper's reported 12–30 hour build times for hundreds of thousands of trajectories define the current scalability frontier.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • A testable extension is to isolate DTSM by comparing its output against exhaustive enumeration on small random trajectory pairs; the paper's pruning theorem only covers dissimilar starting points, so the early-break rule at S≤0 is the part most worth probing.
  • The graph-index recipe may transfer to other top-k retrieval problems where each database object has many sub-objects and one representative per object is wanted, such as similar video segments or time series motifs.
  • The reported 'over 90 percent' accuracy is measured with HR/RR metrics against a filtered ground truth; an independent check against exact top-k on a random sample would clarify how much of the gap comes from graph approximation versus the underlying similarity measures.
  • Because δ tunes the fraction of similarity-guided versus random neighbours in CNDI, the same framework spans a continuum from a pure kNN graph to a random graph; the paper does not explore this trade-off surface beyond its default setting.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 6 minor

Summary. The paper proposes GTRSS, a graph-based framework for the Top-k Representative Similar Subtrajectory Query (TRSSQ). The method builds a dual-layer graph index (an upper global aggregated representative index GARI and a lower comprehensive node detail index CNDI), where edges are determined by a newly introduced Data Trajectory Similarity Metric (DTSM) computed via a dynamic program with pruning, and answers queries by greedy hill-climbing on the graph. The authors claim that GTRSS is the first graph-based solution to TRSSQ and that it achieves retrieval accuracy over 90% with up to two orders of magnitude speedup.

Significance. If the technical content were correct, the framework would be a meaningful contribution to trajectory similarity search, as it replaces the filter-validate full-database scan with a graph-navigation approach and is evaluated on two real-world datasets. The paper also proposes a new similarity primitive (DTSM) that could be of independent interest. However, the correctness of the entire index and online search pipeline rests on the DTSM score, and the manuscript's definition and computation of DTSM are not sound. The load-bearing flaws described below make the central efficiency and accuracy claims unsupported as published.

major comments (4)
  1. [§IV-B, Definition 6 and Eqs. (5)–(6)] The DTSM recurrence is not well-defined. The scoring function Θs has no base case for empty subtrajectories and no stated domain for the recursive term R, so the recursion in Eq. (5) has no well-defined value at the boundary. Moreover, the 'otherwise' branch of Eq. (5) explicitly adds subcost(p_{i+1}^{d1}, p_{j+1}^{d2}) and then invokes R(T_{i+1:k}, T_{j+1:l}), whose conditions C1–C6 also evaluate the pair (i+1,j+1); this double-counts the same point pair. In addition, Definition 6 and the prose describe a +1/−1 counting scheme, while Eq. (5) uses subcost values +2/−2 with Δ=1; these different weights change the score and the claimed cancellation behavior. Consequently, ϕ(T^{d1}, T^{d2}) in Eq. (2) is not a well-defined quantity, and the graph edges in GARI and CNDI are built from scores that are not formally defined.
  2. [§IV-B, Pruning Rule and Algorithm 1, lines 15–16] The proof of the pruning theorem is invalid, and the early break used in Algorithm 1 is unsound. The induction step in the theorem merely asserts that the right-hand side 'may be nonzero' and does not establish the needed nonnegativity of Θs(T_{i+1:k}, T_{j+1:l}); in fact, the recurrence with subcost +2/−2 can produce negative intermediate values. More importantly, the early break when S ≤ 0 is false: because the recurrence can produce score sequences that go from positive to non-positive and back to positive (e.g., a matched pair contributing +2, a mismatched pair contributing −2, and another matched pair contributing +2), a prefix with S ≤ 0 can be extended to a higher score. Algorithm 1 therefore can discard the true maximum subtrajectory pair, so DTSM does not compute the maximum asserted in Eq. (2).
  3. [§IV-B and §IV-E, Complexity statements] The paper gives two incompatible complexity statements for DTSM. Section IV-B claims O(n1^2·n2^2) with memoization, while Section IV-E assumes 'DTSM has time complexity O(L^2) per pair' to derive the offline costs O(M^4·L^2) for GARI and O(N·ξ·L^2) for CNDI; these differ by orders of magnitude. Moreover, Algorithm 1 does not exhibit a memoization structure: line 11 recomputes Θs(T_{i:k}, T_{j:l}) from the recurrence inside fresh nested loops, so the stated O(n1^2·n2^2) bound is not substantiated by the pseudocode as written.
  4. [§V-B and §V-D, Experimental protocol] The baseline and ground-truth setup is not fully independent. The main competitor [14] is authored by overlapping authors (K. Wang and X. Lin appear on both papers), and the authors modify it with an additional OSF filter, so the reported improvement over [14] is not a direct comparison with the published method. The 'Grid' baseline applies a spatial filter similar to the one used inside GTRSS's own pipeline, and the ground-truth top-k is computed by ExactS after a Grid filter, which may bias the accuracy numbers in favor of the proposed system. The abstract's claim of 'retrieval accuracy of over 90 percent' is also inconsistent with the reported results; for example, Table I shows GTRSS(CMA) on Chengdu with HR20=0.5482 and HR50=0.5939 for DTW, and Table II shows HR50 values below 0.8 for several GTRSS variants.
minor comments (6)
  1. [Author contact information] The email address 'kmwamg24@m.fudan.edu.cn' appears to contain a typo (likely 'kmwang24').
  2. [Figure 8] The axis labels in Fig. 8 contain garbled '/uni000000...' strings and must be regenerated with a proper font.
  3. [References] Reference [19] (M. Herlihy, 'A methodology for implementing highly concurrent data objects') appears unrelated to trajectory similarity; please verify the citation or replace it with the intended work.
  4. [§V-B, Metrics] The definitions of 'Relative Rank' and 'HR-10' are informal; precise formulas are needed to interpret the reported numbers.
  5. [Algorithm 1] The pseudocode in Algorithm 1 does not fully align with the notation of Eq. (5): the recurrence is defined for fixed start and end indices, but the loop variables in lines 9–11 update S without explicitly showing how the subtrajectory endpoints are passed to Θs.
  6. [§IV-E, Space complexity] The statement 'M^2 ≪ N' is asserted without justification; since M is a user-specified grid parameter, this inequality is not guaranteed and should be discussed or demonstrated in the experimental settings.

Circularity Check

1 steps flagged · score 4.0 of 10

Ground-truth reference is computed after a Grid filter that also underpins GTRSS's own index, making the reported accuracy partly self-referential; the efficiency claim is not circular.

  1. other [Section V-D (Effectiveness and Efficiency Evaluation), with grid-filter description in Section V-B baseline 2 and Section IV-A overview]
    "A Grid filter first preprocesses each query trajectory to retain spatially similar data trajectories, reducing inefficient searches. ExactS then computes ground-truth similarity scores between filtered trajectories and the query, serving as the reference standard."

    The accuracy reference is not the true top-k over the full database: it is ExactS applied only after a Grid filter. GTRSS's own index construction starts from the same filtering idea: 'we first build an R-tree on the trajectory dataset D to facilitate spatial filtering. The resulting filtered dataset is denoted as Dg, which serves as the input for constructing the upper-layer graph index.' Thus the candidate universe of the ground truth and the candidate universe of GTRSS's representative index coincide at the filter stage; high HR/R10@50 values are partly inherited from sharing this filter rather than earned by graph navigation. The reported 'over 90%' accuracy is therefore a partially self-referential benchmark, though not an equation-level reduction.

full rationale

The main derivation chain is not circular: DTSM computes a parameter-free dynamic-programming score, graph edges are constructed from that score, and the online search is evaluated against independent exact-similarity computations (ExactS/CMA/PSS/POS). No fitted parameter is renamed as a prediction, and no uniqueness theorem is imported from the authors' prior work to force the graph choice. The self-citation of [14] establishes the TRSSQ problem and the RSSE baseline; it is background and not load-bearing for the graph construction. The evaluation-level concern is real: the reference standard for accuracy is computed over Grid-filtered trajectories while GTRSS's own RNSA phase uses R-tree/grid filtering to form Dg, so the accuracy metrics are partially self-referential. The DTSM recurrence issues (undefined base cases, conflicting +1/-1 vs +2/-2 weights, unproven early break at S<=0 in Algorithm 1) are correctness and omitted-proof problems, not circularity; they would reduce the validity of the similarity primitive but do not make the derivation equivalent to its inputs. Overall, central efficiency claims remain independent of fitted values, so the circularity burden is moderate rather than a derivation-from-input collapse.

Assumptions & free parameters 5 free parameters · 6 assumptions · 2 invented entities

The central claim rests on a custom similarity metric and a heuristic graph; both are introduced by the paper and not independently validated. The free parameters are not reported or tuned systematically, and the key domain assumption that DTSM similarity implies query-relevant top-k co-membership is asserted without evidence.

free parameters (5)
  • alpha (point matching distance threshold)
    Used in Eq. (4) to build the binary similarity matrix A; all DTSM scores depend on it, but its value is never given.
  • Grid granularity M
    Determines the number of representative trajectories M^2 in GARI; no value is reported in the paper.
  • Neighbor count xi per node (CNDI)
    Controls CNDI space complexity O(N*xi) and search scope; value not reported.
  • Random-neighbor ratio delta
    Balances similar vs random neighbors in CNDI (Algorithm 3, line 14); no value reported.
  • Subcost weights (+2/-2) and correction terms Delta=1
    Hand-chosen scoring constants in Eqs. (5)-(13); prose describes +1/-1 contributions, creating an inconsistency.
assumptions (6)
  • domain assumption Data trajectories containing the top-k representative subtrajectories for the same query are mutually similar.
    Stated in Section I as an observation; it is the foundation of the graph clustering idea but is never directly validated.
  • ad hoc to paper DTSM similarity scores predict whether two trajectories appear together in a query's top-k result set.
    The graph edges are defined by DTSM; no evidence or proof connects DTSM scores to query-specific top-k membership.
  • ad hoc to paper Greedy hill-climbing on GARI and CNDI, with random neighbors, converges to a node close to the global optimum.
    No convergence guarantee is provided; the paper relies on heuristic random edges to escape local optima (Section IV-D).
  • ad hoc to paper The early break in Algorithm 1 (lines 15-16) does not discard an optimal subtrajectory pair.
    The pruning theorem only covers dissimilar start pairs; a negative prefix in a sequence alignment can later become positive, so breaking at S<=0 is unproven.
  • ad hoc to paper The recursive definitions in Eqs. (5)-(6) have well-defined boundary conditions.
    No base cases are stated for when indices exceed trajectory lengths; these are required to make Algorithm 1 executable.
  • domain assumption ExactS over a Grid-filtered candidate set equals the true top-k over the full database.
    The evaluation uses Grid-filtered candidates as the reference standard (Section V-D), which can exclude true top-k trajectories from the ground truth.
invented entities (2)
  • DTSM (Data Trajectory Similarity Metric)
    purpose: Defines edge weights between trajectory nodes in GARI and CNDI; intended to cluster trajectories that share query-relevant subtrajectories.
    A bespoke scoring function introduced in this paper; no external benchmark or independent implementation validates that high DTSM scores correspond to co-membership in a query's top-k set.
  • Dual-layer graph index (GARI and CNDI)
    purpose: Hierarchical retrieval structure: GARI selects start nodes, CNDI performs fine-grained search.
    A new data structure proposed by the paper; its benefits are demonstrated only in the paper's own experiments, with no independent implementation.

how reviews work

0 comments
Cite this review

Pith. "Pith review of GTRSS: Graph-based Top-$k$ Representative Similar Subtrajectory Query." pith.science (2026). https://pith.science/paper/4NESH2WA

@misc{pith2026250705542,
  author       = {Pith},
  title        = {Pith review of: GTRSS: Graph-based Top-$k$ Representative Similar Subtrajectory Query},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/4NESH2WA}},
  note         = {Machine review of arXiv:2507.05542}
}
read the original abstract

Trajectory mining has attracted significant attention. This paper addresses the Top-k Representative Similar Subtrajectory Query (TRSSQ) problem, which aims to find the k most representative subtrajectories similar to a query. Existing methods rely on costly filtering-validation frameworks, resulting in slow response times. Addressing this, we propose GTRSS, a novel Graph-based Top-k Representative Similar Subtrajectory Query framework. During the offline phase, GTRSS builds a dual-layer graph index that clusters trajectories containing similar representative subtrajectories. In the online phase, it efficiently retrieves results by navigating the graph toward query-relevant clusters, bypassing full-dataset scanning and heavy computation. To support this, we introduce the Data Trajectory Similarity Metric (DTSM) to measure the most similar subtrajectory pair. We further combine R-tree and grid filtering with DTSM pruning rules to speed up index building. To the best of our knowledge, GTRSS is the first graph-based solution for top-k subtrajectory search. Experiments on real datasets demonstrate that GTRSS significantly enhances both efficiency and accuracy, achieving a retrieval accuracy of over 90 percent and up to two orders of magnitude speedup in query performance.

Figures

Figures reproduced from arXiv: 2507.05542 by the authors.

Figure 1
Figure 1. An example of representative similar subtrajectory, For T q , the representative similar subtrajectory in T d1 is T d1 4:8, and in T d2 , it is T d2 2:8, with corresponding represen￾tative similarity scores of 0.897 and 0.937, respectively. retrieval method [10], splitting-based algorithm [9], dynamic programming-based approach [13], and others. However, a single trajectory corresponds to multiple subtrajectories wi… view at source ↗
Figure 2
Figure 2. The offline indexing of GTRSS is divided into two parts: RNSA and CNFI. The RNSA constructs the global aggregated representative index, GARI. The CNFI constructs the comprehensive node detail index, CNDI. Subsequently, online search operations are performed on both GARI and CNDI to achieve efficient and accurate re￾trieval of top-k subtrajectories. B. DTSM algorithm As mentioned, in TRSSQ, each node in dual-layer gr… view at source ↗
Figure 3
Figure 3. Diagram of the Subtrajectory Matching Problem Clearly, evaluating ϕ(T d1 , T d2 ) in Equation 2 requires com￾puting O(n 2 1n 2 2 ) subtrajectory pairwise similarity in the naive approach. The existing methods are unable to effectively solve these problems [29] [30]. Firstly, these algorithms [31] [32] struggle with selecting the most similar subtrajectory pair, as shown in fig 3(a), subtrajectories T d1 1:1 =< pa > … view at source ↗
Figures from the paper (6 more)
Figure 4
Figure 4. Figure 4: DTSM recursive strategy under different matching conditions As shown in [PITH_FULL_IMAGE:figures/full_fig_p006_4.png]
Figure 5
Figure 5. Figure 5: Query processing during the online search phase Search on GARI: As shown in Algorithm 4, the search begins by randomly selecting a node T ▽ from GARI as the initial search point (Line 3). The representative similarity score between the query trajectory T qi and this no…
Figure 6
Figure 6. Figure 6: Computation time for similarity measure of 10 trajectory pairs on Xi’an and Chengdu Datasets C. Indexing Efficiency The first experiment measures graph index construction time, dominated by trajectory similarity computation for neighbor determination. A comparison of s…
Figure 7
Figure 7. Figure 7: The performance comparison results of different filtering methods TABLE I: Performance of different methods under popular trajectory similarity measurement. Distance Function DTW EDR ERP Dataset Method HR20 R10@50 HR50 HR20 R10@50 HR50 HR20 R10@50 HR50 Xi’an T3S 0.0215…
Figure 8
Figure 8. Figure 8: Impact of Number of Neighbors on Accuracy GTRSS CMA Grid CMA LBF CMA OSF CMA GTRSS POS Grid POS LBF POS OSF POS GTRSS PSS Grid PSS LBF PSS OSF PSS 10 20 30 40 50 0.6 0.7 0.8 0.9 1 k Accuracy (a) Chengdu (DTW) 10 20 30 40 50 0.6 0.7 0.8 0.9 1 k (b) Chengdu (EDR) 10 20 3…
Figure 9
Figure 9. Figure 9: Impact of k value on accuracy based graph index consistently outperforms baseline methods. However, as k increases, accuracy declines due to the limited neighbor count. A small neighbor count may restrict trajectory aggregation and limit result availability for a large…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

37 extracted references · 37 canonical work pages

  1. [14]

    Efficient learning-based top-k representative similar subtrajectory query,

    K. Wang, S. Yang, J. Jin, P. Cheng, J. Yang, and X. Lin, “Efficient learning-based top-k representative similar subtrajectory query,” in 2024 IEEE 40th In- ternational Conference on Data Engineering (ICDE) , pp. 4396–4408, IEEE, 2024

  2. [1]

    Vehicle trajectory data mining for artificial intelligence and real-time traffic information extraction,

    P. Zhang, J. Zheng, H. Lin, C. Liu, Z. Zhao, and C. Li, “Vehicle trajectory data mining for artificial intelligence and real-time traffic information extraction,” IEEE Trans- actions on Intelligent Transportation Systems , vol. 24, no. 11, pp. 13088–13098, 2023

  3. [2]

    Travel-time prediction using gaus- sian process regression: A trajectory-based approach,

    T. Id ´e and S. Kato, “Travel-time prediction using gaus- sian process regression: A trajectory-based approach,” in Proceedings of the 2009 SIAM International Conference on Data Mining , pp. 1185–1196, SIAM, 2009

  4. [3]

    Chalkboarding: A new spatiotemporal query paradigm for sports play retrieval,

    L. Sha, P. Lucey, Y . Yue, P. Carr, C. Rohlf, and I. Matthews, “Chalkboarding: A new spatiotemporal query paradigm for sports play retrieval,” in Proceedings of the 21st International Conference on Intelligent User Interfaces, pp. 336–347, 2016

  5. [4]

    Efficient retrieval of similar time sequences under time warping,

    B.-K. Yi, H. V . Jagadish, and C. Faloutsos, “Efficient retrieval of similar time sequences under time warping,” in Proceedings 14th International Conference on Data Engineering, pp. 201–208, IEEE, 1998

  6. [5]

    Robust and fast sim- ilarity search for moving object trajectories,

    L. Chen, M. T. ¨Ozsu, and V . Oria, “Robust and fast sim- ilarity search for moving object trajectories,” in Proceed- ings of the 2005 ACM SIGMOD international conference on Management of data , pp. 491–502, 2005

  7. [6]

    On the marriage of lp-norms and edit distance,

    L. Chen and R. Ng, “On the marriage of lp-norms and edit distance,” in Proceedings of the Thirtieth interna- tional conference on Very large data bases-Volume 30 , pp. 792–803, 2004

  8. [7]

    Trass: Efficient trajectory similarity search based on key-value data stores,

    H. He, R. Li, S. Ruan, T. He, J. Bao, T. Li, and Y . Zheng, “Trass: Efficient trajectory similarity search based on key-value data stores,” in 2022 IEEE 38th International conference on data engineering (ICDE) , pp. 2306–2318, IEEE, 2022

Show all 37 references
  1. [8]

    Distributed in-memory trajectory similarity search and join on road network,

    H. Yuan and G. Li, “Distributed in-memory trajectory similarity search and join on road network,” in 2019 IEEE 35th international conference on data engineering (ICDE), pp. 1262–1273, IEEE, 2019

  2. [9]

    Efficient and effective similar subtrajectory search with deep reinforce- ment learning,

    Z. Wang, C. Long, G. Cong, and Y . Liu, “Efficient and effective similar subtrajectory search with deep reinforce- ment learning,” arXiv preprint arXiv:2003.02542 , 2020

  3. [10]

    Fast subtrajec- tory similarity search in road networks under weighted edit distance constraints,

    S. Koide, C. Xiao, and Y . Ishikawa, “Fast subtrajec- tory similarity search in road networks under weighted edit distance constraints,” Proc. VLDB Endow. , vol. 13, p. 2188–2201, July 2020

  4. [11]

    Distributed subtrajectory join on massive datasets,

    P. Tampakis, C. Doulkeridis, N. Pelekis, and Y . Theodor- idis, “Distributed subtrajectory join on massive datasets,” ACM Transactions on Spatial Algorithms and Systems (TSAS), vol. 6, no. 2, pp. 1–29, 2020

  5. [12]

    Efficient and effective similar subtrajectory search: A spatial- aware comprehension approach,

    L. Deng, H. Sun, R. Sun, Y . Zhao, and H. Su, “Efficient and effective similar subtrajectory search: A spatial- aware comprehension approach,” ACM Trans. Intell. Syst. Technol., vol. 13, no. 3, pp. 35:1–35:22, 2022

  6. [13]

    Exact and efficient similar subtrajectory search: Integrating constraints and simplification,

    L. Deng, F. Wang, T. Wang, Y . Zhao, Y . Xia, and K. Zheng, “Exact and efficient similar subtrajectory search: Integrating constraints and simplification,” in 2025 IEEE 41st International Conference on Data Engi- neering (ICDE) , pp. 1056–1069, IEEE Computer Soci- ety, 2025

  7. [15]

    Efficient and robust approximate nearest neighbor search using hierarchical navigable small world graphs,

    Y . A. Malkov and D. A. Yashunin, “Efficient and robust approximate nearest neighbor search using hierarchical navigable small world graphs,” IEEE transactions on pattern analysis and machine intelligence , vol. 42, no. 4, pp. 824–836, 2018

  8. [16]

    Efficient and effective similar subtrajectory search with deep reinforce- ment learning,

    Z. Wang, C. Long, G. Cong, and Y . Liu, “Efficient and effective similar subtrajectory search with deep reinforce- ment learning,” Proc. VLDB Endow. , vol. 13, no. 11, pp. 2312–2325, 2020

  9. [17]

    Ef- ficient non-learning similar subtrajectory search,

    J. Jin, P. Cheng, L. Chen, X. Lin, and W. Zhang, “Ef- ficient non-learning similar subtrajectory search,” Proc. VLDB Endow., vol. 16, p. 3111–3123, July 2023

  10. [18]

    Efficient and effective similar subtrajectory search with deep reinforcement learning,

    Z. Wang, C. Long, G. Cong, and Y . Liu, “Efficient and effective similar subtrajectory search with deep reinforcement learning,” Proc. VLDB Endow. , vol. 13, p. 2312–2325, July 2020

  11. [19]

    A methodology for implementing highly concurrent data objects (abstract),

    M. Herlihy, “A methodology for implementing highly concurrent data objects (abstract),” ACM SIGOPS Oper. Syst. Rev., vol. 26, no. 2, p. 12, 1992

  12. [20]

    KSQ: top-(k) similarity query on uncertain trajectories,

    C. Ma, H. Lu, L. Shou, and G. Chen, “KSQ: top-(k) similarity query on uncertain trajectories,” IEEE Trans. Knowl. Data Eng. , vol. 25, no. 9, pp. 2049–2062, 2013

  13. [21]

    REPOSE: distributed top-k trajectory similarity search with local reference point tries,

    B. Zheng, L. Weng, X. Zhao, K. Zeng, X. Zhou, and C. S. Jensen, “REPOSE: distributed top-k trajectory similarity search with local reference point tries,” in 37th IEEE International Conference on Data Engineering, ICDE 2021, Chania, Greece, April 19-22, 2021 , pp. 708–719, IEEE, 2021

  14. [22]

    Garden: a real-time processing framework for continu- ous top-k trajectory similarity search,

    Z. Pan, P. Chao, J. Fang, W. Chen, J. Xu, and L. Zhao, “Garden: a real-time processing framework for continu- ous top-k trajectory similarity search,” Knowl. Inf. Syst. , vol. 65, no. 9, pp. 3777–3805, 2023

  15. [23]

    Stkst-i: An efficient semantic trajectory search by temporal and semantic keywords,

    X. Wu, Y . Liu, X. Zhao, and J. Chen, “Stkst-i: An efficient semantic trajectory search by temporal and semantic keywords,” Expert Systems with Applications , vol. 225, p. 120064, 2023

  16. [24]

    An effectiveness study on trajectory similarity measures,

    H. Wang, H. Su, K. Zheng, S. Sadiq, and X. Zhou, “An effectiveness study on trajectory similarity measures,” in Proceedings of the Twenty-Fourth Australasian Database Conference-Volume 137, pp. 13–22, 2013

  17. [25]

    Top- k community similarity search over large-scale road networks,

    N. Rai and X. Lian, “Top- k community similarity search over large-scale road networks,” IEEE Transactions on Knowledge and Data Engineering , vol. 35, no. 10, pp. 10710–10721, 2023

  18. [26]

    Rndlp: A distributed framework for supporting continuous k- similarity trajectories search over road network,

    H. Jiang, S. Tong, R. Zhu, and B. Wei, “Rndlp: A distributed framework for supporting continuous k- similarity trajectories search over road network,” Mathe- matics, vol. 12, no. 2, p. 270, 2024

  19. [27]

    Towards efficient privacy-preserving top-k trajectory similarity query,

    K. Yi, Y . Chen, Y . Su, X. Li, H. Liu, H. Dai, X. Guo, and Y . Chen, “Towards efficient privacy-preserving top-k trajectory similarity query,” in 2023 IEEE 20th Interna- tional Conference on Mobile Ad Hoc and Smart Systems (MASS), pp. 512–520, IEEE, 2023

  20. [28]

    Continuous trajectory similarity search with result diversification,

    X. Yu, S. Zhu, and Y . Ren, “Continuous trajectory similarity search with result diversification,” Future Gen- eration Computer Systems, vol. 143, pp. 392–400, 2023

  21. [29]

    Vehicle trajectory similarity: Models, methods, and ap- plications,

    R. S. D. Sousa, A. Boukerche, and A. A. Loureiro, “Vehicle trajectory similarity: Models, methods, and ap- plications,” ACM Computing Surveys (CSUR) , vol. 53, no. 5, pp. 1–32, 2020

  22. [30]

    Trajectory similarity mea- sures,

    K. Toohey and M. Duckham, “Trajectory similarity mea- sures,” Sigspatial Special, vol. 7, no. 1, pp. 43–50, 2015

  23. [31]

    The definition and com- putation of trajectory and subtrajectory similarity,

    M. Van Kreveld and J. Luo, “The definition and com- putation of trajectory and subtrajectory similarity,” in Proceedings of the 15th annual ACM international sym- posium on Advances in geographic information systems , pp. 1–4, 2007

  24. [32]

    Similarity measurement of moving object trajectories,

    H. Liu and M. Schneider, “Similarity measurement of moving object trajectories,” in Proceedings of the 3rd ACM SIGSPATIAL International Workshop on GeoStreaming, pp. 19–22, 2012

  25. [33]

    A survey of trajectory distance measures and performance evaluation,

    H. Su, S. Liu, B. Zheng, X. Zhou, and K. Zheng, “A survey of trajectory distance measures and performance evaluation,” The VLDB Journal, vol. 29, pp. 3–32, 2020

  26. [34]

    Gaia open dataset,

    D. Chuxing, “Gaia open dataset,” Internet Link: https://outreach. didichuxing. com/research/open- data/en/(Accessed on August 18, 2019) , 2019

  27. [35]

    Tmn: Trajectory matching networks for predicting similarity,

    P. Yang, H. Wang, D. Lian, Y . Zhang, L. Qin, and W. Zhang, “Tmn: Trajectory matching networks for predicting similarity,” in 2022 IEEE 38th International Conference on Data Engineering (ICDE) , pp. 1700– 1713, IEEE, 2022

  28. [36]

    Computing trajectory similarity in linear time: A generic seed-guided neural metric learning approach,

    D. Yao, G. Cong, C. Zhang, and J. Bi, “Computing trajectory similarity in linear time: A generic seed-guided neural metric learning approach,” in 2019 IEEE 35th international conference on data engineering (ICDE) , pp. 1358–1369, IEEE, 2019

  29. [37]

    T3s: Effective representation learning for tra- jectory similarity computation,

    P. Yang, H. Wang, Y . Zhang, L. Qin, W. Zhang, and X. Lin, “T3s: Effective representation learning for tra- jectory similarity computation,” in 2021 IEEE 37th In- ternational Conference on Data Engineering (ICDE) , pp. 2183–2188, IEEE, 2021

Pith tools

Reviewed August 6, 2026 · model on record in the stance chip above.