nushoin / RTree

N-dimensional RTree implementation in C++
Other
375 stars 107 forks source link

Volume calculation of high dimension data set when min == max in real data set. #18

Open gite360 opened 4 years ago

gite360 commented 4 years ago

Hi, Sorry to disturb you. My data set are some time series. I need to regard each time series as one point to insert RTree. For example: point 1:{(x1,y1),(x2,y2),(x3,y3),(x4,y4) ,..., (xn,yn)}. point 2:{(),()....}, point 3..... I met a situation that some times when min value is equal to max value (y1==y2), the volume calculation is zero. How to deal with this situation? Thank you very much.

AlexVonB commented 4 years ago

Hi, do you have a minimal code example that triggers that error? Greetings