如何用python獲取到照片拍攝時的詳細(xì)位置(附源碼)
一.引言
先看獲取到的效果
拍攝時間:2021:12:18 16:22:13
照片拍攝地址:('內(nèi)蒙古自治區(qū)包頭市昆都侖區(qū)', '內(nèi)蒙古自治區(qū)', '包頭市', '昆都侖區(qū)', '多米幼兒園東南360米')

我們的女朋友給我們發(fā)來一張照片我們?nèi)绾潍@取到她的位置呢?
用手機拍照會帶著GPS信息,原來沒注意過這個,因此查看下并使用代碼獲取照片里的GPS信息
查看圖片文件屬性

1.讀取照片信息,獲取坐標(biāo)
ExifRead
Python library to extract EXIF data from tiff and jpeg files.
安裝
pip install exifread
讀取GPS
import exifread
import re
def read():
GPS = {}
date = ''
f = open("C:\\Users\\24190\\Desktop\\小朱學(xué)長.jpg",'rb')
contents = exifread.process_file(f)
for key in contents:
if key == "GPS GPSLongitude":
print("經(jīng)度 =", contents[key],contents['GPS GPSLatitudeRef'])
elif key =="GPS GPSLatitude":
print("緯度 =",contents[key],contents['GPS GPSLongitudeRef'])
#print(contents)
read()
運行

我們得到了一個簡易的gps地址
如果想要讀取全部的拍攝信息:
# 讀取照片的GPS經(jīng)緯度信息
def find_GPS_image(pic_path):
GPS = {}
date = ''
with open(pic_path, 'rb') as f:
tags = exifread.process_file(f)
for tag, value in tags.items():
# 緯度
if re.match('GPS GPSLatitudeRef', tag):
GPS['GPSLatitudeRef'] = str(value)
# 經(jīng)度
elif re.match('GPS GPSLongitudeRef', tag):
GPS['GPSLongitudeRef'] = str(value)
# 海拔
elif re.match('GPS GPSAltitudeRef', tag):
GPS['GPSAltitudeRef'] = str(value)
elif re.match('GPS GPSLatitude', tag):
try:
match_result = re.match('\[(\w*),(\w*),(\w.*)/(\w.*)\]', str(value)).groups()
GPS['GPSLatitude'] = int(match_result[0]), int(match_result[1]), int(match_result[2])
except:
deg, min, sec = [x.replace(' ', '') for x in str(value)[1:-1].split(',')]
GPS['GPSLatitude'] = latitude_and_longitude_convert_to_decimal_system(deg, min, sec)
elif re.match('GPS GPSLongitude', tag):
try:
match_result = re.match('\[(\w*),(\w*),(\w.*)/(\w.*)\]', str(value)).groups()
GPS['GPSLongitude'] = int(match_result[0]), int(match_result[1]), int(match_result[2])
except:
deg, min, sec = [x.replace(' ', '') for x in str(value)[1:-1].split(',')]
GPS['GPSLongitude'] = latitude_and_longitude_convert_to_decimal_system(deg, min, sec)
elif re.match('GPS GPSAltitude', tag):
GPS['GPSAltitude'] = str(value)
elif re.match('.*Date.*', tag):
date = str(value)
return {'GPS_information': GPS, 'date_information': date}
2.通過baidu Map的API將GPS信息轉(zhuǎn)換成地址。
眾所周知gps和百度的經(jīng)緯度會有誤差,那么我們需要調(diào)用百度轉(zhuǎn)換接口,這個百度目前沒有開源。
# 通過baidu Map的API將GPS信息轉(zhuǎn)換成地址。
def find_address_from_GPS(GPS):
"""
使用Geocoding API把經(jīng)緯度坐標(biāo)轉(zhuǎn)換為結(jié)構(gòu)化地址。
:param GPS:
:return:
"""
secret_k ey = 'XXX'
if not GPS['GPS_information']:
return '該照片無GPS信息'
lat, lng = GPS['GPS_information']['GPSLatitude'], GPS['GPS_information']['GPSLongitude']
baidu_map_api = "http://api.map.baidu.com/geocoder/v2/?ak={0}&callback=renderReverse&location={1},{2}s&output=json&pois=0".format(
secret_key, lat, lng)
response = requests.get(baidu_map_api)
content = response.text.replace("renderReverse&&renderReverse(", "")[:-1]
print(content)
baidu_map_address = json.loads(content)
formatted_address = baidu_map_address["result"]["formatted_address"]
province = baidu_map_address["result"]["addressComponent"]["province"]
city = baidu_map_address["result"]["addressComponent"]["city"]
district = baidu_map_address["result"]["addressComponent"]["district"]
location = baidu_map_address["result"]["sematic_description"]
return formatted_address, province, city, district, location然后在主函數(shù)輸出:

