发布于2019-08-07 12:06 阅读(1429) 评论(0) 点赞(5) 收藏(2)
from PIL import Image
from PIL.ExifTags import TAGS
import os
output="Z://result.csv"
out=open(output,'a')
out.write('lat,lon\n')
fpath="Z://iphonephoto"
for item in os.walk(fpath):
ob=item[2]
for i in ob:
name=fpath+'/'+str(i)
ret={}
try:
img=Image.open(name)
if hasattr(img,'_getexif'):
exifinfo=img._getexif()
if exifinfo !=None:
for tag,value in exifinfo.items():
decoded=TAGS.get(tag,tag)
ret[decoded]=value
N1 = ret['GPSInfo'][2][0][0]
N2 = ret['GPSInfo'][2][1][0]
N3 = ret['GPSInfo'][2][2][0]
N=int(N1)+int(N2)*(1.0/60)+int(N3)*(1.0/360000)
E1 = ret['GPSInfo'][4][0][0]
E2 = ret['GPSInfo'][4][1][0]
E3 = ret['GPSInfo'][4][2][0]
E=int(E1)+int(E2)*(1.0/60)+int(E3)*(1.0/360000)
out.write(str(N)+','+str(E)+'\n')
except:
pass
out.close()
作者:西红柿煎鸡蛋
链接:https://www.pythonheidong.com/blog/article/10621/739ee37e6452bb29d76e/
来源:python黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 python黑洞网 All Rights Reserved 版权所有,并保留所有权利。 京ICP备18063182号-1
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!