gps2xmp.args 995 B

123456789101112131415161718192021222324
  1. #------------------------------------------------------------------------------
  2. # File: gps2xmp.args
  3. #
  4. # Description: Argument file for copying GPS information from EXIF to XMP
  5. #
  6. # Usage: exiftool -tagsFromFile SRCFILE -@ gps2xmp.args DSTFILE
  7. #
  8. # Requires: ExifTool version 6.75 or later
  9. #
  10. # Revisions: 2009/01/09 - P. Harvey Created
  11. #
  12. # Notes: 1) Most of the GPS tags are copied by the first argument, but
  13. # the XMP GPS coordinate and date/time tags are composites of
  14. # more than one EXIF GPS tag, so they are handled separately.
  15. #
  16. # 2) These arguments will not delete XMP tags which are missing
  17. # from the GPS. The XMP tags should be deleted beforehand if
  18. # required.
  19. #------------------------------------------------------------------------------
  20. -XMP:all < GPS:all
  21. -XMP:GPSLatitude < Composite:GPSLatitude
  22. -XMP:GPSLongitude < Composite:GPSLongitude
  23. -XMP:GPSDateTime < Composite:GPSDateTime
  24. # end