<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>Jeff Mather's Dispatches</title>
	<link>http://jeffmatherphotography.com/dispatches</link>
	<description>The 9 to 5 Life of an International Playboy</description>
	<pubDate>Wed, 03 Sep 2008 19:00:36 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<item>
		<title>Quickly Finding Numeric Patterns in MATLAB</title>
		<link>http://jeffmatherphotography.com/dispatches/2008/09/quickly-finding-numeric-patterns-in-matlab/</link>
		<comments>http://jeffmatherphotography.com/dispatches/2008/09/quickly-finding-numeric-patterns-in-matlab/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 19:23:38 +0000</pubDate>
		<dc:creator>Jeff Mather</dc:creator>
		
		<category><![CDATA[MATLAB]]></category>

		<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://jeffmatherphotography.com/dispatches/2008/09/quickly-finding-numeric-patterns-in-matlab/</guid>
		<description><![CDATA[Comrade programmers!
About five years ago I wrote a little program to help me find numeric patterns in arrays.  Basically I needed to find byte patterns like 0xFFFE 0xE000 in the data from DICOM files.  Something like MATLAB&#8217;s strfind function, except more general than looking for substrings in strings.
So I wrote a rather naïve [...]]]></description>
			<content:encoded><![CDATA[<p>Comrade programmers!</p>
<p>About five years ago I wrote a little program to help me find numeric patterns in arrays.  Basically I needed to find byte patterns like 0xFFFE 0xE000 in the data from DICOM files.  Something like MATLAB&#8217;s <tt>strfind</tt> function, except more general than looking for substrings in strings.</p>
<p>So I wrote a rather naïve algorithm to do just that.  It wasn&#8217;t very fast, but it worked for exploratory use.  But then today I needed to do something like that in production code.  So I asked <a href="http://blogs.mathworks.com/loren/">one of my coworkers</a> for tips with a faster implementation.</p>
<p>Turns out the <tt>strfind</tt> works just as well on numeric arrays as it does on strings.  And it&#8217;s really fast, too.</p>
<pre>
% "data" is a 1,200,000 element UINT8 array.
% It contains 29 instances of the pattern.
tic; offsetTable = strfind(data, [254 255 0 224]); toc

Elapsed time is 0.027390 seconds.
</pre>
]]></content:encoded>
			<wfw:commentRss>http://jeffmatherphotography.com/dispatches/2008/09/quickly-finding-numeric-patterns-in-matlab/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using C++ iterators on MATLAB mxArrays</title>
		<link>http://jeffmatherphotography.com/dispatches/2008/08/using-c-iterators-on-matlab-mxarrays/</link>
		<comments>http://jeffmatherphotography.com/dispatches/2008/08/using-c-iterators-on-matlab-mxarrays/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 19:48:01 +0000</pubDate>
		<dc:creator>Jeff Mather</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[MATLAB]]></category>

		<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://jeffmatherphotography.com/dispatches/2008/08/using-c-iterators-on-matlab-mxarrays/</guid>
		<description><![CDATA[Here&#8217;s a little something for the MATLAB lovers out there who also program in C++.  The code sample at the end of this post shows how to add a C++ iterator to an mxArray, which is the basic datatype for MATLAB arrays.  This makes it harder to walk off the end of an [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a little something for the MATLAB lovers out there who also program in C++.  The code sample at the end of this post shows how to add a C++ iterator to an mxArray, which is the basic datatype for MATLAB arrays.  This makes it harder to walk off the end of an mxArray during linear traversal of all of the elements in an array and (hopefully) improves the readability of code that accesses the data stored inside mxArrays.  The code gives a couple simple-minded examples of element-wise traversal (provided the MATLAB array you give it is a UINT8 array).</p>
<p>If you&#8217;re familiar with the C++ Standard Library, you can start to use your wrapped mxArray <b>like</b> an STL container.  I use the term &#8220;like&#8221; advisedly, since it&#8217;s not actually a container.  To reduce memory overhead, I don&#8217;t make a copy of the data that gets put into <tt>ArrayWrapper</tt>.  Consequently, it doesn&#8217;t model the <tt>container</tt> concept that element lifetimes are the same as the &#8220;container&#8221; lifetime.  You&#8217;re shouldn&#8217;t count on being able to use <tt>ArrayWrapper</tt> with any ole STL function.  But then again, you might be able to use it with some; I haven&#8217;t tried.</p>
<pre>
#include "mex.h"
#include &lt;cstddef&gt;

// Treat an mxArray like a container.
// (See Josuttis. "The C++ Standard Library." 1999. p. 219-220)
template&lt;class T&gt;
class ArrayWrapper {
  private:
    T      *v;
    mwSize thesize; 

  public:
    // Type definitions
    typedef T         value_type;
    typedef T*        iterator;
    typedef const T*  const_iterator;
    typedef T&#038;        reference;
    typedef const T&#038;  const_reference;
    typedef mwSize    size_type;
    typedef ptrdiff_t difference_type;

    // Constructor
    ArrayWrapper(const mxArray *theArray)
    {
        v = static_cast&lt;T*&gt;(mxGetData(theArray));
        thesize = mxGetNumberOfElements(theArray);
    }

    // Iterator support
    iterator begin() { return v; }
    const_iterator begin() const { return v; }
    iterator end() { return v + thesize; }
    const_iterator end() const { return v + thesize; }

    // Direct element access
    reference operator[](size_type i) { return v[i]; }
    const_reference operator[](size_type i) const { return v[i]; }

    // Size is constant
    size_type size() const { return thesize; }
    size_type max_size() const { return thesize; }
};

void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
    const mxArray *inputArray = prhs[0];

    ArrayWrapper&lt;uint8_T&gt; inData(inputArray);

    // 1- Count the number of samples in the image.
    mwSize count = 0;
    ArrayWrapper&lt;uint8_T&gt;::const_iterator i = inData.begin();
    while (i++ != inData.end())
    {
        count++;
    }

    mexPrintf("The image has %ld samples.n", count);

    // 2 - Halve the image values.
    mxArray *outputArray = mxDuplicateArray(prhs[0]);
    ArrayWrapper&lt;uint8_T&gt; outData(outputArray);

    i = inData.begin();
    ArrayWrapper&lt;uint8_T&gt;::iterator j = outData.begin();
    while (i != inData.end())
    {
        *(j++) = *(i++) * 0.5;
    }

    plhs[0] = outputArray;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://jeffmatherphotography.com/dispatches/2008/08/using-c-iterators-on-matlab-mxarrays/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What I did on my summer vacation (part 3)</title>
		<link>http://jeffmatherphotography.com/dispatches/2008/08/what-i-did-on-my-summer-vacation-part-3/</link>
		<comments>http://jeffmatherphotography.com/dispatches/2008/08/what-i-did-on-my-summer-vacation-part-3/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 03:35:24 +0000</pubDate>
		<dc:creator>Jeff Mather</dc:creator>
		
		<category><![CDATA[USA]]></category>

		<category><![CDATA[This is who we are]]></category>

		<category><![CDATA[Travel]]></category>

		<category><![CDATA[Photography]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://jeffmatherphotography.com/dispatches/2008/08/what-i-did-on-my-summer-vacation-part-3/</guid>
		<description><![CDATA[And now a word from your sponsors.














































































































































This message was brought to you by Lightroom, Perl, Aquamacs Emacs, and Cyberduck.
]]></description>
			<content:encoded><![CDATA[<p>And now a word from your sponsors.</p>
<table>
<tr>
<td><a href="/images/IMG_1346-1.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1346-1.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_1380.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1380.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_1417.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1417.jpg&#038;h=200&#038;q=90" height="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_1422.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1422.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_1423.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1423.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_1435.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1435.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/_DSC0171.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0171.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_1449.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1449.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_1453.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1453.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/_DSC0210.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0210.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/_DSC0214.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0214.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_1458.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1458.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_1474.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1474.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_1475.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1475.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/_DSC0322.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0322.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_1500.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1500.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_1515.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1515.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/_DSC0366.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0366.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/_DSC0399.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0399.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/_DSC0412.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0412.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_1535-1.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1535-1.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_1536.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1536.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_1537.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1537.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_1547.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1547.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_1548.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1548.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_1551.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1551.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_1563.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1563.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_1564-1.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1564-1.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_1627.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1627.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_1632.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1632.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/_DSC0682.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0682.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_1779.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1779.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_1799.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1799.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_1846.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1846.jpg&#038;h=200&#038;q=90" height="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_1884.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1884.jpg&#038;h=200&#038;q=90" height="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/_DSC0919.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0919.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/_DSC0955.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0955.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_1921.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1921.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_1982.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1982.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_1990.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1990.jpg&#038;h=200&#038;q=90" height="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_2036.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2036.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/_DSC1279.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1279.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/_DSC1315.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1315.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_2052.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2052.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_2065.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2065.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_2082.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2082.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_2125.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2125.jpg&#038;h=200&#038;q=90" height="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_2160.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2160.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_2161.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2161.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/_DSC1528.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1528.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_2216.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2216.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_2253.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2253.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_2263.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2263.jpg&#038;h=200&#038;q=90" height="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_2265.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2265.jpg&#038;h=200&#038;q=90" height="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_2281.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2281.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_2282.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2282.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/_DSC1742.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1742.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_2306.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2306.jpg&#038;h=200&#038;q=90" height="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_2307.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2307.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_2319.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2319.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_2364.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2364.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_2372.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2372.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/21-07-08_1328.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/21-07-08_1328.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/21-07-08_1623.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/21-07-08_1623.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_2393.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2393.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_2407.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2407.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_2416.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2416.jpg&#038;h=200&#038;q=90" height="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/IMG_2437.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2437.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
<tr>
<td><a href="/images/IMG_2453.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2453.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
<td><a href="/images/23-07-08_1727.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/23-07-08_1727.jpg&#038;w=200&#038;q=90" width="200" title="" alt="" align="left" border="2" /></a></td>
</tr>
</table>
<p>This message was brought to you by Lightroom, Perl, Aquamacs Emacs, and Cyberduck.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffmatherphotography.com/dispatches/2008/08/what-i-did-on-my-summer-vacation-part-3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What I did on my summer vacation (part 2)</title>
		<link>http://jeffmatherphotography.com/dispatches/2008/08/what-i-did-on-my-summer-vacation-part-2/</link>
		<comments>http://jeffmatherphotography.com/dispatches/2008/08/what-i-did-on-my-summer-vacation-part-2/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 03:03:30 +0000</pubDate>
		<dc:creator>Jeff Mather</dc:creator>
		
		<category><![CDATA[USA]]></category>

		<category><![CDATA[Travel]]></category>

		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://jeffmatherphotography.com/dispatches/2008/08/what-i-did-on-my-summer-vacation-part-2/</guid>
		<description><![CDATA[&#8220;The other day, I saw a bear.  A great big bear, a way out there.&#160;.&#160;.&#8221;
Driving back to East Glacier one day, we decided to count the different kinds of (larger) animals we saw on our trip: mule deer, prairie dogs, black bears, mountain goats, brook trout, magpies, ravens, goldfinch, pronghorn, elk, bison, pelicans, marmots, [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;The other day, I saw a bear.  A great big bear, a way out there.&nbsp;.&nbsp;.&#8221;</p>
<p>Driving back to East Glacier one day, we decided to count the different kinds of (larger) animals we saw on our trip: mule deer, prairie dogs, black bears, mountain goats, brook trout, magpies, ravens, goldfinch, pronghorn, elk, bison, pelicans, marmots, chipmunks (two kinds), squirrels (tree and ground), bunnies, hummingbirds, coyote, cows, camels, llamas, horses, osprey, golden eagles, robins, blue jays, geese, ducks, mosquitos, doggies, hawk, dragonflies, grizzly bears, bighorn sheep, bees, and hippies.</p>
<p>Here are photographs of some of these animals.</p>
<table>
<tr>
<td><a href="/images/_DSC0185.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0185.jpg&#038;w=250&#038;q=90" width="250" title="Hummingbird (Rocky Mountain NP, Colorado)" alt="Hummingbird (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>Hummingbird<br />(Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/IMG_1467.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1467.jpg&#038;w=250&#038;q=90" width="250" title="Yellow-bellied marmot (Rocky Mountain NP, Colorado)" alt="Yellow-bellied marmot (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>Yellow-bellied marmot<br />(Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/IMG_1497.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1497.jpg&#038;w=250&#038;q=90" width="250" title="Mallard (Rocky Mountain NP, Colorado)" alt="Mallard (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>Mallard<br />(Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/_DSC0541.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0541.jpg&#038;w=250&#038;q=90" width="250" title="Yellow-bellied marmot (Rocky Mountain NP, Colorado)" alt="Yellow-bellied marmot (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>Yellow-bellied marmot<br />(Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/_DSC0553.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0553.jpg&#038;w=250&#038;q=90" width="250" title="Elk (Rocky Mountain NP, Colorado)" alt="Elk (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>Elk<br />(Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/_DSC0556.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0556.jpg&#038;w=250&#038;q=90" width="250" title="Elk (Rocky Mountain NP, Colorado)" alt="Elk (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>Elk<br />(Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/IMG_1571.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1571.jpg&#038;w=250&#038;q=90" width="250" title="Chipmunk (Rocky Mountain NP, Colorado)" alt="Chipmunk (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>Chipmunk<br />(Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/IMG_1581.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1581.jpg&#038;w=250&#038;q=90" width="250" title="Pronghorn antelope (Natrona County, Wyoming)" alt="Pronghorn antelope (Natrona County, Wyoming)" align="left" border="2" /></a></td>
<td>Pronghorn antelope<br />(Natrona County, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/IMG_1830.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1830.jpg&#038;w=250&#038;q=90" width="250" title="Ravens (Yellowstone NP, Wyoming)" alt="Ravens (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Ravens<br />(Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/IMG_1886.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1886.jpg&#038;w=250&#038;q=90" width="250" title="Elk (Yellowstone NP, Wyoming)" alt="Elk (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Elk<br />(Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/IMG_1891.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1891.jpg&#038;w=250&#038;q=90" width="250" title="Bison (Yellowstone NP, Wyoming)" alt="Bison (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Bison<br />(Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC0935.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0935.jpg&#038;w=250&#038;q=90" width="250" title="Bison (Yellowstone NP, Wyoming)" alt="Bison (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Bison<br />(Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/IMG_1935.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1935.jpg&#038;w=250&#038;q=90" width="250" title="Bison (Yellowstone NP, Wyoming)" alt="Bison (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Bison<br />(Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/IMG_1948.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1948.jpg&#038;w=250&#038;q=90" width="250" title="Elk (Yellowstone NP, Wyoming)" alt="Elk (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Elk<br />(Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC1207.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1207.jpg&#038;w=250&#038;q=90" width="250" title="Coyote (Yellowstone NP, Wyoming)" alt="Coyote (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Coyote<br />(Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/IMG_2023.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2023.jpg&#038;w=250&#038;q=90" width="250" title="Deer (Yellowstone NP, Wyoming)" alt="Deer (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Deer<br />(Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC1262.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1262.jpg&#038;w=250&#038;q=90" width="250" title="Black bear (Yellowstone NP, Wyoming)" alt="Black bear (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Black bear<br />(Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC1385.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1385.jpg&#038;w=250&#038;q=90" width="250" title="Osprey (Glacier NP, Montana)" alt="Osprey (Glacier NP, Montana)" align="left" border="2" /></a></td>
<td>Osprey<br />(Glacier NP, Montana)</td>
</tr>
<tr>
<td><a href="/images/IMG_2177.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2177.jpg&#038;w=250&#038;q=90" width="250" title="Cows (Glacier NP, Montana)" alt="Cows (Glacier NP, Montana)" align="left" border="2" /></a></td>
<td>Cows<br />(Glacier NP, Montana)</td>
</tr>
<tr>
<td><a href="/images/IMG_2192.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2192.jpg&#038;w=250&#038;q=90" width="250" title="Deer (Waterton Lakes NP, Alberta)" alt="Deer (Waterton Lakes NP, Alberta)" align="left" border="2" /></a></td>
<td>Deer<br />(Waterton Lakes NP, Alberta)</td>
</tr>
<tr>
<td><a href="/images/_DSC1598.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1598.jpg&#038;w=250&#038;q=90" width="250" title="Black bear (Waterton Lakes NP, Alberta)" alt="Black bear (Waterton Lakes NP, Alberta)" align="left" border="2" /></a></td>
<td>Black bear<br />(Waterton Lakes NP, Alberta)</td>
</tr>
<tr>
<td><a href="/images/_DSC1607.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1607.jpg&#038;w=250&#038;q=90" width="250" title="Deer (Glacier NP, Montana)" alt="Deer (Glacier NP, Montana)" align="left" border="2" /></a></td>
<td>Deer<br />(Glacier NP, Montana)</td>
</tr>
<tr>
<td><a href="/images/IMG_2260.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2260.jpg&#038;w=250&#038;q=90" width="250" title="Grizzly bears (Blackfeet Nation, Montana)" alt="Grizzly bears (Blackfeet Nation, Montana)" align="left" border="2" /></a></td>
<td>Grizzly bears<br />(Blackfeet Nation, Montana)</td>
</tr>
<tr>
<td><a href="/images/IMG_2261.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2261.jpg&#038;w=250&#038;q=90" width="250" title="Bighorn sheep (Glacier NP, Montana)" alt="Bighorn sheep (Glacier NP, Montana)" align="left" border="2" /></a></td>
<td>Bighorn sheep<br />(Glacier NP, Montana)</td>
</tr>
<tr>
<td><a href="/images/_DSC1700.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1700.jpg&#038;w=250&#038;q=90" width="250" title="Mountain goat (Glacier NP, Montana)" alt="Mountain goat (Glacier NP, Montana)" align="left" border="2" /></a></td>
<td>Mountain goat<br />(Glacier NP, Montana)</td>
</tr>
<tr>
<td><a href="/images/_DSC1711.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1711.jpg&#038;w=250&#038;q=90" width="250" title="Mountain goats (Glacier NP, Montana)" alt="Mountain goats (Glacier NP, Montana)" align="left" border="2" /></a></td>
<td>Mountain goats<br />(Glacier NP, Montana)</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://jeffmatherphotography.com/dispatches/2008/08/what-i-did-on-my-summer-vacation-part-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What I did on my summer vacation (part 1?)</title>
		<link>http://jeffmatherphotography.com/dispatches/2008/08/what-i-did-on-my-summer-vacation-part-1/</link>
		<comments>http://jeffmatherphotography.com/dispatches/2008/08/what-i-did-on-my-summer-vacation-part-1/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 03:16:57 +0000</pubDate>
		<dc:creator>Jeff Mather</dc:creator>
		
		<category><![CDATA[USA]]></category>

		<category><![CDATA[Travel]]></category>

		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://jeffmatherphotography.com/dispatches/2008/08/what-i-did-on-my-summer-vacation-part-1/</guid>
		<description><![CDATA[&#8220;Jeff, we demand pictures!  You&#8217;ve been back for two weeks.  How long can it take?&#8221;
Alright.  Alright.  But you&#8217;re only going to get a rough timeline.



Downtown Denver



Coors Field, Denver



At low elevation, ca. 7,000 feet (Rocky Mountain NP, Colorado)



On our first hike, ca. 8,500 feet (Rocky Mountain NP, Colorado)



Lunch spot (Rocky Mountain NP, [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;Jeff, we demand pictures!  You&#8217;ve been back for two weeks.  How long can it take?&#8221;</p>
<p>Alright.  Alright.  But you&#8217;re only going to get a rough timeline.</p>
<table>
<tr>
<td><a href="/images/_DSC0035-Edit.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0035-Edit.jpg&#038;w=200&#038;q=90" width="200" title="Downtown Denver" alt="Downtown Denver" align="left" border="2" /></a></td>
<td>Downtown Denver</td>
</tr>
<tr>
<td><a href="/images/IMG_1361.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1361.jpg&#038;w=200&#038;q=90" width="200" title="Coors Field, Denver" alt="Coors Field, Denver" align="left" border="2" /></a></td>
<td>Coors Field, Denver</td>
</tr>
<tr>
<td><a href="/images/IMG_1367.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1367.jpg&#038;w=200&#038;q=90" width="200" title="At low elevation, ca. 7,000 feet (Rocky Mountain NP, Colorado)" alt="At low elevation, ca. 7,000 feet (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>At low elevation, ca. 7,000 feet<br /> (Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/_DSC0112.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0112.jpg&#038;w=200&#038;q=90" width="200" title="On our first hike, ca. 8,500 feet (Rocky Mountain NP, Colorado)" alt="On our first hike, ca. 8,500 feet (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>On our first hike, ca. 8,500 feet<br /> (Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/_DSC0271.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0271.jpg&#038;w=200&#038;q=90" width="200" title="Lunch spot (Rocky Mountain NP, Colorado)" alt="Lunch spot (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>Lunch spot<br /> (Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/_DSC0349.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0349.jpg&#038;h=200&#038;q=90" height="200" title="On our second hike, ca. 9,500 feet (Rocky Mountain NP, Colorado)" alt="On our second hike, ca. 9,500 feet (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>On our second hike, ca. 9,500 feet<br /> (Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/_DSC0354.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0354.jpg&#038;w=200&#038;q=90" width="200" title="On our second hike, ca. 10,000 feet (Rocky Mountain NP, Colorado)" alt="On our second hike, ca. 10,000 feet (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>On our second hike, ca. 10,000 feet<br /> (Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/_DSC0407.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0407.jpg&#038;w=200&#038;q=90" width="200" title="On our second hike, Lake Haiyaha (Rocky Mountain NP, Colorado)" alt="On our second hike, Lake Haiyaha (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>On our second hike, Lake Haiyaha<br /> (Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/_DSC0416.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0416.jpg&#038;w=200&#038;q=90" width="200" title="Where's the parking lot? (Rocky Mountain NP, Colorado)" alt="Where's the parking lot? (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>Where&#8217;s the parking lot?<br /> (Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/_DSC0523.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0523.jpg&#038;w=200&#038;q=90" width="200" title="On Trail Ridge Road, ca. 13,000 feet (Rocky Mountain NP, Colorado)" alt="On Trail Ridge Road, ca. 13,000 feet (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>On Trail Ridge Road, ca. 13,000 feet<br /> (Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/_DSC0524.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0524.jpg&#038;w=200&#038;q=90" width="200" title="Elk on the tundra (Rocky Mountain NP, Colorado)" alt="Elk on the tundra (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>Elk on the tundra<br /> (Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/_DSC0529.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0529.jpg&#038;w=200&#038;q=90" width="200" title="Mother bear and cubs (Rocky Mountain NP, Colorado)" alt="Mother bear and cubs (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>Mother bear and cubs<br /> (Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/IMG_1556.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1556.jpg&#038;w=200&#038;q=90" width="200" title="Arty elks (Rocky Mountain NP, Colorado)" alt="Arty elks (Rocky Mountain NP, Colorado)" align="left" border="2" /></a></td>
<td>Arty elks<br /> (Rocky Mountain NP, Colorado)</td>
</tr>
<tr>
<td><a href="/images/_DSC0585.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0585.jpg&#038;w=200&#038;q=90" width="200" title="Carbon County, Wyoming" alt="Carbon County, Wyoming" align="left" border="2" /></a></td>
<td>Carbon County, Wyoming</td>
</tr>
<tr>
<td><a href="/images/IMG_1587.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1587.jpg&#038;h=200&#038;q=90" height="200" title="Downtown Casper, Wyoming" alt="Downtown Casper, Wyoming" align="left" border="2" /></a></td>
<td>Downtown Casper, Wyoming</td>
</tr>
<tr>
<td><a href="/images/IMG_1596.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1596.jpg&#038;w=200&#038;q=90" width="200" title="Learning how to use the big camera (Casper, Wyoming)" alt="Learning how to use the big camera (Casper, Wyoming)" align="left" border="2" /></a></td>
<td>Learning how to use the big camera<br /> (Casper, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC0610.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0610.jpg&#038;w=200&#038;q=90" width="200" title="Freeland Cemetery (Natrona County, Wyoming)" alt="Freeland Cemetery (Natrona County, Wyoming)" align="left" border="2" /></a></td>
<td>Freeland Cemetery<br /> (Natrona County, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC0626.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0626.jpg&#038;w=200&#038;q=90" width="200" title="Freeland Cemetery (Natrona County, Wyoming)" alt="Freeland Cemetery (Natrona County, Wyoming)" align="left" border="2" /></a></td>
<td>Freeland Cemetery<br /> (Natrona County, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC0636.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0636.jpg&#038;w=200&#038;q=90" width="200" title="Freeland Cemetery (Natrona County, Wyoming)" alt="Freeland Cemetery (Natrona County, Wyoming)" align="left" border="2" /></a></td>
<td>Freeland Cemetery<br /> (Natrona County, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/IMG_1672.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1672.jpg&#038;w=200&#038;q=90" width="200" title="In the Boone and Crockett lodge at the Buffalo Bill Historical Center (Cody, Wyoming)" alt="In the Boone and Crockett lodge at the Buffalo Bill Historical Center (Cody, Wyoming)" align="left" border="2" /></a></td>
<td>In the Boone and Crockett lodge at the Buffalo Bill Historical Center<br /> (Cody, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/IMG_1700.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1700.jpg&#038;w=200&#038;q=90" width="200" title="In the Whitney museum at the BBHC (Cody, Wyoming)" alt="In the Whitney museum at the BBHC (Cody, Wyoming)" align="left" border="2" /></a></td>
<td>In the Whitney museum at the BBHC<br /> (Cody, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/IMG_1701.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1701.jpg&#038;w=200&#038;q=90" width="200" title="A typical prairie scene (Cody, Wyoming)" alt="A typical prairie scene (Cody, Wyoming)" align="left" border="2" /></a></td>
<td>A typical prairie scene<br /> (Cody, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/IMG_1732.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1732.jpg&#038;w=200&#038;q=90" width="200" title="Another typical prairie scene (Cody, Wyoming)" alt="Another typical prairie scene (Cody, Wyoming)" align="left" border="2" /></a></td>
<td>Another typical prairie scene<br /> (Cody, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/IMG_1743.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1743.jpg&#038;w=200&#038;q=90" width="200" title="Yet another typical prairie scene (Cody, Wyoming)" alt="Yet another typical prairie scene (Cody, Wyoming)" align="left" border="2" /></a></td>
<td>Yet another typical prairie scene<br /> (Cody, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/IMG_1770.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1770.jpg&#038;w=200&#038;q=90" width="200" title="Yellowstone NP, Wyoming" alt="Yellowstone NP, Wyoming" align="left" border="2" /></a></td>
<td>Yellowstone NP, Wyoming</td>
</tr>
<tr>
<td><a href="/images/IMG_1780.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1780.jpg&#038;h=200&#038;q=90" height="200" title="Early summer flowers (Yellowstone NP, Wyoming)" alt="Early summer flowers (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Early summer flowers<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC0697.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0697.jpg&#038;w=200&#038;q=90" width="200" title="Bison amid the flowers (Yellowstone NP, Wyoming)" alt="Bison amid the flowers (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Bison amid the flowers<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/IMG_1807.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1807.jpg&#038;h=200&#038;q=90" height="200" title="Old Faithful (Yellowstone NP, Wyoming)" alt="Old Faithful (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Old Faithful<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC0781.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0781.jpg&#038;w=200&#038;q=90" width="200" title="Grand Prismatic Pool (Yellowstone NP, Wyoming)" alt="Grand Prismatic Pool (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Grand Prismatic Pool<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/IMG_1834.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1834.jpg&#038;w=200&#038;q=90" width="200" title="Home, Sweet Home (Yellowstone NP, Wyoming)" alt="Home, Sweet Home (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Home, Sweet Home<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC0830.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0830.jpg&#038;w=200&#038;q=90" width="200" title="On our third hike (Yellowstone NP, Wyoming)" alt="On our third hike (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>On our third hike<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC0861.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0861.jpg&#038;w=200&#038;q=90" width="200" title="On our third hike, The Grand Canyon of the Yellowstone (Yellowstone NP, Wyoming)" alt="On our third hike, The Grand Canyon of the Yellowstone (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>On our third hike, The Grand Canyon of the Yellowstone<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC0917.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0917.jpg&#038;w=200&#038;q=90" width="200" title="On our third hike, the upper falls (Yellowstone NP, Wyoming)" alt="On our third hike, the upper falls (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>On our third hike, the upper falls<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC0941.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0941.jpg&#038;w=200&#038;q=90" width="200" title="Waiting for Old Faithful (Yellowstone NP, Wyoming)" alt="Waiting for Old Faithful (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Waiting for Old Faithful<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC0965.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0965.jpg&#038;w=200&#038;q=90" width="200" title="Old Faithful (Yellowstone NP, Wyoming)" alt="Old Faithful (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Old Faithful<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC0981.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC0981.jpg&#038;w=200&#038;q=90" width="200" title="Old Faithful Inn (Yellowstone NP, Wyoming)" alt="Old Faithful Inn (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Old Faithful Inn<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/IMG_1940.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1940.jpg&#038;w=200&#038;q=90" width="200" title="27ºF (Yellowstone NP, Wyoming)" alt="27ºF (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>27ºF<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC1025.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1025.jpg&#038;w=200&#038;q=90" width="200" title="Early summer flowers (Yellowstone NP, Wyoming)" alt="Early summer flowers (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Early summer flowers<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC1097.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1097.jpg&#038;w=200&#038;q=90" width="200" title="Mammoth Hot Springs (Yellowstone NP, Wyoming)" alt="Mammoth Hot Springs (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Mammoth Hot Springs<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC1119.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1119.jpg&#038;w=200&#038;q=90" width="200" title="Dried up hot springs (Yellowstone NP, Wyoming)" alt="Dried up hot springs (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Dried up hot springs<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC1125.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1125.jpg&#038;w=200&#038;q=90" width="200" title="European tourists (Yellowstone NP, Wyoming)" alt="European tourists (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>European tourists<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC1129.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1129.jpg&#038;w=200&#038;q=90" width="200" title="The Golden Gate (Yellowstone NP, Wyoming)" alt="The Golden Gate (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>The Golden Gate<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC1136.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1136.jpg&#038;w=200&#038;q=90" width="200" title="Looking for the elusive sage moose (Alces sagifora) (Yellowstone NP, Wyoming)" alt="Looking for the elusive sage moose (Alces sagifora) (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Looking for the elusive sage moose <i>Alces sagifora</i><br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC1153.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1153.jpg&#038;w=200&#038;q=90" width="200" title="On our fourth hike, the summer trip to Mordor (Yellowstone NP, Wyoming)" alt="On our fourth hike, the summer trip to Mordor (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>On our fourth hike, the summer trip to Mordor<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC1217.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1217.jpg&#038;w=200&#038;q=90" width="200" title="Lower falls of the Yellowstone (Yellowstone NP, Wyoming)" alt="Lower falls of the Yellowstone (Yellowstone NP, Wyoming)" align="left" border="2" /></a></td>
<td>Lower falls of the Yellowstone<br /> (Yellowstone NP, Wyoming)</td>
</tr>
<tr>
<td><a href="/images/_DSC1317.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1317.jpg&#038;w=200&#038;q=90" width="200" title="The Beartooth Highway, Wyoming" alt="The Beartooth Highway, Wyoming" align="left" border="2" /></a></td>
<td>The Beartooth Highway, Wyoming</td>
</tr>
<tr>
<td><a href="/images/IMG_2057.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2057.jpg&#038;w=200&#038;q=90" width="200" title="Baby cousin (Billings, Montana)" alt="Baby cousin (Billings, Montana)" align="left" border="2" /></a></td>
<td>Baby cousin<br /> (Billings, Montana)</td>
</tr>
<tr>
<td><a href="/images/IMG_2075.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2075.jpg&#038;w=200&#038;q=90" width="200" title="Happy baby, Happy mom (Billings, Montana)" alt="Happy baby, Happy mom (Billings, Montana)" align="left" border="2" /></a></td>
<td>Happy baby, Happy mom<br /> (Billings, Montana)</td>
</tr>
<tr>
<td><a href="/images/IMG_2086.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2086.jpg&#038;w=200&#038;q=90" width="200" title="In "The Montana Room" (Billings, Montana)" alt="In "The Montana Room" (Billings, Montana)" align="left" border="2" /></a></td>
<td>In &#8220;The Montana Room&#8221;<br /> (Billings, Montana)</td>
</tr>
<tr>
<td><a href="/images/IMG_2098.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2098.jpg&#038;h=200&#038;q=90" height="200" title="The Montana Capitol (Helena, Montana)" alt="The Montana Capitol (Helena, Montana)" align="left" border="2" /></a></td>
<td>The Montana Capitol<br /> (Helena, Montana)</td>
</tr>
<tr>
<td><a href="/images/_DSC1344.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1344.jpg&#038;w=200&#038;q=90" width="200" title="North of Great Falls, Montana" alt="North of Great Falls, Montana" align="left" border="2" /></a></td>
<td>North of Great Falls, Montana</td>
</tr>
<tr>
<td><a href="/images/_DSC1345.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1345.jpg&#038;w=200&#038;q=90" width="200" title="On the way to Glacier NP, Montana" alt="On the way to Glacier NP, Montana" align="left" border="2" /></a></td>
<td>On the way to Glacier NP, Montana</td>
</tr>
<tr>
<td><a href="/images/IMG_2116.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2116.jpg&#038;w=200&#038;q=90" width="200" title="Blackfeet Nation, Montana" alt="Blackfeet Nation, Montana" align="left" border="2" /></a></td>
<td>Blackfeet Nation, Montana</td>
</tr>
<tr>
<td><a href="/images/IMG_2120.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2120.jpg&#038;w=200&#038;q=90" width="200" title="Snapshooting (Blackfeet Nation, Montana)" alt="Snapshooting (Blackfeet Nation, Montana)" align="left" border="2" /></a></td>
<td>Snapshooting<br /> (Blackfeet Nation, Montana)</td>
</tr>
<tr>
<td><a href="/images/_DSC1364.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1364.jpg&#038;w=200&#038;q=90" width="200" title="On the way to Saint Mary (Blackfeet Nation, Montana)" alt="On the way to Saint Mary (Blackfeet Nation, Montana)" align="left" border="2" /></a></td>
<td>On the way to Saint Mary<br /> (Blackfeet Nation, Montana)</td>
</tr>
<tr>
<td><a href="/images/_DSC1377.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1377.jpg&#038;w=200&#038;q=90" width="200" title="On our way to Saint Mary (Blackfeet Nation, Montana)" alt="On our way to Saint Mary (Blackfeet Nation, Montana)" align="left" border="2" /></a></td>
<td>On our way to Saint Mary<br /> (Blackfeet Nation, Montana)</td>
</tr>
<tr>
<td><a href="/images/_DSC1397.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1397.jpg&#038;w=200&#038;q=90" width="200" title="The most popular view in the park (Glacier NP, Montana)" alt="The most popular view in the park (Glacier NP, Montana)" align="left" border="2" /></a></td>
<td>The most popular view in the park<br /> (Glacier NP, Montana)</td>
</tr>
<tr>
<td><a href="/images/_DSC1410.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1410.jpg&#038;w=200&#038;q=90" width="200" title="Logan Pass (Glacier NP, Montana)" alt="Logan Pass (Glacier NP, Montana)" align="left" border="2" /></a></td>
<td>Logan Pass<br /> (Glacier NP, Montana)</td>
</tr>
<tr>
<td><a href="/images/_DSC1451.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1451.jpg&#038;w=200&#038;q=90" width="200" title="Logan Pass (Glacier NP, Montana)" alt="Logan Pass (Glacier NP, Montana)" align="left" border="2" /></a></td>
<td>Logan Pass<br /> (Glacier NP, Montana)</td>
</tr>
<tr>
<td><a href="/images/_DSC1466.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1466.jpg&#038;w=200&#038;q=90" width="200" title="Clearing storm, Gunsight Pass (Glacier NP, Montana)" alt="Clearing storm, Gunsight Pass (Glacier NP, Montana)" align="left" border="2" /></a></td>
<td>Clearing storm, Gunsight Pass<br /> (Glacier NP, Montana)</td>
</tr>
<tr>
<td><a href="/images/_DSC1470.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1470.jpg&#038;w=200&#038;q=90" width="200" title="Gunsight Pass (Glacier NP, Montana)" alt="Gunsight Pass (Glacier NP, Montana)" align="left" border="2" /></a></td>
<td>Gunsight Pass<br /> (Glacier NP, Montana)</td>
</tr>
<tr>
<td><a href="/images/_DSC1504.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1504.jpg&#038;w=200&#038;q=90" width="200" title="Beautiful mountain weather (Waterton Lakes NP, Alberta)" alt="Beautiful mountain weather (Waterton Lakes NP, Alberta)" align="left" border="2" /></a></td>
<td>Beautiful mountain weather<br /> (Waterton Lakes NP, Alberta)</td>
</tr>
<tr>
<td><a href="/images/_DSC1556.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1556.jpg&#038;w=200&#038;q=90" width="200" title="The Prince of Wales Hotel (Waterton Lakes NP, Alberta)" alt="The Prince of Wales Hotel (Waterton Lakes NP, Alberta)" align="left" border="2" /></a></td>
<td>The Prince of Wales Hotel<br /> (Waterton Lakes NP, Alberta)</td>
</tr>
<tr>
<td><a href="/images/_DSC1583.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1583.jpg&#038;h=200&#038;q=90" height="200" title="Bear grass (Waterton Lakes NP, Alberta)" alt="Bear grass (Waterton Lakes NP, Alberta)" align="left" border="2" /></a></td>
<td>Bear grass<br /> (Waterton Lakes NP, Alberta)</td>
</tr>
<tr>
<td><a href="/images/_DSC1635.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1635.jpg&#038;w=200&#038;q=90" width="200" title="On our fifth hike, clearing snow (Glacier NP, Montana)" alt="On our fifth hike, clearing snow (Glacier NP, Montana)" align="left" border="2" /></a></td>
<td>On our fifth hike, clearing snow<br /> (Glacier NP, Montana)</td>
</tr>
<tr>
<td><a href="/images/_DSC1636.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1636.jpg&#038;w=200&#038;q=90" width="200" title="On our fifth hike, Mount Oberlin (Glacier NP, Montana)" alt="On our fifth hike, Mount Oberlin (Glacier NP, Montana)" align="left" border="2" /></a></td>
<td>On our fifth hike, Mount Oberlin<br /> (Glacier NP, Montana)</td>
</tr>
<tr>
<td><a href="/images/_DSC1641.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1641.jpg&#038;h=200&#038;q=90" height="200" title="On our fifth hike, the boardwalk (Glacier NP, Montana)" alt="On our fifth hike, the boardwalk (Glacier NP, Montana)" align="left" border="2" /></a></td>
<td>On our fifth hike, the boardwalk<br /> (Glacier NP, Montana)</td>
</tr>
<tr>
<td><a href="/images/_DSC1652.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1652.jpg&#038;w=200&#038;q=90" width="200" title="On our fifth hike, the snowfield (Glacier NP, Montana)" alt="On our fifth hike, the snowfield (Glacier NP, Montana)" align="left" border="2" /></a></td>
<td>On our fifth hike, the snowfield<br /> (Glacier NP, Montana)</td>
</tr>
<tr>
<td><a href="/images/_DSC1719.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1719.jpg&#038;w=200&#038;q=90" width="200" title="On our fifth hike, the baby mountain goat (Glacier NP, Montana)" alt="On our fifth hike, the baby mountain goat (Glacier NP, Montana)" align="left" border="2" /></a></td>
<td>On our fifth hike, the baby mountain goat<br /> (Glacier NP, Montana)</td>
</tr>
<tr>
<td><a href="/images/_DSC1797.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1797.jpg&#038;w=200&#038;q=90" width="200" title="Merriwether Luis, the wayward conquistador (Marias Pass, Montana)" alt="Merriwether Luis, the wayward conquistador (Marias Pass, Montana)" align="left" border="2" /></a></td>
<td>Merriwether Luis, the wayward conquistador<br /> (Marias Pass, Montana)</td>
</tr>
<tr>
<td><a href="/images/IMG_2316.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2316.jpg&#038;w=200&#038;q=90" width="200" title="Petting a sea star (Seattle, Washington)" alt="Petting a sea star (Seattle, Washington)" align="left" border="2" /></a></td>
<td>Petting a sea star<br /> (Seattle, Washington)</td>
</tr>
<tr>
<td><a href="/images/IMG_2322.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2322.jpg&#038;w=200&#038;q=90" width="200" title="Funky coral (Seattle, Washington)" alt="Funky coral (Seattle, Washington)" align="left" border="2" /></a></td>
<td>Funky coral<br /> (Seattle, Washington)</td>
</tr>
<tr>
<td><a href="/images/IMG_2370.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2370.jpg&#038;w=200&#038;q=90" width="200" title="Happy to have coffee at the Space Needle (Seattle, Washington)" alt="Happy to have coffee at the Space Needle (Seattle, Washington)" align="left" border="2" /></a></td>
<td>Happy to have coffee at the Space Needle<br /> (Seattle, Washington)</td>
</tr>
<tr>
<td><a href="/images/IMG_2389.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2389.jpg&#038;w=200&#038;q=90" width="200" title="Happy in-laws (Seattle, Washington)" alt="Happy in-laws (Seattle, Washington)" align="left" border="2" /></a></td>
<td>Happy in-laws<br /> (Seattle, Washington)</td>
</tr>
<tr>
<td><a href="/images/IMG_2396.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2396.jpg&#038;w=200&#038;q=90" width="200" title="Calder stabile (Seattle, Washington)" alt="Calder stabile (Seattle, Washington)" align="left" border="2" /></a></td>
<td>Calder stabile<br /> (Seattle, Washington)</td>
</tr>
<tr>
<td><a href="/images/IMG_2429.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2429.jpg&#038;w=200&#038;q=90" width="200" title="Look who's smart enough to wear a hat to Safeco (Seattle, Washington)" alt="Look who's smart enough to wear a hat to Safeco (Seattle, Washington)" align="left" border="2" /></a></td>
<td>Look who&#8217;s smart enough to wear a hat to Safeco<br /> (Seattle, Washington)</td>
</tr>
<tr>
<td><a href="/images/IMG_2430.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2430.jpg&#038;w=200&#038;q=90" width="200" title="Another great evening for a great baseball game (Seattle, Washington)" alt="Another great evening for a great baseball game (Seattle, Washington)" align="left" border="2" /></a></td>
<td>Another great evening for a great baseball game<br /> (Seattle, Washington)</td>
</tr>
<tr>
<td><a href="/images/IMG_2454.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2454.jpg&#038;w=200&#038;q=90" width="200" title="Doing the large format thing (Mount Saint Helens National Volcanic Monument, Washington)" alt="Doing the large format thing (Mount Saint Helens National Volcanic Monument, Washington)" align="left" border="2" /></a></td>
<td>Doing the large format thing<br /> (Mount Saint Helens National Volcanic Monument, Washington)</td>
</tr>
<tr>
<td><a href="/images/_DSC1825.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1825.jpg&#038;w=200&#038;q=90" width="200" title="Mid-summer wildflowers (Mount Saint Helens NVM, Washington)" alt="Mid-summer wildflowers (Mount Saint Helens NVM, Washington)" align="left" border="2" /></a></td>
<td>Mid-summer wildflowers<br /> (Mount Saint Helens NVM, Washington)</td>
</tr>
<tr>
<td><a href="/images/_DSC1854.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1854.jpg&#038;w=200&#038;q=90" width="200" title="Mid-summer wildflowers (Mount Saint Helens NVM, Washington)" alt="Mid-summer wildflowers (Mount Saint Helens NVM, Washington)" align="left" border="2" /></a></td>
<td>Mid-summer wildflowers<br /> (Mount Saint Helens NVM, Washington)</td>
</tr>
<tr>
<td><a href="/images/_DSC1980.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1980.jpg&#038;w=200&#038;q=90" width="200" title="A Zen moment at the Japanese Garden (Portland, Oregon)" alt="A Zen moment at the Japanese Garden (Portland, Oregon)" align="left" border="2" /></a></td>
<td>A Zen moment at the Japanese Garden<br /> (Portland, Oregon)</td>
</tr>
<tr>
<td><a href="/images/_DSC1981.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC1981.jpg&#038;w=200&#038;q=90" width="200" title="Mind like water (Portland, Oregon)" alt="Mind like water (Portland, Oregon)" align="left" border="2" /></a></td>
<td>Mind like water<br /> (Portland, Oregon)</td>
</tr>
<tr>
<td><a href="/images/_DSC2019.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC2019.jpg&#038;w=200&#038;q=90" width="200" title="Watching the sea lions (Portland, Oregon)" alt="Watching the sea lions (Portland, Oregon)" align="left" border="2" /></a></td>
<td>Watching the sea lions<br /> (Portland, Oregon)</td>
</tr>
<tr>
<td><a href="/images/_DSC2023.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC2023.jpg&#038;w=200&#038;q=90" width="200" title="Sea lions (Portland, Oregon)" alt="Sea lions (Portland, Oregon)" align="left" border="2" /></a></td>
<td>Sea lions<br /> (Portland, Oregon)</td>
</tr>
<tr>
<td><a href="/images/_DSC2044.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC2044.jpg&#038;w=200&#038;q=90" width="200" title="Crocs (Portland, Oregon)" alt="Crocs (Portland, Oregon)" align="left" border="2" /></a></td>
<td>Crocs<br /> (Portland, Oregon)</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://jeffmatherphotography.com/dispatches/2008/08/what-i-did-on-my-summer-vacation-part-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Coming Soon: What I Did on my Summer Vacation</title>
		<link>http://jeffmatherphotography.com/dispatches/2008/08/coming-soon-what-i-did-on-my-summer-vacation/</link>
		<comments>http://jeffmatherphotography.com/dispatches/2008/08/coming-soon-what-i-did-on-my-summer-vacation/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 02:23:02 +0000</pubDate>
		<dc:creator>Jeff Mather</dc:creator>
		
		<category><![CDATA[USA]]></category>

		<category><![CDATA[Travel]]></category>

		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://jeffmatherphotography.com/dispatches/2008/08/coming-soon-what-i-did-on-my-summer-vacation/</guid>
		<description><![CDATA[Blackfeet Nation, Montana
It&#8217;s taking me longer than I had hoped, but you can expect to see photographs and details about our Western swing soon.&#160;.&#160;.&#160;.
]]></description>
			<content:encoded><![CDATA[<p><a href="/images/IMG_2120.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2120.jpg&#038;w=460&#038;q=90" title="Blackfeet Nation, Montana (2008)" border="0" /></a><br clear="all" /><a href="/images/IMG_2120.jpg">Blackfeet Nation, Montana</a></p>
<p>It&#8217;s taking me longer than I had hoped, but you can expect to see photographs and details about our Western swing soon.&nbsp;.&nbsp;.&nbsp;.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffmatherphotography.com/dispatches/2008/08/coming-soon-what-i-did-on-my-summer-vacation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My Spring of 100 Mistakes - Part 4</title>
		<link>http://jeffmatherphotography.com/dispatches/2008/07/my-spring-of-100-mistakes-part-4/</link>
		<comments>http://jeffmatherphotography.com/dispatches/2008/07/my-spring-of-100-mistakes-part-4/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 03:56:53 +0000</pubDate>
		<dc:creator>Jeff Mather</dc:creator>
		
		<category><![CDATA[Large Format Camera]]></category>

		<category><![CDATA[Fodder for Techno-weenies]]></category>

		<category><![CDATA[Life Lessons]]></category>

		<category><![CDATA[USA]]></category>

		<category><![CDATA[Travel]]></category>

		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://jeffmatherphotography.com/dispatches/2008/07/my-spring-of-100-mistakes-part-4/</guid>
		<description><![CDATA[Downtown Casper, Wyoming
I picked up twenty sheets of developed 4&#215;5&#8243; film from the lab today.  Although I made hundreds of photographs with my digital camera, these were certainly the most enjoyable to produce and also the ones that filled me with the most trepidation.  I&#8217;m pleased to report that the results were rather [...]]]></description>
			<content:encoded><![CDATA[<p><a href="/images/_DSC2090.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC2090.jpg&#038;w=460&#038;q=90" title="Downtown Casper, Wyoming (2008)" border="0" /></a><br clear="all" /><a href="/images/_DSC2090.jpg">Downtown Casper, Wyoming</a></p>
<p>I picked up twenty sheets of developed 4&#215;5&#8243; film from the lab today.  Although I made hundreds of photographs with my digital camera, these were certainly the most enjoyable to produce and also the ones that filled me with the most trepidation.  I&#8217;m pleased to report that the results were rather good.  Not 100% what I would like .&nbsp;.&nbsp;. but then again I&#8217;m a perfectionist who is getting spoiled by the quick (and virtuous) feedback cycle afforded by digital capture and editing.</p>
<p>I really only used my large format camera about a dozen times on the trip, since I bracket most of my exposures, making an extra photograph with a different amount of light reaching the film.  The goal is to have a better chance at getting the &#8220;right&#8221; exposure.  On those dozen occasions,  the responses from the people around me ran the gamut from indifference to excited interest.  I talked to a few people while composing the scene with my head under the focusing cloth; disembodied voices asking me about how my camera works.  There were also several people who thought that because I was incapable of seeing them, I also couldn&#8217;t hear their conversations about me.</p>
<p>I think my favorite conversation was with a British fellow about my age in Yellowstone.</p>
<p>&#8220;That&#8217;s some serious gear.&#8221;  Most people&#8217;s first realization that something is up occurs when I unfold the camera as it sits on the tripod.  &#8220;Are you a professional?&#8221;</p>
<p>&#8220;No.  I&#8217;m just a guy with a very expensive hobby; but I&#8217;m having a lot of fun.&#8221;</p>
<p>Over the next minutes, I attached my wide-angle lens to the camera, set up a photograph of the Grand Canyon of the Yellowstone, focused the camera, took a few meter readings, set the exposure time and aperture, and switched closed the shutter.  At that point almost everything is done.  I just had to insert the film holder and trip the shutter.</p>
<p>&#8220;WOW!  That&#8217;s some serious gear!&#8221;  Something about the Quickload film holder touched a geeky, gadget-loving part in my onlooker.  I put a sheet of film in the holder, waited for the wind to subside a bit, and tripped the cable release.</p>
<p>&#8220;That&#8217;s it?&#8221;  While I find something immensely charming in the mechanical sound of the shutter winding down the fraction of a second that it&#8217;s open, most people think it&#8217;s anticlimactic, as though fireworks should shoot out from the camera.  But then again, I suppose we&#8217;re accustomed to thinking that if someone spends fifteen minutes getting a camera ready, the result should be a poster-sized print that magically appears.</p>
<p>The funny thing is, my mom had the same reaction.  She wanted to see how my view camera works, so we collaboratively made the image you see above.  And I have to admit, it was a bit disappointing that I had to make her wait three weeks to see the result.</p>
<p>But I talked to several very nice people, and a few even took me up on the offer to pop under the focusing hood and see the image on the ground glass.  That reaction is the one that makes me the happiest.  It usually goes something like this: &#8220;It&#8217;s dark under here.&nbsp;.&nbsp;.&nbsp;. WHOA!  That&#8217;s amazing.&#8221;</p>
<p>Anyway, enough accentuating the positive.  Let&#8217;s talk about mistakes.</p>
<p><b>Fourteen</b>: My ability to get the &#8220;correct&#8221; exposure sucks (to put it bluntly).  As I mentioned, I have been taking a second exposure, usually 1/2 stop brighter, in an effort to get it right.  The darker images &mdash; which use the exposure values suggested by my meter &mdash; are usually 1/2 to one-and-a-half stops underexposed.  So I&#8217;m going to change my exposure compensation and start bracketing in whole stops.  (And eventually I&#8217;m going to get an instant film holder to check the images in the field and finally be able to show onlookers something tangible.)</p>
<p><b>Fifteen</b>: I forgot the filter compensation factor for my polarizing filter.  I guessed two stops at maximum effect and seem to have gotten it about right.</p>
<p><b>Sixteen</b>: Camera shake is quite visible in a 20 square-inch image.  Evidently, I need to wait for the camera to settle after the wind stops blowing and after I pull the dark slide on the film.  A couple of the image were a bit blurry and not because of focus.</p>
<p>(And for the curious, I&#8217;m working on my &#8220;ghetto film scanner,&#8221; since I still don&#8217;t have a scanner that accepts 4&#215;5.  The images lack quite a bit of resolution, dynamic range, and color fidelity.  But by adding an opaque mask around my film on the light table, I&#8217;ve at least managed to get rid of some of the annoying fringing at the edges of the images.  I still must use Photoshop to crop the image, correct the perspective, and &#8220;fix&#8221; the color; and I don&#8217;t feel right using it for anything other than showing off here.</p>
<p>I made a couple photographs of my pathetic setup.  Yes, it&#8217;s made with two hanging file folders taped together which are held flat by whatever I happen to be reading.  (Right now that&#8217;s the excellent <i>Devil in the White City</i>.)</p>
<p><a href="/images/IMG_2576.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_2576.jpg&#038;h=460&#038;q=90" title="Scanning film, ghetto-style" border="0" /></a><br clear="all" /><a href="/images/IMG_2576.jpg">Like a copy stand but not as functional</a></p>
<p><a href="/images/_DSC2091.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC2091.jpg&#038;w=460&#038;q=90" title="Scanning film, ghetto-style" border="0" /></a><br clear="all" /><a href="/images/_DSC2091.jpg"></a>The film holder and light shield</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffmatherphotography.com/dispatches/2008/07/my-spring-of-100-mistakes-part-4/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tractors</title>
		<link>http://jeffmatherphotography.com/dispatches/2008/07/tractors/</link>
		<comments>http://jeffmatherphotography.com/dispatches/2008/07/tractors/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 03:45:23 +0000</pubDate>
		<dc:creator>Jeff Mather</dc:creator>
		
		<category><![CDATA[USA]]></category>

		<category><![CDATA[This is who we are]]></category>

		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://jeffmatherphotography.com/dispatches/2008/07/tractors/</guid>
		<description><![CDATA[I love farm toys.  My grandfather used to build the real tractors in Waterloo for John Deere, and he would give us 1/16 scale toys when we were kids.  After he retired, he decided to rebuild an old Oliver, just to keep busy.
While we were in Billings, we stopped into Action Toys, the [...]]]></description>
			<content:encoded><![CDATA[<p>I love farm toys.  My grandfather used to build the real tractors in Waterloo for John Deere, and he would give us 1/16 scale toys when we were kids.  After he retired, he decided to rebuild an old Oliver, just to keep busy.</p>
<p>While we were in Billings, we stopped into <a href="http://www.actionfarmtoys.com/">Action Toys</a>, the best little farm toy store in the world.  Here are the fruits of my most recent trip.  (Yes, I have a spending limit when I go in.)</p>
<p><a href="/images/_DSC2078.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/_DSC2078.jpg&#038;w=460&#038;q=90" title="Little farm equipment" border="0" /></a><br clear="all" /><a href="/images/_DSC2078.jpg">Farm equipment, 1/64 scale</a></p>
<p>So what do we have here?</p>
<ul>
<li><a href="http://www.agcoiron.com/default.cfm?PID=1.27.1.1">AGCO DT200</a> tractor</li>
<li><a href="http://www.hpj.com/archives/2004/feb04/Expandedproductlineupoffers.CFM">John Deere/Bauer Built DB90 - 36 Row 30&#8243; Planter</a> &mdash; In real-life this plants 90 feet of corn (or other row crops) at once.  I haven&#8217;t dared fold it open yet; this is how you would see it as you passed it on the county highway.</li>
<li><a href="http://salesmanual.deere.com/sales/salesmanual/en_NA/sprayers/attachments/allied_partners/dry_spinner_spreader.html">John Deere 4920 Dry Box Spreader</a> &#8216;cuz even my little farm demands high yields.</li>
<li><a href="http://www.walltractorsandmore.com/pre_owned_detail.asp?Manufacturer=161&#038;veh=788481">John Deere 7720 Titan II Combine</a> ca. 1985 but still seen all over Iowa</li>
</ul>
<p>The tractor pulling the planter is a <a href="http://www.tractordata.com/td/001/td1384.html">John Deere 9420T</a> with 425HP engine.  I didn&#8217;t buy it this trip, but there&#8217;s no way the Agco&#8217;s 200ish horsepower engine is going to get the field planted, especially when it&#8217;s been raining.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffmatherphotography.com/dispatches/2008/07/tractors/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Back on the air soon&#8230;</title>
		<link>http://jeffmatherphotography.com/dispatches/2008/07/back-on-the-air-soon/</link>
		<comments>http://jeffmatherphotography.com/dispatches/2008/07/back-on-the-air-soon/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 17:36:11 +0000</pubDate>
		<dc:creator>Jeff Mather</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://jeffmatherphotography.com/dispatches/2008/07/back-on-the-air-soon/</guid>
		<description><![CDATA[Apparently, the West does not have a good system of Internet tubes.  And the ones I was able to tap into I mainly used for homework.
We will return you to regularly scheduled programming soon.&#160;.&#160;.&#160;.
]]></description>
			<content:encoded><![CDATA[<p>Apparently, the West does not have a good system of Internet tubes.  And the ones I was able to tap into I mainly used for homework.</p>
<p>We will return you to regularly scheduled programming soon.&nbsp;.&nbsp;.&nbsp;.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffmatherphotography.com/dispatches/2008/07/back-on-the-air-soon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>West of the Imagination</title>
		<link>http://jeffmatherphotography.com/dispatches/2008/07/west-of-the-imagination/</link>
		<comments>http://jeffmatherphotography.com/dispatches/2008/07/west-of-the-imagination/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 04:15:34 +0000</pubDate>
		<dc:creator>Jeff Mather</dc:creator>
		
		<category><![CDATA[USA]]></category>

		<category><![CDATA[This is who we are]]></category>

		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://jeffmatherphotography.com/dispatches/2008/07/west-of-the-imagination/</guid>
		<description><![CDATA[Today we went to the Buffalo Bill Historical Center in Cody, Wyoming.  It&#8217;s a lot of fun, with a little something for everyone.
Click for larger
Click for larger
Click for larger
Click for larger
Click for larger
Click for larger
Click for larger
Click for larger
]]></description>
			<content:encoded><![CDATA[<p>Today we went to the Buffalo Bill Historical Center in Cody, Wyoming.  It&#8217;s a lot of fun, with a little something for everyone.</p>
<p><a href="/images/IMG_1739.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1739.jpg&#038;h=460&#038;q=90" title="Buffalo Bill Historical Center" border="0" /></a><br clear="all" /><a href="/images/IMG_1739.jpg">Click for larger</a></p>
<p><a href="/images/IMG_1673.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1673.jpg&#038;w=460&#038;q=90" title="Buffalo Bill Historical Center" border="0" /></a><br clear="all" /><a href="/images/IMG_1673.jpg">Click for larger</a></p>
<p><a href="/images/IMG_1679-1.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1679-1.jpg&#038;h=460&#038;q=90" title="Buffalo Bill Historical Center" border="0" /></a><br clear="all" /><a href="/images/IMG_1679-1.jpg">Click for larger</a></p>
<p><a href="/images/IMG_1681.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1681.jpg&#038;w=460&#038;q=90" title="Buffalo Bill Historical Center" border="0" /></a><br clear="all" /><a href="/images/IMG_1681.jpg">Click for larger</a></p>
<p><a href="/images/IMG_1747.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1747.jpg&#038;w=460&#038;q=90" title="Buffalo Bill Historical Center" border="0" /></a><br clear="all" /><a href="/images/IMG_1747.jpg">Click for larger</a></p>
<p><a href="/images/IMG_1703.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1703.jpg&#038;w=460&#038;q=90" title="Buffalo Bill Historical Center" border="0" /></a><br clear="all" /><a href="/images/IMG_1703.jpg">Click for larger</a></p>
<p><a href="/images/IMG_1728.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1728.jpg&#038;w=460&#038;q=90" title="Buffalo Bill Historical Center" border="0" /></a><br clear="all" /><a href="/images/IMG_1728.jpg">Click for larger</a></p>
<p><a href="/images/IMG_1752.jpg"><img src="http://www.jeffmatherphotography.com/phpThumb/phpThumb.php?src=/images/IMG_1752.jpg&#038;w=460&#038;q=90" title="Buffalo Bill Historical Center" border="0" /></a><br clear="all" /><a href="/images/IMG_1752.jpg">Click for larger</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jeffmatherphotography.com/dispatches/2008/07/west-of-the-imagination/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