二.源碼附上!??!
# coding=utf-8
import exifread
import re
import json
import requests
import os
# 轉(zhuǎn)換經(jīng)緯度格式
def latitude_and_longitude_convert_to_decimal_system(*arg):
"""
經(jīng)緯度轉(zhuǎn)為小數(shù), param arg:
:return: 十進(jìn)制小數(shù)
"""
return float(arg[0]) + ((float(arg[1]) + (float(arg[2].split('/')[0]) / float(arg[2].split('/')[-1]) / 60)) / 60)
# 讀取照片的GPS經(jīng)緯度信息
def find_GPS_image(pic_path):
GPS = {}
date = ''
with open(pic_path, 'rb') as f:
tags = exifread.process_file(f)
for tag, value in tags.items():
# 緯度
if re.match('GPS GPSLatitudeRef', tag):
GPS['GPSLatitudeRef'] = str(value)
# 經(jīng)度
elif re.match('GPS GPSLongitudeRef', tag):
GPS['GPSLongitudeRef'] = str(value)
# 海拔
elif re.match('GPS GPSAltitudeRef', tag):
GPS['GPSAltitudeRef'] = str(value)
elif re.match('GPS GPSLatitude', tag):
try:
match_result = re.match('\[(\w*),(\w*),(\w.*)/(\w.*)\]', str(value)).groups()
GPS['GPSLatitude'] = int(match_result[0]), int(match_result[1]), int(match_result[2])
except:
deg, min, sec = [x.replace(' ', '') for x in str(value)[1:-1].split(',')]
GPS['GPSLatitude'] = latitude_and_longitude_convert_to_decimal_system(deg, min, sec)
elif re.match('GPS GPSLongitude', tag):
try:
match_result = re.match('\[(\w*),(\w*),(\w.*)/(\w.*)\]', str(value)).groups()
GPS['GPSLongitude'] = int(match_result[0]), int(match_result[1]), int(match_result[2])
except:
deg, min, sec = [x.replace(' ', '') for x in str(value)[1:-1].split(',')]
GPS['GPSLongitude'] = latitude_and_longitude_convert_to_decimal_system(deg, min, sec)
elif re.match('GPS GPSAltitude', tag):
GPS['GPSAltitude'] = str(value)
elif re.match('.*Date.*', tag):
date = str(value)
return {'GPS_information': GPS, 'date_information': date}
# 通過baidu Map的API將GPS信息轉(zhuǎn)換成地址。
def find_address_from_GPS(GPS):
"""
使用Geocoding API把經(jīng)緯度坐標(biāo)轉(zhuǎn)換為結(jié)構(gòu)化地址。
:param GPS:
:return:
"""
secret_ke y = 'zbLsuDDL4CS2U0M4KezOZZbGUY9iWtVf'
if not GPS['GPS_information']:
return '該照片無GPS信息'
lat, lng = GPS['GPS_information']['GPSLatitude'], GPS['GPS_information']['GPSLongitude']
baidu_map_api = "http://api.map.baidu.com/geocoder/v2/?ak={0}&callback=renderReverse&location={1},{2}s&output=json&pois=0".format(
secret_key, lat, lng)
response = requests.get(baidu_map_api)
content = response.text.replace("renderReverse&&renderReverse(", "")[:-1]
print(content)
baidu_map_address = json.loads(content)
formatted_address = baidu_map_address["result"]["formatted_address"]
province = baidu_map_address["result"]["addressComponent"]["province"]
city = baidu_map_address["result"]["addressComponent"]["city"]
district = baidu_map_address["result"]["addressComponent"]["district"]
location = baidu_map_address["result"]["sematic_description"]
return formatted_address, province, city, district, location
if __name__ == '__main__':
GPS_info = find_GPS_image(pic_path='小朱學(xué)長.jpg')
address = find_address_from_GPS(GPS=GPS_info)
print("拍攝時間:" + GPS_info.get("date_information"))
print('照片拍攝地址:' + str(address))注意事項
1.照片的地址信息等,一般的手機相機默認(rèn)是打開的。
2.微信和QQ里面發(fā)送原圖,信息都會完整的保留下來。
3.代碼里面需要處理在照片我放到了代碼的同文件夾下,所以沒有寫路徑,大家可以自己寫路徑,或者放到于代碼相同的路徑下即可。
總結(jié)
到此這篇關(guān)于如何用python獲取到照片拍攝時的詳細(xì)位置的文章就介紹到這了,更多相關(guān)python獲取照片詳細(xì)位置內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
python將unicode和str互相轉(zhuǎn)化的實現(xiàn)
這篇文章主要介紹了python將unicode和str互相轉(zhuǎn)化的實現(xiàn),具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-05-05
利用Python如何將數(shù)據(jù)寫到CSV文件中
在數(shù)據(jù)分析中經(jīng)常需要從csv格式的文件中存取數(shù)據(jù)以及將數(shù)據(jù)寫書到csv文件中。下面這篇文章主要給大家介紹了關(guān)于利用Python如何將數(shù)據(jù)寫到CSV文件中的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),需要的朋友可以參考下2018-06-06
Python環(huán)境下安裝使用異步任務(wù)隊列包Celery的基礎(chǔ)教程
這篇文章主要介紹了Python環(huán)境下安裝使用異步任務(wù)隊列包Celery的基礎(chǔ)教程,Celery的分布式任務(wù)管理適合用于服務(wù)器集群的管理和維護(hù),需要的朋友可以參考下2016-05-05
pandas中read_excel()函數(shù)的基本使用
在Python的數(shù)據(jù)處理庫pandas中,read_excel()函數(shù)是用于讀取Excel文件內(nèi)容的強大工具,本文就來介紹一下如何使用,具有一定的參考價值,感興趣的可以了解一下2024-03-03
Numpy中扁平化函數(shù)ravel()和flatten()的區(qū)別詳解
本文主要介紹了Numpy中扁平化函數(shù)ravel()和flatten()的區(qū)別詳解,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2023-02-02
基于Python構(gòu)建深度學(xué)習(xí)圖像分類模型
在人工智能的浪潮中,圖像分類作為計算機視覺領(lǐng)域的基礎(chǔ)任務(wù)之一,一直備受關(guān)注,本文將介紹如何使用Python和PyTorch框架,構(gòu)建一個簡單的深度學(xué)習(xí)圖像分類模型,感興趣的可以了解下2024-12-12
Python實現(xiàn)partial改變方法默認(rèn)參數(shù)
這篇文章主要介紹了Python實現(xiàn)partial改變方法默認(rèn)參數(shù),需要的朋友可以參考下2014-08-08

