<?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; GDAL/OGR</title>
	<atom:link href="http://spatialgalaxy.net/category/gdalogr/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>Importing a DBF containing X-Y Values into QGIS</title>
		<link>http://spatialgalaxy.net/2011/01/29/importing-a-dbf-containing-x-y-values-into-qgis/</link>
		<comments>http://spatialgalaxy.net/2011/01/29/importing-a-dbf-containing-x-y-values-into-qgis/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 19:49:16 +0000</pubDate>
		<dc:creator>Gary Sherman</dc:creator>
				<category><![CDATA[GDAL/OGR]]></category>
		<category><![CDATA[Quantum GIS]]></category>
		<category><![CDATA[dbf]]></category>
		<category><![CDATA[ogr2ogr]]></category>
		<category><![CDATA[qgis]]></category>

		<guid isPermaLink="false">http://spatialgalaxy.net/?p=299</guid>
		<description><![CDATA[Suppose you have a DBF (.dbf) file containing X and Y values that you want to import and save as a spatial layer. QGIS doesn&#8217;t support direct import of a DBF file as a map layer, however, we can use some command line magic to convert it to a CSV file and then use the Delimited Text plugin to get the job done. Your DBF file should have an id for each record and fields containing X and Y values. If it has additional fields that should be OK as well. First convert the DBF to a comma delimited file using ogr2ogr: ogr2ogr -f CSV my_csv my_data.dbf If you don&#8217;t have ogr2ogr see http://www.gdal.org/index.html. This will create my_data.csv in the my_csv directory. You are now ready to bring it into QGIS. Here are the steps to import the CSV: Start QGIS If not already enabled, use the plugin manager to enable the Delimited Text plugin Click on the Delimited Text icon in the Plugin toolbar or choose it from the Plugins menu Browse to the location of your CSV file Enter a name for the layer Under Selected delimiters, check Comma If your X and Y fields aren&#8217;t automatically determined, [...]]]></description>
			<content:encoded><![CDATA[<p>Suppose you have a DBF (.dbf) file containing X and Y values that you want to import and save as a spatial layer.</p>
<p>QGIS doesn&#8217;t support direct import of a DBF file as a map layer, however, we can use some command line magic to convert it to a CSV file and then use the Delimited Text plugin to get the job done.</p>
<p>Your DBF file should have an id for each record and fields containing X and Y values. If it has additional fields that should be OK as well.</p>
<p>First convert the DBF to a comma delimited file using ogr2ogr:<br />
<code>ogr2ogr -f CSV my_csv my_data.dbf </code></p>
<p>If you don&#8217;t have ogr2ogr see <a href="http://www.gdal.org/index.html">http://www.gdal.org/index.html</a>.</p>
<p>This will create my_data.csv in the my_csv directory. You are now ready to bring it into QGIS.</p>
<p>Here are the steps to import the CSV:</p>
<ol>
<li> Start QGIS
<li> If not already enabled, use the plugin manager to enable the Delimited Text plugin
<li> Click on the Delimited Text icon in the Plugin toolbar or choose it from the Plugins menu
<li> Browse to the location of your CSV file
<li> Enter a name for the layer
<li> Under Selected delimiters, check Comma
<li> If your X and Y fields aren&#8217;t automatically determined, set them using the drop-down boxes
<li> The sample text should show how the file is being parsed&#8212;if it looks right click OK, otherwise adjust the settings
<li> The layer is added to QGIS
</ol>
<p><img src="http://spatialgalaxy.net/wp-content/csv_import.png" alt="Delmited Text plugin ready to import CSV" /></p>
<p>At this point the layer behaves pretty much like any other QGIS layer. To save it as a shapefile, right click on its name in the legend and choose Save as&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialgalaxy.net/2011/01/29/importing-a-dbf-containing-x-y-values-into-qgis/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Volcano and the Buffer &#124; Desktop GIS &#8211; the book</title>
		<link>http://spatialgalaxy.net/2009/04/27/the-volcano-and-the-buffer-desktop-gis-the-book/</link>
		<comments>http://spatialgalaxy.net/2009/04/27/the-volcano-and-the-buffer-desktop-gis-the-book/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 05:08:48 +0000</pubDate>
		<dc:creator>Gary Sherman</dc:creator>
				<category><![CDATA[GDAL/OGR]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[gdal]]></category>
		<category><![CDATA[qgis]]></category>

		<guid isPermaLink="false">http://spatialgalaxy.net/?p=96</guid>
		<description><![CDATA[Take a look at: The Volcano and the Buffer &#124; Desktop GIS &#8211; the book It includes an example that uses CSV, GDAL/OGR VRT, QGIS, and fTools to figure out if I was in danger of being buried in a volcanic ash fall (not much danger but sounds dramatic).]]></description>
			<content:encoded><![CDATA[<p>Take a look at:<br />
<a href="http://desktopgisbook.com/volcano_and_the_buffer">The Volcano and the Buffer | Desktop GIS &#8211; the book</a></p>
<p>It includes an example that uses CSV, GDAL/OGR VRT, QGIS, and fTools to figure out if I was in danger of being buried in a volcanic ash fall (not much danger but sounds dramatic).</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialgalaxy.net/2009/04/27/the-volcano-and-the-buffer-desktop-gis-the-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desktop GIS &#8211; the book &#8211; Now in Beta</title>
		<link>http://spatialgalaxy.net/2008/05/07/desktop-gis-the-book-now-in-beta/</link>
		<comments>http://spatialgalaxy.net/2008/05/07/desktop-gis-the-book-now-in-beta/#comments</comments>
		<pubDate>Thu, 08 May 2008 01:17:39 +0000</pubDate>
		<dc:creator>Gary Sherman</dc:creator>
				<category><![CDATA[GDAL/OGR]]></category>
		<category><![CDATA[GMT]]></category>
		<category><![CDATA[GRASS]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Platforms]]></category>
		<category><![CDATA[PostGIS]]></category>
		<category><![CDATA[PostgreSQL]]></category>
		<category><![CDATA[Quantum GIS]]></category>
		<category><![CDATA[uDig]]></category>

		<guid isPermaLink="false">http://spatialgalaxy.net/?p=54</guid>
		<description><![CDATA[The book is now available in beta. Excerpts from two of the chapters are available online. What&#8217;s a beta book? Well in this case it&#8217;s a lot like software&#8212;feature complete and ready for you to give it a spin. The announcement from the Pragmatic Bookshelf: The Pragmatic Bookshelf &#124; Desktop GIS &#8220;From Google Maps to iPhone apps, geographic data and visualization is quickly becoming a standard part of life. Desktop GIS shows you how to assemble and use an Open Source GIS toolkit. You’ll find strategies for choosing a platform, selecting the right tools, integration, managing change, and getting support. You’ll get a good introduction to using the many tools available so you can visualize, digitize, and analyze your own mapping data.&#8221;]]></description>
			<content:encoded><![CDATA[<p>The book is now available in beta. Excerpts from two of the chapters are available <a href="http://www.pragprog.com/titles/gsdgis/desktop-gis">online</a>.</p>
<p>What&#8217;s a beta book? Well in this case it&#8217;s a lot like software&#8212;feature complete and ready for you to give it a spin.<br />
<span id="more-54"></span></p>
<p>The announcement from the Pragmatic Bookshelf:<br />
<a href="http://pragprog.com/titles/gsdgis/desktop-gis">The Pragmatic Bookshelf | Desktop GIS</a><br />
&#8220;From Google Maps to iPhone apps, geographic data and visualization is quickly becoming a standard part of life. Desktop GIS shows you how to assemble and use an Open Source GIS toolkit. You’ll find strategies for choosing a platform, selecting the right tools, integration, managing change, and getting support. You’ll get a good introduction to using the many tools available so you can visualize, digitize, and analyze your own mapping data.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialgalaxy.net/2008/05/07/desktop-gis-the-book-now-in-beta/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

