0

我正在使用 google_streetview.api,但我遇到了无法解决的问题。文档告诉我,我可以通过用 ; 分隔在一行中运行多个参数。但我不知道如何循环使用一行内的值。我有一个循环遍历的带有 x 和 y 坐标的数据框。标准版如下所示:

params = [{
'size': '600x300', # max 640x640 pixels
'location': '46.414382,10.013988',
'heading': '151.78',
'pitch': '-0.76',
'key': 'your_dev_key'
}]

我需要这条线:

'location': '1234,1234',

像这样去:

for coor, row in df.iterrows():
    x=row.POINT_X
    y=row.POINT_Y
    'location': 'POINT_Y1,POINT_X1; POINT_Y2, POINT_X2; and so on',

我首先为完整参数执行了循环,但是当我使用 ; 跳过分隔时 我最终得到了很多单个 json 文件,我需要能够告诉它添加 ; 对于数据框中的每个 x 和 y。

4

2 回答 2

0
';'.join([r.POINT_X + ',' + r.POINT_Y for _, r in df.iterrows()])
于 2019-12-05T10:24:52.387 回答
0

自然,您需要指定要将 x 和 y 点添加到字典的location索引中。params

您可能希望从坐标中构建一个列表并将它们连接到一个字符串中:

#creates a list of string with the (x, y) coordinates
coords = [','.join([row.POINT_X, row.POINT_Y]) for row in df.iterrows()]
#creates a string out of the coordinates separated by ";"
#and sets it as the value for the location index in params.
params[0]['location'] = ';'.join(coords)

请注意,我假设 params 已经存在。

于 2019-12-05T10:51:41.397 回答