我有一個包含的形式座標的文本文件: [-1.38795678, 54.90352965]
[-3.2115, 55.95530556]
[0.00315428, 51.50285246]
我希望能夠通過每個迭代協調,以檢查它是在多邊形(UK縣shape文件),但我不知道如何tokenise的號碼,這樣我可以有沿行代碼... for line in coordinates:
for
我正在嘗試查找距離1 KM範圍內的所有最近鄰居。這裏是我的腳本來構建樹和搜索最近點, from pysal.cg.kdtree import KDTree
def construct_tree(s):
data_geopoints = [tuple(x) for x in s[['longitude','latitude']].to_records(index=False)]