I ran some statistics on my photo database to see which lenses I actually use the most, and I was rather surprised at the results. I did not expect to see that I used the 135mm f/2L so much, or that I use the 24-70 zooms so little.
The data are from the most recent six-year subset of my 21-year photo database, so the total photos included in the sample is a reasonable number n = 1.6 million. I was amazed that all but 400,000 of my photos in the past six years were taken with just 11 lenses.
1. 347,017 Canon EF 135mm f/2L
2. 175,347 Canon EF 200mm f/2.8L II
3. 167,511 Sigma 85mm F1.4 EX DG HSM
4. 155,148 AF-S Nikkor 300mm f/4D IF-ED
5. 99,971 Canon EF 70-200mm f/2.8L IS II USM
6. 84,307 AF-S Nikkor 400mm f/2.8D IF-ED II
7. 67,937 Canon EF 85mm f/1.8 USM
8. 54,020 AF-S Nikkor 70-200mm f/2.8G ED VR II
9. 52,225 Canon EF 24 f/1.4L II
10. 49,765 Canon EF 100mm f/2 USM
11. 44,059 Sigma 35mm f/1.4 DG HSM
I was wondering--how does this compare to others?
To obtain this data, I ran this command for each camera directory (e.g., 103EOS5D).
And then combined all results together:
And ran:
Based on the results, I may need to reconsider how I invest my money in lenses. For my workflow, it also demonstrates how much Canon really needs to come out with a phenomenal, lightning-quick focusing, ultra-bright f/1.8 135mm prime lens: as sharp as the Zeiss Apo Sonnar T* 2/135 ZF.2, and as fast-focusing as their best great whites. I would happily sell $20,000 in lenses that I don't use so much and reinvest in two or three of those if such a lens were to be released.
The data are from the most recent six-year subset of my 21-year photo database, so the total photos included in the sample is a reasonable number n = 1.6 million. I was amazed that all but 400,000 of my photos in the past six years were taken with just 11 lenses.
1. 347,017 Canon EF 135mm f/2L
2. 175,347 Canon EF 200mm f/2.8L II
3. 167,511 Sigma 85mm F1.4 EX DG HSM
4. 155,148 AF-S Nikkor 300mm f/4D IF-ED
5. 99,971 Canon EF 70-200mm f/2.8L IS II USM
6. 84,307 AF-S Nikkor 400mm f/2.8D IF-ED II
7. 67,937 Canon EF 85mm f/1.8 USM
8. 54,020 AF-S Nikkor 70-200mm f/2.8G ED VR II
9. 52,225 Canon EF 24 f/1.4L II
10. 49,765 Canon EF 100mm f/2 USM
11. 44,059 Sigma 35mm f/1.4 DG HSM
I was wondering--how does this compare to others?
To obtain this data, I ran this command for each camera directory (e.g., 103EOS5D).
Code:
% exiftool -fast -T -ext jpg -aperture -cameratemperature -datetimeoriginal -daylightsavings -directory -directorynumber -filename -filenumber -focallength -fov -imagesize -iso -keywords -lensid -lightvalue -model -modifydate -orientation -rating -serialnumber -shuttercount -shutterspeed -subject -timezone -filesize\# . > exiftoolinfo
And then combined all results together:
Code:
% find . -name exiftoolinfo | xargs cat > exiftoolinfo.cat
And ran:
Code:
% cut -f 14 exiftoolinfo.cat | sort | uniq -c | sort -nr | head -11 | perl -pe 's|^|$.. |; s|(\d{3}) |,$1 |'
Based on the results, I may need to reconsider how I invest my money in lenses. For my workflow, it also demonstrates how much Canon really needs to come out with a phenomenal, lightning-quick focusing, ultra-bright f/1.8 135mm prime lens: as sharp as the Zeiss Apo Sonnar T* 2/135 ZF.2, and as fast-focusing as their best great whites. I would happily sell $20,000 in lenses that I don't use so much and reinvest in two or three of those if such a lens were to be released.