I just added some historic images which I had geotagged manually. Unfortunately Mapillary did not pick up the time from the GPS Time tag, which is the only one my software (Geotag) is allowing me to set (yes, I can use exiftool).
Can I fix this online or do I have to remove the images, update the other tags and reupload?
Btw. a way to edit time online would be nice. I found a more precise date for some of the images, and now Søren Johansen is trying to coin “pastcatching” I will probably not be the last to whish that
@tryl Thanks for the link and the details. When we extract date/time for an image, we check the relevant fields in exif in a specific order and use the whichever one exists first in the ordered list.
DateTime Original
DateTime Digitized
Modify Date
GPS Date/Time
Therefore, we use ModifyDate for this image instead of GPS Date/Time. The reason is we are using this ordering is that we have seen images with wrong date/time in GPS Date/Time field. Unfortunately, we should have use GPS date/time for your images.
How many images have you uploaded? Would it be ok if you hide those images, edit the date/time in DateTimeOriginal and reupload?
How to enter that code on Windows? I have installed exiftool and I have tried enter that code on cmd and warning “exiftool is not recognized as an internal or external command…” appear. I tried to run exiftool.exe, it is only show the information text and cant enter command. Please help, I dont have proramming backround and I cant find easy-to-understand tutorial on Google, and I really need change my photos date and time for upload on mapillary
Find your path variable as described on the site. Add a ; to the value and then the path where exiftool.exe is located.
If the current value of the path variable is
C:\Program Files;C:\Winnt;C:\Winnt\System32
then it should look like
C:\Program Files;C:\Winnt;C:\Winnt\System32;c:\Program Files\exiftool
if exiftool.exe is located in c:\Program Files\exiftool
You can also just enter the full path to exiftool.exe, e.g.
“c:\Program Files\exiftool\exiftool” argument1 argument2 …
The " " are important here because there is a space in the path. If there is no space, they do not matter. You can also leave out .exe in the file name, as I have done.