Ошибка ключа, когда ключ находится в словаре

Просто пытаюсь вытянуть некоторую информацию о широте / долготе из EXIF-данных на кучу фотографий, но код выдаетKeyError даже если этот ключ используется (успешно) позже для печати определенных координат.

Словарь в вопросе "tags"-'GPS GPSLatitude' а также'GPS GPSLongitude' оба ключа вtags.keys(); Я трижды проверил.

Так что любая интуиция о том, почемуtags['GPS GPSLatitude'] & tags['GPS GPSLongitude'] бросают ключевые ошибки?

import os
import exifread

output = dict()
output['name'] = []
output['lon'] = []
output['lat'] = []

for file in os.listdir(path):
    if file.endswith(".JPG"):
        full_path = path + file
        print (file) #check to ensure all files were found
        output['name'].append(file) #append photo name to dictionary
        f = open(full_path, 'rb') #open photo
        tags = exifread.process_file(f) #read exifdata
#       lon = tags['GPS GPSLongitude'] #this + next line = one method
#       output['lon'].append(lon)
#       output['lat'].append(tags['GPS GPSLatitude']) # = cleaner second method
        for tag in tags.keys():
            if tag in ('GPS GPSLongitude','GPS GPSLatitude'):
                print ("Key: %s, value %s" % (tag, tags[tag])) #successfully prints lat/lon coords with 'GPS GPSLongitude' and 'GPS GPSLatitude' as keys

ОБНОВИТЬ:

Вот выводprint (tags.keys()) -- вот увидишьGPS GPSLatitude а такжеGPS GPSLongitude там. Кроме того, вручную проверил все фотографии в подмножестве, которое я использую, имеют данные GPS.

dict_keys(['GPS GPSImgDirection', 'EXIF SceneType', 'MakerNote Tag 0x0006', 'GPS GPSDestBearing', 'Thumbnail XResolution', 'EXIF BrightnessValue', 'GPS GPSAltitude', 'GPS GPSLongitude', 'EXIF LensSpecification', 'GPS GPSAltitudeRef', 'GPS GPSSpeedRef', 'GPS GPSDestBearingRef', 'EXIF WhiteBalance', 'Thumbnail ResolutionUnit', 'EXIF FocalLengthIn35mmFilm', 'EXIF SceneCaptureType', 'Image Model', 'MakerNote Tag 0x0008', 'Image Make', 'EXIF ShutterSpeedValue', 'MakerNote Tag 0x0007', 'EXIF ExifImageWidth', 'EXIF LensModel', 'Image YResolution', 'EXIF ComponentsConfiguration', 'Image GPSInfo', 'EXIF ISOSpeedRatings', 'EXIF ExposureMode', 'EXIF Flash', 'EXIF FlashPixVersion', 'GPS GPSLatitudeRef', 'EXIF ExposureBiasValue', 'Thumbnail JPEGInterchangeFormatLength', 'Thumbnail Compression', 'Image YCbCrPositioning', 'EXIF MakerNote', 'EXIF FNumber', 'JPEGThumbnail', 'MakerNote Tag 0x0001', 'EXIF ColorSpace', 'EXIF SubSecTimeDigitized', 'Thumbnail JPEGInterchangeFormat', 'MakerNote Tag 0x0004', 'EXIF SubjectArea', 'Image ResolutionUnit', 'EXIF SensingMethod', 'Image DateTime', 'Image Orientation', 'EXIF ExifVersion', 'Image ExifOffset', 'GPS GPSImgDirectionRef', 'MakerNote Tag 0x0014', 'Thumbnail YResolution', 'EXIF DateTimeOriginal', 'MakerNote Tag 0x0005', 'EXIF LensMake', 'EXIF DateTimeDigitized', 'MakerNote Tag 0x0003', 'GPS GPSTimeStamp', 'EXIF ExposureTime', 'GPS Tag 0x001F', 'EXIF SubSecTimeOriginal', 'GPS GPSLatitude', 'Image Software', 'EXIF ApertureValue', 'GPS GPSDate', 'EXIF ExposureProgram', 'GPS GPSSpeed', 'EXIF ExifImageLength', 'EXIF MeteringMode', 'GPS GPSLongitudeRef', 'EXIF FocalLength', 'Image XResolution'])

Проследить

---------------------------------------------------------------------------
KeyError                                  Traceback (most recent call last)
<ipython-input-14-949ba89a1248> in <module>()
     16 #        lon = tags["GPS GPSLongitude"]
     17 #        output['lon'].append(lon)
---> 18         output['lat'].append(tags['GPS GPSLatitude'])
     19         for tag in tags.keys():
     20             if tag in ('GPS GPSLongitude','GPS GPSLatitude'):

KeyError: 'GPS GPSLatitude'

Ссылка на фото:https://drive.google.com/a/cornell.edu/file/d/0B1DwcbbAH1yuTEs0cUhhODdlNnc/view

Вывод распечатки заявления на это фото

IMG_6680.JPG
Key: GPS GPSLongitude, value [76, 29, 353/20]
Key: GPS GPSLatitude, value [42, 26, 5069/100]

Ответы на вопрос(2)

Ваш ответ на вопрос