Using a Geo Distance Function on ELKI

前端 未结 1 1948
粉色の甜心
粉色の甜心 2021-01-22 06:13

I am using ELKI to mine some geospatial data (lat,long pairs) and I am quite concerned on using the right data types and algorithms. On the parameterizer of my algorithm, I trie

相关标签:
1条回答
  • 2021-01-22 06:16

    What is your epsilon value?

    Geographic distance is in meters in ELKI (if I recall correctly); Manhattan distance would be in latitude + longitude degrees. For obvious reasons, these live on very different scales, and therefore you need to choose a different epsilon value.

    In your previous questions, you used epsilon=0.008. For geodetic distance, 0.008 meters = 8 millimeter.

    At epsilon = 8 millimeter, I am not surprised if the clusters you get consist only of duplicated coordinates. Any chance that above coordinates do exist multiple times in your data set?

    0 讨论(0)
提交回复
热议问题