此代码在共享驱动器上运行.KAP文件,并在我的本地驱动器上创建CSV,仅包含.KAP文件中lat / lon的坐标对。
.KAP文件中的坐标线示例
PLY/1,48.107478621032,-69.733975000000
PLY/2,48.163516399836,-70.032838888053
PLY/3,48.270000002883,-70.032838888053
PLY/4,48.107478621032,-69.733975000000
这些坐标稍后将用于创建多边形。
问题:大约一半的.KAP文件也将第一个lat / lon坐标对保留为最后一个lat / lon坐标对。 (非常适用于关闭多边形,请参阅上面的PLY / 1和PLY / 4是如何相同的)。出于某种原因,某些.KAP文件没有此功能。看看我去哪了?
我如何确保第一个坐标对始终记录为所有输出CSV中的最后一个坐标对?
到目前为止,这是我的代码:
import os
import zipfile
import csv
currentPath = r"K:\BsbProd\BSBCHS\BSB_4_Release"
for zip in [i for i in os.listdir(currentPath) if i.lower().endswith('.zip')]:
zf = zipfile.ZipFile(os.path.join(currentPath, zip), 'r')
for each in [n for n in zf.namelist() if n.lower().endswith('.kap')]:
currentFile = zf.open(each).readlines()
writer = csv.writer(open(r"C:\Users\PalmerDa\Desktop\BSB\{}.csv".format(os.path.basename(each)), "wb"))
for row in currentFile:
if row.startswith('PLY'):
col1, col2 = row.split(",")[1:]
rows = float(col1), float(col2)
writer.writerow(rows)
答案 0 :(得分:0)
只需对最后一行进行某种检查,看它是否与第一行相同,如果没有,则将第一行的副本添加到结尾。也许像是
for i in range(len(currentFile)):
row = currentfile[i]
if(row.startswith('PLY')):
col1, col2 = row.split(",")[1:]
rows = float(col1), float(col2)
writer.writerow(rows)
if(i = len(currentFile) and row != currentfile[0]):
firstcol1, firstcol2 = currentfile[0].split(',')[1:]
firstrow = float(firstcol1), float(firstcol2)
writer.writerow(firstrow)
或者更简单,只需在读取行后查看任何行之前将第一行添加到结尾:
currentFile = zf.open(each).readlines()
if(currentFile[-1] != currentFile[0]): currentFile.append(currentFile[0])
然后您根本不需要更改行循环。我更喜欢第二种解决方案
答案 1 :(得分:0)
当我有时间这样做时,我想出了这个问题的解决方案:
Load