我想写两个标题,但我正在接收我的实际两个标题和3个空白字段。可能是什么原因造成的?这是我的脚本和输出。该脚本解析JSON Web服务并将lat / lng总线发送到Esri文件地理数据库。
import requests
import json
import urllib2
import csv
import arcpy
if arcpy.Exists("C:\MYLATesting.gdb\API_Table"):
arcpy.Delete_management("C:\MYLATesting.gdb\API_Table")
url = "http://api.metro.net/agencies/lametro/vehicles/"
parsed_json = json.load(urllib2.urlopen("http://api.metro.net/agencies/lametro/vehicles/"))
details = {'items': 'longitude'}
headers = {'Content-type': 'application/x-www-form-urlencoded', 'Accept': '/'}
response = requests.get(url, data=json.dumps(details), headers=headers)
# tell computer where to put CSV
outfile_path='C:\Users\Administrator\Desktop\API_Testing.csv'
# open it up, the w means we will write to it
writer = csv.writer(open(outfile_path, 'wb'))
#create a list with headings for our columns
headers = ['latitude','longitude']
for items in parsed_json['items']:
row = []
row.append(str(items['latitude']).encode('utf-8'))
row.append(str(items['longitude']).encode('utf-8'))
writer.writerow(row)
i = 1
i = i +1
f = open(outfile_path, 'wb')
writer = csv.writer(f)
#write the row of headings to our CSV file
writer.writerow(headers)
f.close()
#Temporary Delete Function to Overwrite Table
arcpy.TableToTable_conversion(outfile_path, "C:\MYLATesting.gdb", "API_Table")
print response.text
答案 0 :(得分:0)
额外的空白列可能意味着以下两种情况之一: 1.你的脚本在每行末尾输出额外的逗号(,),电子表格程序将其解释为附加列或 2. TableToTable_conversion函数正在为似乎是数据库模式做一些时髦的事情。
您是否通过数据库套件查看cvs?在记事本中发布它的样子截图