<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:georss="http://www.georss.org/georss" xmlns:gml="http://www.opengis.net/gml"
>

<channel>
	<title>T.Dubya.</title>
	<atom:link href="http://tdubya.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://tdubya.net</link>
	<description>The Welch Variety</description>
	<pubDate>Wed, 13 Jan 2010 16:08:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>GeoDjango and Friends</title>
		<link>http://tdubya.net/2010/01/13/geodjango-and-friends/</link>
		<comments>http://tdubya.net/2010/01/13/geodjango-and-friends/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 15:57:59 +0000</pubDate>
		<dc:creator>tdubya</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://tdubya.net/?p=136</guid>
		<description><![CDATA[I gave a talk last night to the Portland Python User Group at Webtrends on the geospatial capabilities of the Django web application framework.  In addition to showing off GeoDjango, I took their basic WorldBorders sample and extended it to provide a GeoJSON web service that OpenLayers could consume.
Presentation Slides
World_Borders Tutorial_Plus (Source Code)

I essentially took [...]]]></description>
			<content:encoded><![CDATA[<p>I gave a talk last night to the Portland Python User Group at Webtrends on the geospatial capabilities of the Django web application framework.  In addition to showing off GeoDjango, I took their basic WorldBorders sample and extended it to provide a GeoJSON web service that OpenLayers could consume.</p>
<p><a title="Presentation Slides" href="http://docs.google.com/present/view?id=dgdj7fn3_36g5dv6jg3" target="_blank">Presentation Slides</a></p>
<p><a href="http://tdubya.net/wp-content/uploads/2010/01/world_borders_tutorial_plus.zip">World_Borders Tutorial_Plus (Source Code)<br />
</a></p>
<p>I essentially took a render_to_geojson utility developed by my friend Dane Springmeyer and put together a quick and dirty GeoJSON web service.  The output from this service is ready to be consumed by an OpenLayers GeoJSON protocol.  I then combined that with the GeoExt &#8216;Feature Store In An Ext Grid&#8217; example and gave it a nice OpenStreetMap base layer.</p>
<p style="text-align: center;"><a href="http://tdubya.net/wp-content/uploads/2010/01/screen-capture-1.png"><img class="size-medium wp-image-137 aligncenter" title="World Borders + GeoExt Demo" src="http://tdubya.net/wp-content/uploads/2010/01/screen-capture-1-300x133.png" alt="" width="300" height="133" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;"><span id="more-136"></span>Here&#8217;s an excerpt from the GeoJSON web service:</p>
<pre style="text-align: left;"><code>{
</code><code> "srid": 900913,
</code><code> "crs": {
</code><code>  "type": "link",
</code><code>  "properties": {
</code><code>   "href": "http://spatialreference.org/ref/epsg/900913/",
</code><code>   "type": "proj4"
</code><code>  }
</code><code> },
</code><code> "type": "FeatureCollection",
</code><code> "features": [
</code><code>  {
</code><code>   "geometry": {
</code><code>    "type": "MultiPolygon",
</code><code>    "coordinates": [
</code><code>     [
</code><code>      [
</code><code>       [
</code><code>        -9774223.6553460006,
</code><code>        1955094.8610100001
</code></pre>
<p style="text-align: left;">Here's the web service view:</p>
<pre>def borders(request):</pre>
<pre>    borders_qs = WorldBorders.objects.filter(subregion=request.GET.get('subregion'))</pre>
<pre>    return render_to_geojson(</pre>
<pre>        borders_qs,</pre>
<pre>        geom_attribute='geom',</pre>
<pre>        mimetype = 'text/plain',</pre>
<pre>        proj_transform=900913,</pre>
<pre>        pretty_print=True</pre>
<pre>    )</pre>
<p style="text-align: left;">and here's the client feature store that I hooked to it:</p>
<pre style="text-align: left;">// create feature store, binding it to the vector layer
store = new GeoExt.data.FeatureStore({
    layer: vecLayer,
    fields: [
        {name: 'name', type: 'string'},
        {name: 'area', type: 'float'},
        {name: 'pop2005', type: 'float'}
    ],
    proxy: new GeoExt.data.ProtocolProxy({
        protocol: new OpenLayers.Protocol.HTTP({
            url: "/world/borders/json?subregion=13",
            format: new OpenLayers.Format.GeoJSON()
        })
    }),
    autoLoad: true
});</pre>
<p><img src="http://gws.maps.yahoo.com/mapimage?MAPDATA=nXn9TOd6wXUHP0tdAF1M4.CQzf7d4kK42JiLVKu6jsB3mJvalplfyKEurio0WyDGzt0aEFrVT_sULn86ljjrrDvmbElL53lfxAPkx7R4_lenkcLZPZTHnabLCMXdhocMkYhXF4EX7hXDi2Ga1D45BLc-&amp;mvt=m&amp;cltype=onnetwork&amp;.intl=us&amp;appid=geoco" title="GeoPress map of Webtrends"/></p>
]]></content:encoded>
			<wfw:commentRss>http://tdubya.net/2010/01/13/geodjango-and-friends/feed/</wfw:commentRss>
		<georss:point featurename="851 SW 6th Ave., portland, or">45.518038 -122.67934</georss:point>
	</item>
		<item>
		<title>Tin Man Fires Again</title>
		<link>http://tdubya.net/2009/07/22/tin-man-fires-again/</link>
		<comments>http://tdubya.net/2009/07/22/tin-man-fires-again/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 05:23:24 +0000</pubDate>
		<dc:creator>tdubya</dc:creator>
		
		<category><![CDATA[Kiln Firing]]></category>

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

		<guid isPermaLink="false">http://tdubya.net/?p=128</guid>
		<description><![CDATA[In mid-July we fired the Tin Man for the third time over at Careen&#8217;s place near Johnson Creek.  We unloaded last week and we&#8217;ve improved by leaps and bounds.  The kiln fired much more evenly and we added soda (baking and ash) for the first time giving the pots a nice sheen and some much [...]]]></description>
			<content:encoded><![CDATA[<p>In mid-July we fired the Tin Man for the third time over at Careen&#8217;s place near Johnson Creek.  We unloaded last week and we&#8217;ve improved by leaps and bounds.  The kiln fired much more evenly and we added soda (baking and ash) for the first time giving the pots a nice sheen and some much more vivid colors on the clay.  I didn&#8217;t use a single glaze this time on my work, a first.</p>
<p>Firing details and additional photos can be found on <a href="http://treadlehead.blogspot.com/">Careen&#8217;s blog</a></p>
<p><a href="http://tdubya.net/wp-content/uploads/2009/07/bowls.jpg"><img class="aligncenter size-medium wp-image-130" title="Bowls" src="http://tdubya.net/wp-content/uploads/2009/07/bowls-300x167.jpg" alt="" width="210" height="117" /></a><a href="http://tdubya.net/wp-content/uploads/2009/07/servingpots.jpg"><img class="alignright size-medium wp-image-133" title="Serving Pots" src="http://tdubya.net/wp-content/uploads/2009/07/servingpots-225x300.jpg" alt="" width="158" height="210" /></a><a href="http://tdubya.net/wp-content/uploads/2009/07/hangingplanters1.jpg"><img class="alignleft size-medium wp-image-132" title="Hanging Planters" src="http://tdubya.net/wp-content/uploads/2009/07/hangingplanters1-196x300.jpg" alt="" width="137" height="210" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tdubya.net/2009/07/22/tin-man-fires-again/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ecotrust in the News: MLPA and Fishing Communities</title>
		<link>http://tdubya.net/2009/01/28/ecotrust-in-the-news-mlpa-and-fishing-communities/</link>
		<comments>http://tdubya.net/2009/01/28/ecotrust-in-the-news-mlpa-and-fishing-communities/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 19:38:03 +0000</pubDate>
		<dc:creator>tdubya</dc:creator>
		
		<category><![CDATA[Ecotrust]]></category>

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

		<category><![CDATA[Open Source]]></category>

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

		<guid isPermaLink="false">http://tdubya.net/?p=118</guid>
		<description><![CDATA[Thought I would point out another article about Ecotrust&#8217;s involvement in the Calfornia marine life protection act initative (MLPAI).  Specifically our work interviewing fisherman in the south coast region.  The goal was to capture which areas are most important to these fisherman, by species and by port, so that people lobbying for the fisherman have [...]]]></description>
			<content:encoded><![CDATA[<p>Thought I would point out <a href="http://www3.signonsandiego.com/stories/2009/jan/14/1n14marine234532-anglers-aid-urged-sea-life-effort/?zIndex=36858" target="_blank">another article</a> about <a href="http://www.ecotrust.org/mlpa/" target="_blank">Ecotrust&#8217;s involvement</a> in the Calfornia marine life protection act initative (MLPAI).  Specifically our work interviewing fisherman in the south coast region.  The goal was to capture which areas are most important to these fisherman, by species and by port, so that people lobbying for the fisherman have the best information available and the impact of marine reserves on their bottom line can be reduced in an analytical way.</p>
<p>I wish I was able to show you the maps we&#8217;ve produced, they&#8217;re really something, and I really think they&#8217;re going to help the decision making process.  I should create some sample maps to display.</p>
<p><img src="http://gws.maps.yahoo.com/mapimage?MAPDATA=dzdVXOd6wXVzX6tXxLnluPfJqNnIncoj48MC7ndxV068jC4YK7lo_QiQnK2_hOjy_Y.CPsWTVj.gcAdDzHLh49suFXqIXfLfGHBNtFA9Ls2.WVZjDYwn7OSgCUTvi5x39.X5IPb3ztuMQDoXJWvfwhS4BNQsie_JkDkq5tL_krjBQCBLLI4a&amp;mvt=m&amp;cltype=onnetwork&" title="GeoPress map of south coast CA"/></p>
<p>It&#8217;s important to remember that all of interviews are done under a very strict privacy agreement and only the summarized maps are made available so that individual fishing spots are not identifiable as much as possible.  The maps are also made available to a very small number of people for decision making.  The article doesn&#8217;t seem to make this key point very well as you&#8217;ll notice from peoples comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://tdubya.net/2009/01/28/ecotrust-in-the-news-mlpa-and-fishing-communities/feed/</wfw:commentRss>
		<georss:point featurename="[34.06255774842434, -119.33880615513772]">34.06255774842434 -119.33880615513772</georss:point>
	</item>
		<item>
		<title>Couchsurfing DC and Santarchy</title>
		<link>http://tdubya.net/2008/12/14/couchsurfing-dc-and-santarchy/</link>
		<comments>http://tdubya.net/2008/12/14/couchsurfing-dc-and-santarchy/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 19:53:53 +0000</pubDate>
		<dc:creator>tdubya</dc:creator>
		
		<category><![CDATA[Couchsurfing]]></category>

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

		<category><![CDATA[santarchy dc]]></category>

		<guid isPermaLink="false">http://tdubya.net/?p=82</guid>
		<description><![CDATA[I couchsurfed my first place last weekend.  I was traveling to DC for the first time for the awards ceremony I mentioned in my last post and I wanted to come a few days early to see some sites and meet some folks.  What better way than by staying with complete strangers (with good references)!
Ningxi [...]]]></description>
			<content:encoded><![CDATA[<p>I couchsurfed my first place last weekend.  I was traveling to DC for the first time for the awards ceremony I mentioned in my last post and I wanted to come a few days early to see some sites and meet some folks.  What better way than by staying with complete strangers (with good references)!</p>
<p>Ningxi Liu and her fellow dorm-mates at George Washington University were kind enough to host me.  I showed up on their doorstep on Saturday right off a red-eye from Portland.  An hour later we were emerging out of the subway in santa suits for Santarchy DC &#8216;08.  I actually bought a suit in Portland and brought it with me&#8230;</p>
<div id="attachment_83" class="wp-caption aligncenter" style="width: 310px"><a href="http://tdubya.net/wp-content/uploads/2008/12/santa_1.jpg"><img class="size-medium wp-image-83" title="Me and Ningxi on the DC Metro rail" src="http://tdubya.net/wp-content/uploads/2008/12/santa_1-300x225.jpg" alt="Me and Ningxi on the DC Metro rail" width="300" height="225" /></a><p class="wp-caption-text">Me and Ningxi on the DC Metro rail</p></div>
<p><span id="more-82"></span></p>
<p><img src="http://gws.maps.yahoo.com/mapimage?MAPDATA=s95KQOd6wXXfQt3rJvj8Hxi_XuhV.N5ADlwp30o3VmsIJbQMrhtscmtKQz16Nv6Mc5Y4upT98pJfZ_WXJdeOibhqgSkQwWlMzHWK5BgNvkLpJc6oq4bLJf7M04sOIhEZqVRxY_P1gQ7eNv4WnG2S&amp;mvt=m&amp;cltype=onnetwork&amp;.intl=us&amp;appid=geocodewo" title="GeoPress map of "/></p>
<p>What a blast.  We all met on the steps of the Smithsonian Museum of Natural History.  By 1pm there was probably a couple hundred of us and judging by peoples reaction we were nothing short of a spectacle.  Traffic was jamming up with gawkers and families getting photos with the crazy santas.</p>
<div id="attachment_101" class="wp-caption aligncenter" style="width: 235px"><a href="http://tdubya.net/wp-content/uploads/2008/12/img_8952.jpg"><img class="size-medium wp-image-101" title="Hippy santa spreading the love" src="http://tdubya.net/wp-content/uploads/2008/12/img_8952-225x300.jpg" alt="Hippy santa spreading the love" width="225" height="300" /></a><p class="wp-caption-text">Hippy santa spreading the love</p></div>
<div id="attachment_89" class="wp-caption aligncenter" style="width: 235px"><a href="http://tdubya.net/wp-content/uploads/2008/12/img_8956.jpg"><img class="size-medium wp-image-89" title="Did I mention it was cold that day.  Jesus didn't seem to mind" src="http://tdubya.net/wp-content/uploads/2008/12/img_8956-225x300.jpg" alt="Did I mention it was cold that day.  Jesus didn't seem to mind" width="225" height="300" /></a><p class="wp-caption-text">Did I mention it was cold that day?  Jesus didn&#39;t seem to mind</p></div>
<div id="attachment_100" class="wp-caption aligncenter" style="width: 310px"><a href="http://tdubya.net/wp-content/uploads/2008/12/img_89641.jpg"><img class="size-medium wp-image-100" title="DC couchsurfing contingent at Santarchy" src="http://tdubya.net/wp-content/uploads/2008/12/img_89641-300x225.jpg" alt="DC couchsurfing contingent at Santarchy" width="300" height="225" /></a><p class="wp-caption-text">DC couchsurfing contingent at Santarchy</p></div>
<div id="attachment_88" class="wp-caption aligncenter" style="width: 310px"><a href="http://tdubya.net/wp-content/uploads/2008/12/dsc00325.jpg"><img class="size-medium wp-image-88" title="Santas on the carousel" src="http://tdubya.net/wp-content/uploads/2008/12/dsc00325-300x225.jpg" alt="Santas on the carousel" width="300" height="225" /></a><p class="wp-caption-text">Santas on the carousel.  The operators about shit when they saw all of us approaching.</p></div>
<div class="mceTemp mceIEcenter">
<div class="mceTemp mceIEcenter">
<div id="attachment_92" class="wp-caption aligncenter" style="width: 310px"><a href="http://tdubya.net/wp-content/uploads/2008/12/dsc00339.jpg"><img class="size-medium wp-image-92" title="Trekking to the washington monument" src="http://tdubya.net/wp-content/uploads/2008/12/dsc00339-300x225.jpg" alt="Trekking to the washington monument" width="300" height="225" /></a><p class="wp-caption-text">There&#39;s nothing quite like visiting monuments with two to three hundred other santas</p></div>
</div>
</div>
<p><a href="http://tdubya.net/wp-content/uploads/2008/12/dsc00336.jpg"><br />
</a></p>
<div class="mceTemp mceIEcenter">
<div id="attachment_93" class="wp-caption aligncenter" style="width: 310px"><a href="http://tdubya.net/wp-content/uploads/2008/12/dsc003363.jpg"><img class="size-medium wp-image-93" title="Trekking to the washington monument" src="http://tdubya.net/wp-content/uploads/2008/12/dsc003363-300x225.jpg" alt="Trekking to the washington monument" width="300" height="225" /></a><p class="wp-caption-text">Trekking to the washington monument</p></div>
</div>
<div id="attachment_90" class="wp-caption aligncenter" style="width: 310px"><a href="http://tdubya.net/wp-content/uploads/2008/12/dsc00346.jpg"><img class="size-medium wp-image-90" title="Everyone needs christmas candy, even passing cars." src="http://tdubya.net/wp-content/uploads/2008/12/dsc00346-300x225.jpg" alt="Everyone needs christmas candy, even passing cars." width="300" height="225" /></a><p class="wp-caption-text">Everyone needs christmas candy, even passing cars.</p></div>
<div id="attachment_95" class="wp-caption aligncenter" style="width: 310px"><a href="http://tdubya.net/wp-content/uploads/2008/12/dsc00354.jpg"><img class="size-medium wp-image-95" title="Official looking folks didn't seem to mind us" src="http://tdubya.net/wp-content/uploads/2008/12/dsc00354-300x225.jpg" alt="Official looking folks didn't seem to mind us" width="300" height="225" /></a><p class="wp-caption-text">Official looking folks didn&#39;t seem to mind us.  This guy wanted a Lamborghini for Christmas.  All he got was Ferrari santa.</p></div>
<div id="attachment_97" class="wp-caption aligncenter" style="width: 310px"><a href="http://tdubya.net/wp-content/uploads/2008/12/dsc00374.jpg"><img class="size-medium wp-image-97" title="Bad santa talking smack in front of the white house" src="http://tdubya.net/wp-content/uploads/2008/12/dsc00374-300x225.jpg" alt="Bad santa talking smack in front of the white house" width="300" height="225" /></a><p class="wp-caption-text">Bad santa talking smack in front of the white house</p></div>
<div id="attachment_98" class="wp-caption aligncenter" style="width: 310px"><a href="http://tdubya.net/wp-content/uploads/2008/12/img_9003.jpg"><img class="size-medium wp-image-98" title="Obama was nice enough to pay us a visit." src="http://tdubya.net/wp-content/uploads/2008/12/img_9003-300x225.jpg" alt="Obama was nice enough to pay us a visit." width="300" height="225" /></a><p class="wp-caption-text">Barrack was nice enough to pay us a visit.</p></div>
<div id="attachment_102" class="wp-caption aligncenter" style="width: 235px"><a href="http://tdubya.net/wp-content/uploads/2008/12/img_8998.jpg"><img class="size-medium wp-image-102" title="There were bleachers by the white house garden, perfect for santarchy carols." src="http://tdubya.net/wp-content/uploads/2008/12/img_8998-225x300.jpg" alt="There were bleachers by the white house garden, perfect for santarchy carols." width="225" height="300" /></a><p class="wp-caption-text">There were bleachers over by the white house christmas area, perfect for santarchy carols.</p></div>
<div id="attachment_103" class="wp-caption aligncenter" style="width: 310px"><a href="http://tdubya.net/wp-content/uploads/2008/12/dsc00370.jpg"><img class="size-medium wp-image-103" title="The elves did exhibit some lewd behavior" src="http://tdubya.net/wp-content/uploads/2008/12/dsc00370-300x225.jpg" alt="The elves did exhibit some lewd behavior" width="300" height="225" /></a><p class="wp-caption-text">The elves did exhibit some lewd behavior</p></div>
<p>The santarchy march ended without arrests or children crying at the sight of hundreds of santas.  Parents were quick to comfort their children explaining that we were assistants to the big man himself.</p>
<p>Jaco, an aspiring teacher from Germany was also couchsurfing at Ningxi&#8217;s pad.  He was traveling down the east coast.  We wandered various Smithsonian museums together and had a great time talking about our homes and cultural differences.  We both agreed your more likely to do interesting, fun, crazy stuff by couchsurfing than if you were to stay in a hotel.  Couchsurfing unites people that love to travel and as a host I feel you can&#8217;t help but want to share the best a place has to offer including your friends.</p>
<div id="attachment_104" class="wp-caption aligncenter" style="width: 235px"><a href="http://tdubya.net/wp-content/uploads/2008/12/img_8968.jpg"><img class="size-medium wp-image-104" title="Jaco as a lesser known hybrid santa reindeer." src="http://tdubya.net/wp-content/uploads/2008/12/img_8968-225x300.jpg" alt="Jaco as a lesser known hybrid santa reindeer." width="225" height="300" /></a><p class="wp-caption-text">Jaco as a lesser known hybrid santa reindeer.</p></div>
<div id="attachment_105" class="wp-caption aligncenter" style="width: 310px"><a href="http://tdubya.net/wp-content/uploads/2008/12/dsc00382.jpg"><img class="size-medium wp-image-105" title="Jaco and I at the air and space museum" src="http://tdubya.net/wp-content/uploads/2008/12/dsc00382-300x225.jpg" alt="Jaco and I at the air and space museum" width="300" height="225" /></a><p class="wp-caption-text">Jaco and I at the air and space museum</p></div>
<div id="attachment_109" class="wp-caption aligncenter" style="width: 310px"><a href="http://tdubya.net/wp-content/uploads/2008/12/dsc003921.jpg"><img class="size-medium wp-image-109" title="Capitol hill was smaller than I imagined" src="http://tdubya.net/wp-content/uploads/2008/12/dsc003921-300x225.jpg" alt="Capitol hill was smaller than I imagined" width="300" height="225" /></a><p class="wp-caption-text">Capitol hill was smaller than I imagined</p></div>
<div id="attachment_106" class="wp-caption aligncenter" style="width: 310px"><a href="http://tdubya.net/wp-content/uploads/2008/12/dsc00395.jpg"><img class="size-medium wp-image-106" title="Walking back to the metro after a long day hitting museums" src="http://tdubya.net/wp-content/uploads/2008/12/dsc00395-300x225.jpg" alt="Walking back to the metro after a long day hitting museums." width="300" height="225" /></a><p class="wp-caption-text">Walking back to the metro after a long day hitting museums.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://tdubya.net/2008/12/14/couchsurfing-dc-and-santarchy/feed/</wfw:commentRss>
		<georss:point featurename="Washington monument">38.889152 -77.03531</georss:point>
	</item>
		<item>
		<title>Ecotrust Software Charts Best Coastal Fishing Grounds</title>
		<link>http://tdubya.net/2008/12/14/ecotrust-software-charts-best-coastal-fishing-grounds/</link>
		<comments>http://tdubya.net/2008/12/14/ecotrust-software-charts-best-coastal-fishing-grounds/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 18:16:39 +0000</pubDate>
		<dc:creator>tdubya</dc:creator>
		
		<category><![CDATA[Ecotrust]]></category>

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

		<category><![CDATA[Open Source]]></category>

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

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

		<guid isPermaLink="false">http://tdubya.net/?p=76</guid>
		<description><![CDATA[
It&#8217;s nice to see some news sources running stories on our software development at Ecotrust.  We received a Mellon Award last week in DC for our work on Open OceanMap.  OPB and and San Francisco Chronicle were kind enough to interview and run stories presenting the case for our software and its use to capture [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_77" class="wp-caption aligncenter" style="width: 260px"><a href="http://tdubya.net/wp-content/uploads/2008/12/openocean_screenshot.jpg"><img class="size-medium wp-image-77" title="Open OceanMap Screenshot" src="http://tdubya.net/wp-content/uploads/2008/12/openocean_screenshot.jpg" alt="Open OceanMap Screenshot" width="250" height="172" /></a><p class="wp-caption-text">Open OceanMap Screenshot</p></div>
<p>It&#8217;s nice to see some news sources running stories on our software development at Ecotrust.  We received a Mellon Award last week in DC for our work on <a href="http://www.ecotrust.org/ocean/OpenOceanMap.html" target="_blank">Open OceanMap</a>.  <a href="http://news.opb.org/article/ecotrust-software-charts-best-coastal-fishing-grounds/" target="_blank">OPB</a> and and <a href="http://www.sfgate.com/cgi-bin/article.cgi?f=/c/a/2008/12/07/BU9214IG5A.DTL" target="_blank">San Francisco Chronicle</a> were kind enough to interview and run stories presenting the case for our software and its use to capture fishermen&#8217;s knowledge to try and minimize the impact of implementing marine reserves on fishing communities.</p>
<p><span id="more-76"></span></p>
<p>I think the Chronicle article was the best although they all have their errors and overgeneralizations.  I&#8217;m not sure the media ever gets it quite right.  Love the quote from Astrid, my VP.  &#8220;Just the name Ecotrust gives some fishermen heartburns,&#8221; she said. &#8220;They think we&#8217;re enviros - it&#8217;s a conversation starter.&#8221;   So true.  Telling people back in my hometown, Warrenton, the name of our organization and that we do fisheries and forestry work tends to ruffle their feathers a bit until I explain what we&#8217;re actually doing.</p>
<p>I bought my first suit jacket for the trip to DC.  Dalina was kind enough to spend 2 hours with me picking it all out.  I think I looked pretty sharp.  Tied my tie all by myself with the help of the internets.  Think I&#8217;ll start wearing a suit on a regular basis, hah.</p>
<div id="attachment_79" class="wp-caption aligncenter" style="width: 510px"><a href="http://tdubya.net/wp-content/uploads/2008/12/cni_vinton_group_shot_21.jpg"><img class="size-full wp-image-79" title="Ecotrust Mellon Award Photo with Vinton Cerf" src="http://tdubya.net/wp-content/uploads/2008/12/cni_vinton_group_shot_21.jpg" alt="Ecotrust Mellon Award Photo with Vinton Cerf" width="500" height="333" /></a><p class="wp-caption-text">Ecotrust Mellon Award Photo with Vinton Cerf</p></div>
]]></content:encoded>
			<wfw:commentRss>http://tdubya.net/2008/12/14/ecotrust-software-charts-best-coastal-fishing-grounds/feed/</wfw:commentRss>
		<georss:point featurename="999 Ninth Street NW Washington, DC 20001">38.901676 -77.023496</georss:point>
	</item>
		<item>
		<title>A better world, one couch at a time</title>
		<link>http://tdubya.net/2008/11/08/a-better-world-one-couch-at-a-time/</link>
		<comments>http://tdubya.net/2008/11/08/a-better-world-one-couch-at-a-time/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 23:46:38 +0000</pubDate>
		<dc:creator>tdubya</dc:creator>
		
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://tdubya.net/?p=73</guid>
		<description><![CDATA[I signed up at couchsurfing.com the other day.  Really a great resource they&#8217;ve put together.  It&#8217;s so much more than hooking up free places to stay.  People coming to stay with you and sharing their culture, insights and knowledge with you.  Traveling to a distant place and truly immersing oneself in the culture.
My friend Careen [...]]]></description>
			<content:encoded><![CDATA[<p>I signed up at <a href="http://www.couchsurfing.com">couchsurfing.com</a> the other day.  Really a great resource they&#8217;ve put together.  It&#8217;s so much more than hooking up free places to stay.  People coming to stay with you and sharing their culture, insights and knowledge with you.  Traveling to a distant place and truly immersing oneself in the culture.</p>
<p><span id="more-73"></span>My friend Careen is going to Japan soon and told me she was looking to find some folks to stay with (couchsurf) while she&#8217;s there.  I&#8217;ll be taking a trip to DC in December for work and I really want to spend a couple extra days wandering around and do it on the cheap.</p>
<p>So, I put in my first surf request!  Very cool.  Sleeping on a couch sure puts the hurt on me, but most people seem to have a futon or air mattress.  Heck I&#8217;m easy, I&#8217;d settle for some floor space.  I joined the Portland discussion group as well and found an interesting community of people.  I hope to come across some local events to meet some folks in person.</p>
]]></content:encoded>
			<wfw:commentRss>http://tdubya.net/2008/11/08/a-better-world-one-couch-at-a-time/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Planes, trains and automobiles eh</title>
		<link>http://tdubya.net/2008/11/06/planes-trains-and-automobiles-eh/</link>
		<comments>http://tdubya.net/2008/11/06/planes-trains-and-automobiles-eh/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 06:46:25 +0000</pubDate>
		<dc:creator>tdubya</dc:creator>
		
		<category><![CDATA[Beer]]></category>

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

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

		<guid isPermaLink="false">http://tdubya.net/?p=65</guid>
		<description><![CDATA[Wandered up to Nanaimo, BC this week.  They don&#8217;t make it to easy to get there sometimes.  Stephen and I ended up hopping the max train to the airport, plane to vancouver, cab to the ferry, ferry to south nanaimo, cab to dowtown Nanaimo.  Geez.  Both cabs were little Prius&#8217;, nice.

Met with a lot of [...]]]></description>
			<content:encoded><![CDATA[<p>Wandered up to Nanaimo, BC this week.  They don&#8217;t make it to easy to get there sometimes.  Stephen and I ended up hopping the max train to the airport, plane to vancouver, cab to the ferry, ferry to south nanaimo, cab to dowtown Nanaimo.  Geez.  Both cabs were little Prius&#8217;, nice.</p>
<p><img src="http://gws.maps.yahoo.com/mapimage?MAPDATA=9WOh0ud6wXWTl2JDuiO4cigKiSXnVBTNaYw8tUHL2Gi8uHDRNaLr5wzrBvrlv9Soum2DxJMM74cLaS4hRyxZsN_is.ZGIj4NPHrZHskhYvQrCgaVJRH1GsHk2ZdQ4_XMlKLXQdEo5xElIdVQx.UV.4E-&amp;mvt=m&amp;cltype=onnetwork&amp;.intl=us&amp;appid=geoco" title="GeoPress map of "/></p>
<p><span id="more-65"></span>Met with a lot of fisheries folks there in Nanaimo, Alaska fish and game, Canada dept. of fisheries and oceans, Oregon dept. of fish and wildlife, state of the salmon, ecotrust, lots of smart people.  Was I intimidated?  Yeah a little, but I spoke my mind and learned a lot.  We&#8217;re all collaborating as part of the <a title="Agency Partnership" href="http://www.stateofthesalmon.org/agencypartnerships/" target="_blank">Agency Partnership Initiative</a>, funded by the Moore foundation.</p>
<p>Good beer was hard to come by up there.  The longwood brewpub had a couple good selections.  Their dunkelwiezenbrau, a dark wheat beer was pretty tasty.  Their stout lacked a nice foamy head when poured and was pretty warm for my taste but was pretty good.  Everything else I found was just so different from the same style beers in the Northwest.  The ESB&#8217;s and IPA&#8217;s where lacking severly in hoppiness.  Maybe the bitter part of my tongue is overloaded from all the fresh hop brews belmont station has been serving up.</p>
<p>The ride back was great, took my first seaplane trip across the channel back to Vancouver.  Little bumpy but too much fun and the landing is so smooth.  I think I felt safer in a little plan than a big jetliner.  Lower height and less moving parts maybe.</p>
<p>Saw Obama clinch the presidency just before boarding the plane back to the states.  I&#8217;m not sure I would have got on if McCain won&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://tdubya.net/2008/11/06/planes-trains-and-automobiles-eh/feed/</wfw:commentRss>
		<georss:point featurename="nanaimo, bc">49.16438 -123.936657</georss:point>
	</item>
		<item>
		<title>Analog soul in a digital world</title>
		<link>http://tdubya.net/2008/07/05/analog-soul-in-a-digital-world/</link>
		<comments>http://tdubya.net/2008/07/05/analog-soul-in-a-digital-world/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 23:11:59 +0000</pubDate>
		<dc:creator>tdubya</dc:creator>
		
		<category><![CDATA[Home]]></category>

		<guid isPermaLink="false">http://tdubya.net/index.php/2008/07/05/analog-soul-in-a-digital-world/</guid>
		<description><![CDATA[I picked up a couple of those digital signal converters for our &#8216;ancient&#8217; TV today.  Before I did I questioned whether or not to just get rid of the damn TV altogether.  We don&#8217;t watch it much.  But then Dalina remembered we&#8217;ll be getting two OPB channels now with the digital signal, [...]]]></description>
			<content:encoded><![CDATA[<p>I picked up a couple of those digital signal converters for our &#8216;ancient&#8217; TV today.  Before I did I questioned whether or not to just get rid of the damn TV altogether.  We don&#8217;t watch it much.  But then Dalina remembered we&#8217;ll be getting two OPB channels now with the digital signal, not just one.  I&#8217;m a sucker for Law and Order too&#8230; Now the question is how long until I get around to hooking them up&#8230;</p>
<p>I picked up the converters with those government-issue coupon cards.  But why two if I only have one TV plugged in?  Well, current technology is designed to break in 1-5 years and I don&#8217;t have any plans to get a hi-def TV.  I&#8217;m holding out for when old TV&#8217;s will be retro cool.  Same with my cell phone.  You&#8217;ll see.</p>
]]></content:encoded>
			<wfw:commentRss>http://tdubya.net/2008/07/05/analog-soul-in-a-digital-world/feed/</wfw:commentRss>
		<georss:point featurename="1306 NE 79th Ave, Portland, or">45.532307 -122.581956</georss:point>
	</item>
		<item>
		<title>Is it safe to come out?</title>
		<link>http://tdubya.net/2008/04/07/is-it-safe-to-come-out/</link>
		<comments>http://tdubya.net/2008/04/07/is-it-safe-to-come-out/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 04:00:13 +0000</pubDate>
		<dc:creator>tdubya</dc:creator>
		
		<category><![CDATA[]]></category>

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

		<category><![CDATA[The Garden]]></category>

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

		<guid isPermaLink="false">http://tdubya.net/index.php/2008/04/07/is-it-safe-to-come-out/</guid>
		<description><![CDATA[Wow, what a roller coaster start to the spring here at the North end of the valley.  No shortage of rain, sleet, snow and sporadic frosts.  Today I did get in some snap peas, chard and other leafy greens.  Plopping and sprinkling seeds always gives me warm fuzzies.
]]></description>
			<content:encoded><![CDATA[<p>Wow, what a roller coaster start to the spring here at the North end of the valley.  No shortage of rain, sleet, snow and sporadic frosts.  Today I did get in some snap peas, chard and other leafy greens.  Plopping and sprinkling seeds always gives me warm fuzzies.</p>
]]></content:encoded>
			<wfw:commentRss>http://tdubya.net/2008/04/07/is-it-safe-to-come-out/feed/</wfw:commentRss>
		<georss:point featurename="1306 NE 79th Ave, Portland, or">45.532307 -122.581956</georss:point>
	</item>
		<item>
		<title>Hot Apps Conference 2008</title>
		<link>http://tdubya.net/2008/03/11/hot-apps-conference-2008/</link>
		<comments>http://tdubya.net/2008/03/11/hot-apps-conference-2008/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 02:15:17 +0000</pubDate>
		<dc:creator>tdubya</dc:creator>
		
		<category><![CDATA[]]></category>

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

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

		<category><![CDATA[Open Source]]></category>

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

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

		<guid isPermaLink="false">http://tdubya.net/index.php/2008/03/11/hot-apps-conference-2008/</guid>
		<description><![CDATA[I cruised down to Eugene on Friday for the Hot Apps conference sponsored by Oregon URISA.  Anselm Hook was along for the ride.  The theme this year was open source GIS and was focused particularly on the web.  Paul Ramsay was invited down to do the morning workshop which was essentially a [...]]]></description>
			<content:encoded><![CDATA[<p>I cruised down to Eugene on Friday for the Hot Apps conference sponsored by Oregon URISA.  Anselm Hook was along for the ride.  The theme this year was open source GIS and was focused particularly on the web.  Paul Ramsay was invited down to do the morning workshop which was essentially a crash course in web GIS.  It included the use of free software and free API&#8217;s like Google maps.</p>
<p><img src="http://gws.maps.yahoo.com/mapimage?MAPDATA=ay7vpud6wXVnYlR7IelJd9upTMAPQZYr9_yvn1flPok7LFY18ximhzToJz8yMDPVoIixehEYBpz7rgwV5qnO.y9SHiNkzDRLvbhIK2zDu8qD96kVsx0rhfkizEC9Oyqi8lmSNH0lyIzID2O77xuPv2o-&amp;mvt=m?cltype=onnetwork&amp;.intl=us" title="GeoPress map of Lane Community College, Eugene, OR"/></p>
<p>There was excitement on the faces of some workshop attendees when we showed up at the end of the morning session.  Most of them work for local and state government agencies and had never had the opportunity to get their hands on this stuff.</p>
<p>I demoed the <a href="http://inforain.org/watershed" target="_blank">Inforain watershed locator</a> and <a href="http://pearl.ecotrust.org/~twelch/apps/carbon_demo/index.html">Forestland carbon calculator</a> web tools along with the <a href="http://trac.infodrizzle.org/openocean/">OpenOceanMap</a> desktop tool based on QGIS.  They really liked seeing a web-based GIS being used to do more than just visualization and attribute display.  The carbon calculator is destined for greater things.  Most were also happy to know that OpenOceanMap has been field tested, being used for interviewing fisherman down in California as part of the process of defining marine protected areas.</p>
<p><a href="http://tdubya.net/wp-content/uploads/2008/03/carbon_demo_screenshot.jpg" title="Carbon Demo Screenshot"><img src="http://tdubya.net/wp-content/uploads/2008/03/carbon_demo_screenshot.thumbnail.jpg" alt="Carbon Demo Screenshot" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tdubya.net/2008/03/11/hot-apps-conference-2008/feed/</wfw:commentRss>
		<georss:point featurename="lane community college, eugene, or">44.008868 -123.035698</georss:point>
	</item>
	</channel>
</rss>
