journal features
movie reviews
photo of the day

downgrading my camera gear

the journal of Michael Werneburg

twenty-seven years and one million words

Kokubunji, 2024.03.02

I have been doing some camera gear downsizing. I had a Lumix 12-35mm lens that was large and heavy enough that I needed a grip for my camera body, at which point I was carrying around an equivalent bulk/weight to something from Sony's full-frame line-up just for my fun micro-four-thirds clowning around. I get that all of the camera manufacturers are playing the software game for getting the most of their images, these days, but I found that the Panasonic/Lumix lens didn't give me great results on the Olympus body. I really started to notice that I was doing too much clean-up in Photolab. Like, a lot of work on each photo, and that the photos were starting to a have a similar look as a result.

Olympus E-M5 Mark III plus the Lumix 12-35mm

Olympus E-M5 Mark III plus the Lumix 12-35mm
I also noticed that I was only using the wide half of the zoom range for the Lumix lens. So I wrote a script to have a look at what in the 12-35mm range I was actually using, and it turned out like this (after seven thousand frames over thirteen months).

Armed with this insight, I decided that an old 9-18mm design put out by Olympus would probably be a better fit for purpose. It's much smaller, lighter, and wider, and I don't really need the bright f/2.8 maximum aperture because I mostly shoot in the f/5.6-f/8 range. I had paid ¥65,000 for the lens last year, and sold it back to the same camera store for ¥51,500. It was like renting for ¥1,000/month! So this is now my main walk-around combo - an Olympus E-M5 Mark III plus the Olympus 9-18mm.

Olympus E-M5 Mark III plus the Olympus 9-18mm

Olympus E-M5 Mark III plus the Olympus 9-18mm

Here is the Linux script in its entirety. Use at your own risk! It searches the folders '2023' and '2024' for any file with the extension 'orf'. Change those values to whatever values you need. Also, you'll need to install the package 'exiftool' suitable for your version of Linux.

#!/usr/bin/perl

# tip-toe through the folders looking for raw images

open (IN, 'find 2023 2024 -name "*orf"|');

$count=0;

while () {

chomp;

$deets=`/usr/local/bin/exiftool $_`; # the location of 'exiftool' may vary on your Linux distribution

if ($deets =~ /Lens Model.*: (.*)n/) {

$model=$1;

}

if ($deets =~ /Focal Length.*: (.*)n/) {

$flength=$1;

}

$models{$model}++;

$flengths{$flength}++;

$inter{$model}{$flength}++;

if ($count && !($count % 100)) {

print "$countr";

}

$count++;

}

print "n"; # get past the progress prints.

# print the results

foreach $model (sort keys %models) {

foreach $flength (sort keys %flengths) {

if ($inter{$model}{$flength}) {

print "$model : $flength : $inter{$model}{$flength}n";

}

}

}

rand()m quote

There are two kinds of people in this world: Those that enter a room and turn the television set on, and those that enter a room and turn the television set off.

—-"Raymond Shaw", The Manchurian Candidate