gpt4 book ai didi

elasticsearch - 计算两个地理位置的距离并使用kibana进行可视化

转载 作者:行者123 更新时间:2023-12-03 02:20:36 24 4
gpt4 key购买 nike

嗨,我在AWS中使用Elasticsearch 7.1。我有一个名为

"start_loc":{"lon":123, "lat":34} and "end_loc":{"lon":111, "lat":22}

我想计算它们之间的距离,并创建一个名为“distance”的新字段,该字段将在Kibana中可视化。尝试创建每个距离的每日计数的直方图(间隔为10m)

提前致谢。

最佳答案

在Kibana中,您可以转到索引模式并使用以下脚本创建脚本字段

doc['start_loc'].arcDistance(doc['end_loc'].getLat(), doc['end_loc'].getLon())

结果将是两点之间的距离(以米为单位)(使用 harvesine方法)。

当然,在索引时计算此距离会更好,因为您同时拥有两个点并且这是一个简单的公式。

关于elasticsearch - 计算两个地理位置的距离并使用kibana进行可视化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62440931/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com