<?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>phTagr &#187; map</title>
	<atom:link href="http://www.phtagr.org/tag/map/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phtagr.org</link>
	<description>Tag your photos once. Find them forever.</description>
	<lastBuildDate>Fri, 06 Jan 2012 11:10:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Resize Control PResizeControl for Google Maps</title>
		<link>http://www.phtagr.org/2010/03/20/resize-control-presizecontrol-for-google-maps/</link>
		<comments>http://www.phtagr.org/2010/03/20/resize-control-presizecontrol-for-google-maps/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 01:24:05 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[Related Links]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[map]]></category>

		<guid isPermaLink="false">http://www.phtagr.org/?p=279</guid>
		<description><![CDATA[This Google map control adds a dynamic resize function to Google&#8217;s map API: You can enlarge or shrink the size of your google map via the resize handle in the right lower corner of the map. Downloadpresizecontrol.js (3.56 KB) The map control PResizeControl is based on map-in-a-box from Wolfgang Pichler (which bases on Dynamically Resize [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAhDhWoeKUKeZtjt5vHJamPxTeItE-0NJ895NTlryPl3klRUEEMhQtNXe8_g6mLGr0wj2En4S39Tv9ig"></script><br />
<script type="text/javascript" src="http://www.phtagr.org/files/2010/03/presizecontrol.js"></script><br />
<script type="text/javascript">
function initMap(mapId, lat, lng, zoom) {
  var map = null;
  if (GBrowserIsCompatible()) {
    map = new GMap2(document.getElementById(mapId));
    map.setCenter(new GLatLng(lat, lng), zoom);
    map.setUIToDefault();
  }
  return map;
}
function initialize() {
  // Berlin
  var map1 = initMap('map', 52.521653, 13.41091, 14);
  map1.addControl(new PResizeControl());
  // Khao San Raod, Bangkok
  var map2 = initMap('map2', 13.757498, 100.498853, 15);
  var resizeControl2 = new PResizeControl();
  map2.addControl(resizeControl2);
  resizeControl2.mode = PResizeControl.RESIZE_WIDTH;
  // Opera house, Sydney
  var map3 = initMap('map3', -33.855163, 151.217194, 14);
  var resizeControl3 = new PResizeControl();
  map3.addControl(resizeControl3);
  resizeControl3.mode = PResizeControl.RESIZE_HEIGHT;
  // Forbidden City, Bejing
  var map4 = initMap('map4', 21.030714,105.852456, 15);
  var resizeControl4 = new PResizeControl();
  map4.addControl(resizeControl4);
  resizeControl4.minWidth = 450;
  resizeControl4.minHeight = 250;
  // Hanoi
  var map5 = initMap('map5', 39.917044, 116.396542, 15);
  var resizeControl5 = new PResizeControl();
  map5.addControl(resizeControl5);
  resizeControl5.maxWidth = 450;
  resizeControl5.maxHeight = 250;
}
window.onload=initialize;
</script></p>
<p>This Google map control adds a dynamic resize function to <a href="http://code.google.com/apis/maps/">Google&#8217;s map API</a>: You can enlarge or shrink the size of your google map via the resize handle in the right lower corner of the map.</p>
<div style="border: 1px solid rgb(255, 204, 102); margin: 3pt auto; padding: 2pt; background-color: rgb(255, 255, 204); display: block; width: 50%; text-align: center;"><strong>Download</strong><br/><a href='http://www.phtagr.org/files/2010/03/presizecontrol.js'>presizecontrol.js (3.56 KB)</a></div>
<p>The map control <strong>PResizeControl</strong> is based on <a href="http://www.wolfpil.de/map-in-a-box.html">map-in-a-box</a> from Wolfgang Pichler (which bases on <a href="http://yardsales.lizndom.com/DynamicallyResizeGoogleMapsWithMouse.html">Dynamically Resize Google Maps With Mouse</a>). Compared to Wolfgang Pichler&#8217;s version it is completed as standalone Google Map control. It also embeds the resize handle image and does not need an external image file (only older IE&#8217;s below version 8 could not handle embedded data (But IMHO this is a feature &#8211; not a bug!). Further you can resize only the height or widht depending on your configuration. Minimum and maximum of height and/or width is also suppored.</p>
<div id="map" style="width: 450px; height: 250px"></div>
<pre><code>
&lt;html>
&lt;head>
&lt;script type="text/javascript" src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=...">&lt;/script>
&lt;!-- Include resize control PResizeControl -->
&lt;script type="text/javascript" src="<a href='http://www.phtagr.org/files/2010/03/presizecontrol.js'>./presizecontrol.js</a>">&lt;/script>
&lt;script>
function initialize() {
  if (GBrowserIsCompatible()) {
    map = new GMap2(document.getElementById("map"));
    map.setCenter(new GLatLng(52.521653, 13.41091), 14);
    // Add resize control PResizeControl with default settings.
    map.addControl(new PResizeControl());
    map.setUIToDefault();
  }
}
&lt;/script>
&lt;/head>
&lt;body onload="initialize">
&lt;div id="map" style="width: 450px; height: 250px;">&lt;/div>
&lt;/body>
&lt;/html>
</code></pre>
<p style="color: #666; display: block; background: #eee; border: 2px solid #888; padding: 2pt"><strong>Note:</strong> The PResizeControl is used in the open-source project <a href="http://www.phtagr.org"><strong>phTagr</strong></a> &#8211; a social photo gallery for its Geo coding and map display. The javascript file <a href='http://www.phtagr.org/files/2010/03/presizecontrol.js'>./presizecontrol.js</a> is extracted from the source of <a href="http://trac.phtagr.org/browser/trunk/webroot/js/pmap.js">pmap.js</a> of the photo gallery <a href="http://www.phtagr.org">phtagr</a>. Updates of PResizeControl will be commited to the <a href="http://www.phtagr.org">phtagr</a> source.</p>
<h2>Variables of PResizeControl</h2>
<style type="text/css">
dt {
  font-weight: bold;
  margin: 3pt 0 1pt 0;
}
dd {
  padding: 0 0 0 10pt;
}
</style>
<dt><code>PResizeControl.mode</code></dt>
<dd>Resize modes. Possible values are <code>PResizeControl.RESIZE_BOTH</code>, <code>PResizeControl.RESIZE_WIDTH</code> or <code>PResizeControl.RESIZE_HEIGHT</code>. Default is <code>PResizeControl.RESIZE_BOTH</code></dd>
<dt><code>PResizeControl.minWidth</code></dt>
<dd>Minimal width of the map. <code>0</code> disables the minimum width. Default is <code>150</code>.</dd>
<dt><code>PResizeControl.minHeight</code></dt>
<dd>Minimal height of the map. <code>0</code> disables the minimum height. Default is <code>150</code>.</dd>
<dt><code>PResizeControl.maxWidth</code></dt>
<dd>Maximal width of the map. <code>0</code> disables the minimum width. Default is <code>0</code> (disabled).</dd>
<dt><code>PResizeControl.maxHeight</code></dt>
<dd>Maximal height of the map. <code>0</code> disables the minimum height. Default is <code>0</code> (disabled).</dd>
<h2>More PResizeControl examples</h2>
<h3>PResizeControl: Resize Width Only</h3>
<div id="map2" style="width: 450px; height: 250px"></div>
<pre><code>
var resizeControl2 = new PResizeControl();
map2.addControl(new resizeControl2);
resizeControl2.mode = PResizeControl.RESIZE_WIDTH;
</code></pre>
<h3>PResizeControl: Resize Height Only</h3>
<div id="map3" style="width: 450px; height: 250px"></div>
<pre><code>
var resizeControl3 = new PResizeControl();
map3.addControl(new resizeControl3);
resizeControl3.mode = PResizeControl.RESIZE_HEIGHT;
</code></pre>
<h3>PResizeControl: Minimal Size</h3>
<div id="map4" style="width: 450px; height: 250px"></div>
<pre><code>
var resizeControl4 = new PResizeControl();
map4.addControl(resizeControl4);
resizeControl4.minWidth = 450;
resizeControl4.minHeight = 250;
</code></pre>
<h3>PResizeControl: Maximum Size</h3>
<div id="map5" style="width: 450px; height: 250px"></div>
<pre><code>
var resizeControl5 = new PResizeControl();
map5.addControl(resizeControl5);
resizeControl5.maxWidth = 450;
resizeControl5.maxHeight = 250;
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.phtagr.org/2010/03/20/resize-control-presizecontrol-for-google-maps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>phTagr runs on free web hoster!</title>
		<link>http://www.phtagr.org/2010/01/09/phtagr-runs-on-free-web-hoster/</link>
		<comments>http://www.phtagr.org/2010/01/09/phtagr-runs-on-free-web-hoster/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 22:32:58 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[info]]></category>
		<category><![CDATA[Related Links]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[geo]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[screenshot]]></category>
		<category><![CDATA[upload]]></category>
		<category><![CDATA[webdav]]></category>

		<guid isPermaLink="false">http://www.phtagr.org/?p=262</guid>
		<description><![CDATA[I was just curious if phtagr runs fine on a free web hoster. And yes &#8211; it does and does a great job! This entry shows how you can setup your own photo web gallery &#8211; totally for free! I chose the free hoster megabyet.net which comes with Spam and ads free 1,6 GB free [...]]]></description>
			<content:encoded><![CDATA[<p>I was just curious if phtagr runs fine on a free web hoster. And yes &#8211; it does and does a great job! This entry shows how you can setup <strong>your own photo web gallery &#8211; totally for free!</strong></p>
<p>I chose the free hoster <a href="http://megabyet.net">megabyet.net</a> which comes with</p>
<ul>
<li>Spam and ads free</li>
<li> 1,6 GB free storage</li>
<li> PHP</li>
<li> MySql database</li>
</ul>
<p>&#8230; so all I need for running the gallery.</p>
<p>I signup at <a href="http://megabyet.com/signup.php">http://megabyet.com/signup.php</a> for the free account, entered my new domain (of cause I choose the name <em>phtagr</em>), entered my name, email, and address. Then a captcha &#8211; success, I am human. After a few seconds I received an confirmation email with my new web space, username, password for the cPanel, and FTP.</p>
<div class="wp-caption alignnone" style="width: 230px"><a href="http://demo.phtagr.org/images/view/199"><img title="megabyet.net signup" src="http://demo.phtagr.org/media/thumb/199" alt="" width="220" height="177" /></a><p class="wp-caption-text">Signup for a free web space at megabyet.net</p></div>
<p>So login to cPanel  for creating a mysql database &#8211; called <em>phtagr</em>, which becomes <em>phtagrme_phtagr</em>.</p>
<div class="wp-caption alignnone" style="width: 230px"><a href="http://demo.phtagr.org/images/view/203"><img title="megabyet.net cpanel" src="http://demo.phtagr.org/media/thumb/203" alt="" width="220" height="177" /></a><p class="wp-caption-text">cPanel of megabyet.net</p></div>
<div class="wp-caption alignnone" style="width: 230px"><a href="http://demo.phtagr.org/images/view/212"><img title="megabyet.net cpanel database" src="http://demo.phtagr.org/media/thumb/212" alt="Successfull creation of a MySQL database" width="220" height="177" /></a><p class="wp-caption-text">Successfull creation of a MySQL database</p></div>
<p>In the meanwhile I downloaded the <a href="http://demo.phtagr.org/download/phtagr-latest.zip">latest phtagr source</a> (r505) and extracted it locally. After doing that I was uploading it via FTP (FileZilla) the provided www directory of my new webspace.</p>
<div class="wp-caption alignnone" style="width: 230px"><a href="http://demo.phtagr.org/images/view/210"><img title="filezilla upload" src="http://demo.phtagr.org/media/thumb/210" alt="Upload phtagr via FTP with FileZilla" width="220" height="176" /></a><p class="wp-caption-text">Upload phtagr via FTP with FileZilla</p></div>
<p>Now its time to setup the new gallery! I opend the setup page of <a href="http://phtagr.megabyet.net">http://phtagr.megabyet.net/setup</a> and followed the instructions. Everything worked fine. The connection to the database and the admin user creation had no problems.</p>
<div class="wp-caption alignnone" style="width: 230px"><a href="http://demo.phtagr.org/images/view/194"><img title="setup welcome screen" src="http://demo.phtagr.org/media/thumb/194" alt="Setup welcome screen" width="220" height="177" /></a><p class="wp-caption-text">Setup welcome screen</p></div>
<div class="wp-caption alignnone" style="width: 230px"><a href="http://demo.phtagr.org/images/view/200"><img title="setup database" src="http://demo.phtagr.org/media/thumb/200" alt="Setup of database connection" width="220" height="177" /></a><p class="wp-caption-text">Setup of database connection</p></div>
<div class="wp-caption alignnone" style="width: 230px"><a href="http://demo.phtagr.org/images/view/204"><img title="admin creation" src="http://demo.phtagr.org/media/thumb/204" alt="Setup of admin account" width="220" height="178" /></a><p class="wp-caption-text">Setup of admin account</p></div>
<div class="wp-caption alignnone" style="width: 230px"><a href="http://demo.phtagr.org/images/view/195"><img title="skipped tool" src="http://demo.phtagr.org/media/thumb/195" alt="I skipped these optional step" width="220" height="178" /></a><p class="wp-caption-text">I skipped these optional step</p></div>
<p>As test images I used the screenshots which I did so far. I zipped them, uploaded the zip archive and imported the files after successful upload. Now it was time for some tagging.</p>
<div class="wp-caption alignnone" style="width: 230px"><a href="http://demo.phtagr.org/images/view/215"><img title="uploaded archive" src="http://demo.phtagr.org/media/thumb/215" alt="Successful upload and extraction of the zip archive" width="220" height="178" /></a><p class="wp-caption-text">Successful upload and extraction of the zip archive</p></div>
<div class="wp-caption alignnone" style="width: 230px"><a href="http://demo.phtagr.org/images/view/209"><img title="explorer tagging" src="http://demo.phtagr.org/media/thumb/209" alt="Some tagging within the photo explorer" width="220" height="178" /></a><p class="wp-caption-text">Some tagging within the photo explorer</p></div>
<div class="wp-caption alignnone" style="width: 230px"><a href="http://demo.phtagr.org/images/view/202"><img title="phtagrs home page" src="http://demo.phtagr.org/media/thumb/202" alt="The home page of phtagr" width="220" height="157" /></a><p class="wp-caption-text">The startup page of phtagr</p></div>
<p>I wanted also to geo tag some images so I created a new <a href="http://code.google.com/apis/maps/signup.html">google maps key</a> (you need a google account for it) for the gallery URL <a href="http://phtagr.megabyet.net">http://phtagr.megabyet.net</a>. The key was entered in the System -&gt; Commands and now I was able to geo tag, too!</p>
<div class="wp-caption alignnone" style="width: 230px"><a href="http://demo.phtagr.org/images/view/214"><img title="google map key" src="http://demo.phtagr.org/media/thumb/214" alt="Entering the new key for google maps" width="220" height="161" /></a><p class="wp-caption-text">Entering the new key for google maps</p></div>
<div class="wp-caption alignnone" style="width: 230px"><a href="http://demo.phtagr.org/images/view/211"><img title="geo tagging" src="http://demo.phtagr.org/media/thumb/211" alt="Geotagging with google maps" width="220" height="161" /></a><p class="wp-caption-text">Geotagging with google maps</p></div>
<p>And as last test I did a WebDAV connection with cadaver to http://phtagr.megabyet.net/webdav. That worked, too!</p>
<div class="wp-caption alignnone" style="width: 230px"><a href="http://demo.phtagr.org/images/view/201"><img title="webdav" src="http://demo.phtagr.org/media/thumb/201" alt="WebDAV connection to gallery" width="220" height="110" /></a><p class="wp-caption-text">WebDAV connection to my gallery files</p></div>
<p>So all in all it made lots of fun seeing this great gallery running on a free web hoster. You can upload your photos, tag them &#8211; also with geo location, see your images in the build-in slideshow, add other users with there upload quota, etc.</p>
<p><strong>When do you install your own phTagr?</strong></p>
<p>You can see all screenshots at the <a href="http://demo.phtagr.org/explorer/category/megabyet">demo page</a> or some screenhost at <a href="http://phtagr.megabyet.net">megabyet.net</a>.</p>
<p>PS: <em>What does not worked well was an initial setup at byethost.com where the database connection was not working for some reasons. Also the sending of email did not work out of the box at megabyet.net.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phtagr.org/2010/01/09/phtagr-runs-on-free-web-hoster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple Map Markers</title>
		<link>http://www.phtagr.org/2008/12/29/multiple-map-markers/</link>
		<comments>http://www.phtagr.org/2008/12/29/multiple-map-markers/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 15:32:44 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[announce]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[geo]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[map]]></category>

		<guid isPermaLink="false">http://www.phtagr.org/?p=99</guid>
		<description><![CDATA[In revision 395 a new module was added for the google map. If you open the map of an image to see the geographic position, surrounding images are shown within map. The new module queries additional images &#8211; or markers &#8211; via Ajax in the background and add the overlays to the map. Its a [...]]]></description>
			<content:encoded><![CDATA[<p>In revision 395 a new module was added for the google map. If you open the map of an image to see the geographic position, surrounding images are shown within map. The new module queries additional images &#8211; or markers &#8211; via Ajax in the background and add the overlays to the map. Its a pretty nice feature to see a geographic relation of your image.</p>
<p>A screenshot might help to describe the feature or visit the demo page for a <a href="http://demo.phtagr.org/images/view/118/">live example</a>.</p>
<p><a href="http://demo.phtagr.org/images/view/121"><img class="alignnone size-full wp-image-101" title="image-map-markers-r395" src="http://www.phtagr.org/files/2008/12/image-map-markers-r395.jpeg" alt="" width="323" height="600" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phtagr.org/2008/12/29/multiple-map-markers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New GPS input filter</title>
		<link>http://www.phtagr.org/2008/12/03/new-gps-input-filter/</link>
		<comments>http://www.phtagr.org/2008/12/03/new-gps-input-filter/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 04:45:25 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[announce]]></category>
		<category><![CDATA[Related Links]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[geo]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[map]]></category>

		<guid isPermaLink="false">http://www.phtagr.org/?p=96</guid>
		<description><![CDATA[Recently a new input filter for GPS data was added to phTagr. Now, NMEA files from GPS logger such as Sony&#8217;s GPSCS1 can be imported directly and adds the GPS coordinates of the images. Combined with Google Maps it adds a nice feature to the gallery to locate your image inside the map. The GPS [...]]]></description>
			<content:encoded><![CDATA[<p>Recently a new input filter for GPS data was added to phTagr. Now, NMEA files from GPS logger such as Sony&#8217;s GPSCS1 can be imported directly and adds the GPS coordinates of the images. Combined with Google Maps it adds a nice feature to the gallery to locate your image inside the map.</p>
<p>The GPS coordinates are exported to the EXIF header as GPSLatitude, GPSLatitudeRef, GPSLongitude, GPSLongitudeRef values on the next meta data sync.</p>
<p>While the GPS data are saved in UCT, your timezone of your image might be a different one. The current implementation has a static time offset of two hours (UCT+2), but a special option should be implemented soon. Also an import filter for KML files would be a nice option.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phtagr.org/2008/12/03/new-gps-input-filter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Maps and RSS</title>
		<link>http://www.phtagr.org/2008/05/24/google-maps-and-rss/</link>
		<comments>http://www.phtagr.org/2008/05/24/google-maps-and-rss/#comments</comments>
		<pubDate>Sat, 24 May 2008 14:17:23 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://www.phtagr.org/?p=15</guid>
		<description><![CDATA[phTagr supports now Google Maps and RSS feeds! Click here for a demo of the Google Map integration. To enable Google Maps you have to set the Google Maps key in Preference/System from the admin account. The geo meta data is extracted from new images using Exif tags GPS Latitude and Longitude. I have written [...]]]></description>
			<content:encoded><![CDATA[<p>phTagr supports now <a href="http://maps.google.com">Google Maps</a> and <a href="http://en.wikipedia.org/wiki/RSS">RSS</a> feeds! Click <a href="http://demo.phtagr.org/explorer/image/60">here</a> for a demo of the Google Map integration. To enable Google Maps you have to set the Google Maps key in Preference/System from the admin account.</p>
<p>The geo meta data is extracted from new images using Exif tags GPS Latitude and Longitude. I have written a small PHP tool <em>gpssync</em> (available <a href="http://www.phtagr.org/old/phtagrorg/2008/05/gpssync-01tar.gz">here</a>) which extracts the GPS position of an <a href="http://www.gpsinformation.org/dale/nmea.htm">NMEA</a> file (e.g. from the GPS tracker <a href="http://www.sonystyle.com/webapp/wcs/stores/servlet/ProductDisplay?catalogId=1551&amp;storeId=10151&amp;langId=-1&amp;productId=8198552921665078257">Sony GPS CS1</a>). It estimates the position by linear interpolation and saves the GPS position using <a href="http://www.sno.phy.queensu.ca/~phil/exiftool/">exiftool</a>. Call &#8220;./gpssync.sh -g WG20080504135002.log *.jpg&#8221; to synchronize the geo positions to your images.</p>
<p>The phTagr image explorer provides now a RSS feed for new (public) images where users can subscribe to it to be informed about new images automatically. You can add the RSS feed (found <a href="http://demo.phtagr.org/explorer/rss">here</a>) to your favorite RSS reader (e.g. <a href="http://www.mozilla.com/en-US/thunderbird/">Thunderbird</a>) and wait for new published images. You never need to visit the gallery again to check for new content!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phtagr.org/2008/05/24/google-maps-and-rss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

