<?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:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>BicycleTraveler.com</title>
	<atom:link href="http://www.bicycletraveler.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bicycletraveler.com</link>
	<description>Following in the paniers of intrepid riders.</description>
	<lastBuildDate>Thu, 24 Nov 2011 17:34:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Portland, OR &#8211; A bicycle-friendly city</title>
		<link>http://www.bicycletraveler.com/2011/11/24/testing-the-osm-cycle-map/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=testing-the-osm-cycle-map</link>
		<comments>http://www.bicycletraveler.com/2011/11/24/testing-the-osm-cycle-map/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 17:28:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bicycletraveler.com/?p=65</guid>
		<description><![CDATA[Long ago, I rode my bicycle from San Francisco, across Nevada and the Rockies, into the South, through Washington DC, and up to Maine.  Now, I have transformed from a bicycle traveler, to a bicycle commuter.  I still relive the &#8230; <a href="http://www.bicycletraveler.com/2011/11/24/testing-the-osm-cycle-map/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<address>Long ago, I rode my bicycle from San Francisco, across Nevada and the Rockies, into the South, through Washington DC, and up to Maine.  Now, I have transformed from a bicycle traveler, to a bicycle commuter.  I still relive the sense of freedom by reading about other people&#8217;s adventures and hope to provide a forum for this purpose.  I have owned this domain name since 1999 in hopes of one day figuring out how to make a reasonable web site for this purpose without quitting my day job.</address>
<address>Please stay tuned as I implement upgrades.</address>
<h1>Now, I live in Portland a very bicycle-friendly city.</h1>
<style type="text/css">.entry .olMapViewport img {max-width: none; max-height: none;}.entry-content img, .widget img {max-width: none; max-height: none;}.olControlAttribution {bottom: 0 !important;}div.olControlMousePosition {bottom: 1em !important;}#map_1 {clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px; left: 0px;}#map_1 img{clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; position: absolute; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px;}</style><div id="map_1" style="width:600px; height:450px; overflow:hidden;padding:0px;border:thin solid blue;"><script type="text/javascript" src="http://www.openlayers.org/api/OpenLayers.js"></script><script type="text/javascript" src="http://www.openstreetmap.org/openlayers/OpenStreetMap.js"></script><script type="text/javascript">/* <![CDATA[ */(function($) { map = new OpenLayers.Map ("map_1", {            controls:[              new OpenLayers.Control.Navigation(),              new OpenLayers.Control.PanZoom(),              new OpenLayers.Control.Attribution()              ],          maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34),          maxResolution: 156543.0399,          numZoomLevels: 19,          units: "m",          projection: new OpenLayers.Projection("EPSG:900913"),           displayProjection: new OpenLayers.Projection("EPSG:4326")      } );var lmap = new OpenLayers.Layer.OSM.CycleMap("CycleMap");var layerOSM_Attr = new OpenLayers.Layer.Vector("OSM-plugin",{attribution:"<a href=\"http://www.Fotomobil.at/wp-osm-plugin\">OSM plugin</a>"});map.addLayers([lmap, layerOSM_Attr]);    function osm_getTileURL(bounds) {        var res = this.map.getResolution();        var x = Math.round((bounds.left - this.maxExtent.left) / (res * this.tileSize.w));        var y = Math.round((this.maxExtent.top - bounds.top) / (res * this.tileSize.h));        var z = this.map.getZoom();        var limit = Math.pow(2, z);        if (y < 0 || y >= limit) {            return OpenLayers.Util.getImagesLocation() + "404.png";        } else {            x = ((x % limit) + limit) % limit;            return this.url + z + "/" + x + "/" + y + "." + this.type;        }    }var lonLat = new OpenLayers.LonLat(-122.695,45.497).transform(map.displayProjection,  map.projection);map.setCenter (lonLat,10);var markers = new OpenLayers.Layer.Markers( "Marker" );map.addLayer(markers);var data = {};var currentPopup;data.icon = new OpenLayers.Icon("http://www.bicycletraveler.com/wp-content/plugins/osm/icons/bicycling.png",     new OpenLayers.Size(32,19),     new OpenLayers.Pixel(-16, -9));var ll = new OpenLayers.LonLat(-122.666,45.529).transform(map.displayProjection,  map.projection);     var feature = new OpenLayers.Feature(markers, ll, data);feature.closeBox = true;feature.popupClass = OpenLayers.Class(OpenLayers.Popup.FramedCloud, {"autoSize": true, minSize: new OpenLayers.Size(150,150),"keepInMap": true } );feature.data.popupContentHTML = "";feature.data.overflow = "hidden";var marker = new OpenLayers.Marker(ll,data.icon.clone());marker.feature = feature;var markerClick = function(evt) {  if (this.popup == null) {    this.popup = this.createPopup(this.closeBox);    map.addPopup(this.popup);    this.popup.show();  }   else {    this.popup.toggle();  }  OpenLayers.Event.stop(evt);};markers.addMarker(marker);})(jQuery)/* ]]&gt; */ </script></div>
]]></content:encoded>
			<wfw:commentRss>http://www.bicycletraveler.com/2011/11/24/testing-the-osm-cycle-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Construction Continues</title>
		<link>http://www.bicycletraveler.com/2011/11/10/construction-continues/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=construction-continues</link>
		<comments>http://www.bicycletraveler.com/2011/11/10/construction-continues/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 05:36:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bicycletraveler.com/?p=48</guid>
		<description><![CDATA[All this website was in the past was a collection of links to travelogues that I had read and tour operators who wanted to advertise.  Now, thanks to WordPress, it looks like a lot more will be possible.]]></description>
			<content:encoded><![CDATA[<p>All this website was in the past was a collection of links to travelogues that I had read and tour operators who wanted to advertise.  Now, thanks to WordPress, it looks like a lot more will be possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bicycletraveler.com/2011/11/10/construction-continues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Under Construction</title>
		<link>http://www.bicycletraveler.com/2011/08/01/hello-world/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hello-world</link>
		<comments>http://www.bicycletraveler.com/2011/08/01/hello-world/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 16:36:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bicycletraveler.com/?p=1</guid>
		<description><![CDATA[BicycleTraveler.com is moving to a new platform that will enable more functionality and easier maintenance.]]></description>
			<content:encoded><![CDATA[<p>BicycleTraveler.com is moving to a new platform that will enable more functionality and easier maintenance.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bicycletraveler.com/2011/08/01/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

