rlebel wrote:Remember that the hard part of geotagging happens during the upload, so this doesn't require software on the card.
kieran wrote:aw come on, then eye fi pro is really doing some deceptive advertising. i bought this specifically because it could "geotag" and "process raw files"
chregu wrote:That's really too bad that this still doesn't work. I'm able to write GPS data into RAW (Nikon NEF) files with eg. http://www.carto.net/projects/photoTools/gpsPhoto/ which then are then perfectly fine read by Aperture 3.
Currently I have to put my D90 into taking RAW and JPEG at the same time if I want geolocated pictures (Aperture can handle that). I usually don't need the jpgs, so this is a waste of memory now for me.
Would be great, if this could be introduced in a next software update
#!/bin/bash
for j in `find . -name *.JPG`
do
FILE=`echo $j | cut -f 2 -d "." `
FILE=".$FILE"
if [ -f $FILE.NEF ]
then
echo $FILE
IFS=$'\n'
A=` exiv2 -Pkyv $FILE.JPG | grep GPSInfo`
echo -n "" > meta.txt
for i in $A
do
echo "set $i" >> meta.txt
done
exiv2 -m meta.txt $FILE.NEF
mv $FILE.JPG ./oldjpegs/
fi
done
probichaux wrote:Is this still a problem? I was rather hoping that Eye-Fi would have fixed it with new firmware, and I'm not sure the extra $50 for the Pro is worth it if they haven't.
chregu wrote:So. I came up with my quick and dirty own solution using http://www.exiv2.org/ and the following script:
- Code: Select all
#!/bin/bash
for j in `find . -name *.JPG`
do
FILE=`echo $j | cut -f 2 -d "." `
FILE=".$FILE"
if [ -f $FILE.NEF ]
then
echo $FILE
IFS=$'\n'
A=` exiv2 -Pkyv $FILE.JPG | grep GPSInfo`
echo -n "" > meta.txt
for i in $A
do
echo "set $i" >> meta.txt
done
exiv2 -m meta.txt $FILE.NEF
mv $FILE.JPG ./oldjpegs/
fi
done
It goes through all my jpegs, reads the GPS data and writes it to the NEF. And then moves the jpeg to some directory. Aperture does perfectly understand this and it solves my problems (it would still be nice, if Eye-Fi would directly tag my NEF files and I wouldn't have to go through this procedure, of course)
xvd wrote:The vast majority of your market shoots RAW.
exiftool -tagsfromfile %d%f.JPG -gps:all -ext EXTENSION PATH_TO_FOLDERexiftool -tagsfromfile %d%f.JPG -gps:all -ext arw /Users/bibyfok/Desktop/Transit/Photos/Rawexiftool -r -tagsfromfile %d%f.JPG -gps:all -city -province-state -country --ext jpg ~/Pictures/Eye-FiE:\DCIM>exiftool -r -tagsfromfile %d%f.JPG -gps:all --ext jpg 106_0716
Warning: No writable tags found - 106_0716/_IGP3101.JPG
Warning: No writable tags found - 106_0716/_IGP3102.JPG
1 directories scanned
0 image files updated
2 image files unchangeddaniel.hoherd wrote:I dug around some more and found this additional syntax that is useful:
- Code: Select all
exiftool -r -tagsfromfile %d%f.JPG -gps:all -city -province-state -country --ext jpg ~/Pictures/Eye-Fi
This processes all files except JPG files, so there's no need to declare the raw file extension, and it also brings over the expanded gps metadata... or the metametadata.
Warning: No writable tags found - 106_0716/_IGP3101.JPG
Users browsing this forum: No registered users and 7 guests