Skip to main content
. 2026 Feb 13;26(4):1217. doi: 10.3390/s26041217
Algorithm 2: High-Frequency Stream Ingestion
Input: Geometry G, DyGLIN Index
Output: Success/Failure
1: /* 1. Find the corresponding leaf node */
2: LeafNode L = Index.RMI_Probe(G.Zmin)
3: if L.DB.is_full() then
4:    Merge(L)
5: end if
6: /* O(1) operation: Only append to the buffer */
7: L.DB.append(G)
8: return Success