India Photos Geo-tagged
Today I found that iPhoto has a "Rescan Location" option. This is great because I had imported all of my pictures from India before geo-tagging them. I had already started rating the images in iPhoto and didn't want to have to reimport all the images and start over.
Also I wrote this little bash script to batch convert the logs from my AMOD logger to GPX format.
#!/bin/bash
for i in `ls *.log`;do
out=${i%%.*}
gpsbabel -i nmea -f $i -o gpx -F $out.gpx
done
It's so powerful to be able to right scripts like this. Saved me tons of time.
