[Originally posted by exiftool on 2010-01-11 12:51:00-08]You shouldn't be copying all tags from a JPG to a CR2.
Instead, you should copy only the GPS tags:
exiftool -tagsfromfile source.jpg -gps:all dest.cr2
or you can do this for an entire directory with one command
(assuming the JPG's and the CR2's have the same name:
exiftool -tagsfromfile %d%f.jpg -gps:all -ext cr2 DIR
where
DIR is the name of the directory containing
the images.
Or, alternately you could use exiftool to do the geotagging:
exiftool -geotag file.gpx -ext cr2 DIR
- Phil