<?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>Spatial Galaxy &#187; Open Source</title>
	<atom:link href="http://spatialgalaxy.net/category/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://spatialgalaxy.net</link>
	<description>Exploring the Realms of GIS</description>
	<lastBuildDate>Mon, 30 Jan 2012 02:24:35 +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>QGIS Users Around the World</title>
		<link>http://spatialgalaxy.net/2011/12/19/qgis-users-around-the-world/</link>
		<comments>http://spatialgalaxy.net/2011/12/19/qgis-users-around-the-world/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 17:21:09 +0000</pubDate>
		<dc:creator>Gary Sherman</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Quantum GIS]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[qgis]]></category>

		<guid isPermaLink="false">http://spatialgalaxy.net/?p=411</guid>
		<description><![CDATA[One of the difficult things to track in the open source world is the number of people who actually use your software. In the proprietary commercial world you have licenses, invoices, and so forth. In the case of QGIS, we can track the total number of downloads from qgis.org, but this doesn&#8217;t represent the total installed base. It is impossible to accurately determine the actual number of people using QGIS, but we can get an approximation of the number and where they are in the world. The analysis was done using the log files from the QGIS contributed repository: The IP address of each entry that retrieved the plugin list from the server represents one or more users&#8212;these IPs were collected into a unique list Using a Python script, each IP address in the log was geocoded to get the approximate latitude and longitude of the user The IP address, country, latitude, and longitude were written to a CSV file The CSV file was converted to a Spatialite layer to create the map of users The map represents 35,603 unique IP addresses of users that accessed the repository between October 23, 2011 and December 17, 2011. The geocoding process varies [...]]]></description>
			<content:encoded><![CDATA[<p>One of the difficult things to track in the open source world is the number of people who actually use your software. In the proprietary commercial world you have licenses, invoices, and so forth. In the case of QGIS, we can track the total number of downloads from qgis.org, but this doesn&#8217;t represent the total installed base. It is impossible to accurately determine the actual number of people using QGIS, but we can get an approximation of the number and where they are in the world.<br />
<span id="more-411"></span><br />
The analysis was done using the log files from the QGIS contributed repository:</p>
<ul>
<li>The IP address of each entry that retrieved the plugin list from the server represents one or more users&#8212;these IPs were collected into a unique list</li>
<li>Using a Python script, each IP address in the log was geocoded to get the approximate latitude and longitude of the user</li>
<li>The IP address, country, latitude, and longitude were written to a CSV file</li>
<li>The CSV file was converted to a Spatialite layer to create the map of users</li>
</ul>
<p><a href="http://spatialgalaxy.net/2011/12/19/qgis-users-around-the-world/qgis_users/" rel="attachment wp-att-418"><img src="http://spatialgalaxy.net/wp-content/qgis_users-1024x633.png" alt="" title="qgis_users" width="779" height="481" class="aligncenter size-large wp-image-418" /></a></p>
<p>The map represents 35,603 unique IP addresses of users that accessed the repository between October 23, 2011 and December 17, 2011.</p>
<p>The geocoding process varies in precision&#8212;some IPs are located to the city level while others only return a general location for the country. </p>
<p>Some assumptions and observations:</p>
<ul>
<li>Most (maybe all) users make use of Python plugins and therefore access the contributed repository at some point</li>
<li>Country-level points (blue) on the map represent more than one user</li>
<li>Some points represent organizations that use a single IP for all users accessing the Internet. These points will represent more than one user</li>
<li>Some users may access the repository from more than one IP address</li>
</ul>
<p>So how many people use QGIS? At the very minimum, 35,000. We know that the downloads of just the Windows version exceeded 100,000. Given that there are 7,183 IP addresses that are generalized to a country location, we can safely assume that the number of actual users is much higher than that.</p>
<p>Considering the number of points that represent an organization and those that represent a country location, I think we can safely assume that the number of QGIS users easily exceeds 100,000 worldwide.</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialgalaxy.net/2011/12/19/qgis-users-around-the-world/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Developing QGIS Plugins with git</title>
		<link>http://spatialgalaxy.net/2011/01/24/developing-qgis-plugins-with-git/</link>
		<comments>http://spatialgalaxy.net/2011/01/24/developing-qgis-plugins-with-git/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 02:40:03 +0000</pubDate>
		<dc:creator>Gary Sherman</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Quantum GIS]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[qgis]]></category>

		<guid isPermaLink="false">http://spatialgalaxy.net/?p=256</guid>
		<description><![CDATA[Writing a QGIS plugin is not overly complicated but represents a bit of work. Using git in conjunction with your development efforts can make sure your investment in coding time is preserved. Development Tools The QGIS project team has set up a central location for plugin development which includes pretty much everything you need to develop and support your plugins, including: Issue tracking Wiki Documents Repository The repository feature allows you to create a central place to store your plugin code using git. Others can clone your repository and contribute through patches or pull requests. Creating a Plugin The chore of setting up the boilerplate for a plugin is made simple by using the Plugin Builder. Previously this was a web application but it has now been replaced by a QGIS plugin aptly named Plugin Builder. You can install Plugin Builder from within QGIS by selecting Fetch Python Plugins&#8230; from the Plugins menu. Once Plugin Builder is installed you can quickly create a starter plugin that implements a simple dialog box with OK and Cancel buttons. The plugin created by Plugin Builder is fully functional&#8212;it will load in QGIS but not do anything useful until you customize it. Setting up [...]]]></description>
			<content:encoded><![CDATA[<p>Writing a QGIS plugin is not overly complicated but represents a bit of work. Using<br />
git in conjunction with your development efforts can make sure your investment in<br />
coding time is preserved. </p>
<h3>Development Tools</h3>
<p>The QGIS project team has set up a central location for plugin development which includes pretty much everything you need to develop and support your plugins, including:</p>
<ul>
<li>Issue tracking
<li>Wiki
<li>Documents
<li>Repository
</ul>
<p>The repository feature allows you to create a central place to store your plugin code using git. Others can clone your repository and contribute through patches or pull requests.</p>
<h3>Creating a Plugin</h3>
<p>The chore of setting up the boilerplate for a plugin is made simple by using the Plugin Builder. Previously this was a web application but it has now been replaced by a QGIS plugin aptly named <em>Plugin Builder</em>. You can install Plugin Builder from within QGIS by selecting <em>Fetch Python Plugins&#8230;</em> from the <em>Plugins</em> menu.</p>
<p>Once Plugin Builder is installed you can quickly create a starter plugin that implements a simple dialog box with OK and Cancel buttons. The plugin created by Plugin Builder is fully functional&#8212;it will load in QGIS but not do anything useful until you customize it.</p>
<h3>Setting up the Workflow</h3>
<p>You have a couple of options for setting up your development directory and workflow:</p>
<ol>
<li>Copy your plugin template to the QGIS plugin directory, initialize the git repository, and develop from there.
<li>Work within your plugin template directory that was created by Plugin Builder (not within the QGIS plugin directory)
</ol>
<p>Option one is very convenient as long as you don&#8217;t test the uninstall feature of your plugin. This will delete your entire plugin directory and git repository&#8212;not what we really want.</p>
<p>Option two is safer, however to test your plugin you have to continually copy from your development area to your QGIS plugin directory. Alternatively you could make commits and pull from your development area to the copy (assuming it is a git repo) in the QGIS plugin directory.  If you are on a unix based system you could also create a Makefile to deploy the plugin for you.</p>
<p>The best solution is to use option two <b>and</b> use the QGIS_PLUGINPATH environment variable to point to your development directory. When present, QGIS_PLUGINPATH tells QGIS to search additional directories for plugins. Going this route allows you to develop in the directory created by Plugin Builder and test your plugin without any copying or pulling. The upside to this is since your plugin wasn&#8217;t installed through the Plugin Installer it can&#8217;t be uninstalled accidentally. When you are ready to test the uninstall and unloading of your plugin you can copy it to the main QGIS plugin directory.</p>
<p>Note: If you are using Windows there was a problem specifying QGIS_PLUGINPATH with colons in the path. This issue is fixed in revision 15073 and will make it into the next release.</p>
<p>No matter how you implement your workflow I suggest creating a repository on the QGIS hub (http://hub.qgis.org) or github.com.</p>
<h3>Summary</h3>
<p>Here is a summary of the steps to get started. We&#8217;ll assume your new plugin is named <em>zoomer</em>:</p>
<ol>
<li>Install Plugin Builder
<li>Create a directory that will contain all your plugins, for example <em>my_plugins</em>
<li>Create your plugin template using Plugin Builder. Be sure to select <em>my_plugins</em> when Plugin Builder asks where to create your plugin.
<li>Change to your plugin directory (e.g. my_plugins/zoomer) created by Plugin Buidler and create a git repository using:
<pre>git init</pre>
<li>Set the QGIS_PLUGINPATH evironment variable to point to the directory containing your plugin directory (my_plugins). Be sure to use the full path to <em>my_plugins</em>
<li>Start QGIS and use the Plugin Manager (<em>Manage Plugins&#8230;</em> from the <em>Plugins</em> menu) to enable your plugin. If it doesn&#8217;t show up in the list of plugins check to make sure you have set QGIS_PLUGINPATH correctly.
<li>Develop away, testing as you go. Make sure to commit changes regularly and push them to your repository on <a href="http://hub.qgis.org">hub.qgis.org</a>.
</ol>
<p>If you are new to git, take a look at the Pro Git book at <a href="http://progit.org">http://progit.org/</a>.</p>
<p>For help on developing QGIS plugins with Python, see the <a href="http://www.qgis.org/pyqgis-cookbook/">PyQGIS Cookbook</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialgalaxy.net/2011/01/24/developing-qgis-plugins-with-git/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Evolution of QGIS</title>
		<link>http://spatialgalaxy.net/2011/01/03/evolution-of-qgis/</link>
		<comments>http://spatialgalaxy.net/2011/01/03/evolution-of-qgis/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 17:27:23 +0000</pubDate>
		<dc:creator>Gary Sherman</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Quantum GIS]]></category>
		<category><![CDATA[qgis]]></category>

		<guid isPermaLink="false">http://spatialgalaxy.net/?p=248</guid>
		<description><![CDATA[An interesting visualization of QGIS development over the last eight years: http://woostuff.wordpress.com/2011/01/03/generating-a-gource-source-commit-history-visualization-for-qgis-quantum-gis/]]></description>
			<content:encoded><![CDATA[<p>An interesting visualization of QGIS development over the last eight years:</p>
<p><a href="http://woostuff.wordpress.com/2011/01/03/generating-a-gource-source-commit-history-visualization-for-qgis-quantum-gis/">http://woostuff.wordpress.com/2011/01/03/generating-a-gource-source-commit-history-visualization-for-qgis-quantum-gis/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://spatialgalaxy.net/2011/01/03/evolution-of-qgis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contributing to QGIS Using Git</title>
		<link>http://spatialgalaxy.net/2010/12/27/contributing-to-qgis-using-git/</link>
		<comments>http://spatialgalaxy.net/2010/12/27/contributing-to-qgis-using-git/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 16:43:24 +0000</pubDate>
		<dc:creator>Gary Sherman</dc:creator>
				<category><![CDATA[git]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Quantum GIS]]></category>
		<category><![CDATA[qgis]]></category>

		<guid isPermaLink="false">http://spatialgalaxy.net/?p=217</guid>
		<description><![CDATA[One of the challenges in any open source project is accepting contributions from people that don&#8217;t have, need, or want access to your centralized source code repository. Managing repository accounts for occasional or one-time contributors can be come a bit of an administrative issue. To date, the QGIS project has accepted one-time or occasional contributions through patches submitted via a help ticket. To make it easier for you to contribute to QGIS, we have created a clone of the Subversion repository on GitHub. This allows you to &#8220;fork&#8221; the QGIS repository and have your own local copy of the source code. Through GitHub you can easily submit your enhancements and bug fixes for inclusion in the Subversion repository. You will need to install git on your computer and create a GitHub account. Once you have done that, here is the process for creating your working copy and contributing to QGIS: Login to GitHub Fork the project at https://github.com/qgis/qgis by clicking &#8220;Fork&#8221;. This may take a while Create a working copy, replacing g-sherman with your GitHub name: git clone git@github.com:g-sherman/qgis.git This will also take a while, depending on the speed of your network connection. My clone downloaded 162 Mb from GitHub. [...]]]></description>
			<content:encoded><![CDATA[<p>One of the challenges in any open source project is accepting contributions from people that don&#8217;t have, need, or want access to your centralized source code repository. Managing repository accounts for occasional or one-time contributors can be come a bit of an administrative issue. To date, the QGIS project has accepted one-time or occasional contributions through patches submitted via a help ticket. </p>
<p>To make it easier for you to contribute to QGIS, we have created a clone of the Subversion repository on <a href="http://www.github.com">GitHub</a>. This allows you to &#8220;fork&#8221; the QGIS repository and have your own local copy of the source code. Through GitHub you can easily submit your enhancements and bug fixes for inclusion in the Subversion repository. </p>
<p>You will need to install git on your computer and create a GitHub account. Once you have done that, here is the process for creating your working copy and contributing to QGIS:<br />
<span id="more-217"></span></p>
<ol>
<li>Login to GitHub</li>
<li>Fork the project at <a href="https://github.com/qgis/qgis">https://github.com/qgis/qgis</a> by clicking &#8220;Fork&#8221;. This may take a while</li>
<li>Create a working copy, replacing g-sherman with your GitHub name:<br />
 <code> git clone git@github.com:g-sherman/qgis.git </code></p>
<p>This will also take a while, depending on the speed of your network connection. My clone downloaded 162 Mb from GitHub.</p>
<li> Change to the directory containing your local clone and add a reference to the original QGIS repo:<br />
<code>git remote add upstream git://github.com/qgis/qgis.git</code></p>
<p>This gives you are reference named upstream that points to the repo you forked.</p>
<li>Now fetch from upstream:<br />
<code>git fetch upstream</code></p>
<li>Now you are ready to work with QGIS. Make your changes, commit them, and then push back to your fork on GitHub:<br />
<code>git push origin master</code></p>
<li>You can go to your repo on GitHub and you should see your commit message from the push
<li>Now you want to tell the QGIS developer team there is something they should look at. You do this by issuing a pull request by clicking on the &#8220;Pull Request&#8221; button on your GitHub QGIS fork page.
<li>Fill in a title and message for the request, review the commit(s) and file(s) involved and when satisfied, click &#8220;Send pull request&#8221;<br />
</em></p>
<li>Now sit back and wait for someone to review, comment on, and hopefully merge your request into the QGIS repo.
<p>To keep in sync with the QGIS repo, use<br />
<code>git fetch upstream<br />
git merge upstream/master<br />
</code></p>
<p>Make sure to check out these resources for help and more information on working with repositories on GitHub:</p>
<ul>
<li> GitHub Help: <a href="http://help/github.com">http://help/github.com</a>
<li> Forking: <a href="http://help.github.com/forking/">http://help.github.com/forking/</a>
<li> Pull Requests: <a href="http://help.github.com/pull-requests/">http://help.github.com/pull-requests/</a><br />
]]></content:encoded>
			<wfw:commentRss>http://spatialgalaxy.net/2010/12/27/contributing-to-qgis-using-git/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>GeoApt Spatial Data Browser</title>
		<link>http://spatialgalaxy.net/2010/12/15/geoapt-spatial-data-browser/</link>
		<comments>http://spatialgalaxy.net/2010/12/15/geoapt-spatial-data-browser/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 01:25:10 +0000</pubDate>
		<dc:creator>Gary Sherman</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Quantum GIS]]></category>

		<guid isPermaLink="false">http://spatialgalaxy.net/?p=201</guid>
		<description><![CDATA[This is a project I have had lingering around for a while. It is a geospatial data browser written in Python using the PyQt and QGIS bindings. It allows you to navigate a tree structure and preview raster and vector datasets. Metadata extracted from the data can be viewed as well. It supports drag and drop for any target that accepts filenames (e.g. QGIS). For screenshots and more, see http://geoapt.com/geoapt-data-browser. The code is now available on GitHub (see https://github.com/g-sherman/GeoApt) and ready for you to contribute. Take a look and if you want to get your hands dirty fork the project and start coding. Lots of features are missing&#8212;consider this an alpha version&#8230;]]></description>
			<content:encoded><![CDATA[<p>This is a project I have had lingering around for a while. It is a geospatial data browser written in Python using the PyQt and QGIS bindings. It allows you to navigate a tree structure and preview raster and vector datasets. Metadata extracted from the data can be viewed as well. It supports drag and drop for any target that accepts filenames (e.g. QGIS). For screenshots and more, see <a href="http://geoapt.com/geoapt-data-browser">http://geoapt.com/geoapt-data-browser</a>.</p>
<p>The code is now available on GitHub (see <a href="https://github.com/g-sherman/GeoApt">https://github.com/g-sherman/GeoApt</a>) and ready for you to contribute. Take a look and if you want to get your hands dirty fork the project and start coding.  </p>
<p>Lots of features are missing&#8212;consider this an alpha version&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialgalaxy.net/2010/12/15/geoapt-spatial-data-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GIS for the UN*X World</title>
		<link>http://spatialgalaxy.net/2010/01/06/gis-for-the-unx-world/</link>
		<comments>http://spatialgalaxy.net/2010/01/06/gis-for-the-unx-world/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 04:40:32 +0000</pubDate>
		<dc:creator>Gary Sherman</dc:creator>
				<category><![CDATA[GIS in General]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://spatialgalaxy.net/?p=144</guid>
		<description><![CDATA[In a recent post on VerySpatial.com, Jesse was discussing the apparent dominance of U*nix and observed: ‘&#8230;the geospatial industry almost completely left behind support for UNIX-like OSes’ It is true that the proprietary GIS vendors have largely abandoned Unix and Unix-like operating systems and continue to do so. However the open source GIS community has embraced all major operating systems with software that runs on Linux, *BSD, Mac OS X, and yes, Windows. This support includes everything from the desktop to the server. For those of us that prefer to operate in a Un*x environment, that&#8217;s good news.]]></description>
			<content:encoded><![CDATA[<p>In a <a href='http://veryspatial.com/2010/01/unix-taking-the-lead-part-1/'>recent post</a> on <a href='http://veryspatial.com'>VerySpatial.com</a>, Jesse was discussing the apparent dominance of U*nix and observed:  </p>
<p>‘&#8230;the geospatial industry almost completely left behind support for UNIX-like OSes’</p>
<p>It is true that the proprietary GIS vendors have largely abandoned Unix and Unix-like operating systems and continue to do so. However the open source GIS community has embraced all major operating systems with software that runs on Linux, *BSD, Mac OS X, and yes, Windows. This support includes everything from the desktop to the server.</p>
<p>For those of us that prefer to operate in a Un*x environment, that&#8217;s good news.</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialgalaxy.net/2010/01/06/gis-for-the-unx-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Shapefile &#8211; Reports of My Deprecation have been Greatly Exaggerated</title>
		<link>http://spatialgalaxy.net/2010/01/04/the-shapefile-reports-of-my-deprecation-have-been-greatly-exaggerated/</link>
		<comments>http://spatialgalaxy.net/2010/01/04/the-shapefile-reports-of-my-deprecation-have-been-greatly-exaggerated/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 03:43:00 +0000</pubDate>
		<dc:creator>Gary Sherman</dc:creator>
				<category><![CDATA[ESRI]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[fgdb]]></category>
		<category><![CDATA[shapefile]]></category>

		<guid isPermaLink="false">http://spatialgalaxy.net/?p=119</guid>
		<description><![CDATA[The death of the shapefile has again been predicted&#8212;this time for 2010. The technical description of the format has been around for going on 12 years. In that time it has become a sort of lowest common denominator for data exchange. They&#8217;re everywhere. Making them go away is going to require a revolution of sorts. ESRI has been sounding the death knell for the shapefile for a while now. I agree that it isn&#8217;t a perfect format but it is nearly perfectly supported. If ESRI really wants the shapefile to go away, they will produce a fully open API for the File Geodatabase&#8212;one that can be used outside the Arc* realm. One that can be obtained and used at no cost or license fee. There is a raft of open source programmers waiting in the wings to code against it and provide support and interoperability for the open source GIS world. We&#8217;re waiting&#8230;]]></description>
			<content:encoded><![CDATA[<p>The <a href='http://www.spatiallyadjusted.com/2009/12/31/5-predictions-geo-for-2010-and-5-things-that-wont-happen/'>death of the shapefile</a> has again been predicted&#8212;this time for 2010.</p>
<p>The <a href="http://www.esri.com/library/whitepapers/pdfs/shapefile.pdf">technical description</a> of the format has been around for going on 12 years. In that time it has become a sort of lowest common denominator for data exchange. They&#8217;re everywhere. Making them go away is going to require a revolution of sorts.</p>
<p>ESRI has been sounding the death knell for the shapefile for a while now. I agree that it isn&#8217;t a perfect format but it is nearly perfectly supported. </p>
<p>If ESRI really wants the shapefile to go away, they will produce a fully open API for the File Geodatabase&#8212;one that can be used outside the Arc* realm. One that can be obtained and used at no cost or license fee. </p>
<p>There is a raft of open source programmers waiting in the wings to code against it and provide support and interoperability for the open source GIS world.</p>
<p>We&#8217;re waiting&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialgalaxy.net/2010/01/04/the-shapefile-reports-of-my-deprecation-have-been-greatly-exaggerated/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What&#8217;s Holding Back the Adoption of Open Source GIS on the Desktop?</title>
		<link>http://spatialgalaxy.net/2010/01/02/whats-holding-back-the-adoption-of-open-source-gis-on-the-desktop/</link>
		<comments>http://spatialgalaxy.net/2010/01/02/whats-holding-back-the-adoption-of-open-source-gis-on-the-desktop/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 05:33:28 +0000</pubDate>
		<dc:creator>Gary Sherman</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://spatialgalaxy.net/?p=110</guid>
		<description><![CDATA[In my last post I created a poll to get an idea of the extent of migration to open source GIS on the desktop. The results indicated that nearly 50% of the people using open source GIS were still using their proprietary software as well. You can view the results of the poll using the Polls Archive link below the current poll. This leads one to wonder if it is the state of the open source software or other reasons that prevent a full migration. Take a look at the poll (right margin) and if you are a partial adopter, please vote or post a comment on what&#8217;s holding you back.]]></description>
			<content:encoded><![CDATA[<p>In my <a href="http://spatialgalaxy.net/2009/11/20/migrating-to-open-source-gis-on-the-desktop/">last post</a> I created a poll to get an idea of the extent of migration to open source GIS on the desktop. The results indicated that nearly 50% of the people using open source GIS were still using their proprietary software as well. You can view the results of the poll using the <a href="http://spatialgalaxy.net/pollsarchive">Polls Archive</a> link below the current poll.</p>
<p>This leads one to wonder if it is the state of the open source software or other reasons that prevent a full migration. Take a look at the poll (<a href="http://spatialgalaxy.net/">right margin</a>) and if you are a partial adopter, please vote or post a comment on what&#8217;s holding you back.</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialgalaxy.net/2010/01/02/whats-holding-back-the-adoption-of-open-source-gis-on-the-desktop/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Migrating to Open Source GIS on the Desktop</title>
		<link>http://spatialgalaxy.net/2009/11/20/migrating-to-open-source-gis-on-the-desktop/</link>
		<comments>http://spatialgalaxy.net/2009/11/20/migrating-to-open-source-gis-on-the-desktop/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 14:41:34 +0000</pubDate>
		<dc:creator>Gary Sherman</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://spatialgalaxy.net/?p=103</guid>
		<description><![CDATA[I keep seeing more evidence that many people and organizations are migrating to open source GIS on the desktop. In many cases a mix of proprietary and open source GIS is in use. I&#8217;m wondering about other&#8217;s experiences in this area. To gain some insight, I&#8217;ve created a poll (right margin). Please take a second and vote.]]></description>
			<content:encoded><![CDATA[<p>I keep seeing more evidence that many people and organizations are migrating to open source GIS on the desktop. In many cases a mix of proprietary and open source GIS is in use. </p>
<p>I&#8217;m wondering about other&#8217;s experiences in this area. To gain some insight, I&#8217;ve created a poll (<a href="/">right margin</a>). Please take a second and vote.</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialgalaxy.net/2009/11/20/migrating-to-open-source-gis-on-the-desktop/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>I Love Linux</title>
		<link>http://spatialgalaxy.net/2009/08/10/i-love-linux/</link>
		<comments>http://spatialgalaxy.net/2009/08/10/i-love-linux/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 04:24:18 +0000</pubDate>
		<dc:creator>Gary Sherman</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Platforms]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://spatialgalaxy.net/?p=99</guid>
		<description><![CDATA[$ uptime 20:20:56 up 434 days, 15:31, 2 users, load average: 2.32, 0.89, 0.53]]></description>
			<content:encoded><![CDATA[<blockquote><p>
$ uptime<br />
 20:20:56 up <strong>434 days</strong>, 15:31,  2 users,  load average: 2.32, 0.89, 0.53
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://spatialgalaxy.net/2009/08/10/i-love-linux/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

