Created
May 1, 2015 18:27
-
-
Save ateucher/d15abb83b705681bcf21 to your computer and use it in GitHub Desktop.
exif-focal-length.R
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
flengths <- system('exiftool -T -r -FocalLength -ext .NEF "."', intern=TRUE) | |
flengths.num <- as.numeric(strsplit(flengths, split=" mm")) | |
hist(flengths.num,breaks=20, main="Frequency of focal lengths used by Andy\nfor 1631 photos in the Galapagos Islands", xlab="Focal Length") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment