readme

来自「此文件包含了在linux下实现tpr-tree索引的源代码」· 代码 · 共 56 行

TXT
56
字号
Moving objects index workload generator source code, version 1.1================================================================The high-level description of the generator, its parameters, and theworkloads that it generates can be found in the "PerformanceExperiments" section of a TimeCenter TR-44 "Indexing the Positions ofContinuously Moving Objects."(http://www.cs.auc.dk/research/DP/tdb/TimeCenter/TimeCenterPublications/TR-44.ps.gz)The generator can be compiled using the provided make file. Itcompiles with GNU C++.A sample generator parameters file test.prm is provided (moreparameter files used in experiments described in the technical reportcan be found in prm/ subdirectory). Comments are provided in test.prmdescribing individual parameters.Start the generator by typing:./generate test.prm   or ./generate -t test.prmIn both cases test.sql is output. In the first case the output is abinary file, in the second - a readable text file. In addition,test.dat is output if Load parameter in test.prm is set to 1. test.datis a binary file containing data for bulk-loading of an index. Thefile consists of a number of records which have a format: record_id(four-byte integer), followed by spatial coordinates and velocityvector coordinates (all four-byte floats). If Load parameter is set to0, the initial index data is generated as a series of insertoperations at the beginning of test.sql.The .sql file contains commands to the index:t intvalue    Changes the current time to intvalue a            Advances the time by 1i (x[, y[, z]], vx[, vy[, vz]]), integer_key   Inserts a point (1, 2, or 3D) into the index (position at time 0, velocity vector)d (x[, y[, z]], vx[, vy[, vz]]), integer_key   Deletes a point from the index  s &(x1[, y1[, z1]], x2[, y2[, z2]], t1, t2[, vx[, vy[, vz]]])   Performs a rectangular query (which is a moving, if a velocity vector is specified)Comments and bug reports are welcome and should be sent tosimas@cs.auc.dkCopyright (c) 1999-2001, Aalborg University

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?