Hello.
I'm a developer of the JpgKeywords program ( https://eedsoft.com/ )
This is a program to tag jpg photos with keywords. JpgKeywords program uses exiftool.
Now I want to add the ability to geotag photos. I have no problem storing GPS coordinates in JPG.
But I also want to store the address where the picture is taken as well as the GPS coordinates.
This should be some metadata field to describe the place. User can input this manually.
This can be an exact address like city, street, number etc...
Or can be a free description like "My home", "At work" etc...
My question is: What is the more suitable metadata field to use for that? (only for JPG files).
Is there some standard for this? Suggestions?
Look at IPTC standard:
https://iptc.org/std/photometadata/specification/IPTC-PhotoMetadata#location-created
https://iptc.org/std/photometadata/specification/IPTC-PhotoMetadata#location-shown-in-the-image
This is (links above) structure of metadata:
https://iptc.org/std/photometadata/specification/IPTC-PhotoMetadata#location-structure
There's still a lot of interesting metadata out there.
To be even more precise, you probably need this tag
11.9.10. Sublocation
Thank you, Jom.