<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>LibreGIS blog</title>
	<atom:link href="http://libregis.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://libregis.org</link>
	<description>Add &#34;where&#34; to your life</description>
	<lastBuildDate>Thu, 09 May 2013 09:28:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='libregis.org' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>LibreGIS blog</title>
		<link>http://libregis.org</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://libregis.org/osd.xml" title="LibreGIS blog" />
	<atom:link rel='hub' href='http://libregis.org/?pushpress=hub'/>
		<item>
		<title>Solving GDAL issues for gvSIG CE project</title>
		<link>http://libregis.org/2013/05/09/solving-gdal-issues-for-gvsig-ce-project/</link>
		<comments>http://libregis.org/2013/05/09/solving-gdal-issues-for-gvsig-ce-project/#comments</comments>
		<pubDate>Thu, 09 May 2013 09:27:21 +0000</pubDate>
		<dc:creator>Jorge Arévalo</dc:creator>
				<category><![CDATA[GDAL]]></category>
		<category><![CDATA[gvSIG CE]]></category>

		<guid isPermaLink="false">http://libregis.org/?p=525</guid>
		<description><![CDATA[Recently, I&#8217;ve been working for gvSIG CE project, thanks to the folks of geomati.co (I&#8217;m part of the team now!) I was solving some GDAL related open cases (this, this and this). the aim is to get a  functional and stable gvSIG CE 1.0 version. There are still a couple of cases to solve (this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=525&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Recently, I&#8217;ve been working for <a href="http://gvsigce.org/">gvSIG CE project</a>, thanks to the folks of <a href="http://geomati.co/">geomati.co</a> (I&#8217;m <a href="http://geomati.co/en/quienes/">part of the team</a> now!)</p>
<p>I was solving some GDAL related open cases (<a href="http://gvsigce.sourceforge.net/mantis/view.php?id=113">this</a>, <a href="http://gvsigce.sourceforge.net/mantis/view.php?id=114">this</a> and <a href="http://gvsigce.sourceforge.net/mantis/view.php?id=115">this</a>). the aim is to get a  functional and stable gvSIG CE 1.0 version. There are still a couple of cases to solve (<a href="http://gvsigce.sourceforge.net/mantis/view.php?id=116">this</a> and <a href="http://gvsigce.sourceforge.net/mantis/view.php?id=117">this</a>), but I think we&#8217;re pretty close.</p>
<p>I&#8217;d like to explain what I did to solve these cases.</p>
<p><strong>Make gvSIG CE work with GDAL 1.9.x</strong></p>
<p>This bug was hard to find but easy to fix.  First, a 1-minute introduction to GDAL use in gvSIG CE.</p>
<p>gvSIG CE uses a JNI wrapper (based on GDAL 1.7.x GDAL packed JNI wrapper) to make C++ native calls to GDAL library. There are 2 important GDAL JNI wrapper classes involved in most GDAL operations:</p>
<ul>
<li><em>Gdal.java</em> (it interacts with native C++ GDALDataset class)</li>
<li><em>GdalRasterBand,java</em> (it interacts with native C++ GDALRasterBand class)</li>
</ul>
<p>Both classes inherit from the same base class: JNIBase. This class defines a function named <em>baseSimpleFunctions</em> that calls one of several native C functions, depending on an input parameter. But some of these native C functions are GDALDataset-based, and other are GDALRasterBand-based. I mean, the pointer passed to them doesn&#8217;t hold the same C structure (wrapping C++ object) in all cases.</p>
<p>And here was the thing. To actually read the raster data, the Java function <em>GdalRasterBand::readRaster</em> is called. This function checks the position and size of the region being accessed, comparing it with the raster dimensions. To check this, the C functions <em>getRasterXSize</em> and <em>getRasterYSize </em>are called. These functions expect a pointer to a GDALDataset C object, but the <em>GdalRasterBand</em> Java class provides a pointer to a GDALRasterBand C object. I had to replace those Dataset-based calls to RasterBand based calls, to match the underlying C structure.</p>
<p><strong>Replace ECW and MrSID driver with GDAL</strong></p>
<p>First, a few comments on these formats.</p>
<p>ECW stands for <em>enhanced compression wavelet</em>. This propietary format <em>is a high-performance image-compression format designed specifically for geospatial imagery. </em>It&#8217;s patented and owned by <a href="http://www.intergraph.com/">Intergraph</a>. More information <a href="http://geospatial.intergraph.com/products/other/ecw/ecw/details.aspx">here</a>.</p>
<p>Intergraph provides a license needed SDK for encoding data and a free SDK for reading. Since version 4.1, this free SDK is only available for Desktop development on Windows systems. There are <a href="http://field-guide.blogspot.com.au/2012/05/update-on-erdas-ecwjp2-sdk-v50.html">promises</a> to include Linux support since 5.0 version, but gvSIG CE doesn&#8217;t plan to support ECW and other proprietary formats. So, I worked with the last known version working on Linux systems too. This is <a href="https://build.opensuse.org/package/show?package=libecwj&amp;project=home%3Ajluce2%3AGEO">3.3</a>.</p>
<p>About MrSID, it stands for <i>multiresolution seamless image database</i>. It&#8217;s a proprietary format too, owned by <a href="http://www.lizardtech.com/">LizardTech</a>. As happens with ECW, there&#8217;s a free SDK to read MrSID files. It can be downloaded from <a href="http://www.lizardtech.com/downloads/category/#latest">here</a> (MrSID SDK, under <em>Tools &amp; Utilities</em>. Free register required). And as happens with ECW too, gvSIG CE won&#8217;t directly support this format. So, it delegates in GDAL.</p>
<p>In both cases, we&#8217;ll need to compile GDAL with the proper support. So, I had to download and compile MrSID and ECW libraries and build GDAL using &#8211;with-ecw and &#8211;with-mrsid options.</p>
<p>As there is a JNI wrapper for GDAL, there are JNI wrappers for ECW and MrSID. The goal was: get rid of them, and give GDAL credentials to handle these formats. Four steps involved here:</p>
<ol>
<li>Compile GDAL with ECW and MrSID support, as said</li>
<li>Tell GDAL to take care of those formats for reading (class <em>GdalDriver</em>)</li>
<li>Unregister ECW and MrSID drivers from gvSIG CE raster library (<em>libRaster</em>)</li>
<li>Delete ECW and MrSID wrappers and native code.</li>
</ol>
<p>Once done, you have gvSIG CE using GDAL 1.9.2 to read raster data, including ECW, JP2, MrSID and Lidar files (previously managed by ECW and MrSID drivers).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/libregis.wordpress.com/525/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/libregis.wordpress.com/525/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=525&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://libregis.org/2013/05/09/solving-gdal-issues-for-gvsig-ce-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>40.599072 -3.712258</georss:point>
		<geo:lat>40.599072</geo:lat>
		<geo:long>-3.712258</geo:long>
		<media:content url="http://0.gravatar.com/avatar/30cf35ac4c992fff8298cdbd2f887025?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gis4free</media:title>
		</media:content>
	</item>
		<item>
		<title>GDAL 1.10 released</title>
		<link>http://libregis.org/2013/05/04/gdal-1-10-released/</link>
		<comments>http://libregis.org/2013/05/04/gdal-1-10-released/#comments</comments>
		<pubDate>Sat, 04 May 2013 13:42:23 +0000</pubDate>
		<dc:creator>Jorge Arévalo</dc:creator>
				<category><![CDATA[GDAL]]></category>
		<category><![CDATA[PostGIS Raster]]></category>

		<guid isPermaLink="false">http://libregis.org/?p=527</guid>
		<description><![CDATA[GDAL 1.10 was released past April. It includes, among others, the last improvements to PostGIS Raster driver, taking advantage of VRT and MEM drivers. Check PostGIS Raster driver page for further information. I&#8217;m currently working on further improvements to the driver, thanks to Rapideye support and feedback. Apart from that, I&#8217;m collaborating with gvSIG CE [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=527&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>GDAL 1.10 was released past April. It includes, among others, the last improvements to PostGIS Raster driver, taking advantage of VRT and MEM drivers. Check <a href="http://trac.osgeo.org/gdal/wiki/frmts_wtkraster.html">PostGIS Raster driver page</a> for further information.</p>
<p>I&#8217;m currently working on further improvements to the driver, thanks to <a href="http://rapideye.com/">Rapideye</a> support and feedback. Apart from that, I&#8217;m collaborating with <a href="http://www.gvsigce.org">gvSIG CE</a> and <a href="http://www.qgis.org">QGIS</a> projects. So, upcoming news soon.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/libregis.wordpress.com/527/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/libregis.wordpress.com/527/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=527&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://libregis.org/2013/05/04/gdal-1-10-released/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<georss:point>40.599072 -3.712258</georss:point>
		<geo:lat>40.599072</geo:lat>
		<geo:long>-3.712258</geo:long>
		<media:content url="http://0.gravatar.com/avatar/30cf35ac4c992fff8298cdbd2f887025?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gis4free</media:title>
		</media:content>
	</item>
		<item>
		<title>New version of the driver will be packed in GDAL 1.10</title>
		<link>http://libregis.org/2013/01/12/new-version-of-the-driver-will-be-packed-in-gdal-1-10/</link>
		<comments>http://libregis.org/2013/01/12/new-version-of-the-driver-will-be-packed-in-gdal-1-10/#comments</comments>
		<pubDate>Sat, 12 Jan 2013 11:10:43 +0000</pubDate>
		<dc:creator>Jorge Arévalo</dc:creator>
				<category><![CDATA[GDAL]]></category>
		<category><![CDATA[PostGIS Raster]]></category>

		<guid isPermaLink="false">http://libregis.org/?p=518</guid>
		<description><![CDATA[After some other minor improvements, a faster and better version of GDAL PostGIS Raster driver is ready to be packed in GDAL 1.10. Any trunk version newer than 2012-12-15 includes all the improvements. I&#8217;ll write a longer post about them and the still needed TODO work.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=518&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>After some other minor improvements, a faster and better version of GDAL PostGIS Raster driver is ready to be packed in GDAL 1.10. Any trunk version newer than <strong>2012-12-15</strong> includes all the improvements. I&#8217;ll write a longer post about them and the still needed TODO work.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/libregis.wordpress.com/518/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/libregis.wordpress.com/518/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=518&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://libregis.org/2013/01/12/new-version-of-the-driver-will-be-packed-in-gdal-1-10/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<georss:point>40.599072 -3.712258</georss:point>
		<geo:lat>40.599072</geo:lat>
		<geo:long>-3.712258</geo:long>
		<media:content url="http://0.gravatar.com/avatar/30cf35ac4c992fff8298cdbd2f887025?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gis4free</media:title>
		</media:content>
	</item>
		<item>
		<title>Updating GDAL PostGIS Raster driver</title>
		<link>http://libregis.org/2012/08/25/updating-gdal-postgis-raster-driver/</link>
		<comments>http://libregis.org/2012/08/25/updating-gdal-postgis-raster-driver/#comments</comments>
		<pubDate>Sat, 25 Aug 2012 13:47:31 +0000</pubDate>
		<dc:creator>Jorge Arévalo</dc:creator>
				<category><![CDATA[GDAL]]></category>
		<category><![CDATA[PostGIS Raster]]></category>
		<category><![CDATA[gdal]]></category>
		<category><![CDATA[postgis]]></category>

		<guid isPermaLink="false">http://libregis.org/?p=506</guid>
		<description><![CDATA[Those past days, I&#8217;ve been working on the GDAL PostGIS Raster driver. I commited a version with relevant changes some days ago. It works with irregular blocking (tiles of different size), different pixel sizes in tiles and is pretty much faster than the previous version. Currently, I&#8217;m debugging to solve some errors, but I plan [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=506&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Those past days, I&#8217;ve been working on the GDAL PostGIS Raster driver. I commited a version with relevant changes some days ago. It works with irregular blocking (tiles of different size), different pixel sizes in tiles and is pretty much faster than the previous version. Currently, I&#8217;m debugging to solve some errors, but I plan to have a stable version for next week. Of course, any feedback is welcome.</p>
<p>So, you can download the last GDAL <a title="nightly snapshot" href="http://trac.osgeo.org/gdal/wiki/DownloadSource#NightlySnapshots">nightly snapshot</a> or <a title="checkout the code from svn repository" href="http://trac.osgeo.org/gdal/wiki/DownloadSource#Subversion">checkout the code from svn repository</a>. Also, I keep a <a title="github repository" href="https://github.com/jorgeas80/gdal_postgis_raster_driver">github repository</a> just for the driver&#8217;s code. Feel free to clone it, comment, collaborate or just say &#8220;Hi&#8221;</p>
<p>Apart from that, as this blog is now part of the <a title="OSGeo planet" href="http://planet.osgeo.org/">OSGeo Planet</a>, I&#8217;m going to update it way more frequently. For the time being, I can commit with one post per month. Probably more.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/libregis.wordpress.com/506/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/libregis.wordpress.com/506/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=506&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://libregis.org/2012/08/25/updating-gdal-postgis-raster-driver/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/30cf35ac4c992fff8298cdbd2f887025?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gis4free</media:title>
		</media:content>
	</item>
		<item>
		<title>Web-based PostGIS geometry/raster viewers</title>
		<link>http://libregis.org/2011/08/27/web-based-postgis-geometryraster-viewers/</link>
		<comments>http://libregis.org/2011/08/27/web-based-postgis-geometryraster-viewers/#comments</comments>
		<pubDate>Sat, 27 Aug 2011 10:21:43 +0000</pubDate>
		<dc:creator>Jorge Arévalo</dc:creator>
				<category><![CDATA[GIS Software]]></category>
		<category><![CDATA[PostGIS Raster]]></category>

		<guid isPermaLink="false">http://gis4free.wordpress.com/?p=491</guid>
		<description><![CDATA[If you want to test PostGIS Raster (included in the next PostGIS 2.0) without installing any software in your computer, take a look at these web-based PostGIS geometry/raster viewers: Web-viewer (ASP.NET) Web viewer (PHP) Thanks to Regina Obe for this, and all the PostGIS team for the excellent work. I&#8217;m working in the GDAL PostGIS [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=491&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>If you want to test PostGIS Raster (included in the next PostGIS 2.0) without installing any software in your computer, take a look at these web-based PostGIS geometry/raster viewers:</p>
<ul>
<li><a title="Web-viewer (ASP.NET)" href="http://www.bostongis.com/blog/index.php?/archives/174-Minimalist-Web-based-ASP.NET-PostGIS-2.0-Spatial-GeometryRaster-Viewer.html">Web-viewer (ASP.NET)</a></li>
<li><a title="Web viewer (PHP)" href="http://www.bostongis.com/blog/index.php?/archives/175-Minimalist-Web-based-PHP-PostGIS-2.0-Spatial-GeometryRaster-Viewer.html">Web viewer (PHP)</a></li>
</ul>
<div>Thanks to Regina Obe for this, and all the PostGIS team for the excellent work. I&#8217;m working in the GDAL PostGIS Raster driver. So, I hope to have some good news soon.</div>
<p></p>
<div>BTW, if you&#8217;re attending <a title="FOSS4G 2011 in Denver" href="http://2011.foss4g.org/">FOSS4G 2011 in Denver</a>, don&#8217;t miss the talk <a title="PostGIS 2.0, the new stuff" href="http://2011.foss4g.org/sessions/postgis-20-new-stuff">PostGIS 2.0, the new stuff</a></div>
<p></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/libregis.wordpress.com/491/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/libregis.wordpress.com/491/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=491&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://libregis.org/2011/08/27/web-based-postgis-geometryraster-viewers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/30cf35ac4c992fff8298cdbd2f887025?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gis4free</media:title>
		</media:content>
	</item>
		<item>
		<title>Free and ready to use anywhere GIS Virtual Machine!</title>
		<link>http://libregis.org/2011/04/07/free-and-ready-to-use-anywhere-gis-virtual-machine/</link>
		<comments>http://libregis.org/2011/04/07/free-and-ready-to-use-anywhere-gis-virtual-machine/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 09:35:25 +0000</pubDate>
		<dc:creator>Jorge Arévalo</dc:creator>
				<category><![CDATA[GIS Software]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://gis4free.wordpress.com/?p=484</guid>
		<description><![CDATA[Ricardo Pinho has announced on postgis-users list the availabilty of a VMWare-powered GIS Virtual Machine, based on Ubuntu 10.10 and with lots of great Open Source GIS stuff. There are 3 versions of this machine: GISVM base: A VM with Ubuntu 10.10 Desktop and ready-to-execute scripts, that allow you to install the GIS software you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=484&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Ricardo Pinho <a href="http://postgis.refractions.net/pipermail/postgis-users/2011-April/029372.html">has announced on postgis-users list</a> the availabilty of a VMWare-powered GIS Virtual Machine, based on Ubuntu 10.10 and with lots of great Open Source GIS stuff. There are 3 versions of this machine:</p>
<ul>
<li>GISVM base: A VM with Ubuntu 10.10 Desktop and ready-to-execute scripts, that allow you to install the GIS software you need. The lighter version.</li>
<li>GISVM desktop: This VM includes <em>PostgreSQL</em>, <em>PostGIS</em>, <em>GeoServer</em>, <em>Mapserver</em>, <em>FWTools</em>, <em>QGIS</em>, <em>GRASS</em>, <em>gvSIG</em>, <em>uDIG</em>, <em>Kosmo</em> and <em>OpenJump</em> installed. Based on Ubuntu 10.10 Desktop too.</li>
<li>GISVM server: The sever version of the VM includes <em>Linux</em>, <em>Apache</em>, <em>MySQL</em>, <em>Php</em>,<em>Tomcat</em>,<em>PostgreSQL</em>, <em>PostGIS</em>, <em>GeoServer</em>, <em>Mapserver</em>, <em>deegree</em> and <em>Geonetwork</em>. Based on Ubuntu 10.10 server.</li>
</ul>
<p>You can download the machines from <a href="http://gisvm.com/index.html">here</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/libregis.wordpress.com/484/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/libregis.wordpress.com/484/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=484&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://libregis.org/2011/04/07/free-and-ready-to-use-anywhere-gis-virtual-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/30cf35ac4c992fff8298cdbd2f887025?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gis4free</media:title>
		</media:content>
	</item>
		<item>
		<title>Collaborate with an Open Source project and win 5000$</title>
		<link>http://libregis.org/2011/03/31/collaborate-with-open-source-project-and-win-5000/</link>
		<comments>http://libregis.org/2011/03/31/collaborate-with-open-source-project-and-win-5000/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 22:57:05 +0000</pubDate>
		<dc:creator>Jorge Arévalo</dc:creator>
				<category><![CDATA[GSoC11]]></category>

		<guid isPermaLink="false">http://gis4free.wordpress.com/?p=478</guid>
		<description><![CDATA[I participated in Google Summer of Code 2009, and that was the way I started working on PostGIS and GDAL. Now, I&#8217;ve been selected as mentor in Google Summer of Code 2011. In this page you can see my project and other related ones, with Pierre Racine as proposed mentor. Do you want to collaborate [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=478&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I participated in <a href="http://www.google-melange.com/gsoc/program/home/google/gsoc2009">Google Summer of Code 2009</a>, and that was the way I started working on PostGIS and GDAL. Now, I&#8217;ve been selected as mentor in <a href="http://www.google-melange.com/gsoc/homepage/google/gsoc2011">Google Summer of Code 2011</a>. In <a href="http://trac.osgeo.org/postgis/wiki/WKTRasterGSoC">this page</a> you can see my project and other related ones, with Pierre Racine as proposed mentor.</p>
<p>Do you want to collaborate in an Open Source project? Contact me by e-mail or leave a comment here. This summer could be a great summer of code!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/libregis.wordpress.com/478/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/libregis.wordpress.com/478/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=478&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://libregis.org/2011/03/31/collaborate-with-open-source-project-and-win-5000/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/30cf35ac4c992fff8298cdbd2f887025?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gis4free</media:title>
		</media:content>
	</item>
		<item>
		<title>How to install and configure PostGIS Raster on Windows</title>
		<link>http://libregis.org/2011/03/10/how-to-install-and-configure-postgis-raster-on-windows/</link>
		<comments>http://libregis.org/2011/03/10/how-to-install-and-configure-postgis-raster-on-windows/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 18:25:25 +0000</pubDate>
		<dc:creator>Jorge Arévalo</dc:creator>
				<category><![CDATA[GDAL]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[PostGIS Raster]]></category>

		<guid isPermaLink="false">http://gis4free.wordpress.com/?p=438</guid>
		<description><![CDATA[A lot of people ask me about how to use PostGIS Raster and the GDAL PostGIS Raster driver in Windows systems. And most of them are, comprehensibly, using the last stable releases of both libraries (PostGIS and GDAL). The problem is PostGIS Raster and GDAL driver are being developed in these moments. There&#8217;s no stable release, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=438&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>A lot of people ask me about how to use <a href="http://trac.osgeo.org/postgis/wiki/WKTRaster">PostGIS Raster</a> and the <a href="http://trac.osgeo.org/gdal/wiki/frmts_wtkraster.html">GDAL PostGIS Raster driver</a> in Windows systems. And most of them are, comprehensibly, using the last stable releases of both libraries (PostGIS and GDAL). The problem is PostGIS Raster and GDAL driver are being developed in these moments. There&#8217;s no stable release, so far.</p>
<p>PostGIS Raster was <a href="http://gis4free.wordpress.com/2010/10/01/wkt-raster-is-now-postgis-raster/">included</a> as official part of PostGIS in October 2010. The old version, formerly named WKT Raster has been <strong>abandoned</strong>. So, if you want to use PostGIS Raster, with new functionalities and many bugs fixed, you&#8217;ll have to use the latest PostGIS development snapshot. The use of the old WKT Raster extension is strongly <strong>unrecommended</strong>, and there&#8217;s no support for it.</p>
<p>About GDAL, there was an important change in the driver on October 20st, 2010. A new version was committed, and this is the only version that works with PostGIS Raster. This new driver version was included in the release <strong>1.8.0</strong>, currently the stable release. So, the use of an older release to connect with PostGIS Raster is also <strong>unrecommended</strong>.</p>
<p>With these facts in mind, I understand the Windows users who want to use PostGIS Raster and the GDAL driver are a bit unprotected. I&#8217;m not a Windows user, but I consider it my fault. For this reason, I&#8217;ve decided to create this howto. I&#8217;m going to install and configure PostGIS Raster and GDAL in Windows. And fortunately, you don&#8217;t need to compile anything. Let&#8217;s go for it:</p>
<h3><strong>Enviroment: Windows 7 32 bits</strong></h3>
<h3>Step 1: Installing Python and Numpy</h3>
<p>PostGIS Raster loader uses GDAL Python bindings and numpy. So, we&#8217;ll first install Python and numpy. Several options here:</p>
<ul>
<li><a href="http://www.python.org/download/releases/2.5.4/">Python 2.5</a>, unofficial numpy 1.5.1 (download numpy-1.5.1.win32-py2.5.‌exe from <a href="http://www.lfd.uci.edu/~gohlke/pythonlibs/">here</a>)</li>
<li><a href="http://www.python.org/download/releases/2.6.6/">Python 2.6</a>, unofficial numpy 1.5.1 (download numpy-1.5.1.win32-py2.6.‌exe from <a href="http://www.lfd.uci.edu/~gohlke/pythonlibs/">here</a>)</li>
<li><a href="http://www.python.org/download/releases/2.7.1/">Python 2.7</a>, unofficial numpy 1.5.1 (download numpy-1.5.1.win32-py2.7.‌exe from <a href="http://www.lfd.uci.edu/~gohlke/pythonlibs/">here</a>)</li>
</ul>
<p>I&#8217;m using:</p>
<ul>
<li>Python 2.6.6</li>
<li>Numpy 1.5.1 (numpy-1.5.1.win32-py2.6.‌exe)</li>
</ul>
<h3>Step 2: Installing GDAL</h3>
<p>I think the easiest way to have a complete GDAL installation (library + binaries + Python bindings) working on Windows is using the GDAL binaries mantained by Tamas Szekeres, <a href="http://vbkto.dyndns.org/sdk/">here</a>. Last GDAL versions from trunk are compiled daily with MSVC 2003, MSVC 2005 and MSVC 2008. Pick one. For example, the version compiled with MSVC 2003, <a href="http://vbkto.dyndns.org/sdk/PackageList.aspx?file=release-1310-gdal-1-8-mapserver-5-6.zip">here</a>.</p>
<p>The  faster way now would be to download the <a href="http://vbkto.dyndns.org/sdk/Download.aspx?file=release-1310-gdal-1-8-mapserver-5-6gdal-18-1310-core.msi">generic installer for the GDAL core components</a>, and choose the complete installation</p>
<div id="attachment_446" class="wp-caption aligncenter" style="width: 509px"><a href="http://libregis.files.wordpress.com/2011/03/gdal_core_installer_for_windows.png"><img class="size-full wp-image-446" title="GDAL 1.8.0 core installer for Windows" src="http://libregis.files.wordpress.com/2011/03/gdal_core_installer_for_windows.png?w=600" alt="GDAL 1.8.0 core installer for Windows"   /></a><p class="wp-caption-text">GDAL 1.8.0 core installer for Windows</p></div>
<p>After the installation, you will need to add <em>C:Program FilesGDAL</em> to the PATH enviroment var. And create this new var:</p>
<pre>GDAL_DATA=C:Program FilesGDALgdal-data</pre>
<p><strong>UPDATE 2011-10-07</strong>: About the GDAL Python bindings</p>
<p>After installing GDAL core components, you must install the Python bindings separately. You can use<a href="http://vbkto.dyndns.org/sdk/Download.aspx?file=release-1310-gdal-1-8-mapserver-5-6%5CGDAL-1.8.0.win32-py2.7.msi"> this installer</a> (for Python 2.7 and GDAL 1.8.0), or grab one of the executables existent at <a href="http://www.lfd.uci.edu/%7Egohlke/pythonlibs/">http://www.lfd.uci.edu/~gohlke/pythonlibs/</a></p>
<p>Depending on your Python installation, you can choose GDAL-1.8.1.win32-py2.6.‌exe, GDAL-1.8.1.win32-py2.7.‌exe, GDAL-1.8.1.win32-py3.1.‌exe or GDAL-1.8.1.win32-py3.2.‌exe</p>
<p><strong>UPDATE 2011-03-25:</strong> Alicia Duarte, from <a href="http://www.idesf.santafe.gov.ar/idesf/system/index.php">IDESF</a>, told me she was to additionally set the next enviroment vars to make it work:</p>
<pre>GDAL_DRIVER_PATH=C:Program FilesGDALgdalplugins
PROJ_LIB=C:Program FilesGDALprojlib</pre>
<p></p>
<p><strong>WARNING</strong>: This directory (GDAL Python bindings location) may not exist in your GDAL installation. In my case, the bindings are in C:Python27Libsite-packagesosgeo, and I didn&#8217;t need to define this variable.</p>
<pre>PYTHONPATH=C:Program FilesGDALpython</pre>
<p></p>
<p><del><strong>UPDATE 2011-07-19:</strong>  I think I introduced some confusion in the comments. I apologize for that. Several people are having problems with GDAL Python bindings. I&#8217;ll  try to make it clearer:</del></p>
<ul>
<li><del>On one hand, there&#8217;s a sure thing: you need GDAL library + GDAL Python bindings installed in your system. There&#8217;s an easy way of doing it, by executing the generic installer: <a href="http://vbkto.dyndns.org/sdk/Download.aspx?file=release-1310-gdal-1-8-mapserver-5-6gdal-18-1310-core.msi">gdal-18-1310-core.msi</a>. This installer includes the Python bindings, and they&#8217;re installed at C:Program FilesGDALpython directory by default. This should be enough.</del></li>
<li><del>If you previously have a Python interpreter and a GDAL version installed on your system (check it from a console, executing gdalinfo &#8211;formats), you may want to simply install the proper GDAL Python bindings. Let&#8217;s assume your GDAL version is 1.8 (lower versions won&#8217;t work with PostGIS Raster), and your Python version is 2.7. Then, you simply need to install <a href="http://vbkto.dyndns.org/sdk/Download.aspx?file=release-1310-gdal-1-8-mapserver-5-6GDAL-1.8.0.win32-py2.7.msi">GDAL-1.8.0.win32-py2.7.msi</a>. This installer will put GDAL Python bindings at C:Python27Libsite-packages by default. This is a different location than above, but at the end, you should have a working version of GDAL Python bindings on your system.</del></li>
<li><del>Finally,  the PostGIS Windows experimental binaries with PostGIS Raster support (step 4) are packed with their own version of GDAL library, used only by the raster2pgsql loader.</del></li>
</ul>
<p>GDAL installed. Now, let&#8217;s go with step 3</p>
<h3>Step 3: Installing PostgreSQL</h3>
<p>I recommend Postgresql 8.4.x or higher. You can download the 1-click-installer from <a href="http://www.enterprisedb.com/products-services-training/pgdownload#windows">here</a>, and install it in the common Windows&#8217; way.</p>
<p>During the installation, you&#8217;ll be asked to install some nice additional stuff using the Application Stack Builder, like PostGIS 1.5.x or PostGIS 1.4.x. Don&#8217;t install anything. The PostGIS versions that can be installed doesn&#8217;t include PostGIS Raster. And you can&#8217;t install it separately, because, remember, now is part of PostGIS. We&#8217;re going to install last PostGIS version by hand. Don&#8217;t be afraid, it&#8217;ll be easy.</p>
<h3>Step 4: Installing PostGIS</h3>
<p>We&#8217;re going to use the <a href="http://postgis.refractions.net/download/windows/experimental.php">PostGIS Windows experimental binaries</a>. We need the binaries compiled for PostgreSQL 8.4, <a href="http://postgis.refractions.net/download/windows/pg84/experimental/postgis/postgis-pg84-binaries-2.0.0svn.zip">these ones</a></p>
<p>Once uncompressed, you can see this</p>
<div id="attachment_441" class="wp-caption aligncenter" style="width: 603px"><img class="size-full wp-image-441" title="Contents of binary package PostGIS 2.0 for Windows" src="http://libregis.files.wordpress.com/2011/03/postgis_20_for_windows1.png?w=600" alt="postgis20 windows"   /><p class="wp-caption-text">Contents of binary package PostGIS 2.0 for Windows</p></div>
<p>Following the instructions of README.txt file, let&#8217;s edit <em>makepostgisdb.bat</em> to adapt the vars to our enviroment. We may want to change these vars:</p>
<pre>set PGPORT=5432
set PGHOST=localhost
set PGUSER=postgres
set PGPASSWORD=password_of_postgres_user
set THEDB=template_postgis20
set PGBIN=C:Program FilesPostgreSQL8.4bin
set PGLIB=C:Program FilesPostgreSQL8.4lib

<span class="Apple-style-span" style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13px;line-height:19px;white-space:normal;">A</span><span class="Apple-style-span" style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13px;line-height:19px;white-space:normal;">fter that, we make a backup of our PostgreSQL bin and lib directories (PGBIN and PGLIB). Just in case.</span></pre>
<p>We now execute <em>makepostgisdb.bat</em>. Take into account you may want to execute the script as <strong>administrator</strong>, in case your Windows user doesn&#8217;t have needed privileges (it was my case).</p>
<p><strong>UPDATE 2011-06-08</strong>: For all Windows XP Professional SP2 users:</p>
<p>when you run makepostgisdb.bat from the binaries of POSTGIS SVN2.0, please rename the libiconv-2.dll in bin folder of Postgresql/8.4/bin folder to any other name. Now run the makepostgisdb.bat file. You will not get any error of “operation aborted …. transaction block” (Thanks to <strong>C Patnaik</strong>)</p>
<p>Once executed, we have PostGIS 2.0 + PostGIS Raster installed and configured. A new database called <em>template_postgis20</em> is created, enabled with PostGIS and PostGIS Raster. Easy! Let&#8217;s test it with the next query:</p>
<pre>select postgis_full_version(), postgis_raster_lib_build_date(), postgis_raster_lib_version()</pre>
<p>
And the result:</p>
<div id="attachment_443" class="wp-caption aligncenter" style="width: 710px"><a href="http://libregis.files.wordpress.com/2011/03/testing_postgis20_windows2.png"><img class="size-full wp-image-443" title="PostGIS version installed" src="http://libregis.files.wordpress.com/2011/03/testing_postgis20_windows2.png?w=600" alt="PostGIS version installed"   /></a><p class="wp-caption-text">PostGIS version installed</p></div>
<p>Of course, you can create your own database using <em>template_postgis20</em> as template. From the command line:</p>
<pre>createdb -U postgres -T template_postgis20 your_database</pre>
<p>
Or from pgAdmin III:</p>
<div id="attachment_448" class="wp-caption aligncenter" style="width: 356px"><a href="http://libregis.files.wordpress.com/2011/03/testing_postgis20_windows41.png"><img class="size-full wp-image-448" title="Creating new database from template in pgAdmin III" src="http://libregis.files.wordpress.com/2011/03/testing_postgis20_windows41.png?w=600" alt="Creating new database from template in pgAdmin III"   /></a><p class="wp-caption-text">Creating new database from template in pgAdmin III</p></div>
<p>If you want to use the SHP2PGSQL GUI, you must copy the <em>postguisgui </em>folder (inside <em>bin </em>folder in the downloaded PostGIS experimental binaries file) into pgAdmin III folder (mine is <em>C:Program FilespgAdmin III1.12</em>) and add the next lines to <em>plugins.ini</em> file, inside pgAdmin III folder too:</p>
<pre>;
;PostGIS shp2pgsql-gui (Windows):
;
Title=PostGIS Shapefile and DBF loader
Command="$$PGBINDIRpostgisguishp2pgsql-gui.exe" -h "$$HOSTNAME" -p $$PORT -U "$$USERNAME" -d "$$DATABASE" -W "$$PASSWORD"
Description=Open a PostGIS ESRI Shapefile or Plain dbf loader console to the current database.
KeyFile=$$PGBINDIRpostgisguishp2pgsql-gui.exe
Platform=windows
ServerType=postgresql
Database=Yes
SetPassword=Yes</pre>
<p>
After that, you can use the GUI inside pgAdmin III:</p>
<div id="attachment_444" class="wp-caption aligncenter" style="width: 690px"><a href="http://libregis.files.wordpress.com/2011/03/testing_postgis20_windows3.png"><img class="size-full wp-image-444" title="SHP2PGSQL GUI installed under pgAdmin III" src="http://libregis.files.wordpress.com/2011/03/testing_postgis20_windows3.png?w=600" alt="SHP2PGSQL GUI installed under pgAdmin III"   /></a><p class="wp-caption-text">SHP2PGSQL GUI installed under pgAdmin III</p></div>
<p>Now you can load raster data into your database in 2 steps. In the first step, you will generate a SQL file. Open a command line and execute this:</p>
<pre>python C:Program FilesPostgresql8.4binraster2pgsql.py -r image.tif -t tablename -o image.sql</pre>
<p>
As result of this step, a SQL file named <em>image.sql</em> will be created in the directory where you executed the Python line above.</p>
<p>In the second step, you&#8217;ll need to load the SQL file in your_database, by using your favourite PostgreSQL client. For example, pgAdmin. If your use the psql command line client, the line to execute is:</p>
<pre>psql -h localhost -U postgres -d your_database -f image.sql</pre>
<p>
If you want to translate your raster data from the database to image files at disk again, execute <a href="http://www.gdal.org/gdal_translate.html">gdal_translate</a>.</p>
<pre>gdal_translate PG:"dbname=your_database user=postgres table=your_table mode=2" your_file.tif</pre>
<p>
Basically, this is all what you need to work with PostGIS Raster in Windows. Anyway, take into account the next additional notes:</p>
<h3>Additional notes:</h3>
<p>In step 2, I installed the whole GDAL library, including binaries and Python bindings. In step 4, I installed PostGIS 2.0 with all its pre-requisites. One of them is GDAL. The optimal way would be to use the existent GDAL library, but we&#8217;re working with pre-compiled binaries and DLLs. So, we have 2 copies of GDAL library:</p>
<ul>
<li><em>C:Program FilesGDALgdal18.dll</em>: Installed with generic installer for GDAL, in step 2. Used by gdal_translate, when reading data from database, and in any operation involving GDAL, <strong>except </strong>the raster loading with <em>raster2pgsql.py</em> script</li>
<li><em>C:Program FilesPostgreSQL8.4binlibgdal.dll</em>: Installed with PostGIS Windows experimental binaries, in step 4. Used by <em>raster2pgsql.py</em> script, to load raster data into PostgreSQL.</li>
</ul>
<p>Both library files were compiled from GDAL 1.8.0 from trunk. But they will be slightly different, for sure. This is a suboptimal solution, of course, but it shouldn&#8217;t cause problems, because <em>libgdal.dll</em> is only used when loading raster data into the database. The rest of operations involving GDAL will be executed linking with <em>gdal18.dll</em></p>
<p>If you want to translate the raster data to any image format different from TIFF, you can use the -of option in gdal_translate. For example:</p>
<pre>gdal_translate -of "PNG" PG:"dbname=your_database user=your_user password=your_password table=your_table mode=2" your_file.png</pre>
<p>To get available raster formats:</p>
<pre>gdalinfo --formats</pre>
<p>UPDATE 2011-06-11: I changed the gdal_translate line. I&#8217;m using the &#8216;postgres&#8217; user and the &#8216;trust&#8217; method to authenticate this user (so, no password is needed), but it&#8217;s only a simplification. In general, you should use a different user and a password-enabled authentication method, like md5. Thanks to <strong>C.Patnaik</strong> again, because <a href="http://gis4free.wordpress.com/2011/03/10/how-to-install-and-configure-postgis-raster-on-windows/#comment-234">his comment</a> remainded me this issue</p>
<p><span class="Apple-style-span" style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:15px;font-weight:bold;line-height:19px;white-space:normal;">Conclussions:</span></p>
<p>It&#8217;s possible to work with the last version of PostGIS Raster and GDAL PostGIS Raster driver in Windows, but assuming that:</p>
<ul>
<li>You&#8217;re using experimental build. Not recommended for production enviroments.</li>
<li>The previous versions of PostGIS Raster (WKT Raster) and GDAL PostGIS Raster driver (before GDAL 1.8.0) are discontinued. Don&#8217;t use them.</li>
<li>It&#8217;s a suboptimal solution, because you install 2 copies of GDAL library. But I think this is the best available solution right now.</li>
</ul>
<p>Do you have problems, something to add, modify or correct? Let me know it in the comments</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/libregis.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/libregis.wordpress.com/438/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=438&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://libregis.org/2011/03/10/how-to-install-and-configure-postgis-raster-on-windows/feed/</wfw:commentRss>
		<slash:comments>124</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/30cf35ac4c992fff8298cdbd2f887025?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gis4free</media:title>
		</media:content>

		<media:content url="http://libregis.files.wordpress.com/2011/03/gdal_core_installer_for_windows.png" medium="image">
			<media:title type="html">GDAL 1.8.0 core installer for Windows</media:title>
		</media:content>

		<media:content url="http://libregis.files.wordpress.com/2011/03/postgis_20_for_windows1.png" medium="image">
			<media:title type="html">Contents of binary package PostGIS 2.0 for Windows</media:title>
		</media:content>

		<media:content url="http://libregis.files.wordpress.com/2011/03/testing_postgis20_windows2.png" medium="image">
			<media:title type="html">PostGIS version installed</media:title>
		</media:content>

		<media:content url="http://libregis.files.wordpress.com/2011/03/testing_postgis20_windows41.png" medium="image">
			<media:title type="html">Creating new database from template in pgAdmin III</media:title>
		</media:content>

		<media:content url="http://libregis.files.wordpress.com/2011/03/testing_postgis20_windows3.png" medium="image">
			<media:title type="html">SHP2PGSQL GUI installed under pgAdmin III</media:title>
		</media:content>
	</item>
		<item>
		<title>PostGIS Raster meets Desktop</title>
		<link>http://libregis.org/2010/12/10/postgis-raster-meets-desktop/</link>
		<comments>http://libregis.org/2010/12/10/postgis-raster-meets-desktop/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 12:36:32 +0000</pubDate>
		<dc:creator>Jorge Arévalo</dc:creator>
				<category><![CDATA[PostGIS Raster]]></category>

		<guid isPermaLink="false">http://gis4free.wordpress.com/?p=433</guid>
		<description><![CDATA[As I said in my previous post, there are people working to bring PostGIS Raster to desktop. Specifically: QGIS plugin for PostGIS Raster. Further information here. PostGIS Raster in gvSIG. Presentation in spanish, sorry. Official part of gvSIG from version 1.11. Many thanks! These initiatives help to continue working<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=433&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>As I said in my <a href="http://gis4free.wordpress.com/2010/12/09/gdal-postgis-raster-driver/">previous post</a>, there are people working to bring PostGIS Raster to desktop. Specifically:</p>
<ul>
<li><a href="http://spatialserver.net/pyqgis_1.0/contributed/wktraster.zip">QGIS plugin for PostGIS Raster</a>. Further information <a href="http://pyqgis.org/repo/contributed">here</a>.</li>
<li>PostGIS Raster in gvSIG.<a href="http://www.slideshare.net/nbrodin/postgisrastergvsig"> Presentation</a> in spanish, sorry. Official part of gvSIG from version 1.11.</li>
</ul>
<p>Many thanks! These initiatives help to continue working</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/libregis.wordpress.com/433/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/libregis.wordpress.com/433/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=433&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://libregis.org/2010/12/10/postgis-raster-meets-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/30cf35ac4c992fff8298cdbd2f887025?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gis4free</media:title>
		</media:content>
	</item>
		<item>
		<title>GDAL PostGIS Raster Driver</title>
		<link>http://libregis.org/2010/12/09/gdal-postgis-raster-driver/</link>
		<comments>http://libregis.org/2010/12/09/gdal-postgis-raster-driver/#comments</comments>
		<pubDate>Thu, 09 Dec 2010 11:49:45 +0000</pubDate>
		<dc:creator>Jorge Arévalo</dc:creator>
				<category><![CDATA[GDAL]]></category>
		<category><![CDATA[PostGIS Raster]]></category>

		<guid isPermaLink="false">http://gis4free.wordpress.com/?p=424</guid>
		<description><![CDATA[Some people are asking for improvements and bug fixes on GDAL PostGIS Raster driver. Since r20912, there is an improved version of the driver in GDAL trunk. I&#8217;m working on it. And I know there are people making efforts to bring PostGIS Raster to some Desktop viewers by using GDAL. Many thanks! Apart from that, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=424&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Some people are asking for improvements and bug fixes on <a title="GDAL PostGIS Raster driver" href="http://trac.osgeo.org/gdal/wiki/frmts_wtkraster.html">GDAL PostGIS Raster driver</a>. Since <a title="Release 20912 of GDAL PostGIS Raster driver" href="http://trac.osgeo.org/gdal/changeset/20912">r20912</a>, there is an improved version of the driver in GDAL trunk. I&#8217;m working on it. And I know there are people making efforts to bring PostGIS Raster to some Desktop viewers by using GDAL. Many thanks!</p>
<p>Apart from that, I&#8217;m working on <a title="PostGIS Raster MapAlgebra" href="http://trac.osgeo.org/postgis/wiki/WKTRaster/SpecificationWorking02#Objective2.0.02-Beingabletocreatearasterastheexpressionofanotherraster">PostGIS Raster MapAlgebra</a>. First version before January (I hope&#8230;)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/libregis.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/libregis.wordpress.com/424/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=libregis.org&#038;blog=29506840&#038;post=424&#038;subd=libregis&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://libregis.org/2010/12/09/gdal-postgis-raster-driver/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/30cf35ac4c992fff8298cdbd2f887025?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gis4free</media:title>
		</media:content>
	</item>
	</channel>
</rss>
