gpt4 book ai didi

python - 使用 python 预测长期船舶位置

转载 作者:太空宇宙 更新时间:2023-11-03 20:05:11 26 4
gpt4 key购买 nike

我有关于船舶位置的历史数据的数据集

id : the id of the ship
date : the date when the position was recorded (on a daily basis)
size: the size of the ship (categorical with 3 categories)
longitude
latitude
zone : binary (the variable to predict)
destination: The port of destination
heading : a numerical variable indicating the angle of direction of the ship

所以典型的行看起来像

id    date        size   longitude   latitude   zone   destination   heading
123 20/04/2017 PMX 26.3565 -15.7474 True NYC 36.7654

根据一些标准,我可以意识到,对于每艘船,它们过去所做出的一组不同的轨迹。所以我创建了一个新功能,我称之为轨迹。我还创建了一个速度变量所以我的新数据框看起来像这样

id    date        size   longitude   latitude   zone   destination   heading  trajectory
123 20/04/2017 PMX 26.3565 -15.7474 True NYC 36.7654 1
123 21/04/2017 PMX 29.3556 -18.7498 True NYC 46.7654 1
123 15/05/2017 PMX 36.8760 12.3449 False CHINA 78.7640 2
... ........ .. ..... ..... .... .... ...... ..
567 13/04/2017 SFD 17.8687 16.8787 False Balb 23.3232 3

我必须为该区域实现一个分类算法,以确定 future 30 天内是否有船只经过该区域。我读过一些关于使用轨迹之间的自定义距离进行 DBSCAN 聚类的论文。但这是为了预测位置。所以我想知道是否有更简单的方法来解决这个问题?

最佳答案

对于典型的远洋货船来说,30 天基本上是一次旅程,但有时是两次。

所使用的路径往往非常相似,因为它们被认为是最佳的(围绕 Storm 的模路由)。这些路线不仅对于同一艘船来说是一致的,而且对于所有大小大致相似的船来说也是一致的。

因此,一种方法是根据历史数据构建路线库,而不是位置而是路径进行聚类。如果出发地和目的地相同或相似,您应该检查路线的相似程度。 “中国”不是一个足够精确的目的地,因此,如果这是您的真实输入数据,您应该丢弃该列,并通过检查每个旅程的实际最后位置附近的港口来生成您自己的目的地。

一旦远离陆地,货船的速度就会有些均匀,因此预测的路线应该足以预测每天旅程的位置。当然,一旦开始,您就可以根据已有的数据测试您的预测器。

你的目标区域越小,这就越困难。希望它们足够大。

关于python - 使用 python 预测长期船舶位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59007330/

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