<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>postgis &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/postgis/</link>
	<description>Feed of posts on WordPress.com tagged "postgis"</description>
	<pubDate>Thu, 16 Oct 2008 21:45:44 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[¿Software libre para el UNICH?]]></title>
<link>http://duncanjg.wordpress.com/?p=922</link>
<pubDate>Sat, 27 Sep 2008 21:13:20 +0000</pubDate>
<dc:creator>Duncan Golicher</dc:creator>
<guid>http://duncanjg.wordpress.com/2008/09/27/%c2%bfsoftware-libre-para-el-unich/</guid>
<description><![CDATA[
La Universidad Intercultural de Chiapas es una institución nueva en San Cristóbal con la misión]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://duncanjg.files.wordpress.com/2008/09/fig2.png"><img class="size-medium wp-image-923 aligncenter" title="fig2" src="http://duncanjg.wordpress.com/files/2008/09/fig2.png?w=300" alt="" width="300" height="203" /></a></p>
<p style="text-align:left;">La Universidad Intercultural de Chiapas es una institución nueva en San Cristóbal con la misión  de proporcionar mas oportunidades de educación superior de calidad a los jóvenes de la zona. El término "intercultural" viene del reconocimiento que la zona de los Altos de Chiapas esta compuesta de diversos grupos étnicos.</p>
<p style="text-align:left;">La UNICH recientemente me contactó para ayudar a analizar una propuesta para un laboratorio de información geográfica. El presupuesto inicial fue de 809,000 pesos. Una parte sustancial de este gasto (135,000 pesos) estaba en el rubro de Software. No estaba bien calculado, dado de que la intención fue comprar solamente una licencia para cada elemento. Este corría el riego de uno de dos resultados. 1) El uso muy restingido del laboratorio. 2) La tentación de usar software sin haber pagado correctamente por los derechos. Hoy en día herramientas geográficas deben estar puesto a la disposición de todos, particularmente los jóvenes procedentes del ámbito rural alrededor de San Cristóbal.</p>
<p style="text-align:left;">Hoy escribí una nueva propuesta para el laboratorio basado en el uso de Software libre. Esta disponible haciendo clic abajo.</p>
<p style="text-align:left;">
<p style="text-align:left;"><a href="http://duncanjg.files.wordpress.com/2008/09/unich.pdf">unich</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Writing GeoJSON from SharpMap, Part 1]]></title>
<link>http://geobabble.wordpress.com/?p=319</link>
<pubDate>Thu, 25 Sep 2008 20:42:11 +0000</pubDate>
<dc:creator>Bill Dollins</dc:creator>
<guid>http://geobabble.wordpress.com/2008/09/25/writing-geojson-from-sharpmap-part-1/</guid>
<description><![CDATA[In between proposals, white papers and the like, I’ve been able to do a little coding to keep myse]]></description>
<content:encoded><![CDATA[<p>In between proposals, white papers and the like, I’ve been able to do a little coding to keep myself sane. Recently, I have been playing with <a href="http://www.codeplex.com/sharpmap">SharpMap</a>, <a href="http://wiki.geojson.org/Main_Page">GeoJSON</a> and <a href="http://openlayers.org">OpenLayers</a>. But not necessarily in that order. Originally, I was looking over the GeoJSON spec to get more of a feel for it and decided that it would be fun (I know) to write an exporter for SharpMap. There is already a converter to write SharpMap geometries as WKT so I went ahead and built another one to convert to GeoJSON. In order to test it, I decided to use OpenLayers.<!--more--></p>
<p>Developing the exporter was pretty straightforward. I used the SharpMap.Converters.WellKnownText.GeometryToWKT class as a template. I created a GeoJson namespace and put a GeometryToGeoJson class in it. I then set about replacing the logic in the WKT with logic that generates GeoJSON. This should result in a class that behaves in the same way as its WKT counterpart but emits GeoJSON instead.</p>
<p>At this point, I am only dealing with geometry and geometry collections. I plan to move on to exporting feature collections in the near future. Also, I still need to persist the CRS information into the GeoJSON output.</p>
<p><strong>Step 1: Building the GeoJSON Writer</strong></p>
<p>As I mentioned, building the converter was pretty straightforward. I really just had to modify the logic of the existing WKT writer. I based the output on GeoJSON 1.0 RC1. The writer currently outputs points, linestrings, polygons, the various “multi” flavors of those and geometry collections. As mentioned above, I haven’t gotten to features or CRS information yet.</p>
<p><strong>Step 2: Testing the Output</strong></p>
<p>I used the <a href="http://openlayers.org/dev/examples/vector-formats.html">OpenLayers “Vector Formats” example</a> as a testbed. I built a simple WinForms GUI in which I could paste a WKT string, convert that to a SharpMap geometry and then write out GeoJSON from that. I then pasted the output into the OpenLayers demo and tried to render it. That process validated the outputs for each of the geometry types pretty quickly.</p>
[caption id="attachment_321" align="alignnone" width="460" caption="A lovely test GUI..."]<a href="http://geobabble.files.wordpress.com/2008/09/sharpmap_geojson_bootstarp.png"><img src="http://geobabble.wordpress.com/files/2008/09/sharpmap_geojson_bootstarp.png" alt="A lovely test GUI..." title="sharpmap_geojson_bootstarp" width="230" height="144" class="size-medium wp-image-324" /></a>[/caption]
<p><strong>Step 3: Generate Output From a Data Set</strong></p>
<p>Next, I modified the <a href="http://openlayers.org/dev/examples/geojson.html">existing OpenLayers GeoJSON demo </a> to make a call back to a server to retrieve GeoJSON from a SharpMap application. The existing demo has a GeoJSON string hard-coded into the JavaScript. I merely replaced this with an AJAX call that retrieves it from the server.</p>
<p>Next, I built an ASP.NET handler (thanks <a href="http://twitter.com/TheSteve0">@TheSteve0</a>) to receive the call from the client, access the data (PostGIS in this case, served from that data I’ve been using for my ArcSDE work), write the geometries into a GeoJSON geometry collection and return it back to the client. Currently, the client passes a query string to tell the server what data is being requested. I plan to implement that in a RESTful manner in a future iteration but this works for now.</p>
<p><strong>Step 4: Running the Code and Displaying the Data</strong></p>
<p>I changed the OpenLayers demo page only minimally to make a call to retrieve the GeoJSON. I implemented an asynchronous call so the basemap would display without waiting for the GeoJSON data to come back. The data set I used contained 408 military installation polygons stored in PostGIS. SharpMap seems to persist the data fairly quickly but it bogged down on the client side on my first run. In both IE and FireFox, the browser would hang and eventually display a message that a script was causing the browser to run slowly. In each case, I had to terminate the script.</p>
[caption id="attachment_324" align="alignnone" width="300" caption="The orange blobs with the outlines are mine."]<a href="http://geobabble.files.wordpress.com/2008/09/sharpmap_geojson_output.png"><img src="http://geobabble.wordpress.com/files/2008/09/sharpmap_geojson_output.png?w=300" alt="The orange blobs with the outlines are mine." title="sharpmap_geojson_output" width="300" height="255" class="size-medium wp-image-324" /></a>[/caption]
<p>On my second pass, I throttled the server-side code back to return only the first ten records. In this case, it returned and displayed almost instantaneously. There were my installation polygons!</p>
<p>On each successive pass, I increased the number of polygons and the client side slowed down down accordingly. Somewhere around 300 polygons, it ground to a halt. I put an alert box in before this call in the client-side javascript:</p>
<p>[sourcecode language="javascript"]<br />
vector_layer.addFeatures(geojson_format.read(gj));<br />
[/sourcecode]</p>
<p>That alert always displays very quickly so there seems to be something inefficient about the geojson_format.read call. <del datetime="00">I’d dig into that more but I upgraded to FireFox 3, which has my FireBug broken (grrrrr).</del> I’ll look into that more later (I have the additional problem of being javascript-challenged). Anyway, OpenLayers was more of a visualization tool for the SharpMap effort so I’m less concerned with that issue at the moment.</p>
<p>As the title of the post implies, I’ll circle back around and update things as I progress. I need to clean up the code for the writer (all of the comments are still the ones from the WKT writer). Additionally, I need to now look at extending to write features, not just geometry. I also want to make the server-side app RESTful. Eventually, I’ll also deploy the app to a demo location where anyone can hit it. As you can see, I have my work cut out for me.</p>
<p>BTW, here are the versions involved on this pass:<br />
OpenLayers: 2.6<br />
SharpMap: 0.9 build 34320<br />
Visual Studio: 2008<br />
PostGIS: 1.3.3</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Simplest possible clean PostGIS install in Ubuntu Heron]]></title>
<link>http://duncanjg.wordpress.com/?p=859</link>
<pubDate>Mon, 22 Sep 2008 23:06:36 +0000</pubDate>
<dc:creator>Duncan Golicher</dc:creator>
<guid>http://duncanjg.wordpress.com/2008/09/22/simple-clean-postgis-install/</guid>
<description><![CDATA[Many of the  pages of instructions for installing PostGIS in Ubuntu make the process seem quite com]]></description>
<content:encoded><![CDATA[<p>Many of the  pages of instructions for installing PostGIS in Ubuntu make the process seem quite complicated. Some are quite out of date.</p>
<p>While it is probably necessary to know a bit about the process of importing functions and languages and creating templates it is no longer necessary to get a basic PostGIS data base up and running.</p>
<p>If these instructions are followed carefully with Ubuntu Heron, at the time of writing, you will get PostGIS running with QGIS in a few minutes.</p>
<p>First place the following in your sources list either using synaptics or pasting the line at the bottom of  /etc/apt/sources.list  (sudo gedit /etc/apt/sources.list)</p>
<p><span style="color:#003366;">deb http://ppa.launchpad.net/qgis/ubuntu  hardy main</span></p>
<p>Then</p>
<p><span style="color:#003366;">sudo apt-get update<br />
sudo apt-get install qgis<br />
sudo apt-get install postgresql-8.3<br />
sudo apt-get install postgis<br />
sudo apt-get install postgresql-8.3-postgis<br />
sudo apt-get install pgadmin3</span></p>
<p>One small step that is necessary is to change the user password for postgres within the database as for some reason after installing PostGIS it is no longer the default value "postgres" (Although the linux password for postgres is) . You can do this with psql. Care needed here. This has to be done correctly. The following line gets you into psql.</p>
<p><span style="color:#003366;">sudo -u postgres psql -d template1</span></p>
<p>Type this (being very careful with quotation marks and the semicolon).</p>
<p><span style="color:#003366;">alter user postgres with password 'postgres';</span></p>
<p>If successul you get a message saying ALTER ROLE (If there is any problem here then retype the single quotation marks to make sure they are simple. Wordpress keeps changing them for some reason if they are not in an HTML box).</p>
<p>Then exit psql with \q or control d</p>
<p>Now create a database</p>
<p><span style="color:#000080;">sudo -u postgres createdb gisdb</span></p>
<p>Download a small test database with the countries of the word from this site with wget. Again the file  is disguised as a word doc in order to go into the wordpress site.</p>
<p><span style="color:#000080;">wget http://duncanjg.wordpress.com/files/2008/09/paises.doc</span></p>
<p>Restore this database.</p>
<p><span style="color:#003366;">sudo -u postgres psql gisdb&#60;paises.doc</span></p>
<p>Now run qgis and connect to your new PostGIS data base.</p>
<p><a href="http://duncanjg.files.wordpress.com/2008/09/qgis31png.png"><img class="aligncenter size-medium wp-image-871" title="qgis31png" src="http://duncanjg.wordpress.com/files/2008/09/qgis31png.png?w=300" alt="" width="300" height="207" /></a></p>
<p><a href="http://duncanjg.files.wordpress.com/2008/09/qgis32png.png"><img class="aligncenter size-thumbnail wp-image-873" title="qgis32png" src="http://duncanjg.wordpress.com/files/2008/09/qgis32png.png?w=128" alt="" width="128" height="76" /></a></p>
<p>You can then experiment importing shapefiles into the database using the graphical plugin "SPIT" and looking at the structure of the database using pgadmin.</p>
<p>The trial database with a single countries of the world table can also be downloaded without wget by clicking here.</p>
<p><a href="http://duncanjg.wordpress.com/files/2008/09/paises.doc">paises</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Nombres de comunidades y municipios: Exportar a Google Earth de PostGIS]]></title>
<link>http://duncanjg.wordpress.com/?p=684</link>
<pubDate>Mon, 15 Sep 2008 05:14:16 +0000</pubDate>
<dc:creator>Duncan Golicher</dc:creator>
<guid>http://duncanjg.wordpress.com/2008/09/14/nombres-de-comunidades-y-municipios-exportar-a-google-earth-de-postgis/</guid>
<description><![CDATA[Siempre es util tener los bordes de municipios y todas las localidades de Chiapas en Google Earth

S]]></description>
<content:encoded><![CDATA[<p>Siempre es util tener los bordes de municipios y todas las localidades de Chiapas en Google Earth</p>
<p><a href="http://duncanjg.files.wordpress.com/2008/09/conteo2005.png"><img class="aligncenter size-thumbnail wp-image-688" title="conteo2005" src="http://duncanjg.wordpress.com/files/2008/09/conteo2005.png?w=128" alt="" width="128" height="79" /></a></p>
<p>Se puede exportar facilmente de una base de datos PostGIS con una consulta usando ogr2ogr. Por ejemplo</p>
<div style="margin:5px 20px 20px;">
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:50px;text-align:left;margin:0;padding:6px;">ogr2ogr -f "KML" conteo2005.kml "PG:dbname=gisdb" -sql "SELECT nom_loc,pobtot,the_geom from mex.conteo2005 where nom_ent like 'Chiapas' sort by pobtot" -dsco NameField=nom_loc</pre>
</div>
<p>Encontré que aparentemente hay un problema de exportar multipolygons. A veces se puede resolver quitando las tags si realmente hay nada mas un polygono por cada fila en la tabla usando sed. Por ejemplo.</p>
<div style="margin:5px 20px 20px;">
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:120px;text-align:left;margin:0;padding:6px;">ogr2ogr -f "KML" chismunicpios.kml "PG:dbname=gisdb" -sql "SELECT nom_mun,the_geom from mex.municipios where nomedo like 'Chiapas'" -dsco NameField=nom_mun
#Getting rid of unwanted multipolygon

sed 's/&#60;MultiPolygon&#62;&#60;polygonMember&#62;//' chismunicpios.kml &#62;chismunicpios2.kml
sed 's/&#60;\/polygonMember&#62;&#60;\/MultiPolygon&#62;//' chismunicpios2.kml &#62;chismunicpios3.kml</pre>
</div>
<p>Aqui hay unos archivos de kmz (quita la extensión de doc)</p>
<p><a href="http://duncanjg.files.wordpress.com/2008/09/conteo2005kmz.doc">conteo2005kmz #Conteo de población de Chiapas 2005<br />
</a></p>
<p><a href="http://duncanjg.files.wordpress.com/2008/09/municpioskmz.doc">municpioskmz  #Todo Mexico &#62;25 MB<br />
</a></p>
<p><a href="http://duncanjg.files.wordpress.com/2008/09/chismunicpios3kmz.doc">chismunicpios3kmz Chiapas<br />
</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Eco-informática: Nuevas herramientas de informática en manos de los investigadores]]></title>
<link>http://duncanjg.wordpress.com/?p=603</link>
<pubDate>Wed, 10 Sep 2008 17:55:53 +0000</pubDate>
<dc:creator>Duncan Golicher</dc:creator>
<guid>http://duncanjg.wordpress.com/2008/09/10/ecoinformatica/</guid>
<description><![CDATA[Documento disponible en PDF aqui( ecoinformatica)

Progreso en las ciencias naturales y sociales dep]]></description>
<content:encoded><![CDATA[<p><em>Documento disponible en PDF aqui( <a href="http://duncanjg.files.wordpress.com/2008/09/ecoinformatica.pdf">ecoinformatica)</a></em></p>
<p><!--l. 32--></p>
<p class="noindent">Progreso en las ciencias naturales y sociales depende críticamente en la capacidad de grupos de investigación de generar, conjuntar, sistematizar y analizar grandes cantidades de información. Datos fragmentados y desorganizados solamente pueden contestar preguntas limitadas. En la última década el internet ha revolucionado el modelo científico, facilitando el trabajo en conjunto de grupos formados de individuos distribuidos en distintas instituciones. Ejemplos de colaboraciones exitosas varían en escala entre iniciativas para secuenciar genomas <span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XRidley2006">14</a>]</span> hasta proyectos de tésis con miembros del comité en diversas instituciones. Sin embargo, el conocimiento y uso de las herramientas informáticas no es consistente entre instituciones y líneas de investigación. La diferencia entre ellos en el acceso, conocimiento y habilidad en el uso de la tecnología abre lo que se ha llamado la división digital <span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XServon">15</a>]</span>. Institutos e investigadores que no aprovechan plenamente de la nueva tecnología sufren una reducción en su competitividad, reflejada en el número de publicaciones a nivel internacional. <!--l. 51--></p>
<p class="noindent">
<h3 class="sectionHead">La situación actual en Ecosur</h3>
<p><!--l. 53--></p>
<p class="noindent">Hay tres rubros en el uso de herramientas informáticas relevantes al trabajo en Ecosur. Bioinformática, Geoinformática y Servicios Bibliotecarios generales. Desde hace mas de un década Ecosur ha contado con un departamento de servicio en Geoinfomática en la forma del LAIGE. Todavía no se ha desarrollado formalmente un área de Bioinformática en la institución, aunque varios investigadores usan herramientas relacionadas al nivel de sus proyectos. La biblioteca (SIBE) ha mostrado un avance muy sólido proporcionando un rango amplio de nuevos servicios digitales a los investigadores. El uso del equipo de video-conferencia ha facilitado la comunicación entre unidades. <!--l. 64--></p>
<p class="indent">Entonces, es claro que Ecosur ha registrado avances continuos en el uso de herramientas informáticas. Sin embargo hay indicaciones preocupantes que este proceso ha sido mas lento que en otras instituciones. La cultura asociada con la rigidez de las reglas administrativas de una dependencia federal no siempre ha fomentado la adopción temprano de innovaciones tecnológicas. Múltiples investigadores han expresado su preocupación que la velocidad relativa de cambio se ha deteriorado rápidamente en los últimos dos años. Este proceso esta evidenciado por una creciente diferencia entre el nivel de sofisticación en el uso de herramientas informáticas por parte de organizaciones no gubernamentales locales y escuelas y lo que se registra en Ecosur. Esta contrasta con la expectativa general que una institución del tamaño de Ecosur cuenta con ventajas sustantivas en términos de recursos. <!--l. 79--></p>
<p class="noindent">
<h3 class="sectionHead">La tendencia al nivel global</h3>
<p><!--l. 81--></p>
<p class="noindent">Al nivel global, desde 2006, se ha registrado un incremento muy rápido en el uso de comunicación directa de voz y video por internet (Skype, Messenger, Ekiga etc), la producción y almacenamiento de fotos y vídeos digitales (You Tube, FlickR etc) y el uso de herramientas de análisis y plataformas de software libre (Linux, Apache, MySQL, PHP). La misma tecnología que proporciona plataformas para usos recreativos proporciona nuevas herramientas para la investigación, muchas veces a cero o bajo costo. Programas como GRASS, R y PostGIS son herramientas de investigación y análisis muy comparables en poder al software comercial (<span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XGolicher2007">8</a>]</span>). Imágenes de satélite de alta resolución están disponibles gratis en Google Earth. La construcción de un Wiki o Weblog puede aprovechar de software libre como Wordpress. MediaWiki, Drupal o Joomla, Estos avances representan múltiples oportunidades nuevas no solamente para la divulgación de la información generada por proyectos de investigación, pero también para la actividad de investigación misma. En las universidades y centros de investigación Europeos el desarrollo de herramientas informáticas están siempre estrechamente integrados en la investigación. En contraste el departamento de informática de Ecosur ha concentrado su atención en el mantenimiento de la infraestructura de los servicios de comunicación. Esta actividad ha absorbido recursos sin generar productos de investigación tangibles. Hasta la fecha hay pocos ejemplos de colaboración técnica entre programadores del departamento de informática e investigadores. El departamento de informática no emplea personal con conocimiento técnico orientado hacia la investigación y no se ha realizado un análisis a fondo de las necesidades actuales de investigadores en términos de herramientas informáticas. <!--l. 109--></p>
<p class="noindent">
<h3 class="sectionHead">El concepto de Ecoinformática</h3>
<p><!--l. 111--></p>
<p class="noindent">La palabra que mejor describe las nuevas tendencias globales en el campo relevante a las actividades de investigadores de Ecosur es “Ecoinformática”. Se define como una nueva ciencia de la información en Ecología y ciencias ambientales con la meta de desarrollar y aplicar formas innovadoras para compartir y analizar información relevante a la conservación y manejo de sistemas ecológicos<span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XWikipedia">16</a>]</span>. En el contexto de Ecosur se puede interpretar la Ecoinformática como la integración de bioinformática, geoinformática y la ciencia de la comunicación dentro de un marco consistente. Hay ejemplos del uso de herramientas de ecoinformática en diversos campos de investigación involucrando monitoreo, captura y almacenamiento de datos <span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XBrunt2002">2</a>]</span> <span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XMika2006">10</a>]</span><span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XOlden2006">11</a>]</span><span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XKraines2005">9</a>]</span>). El futuro de Ecoinformática esta estrechamente vinculado por el movimiento hacia la red semántica. Ecoinformática tiene que ser dinámica y con una visión a futuro. <!--l. 126--></p>
<p class="indent">La gran meta de las herramientas siendo desarrolladas y divulgadas para la web semántica es la integración de todo tipo de información en una forma consistente. Este objetivo complementa el enfoque interdisciplinario de Ecosur. Por ejemplo, un trabajo de tesis de un estudiante puede generar múltiples productos digitales. Estos productos incluyen vídeos y grabaciones de entrevistas, fotos digitales y datos de inventarios de la vegetación. En este momento el único producto entregado es la tesis. Esta queda en papel o pdf y la información interno es poco accesible. Un estudio que sigue los pasos en la misma zona o del mismo tema podría beneficiarse mas de la información y datos originales que la información parcial condensada y plasmada en el documento formal. Por ejemplo fotos y videos correctamente tomados y georefenciados están jugando un papel cada vez mas importante en la investigación ecológica (<span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XBekker2007">1</a>]</span><span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XCrimmins2008">3</a>]</span><span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XBrunt2002">2</a>]</span><span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XReif2006">12</a>]</span><span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XRichardson2007">13</a>]</span>). Software puede extraer información en una forma automatizada de colecciones de imágenes. Para lograr la meta de compartir diversas fuentes de información en una forma accesible se requiere conocimiento técnico a varios niveles. Los datos cuantitativos de estudiantes típicamente no cumplen con la normatividad para un base de datos relacional <span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XGolicher">6</a>]</span>. Fotos y videos están tomados sin georeferencias ni metadatos <span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XGolichera">5</a>]</span>. Estudiantes e investigadores pueden ignorar estándares internacionales. Aunque superficialmente el almacenamiento de información parece una actividad rutinaria, en realidad el manejo eficiente de archivos digitales requiere conocimiento sofisticado de programación (ej <span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XCurry2008">4</a>]</span>). La existencia de un grupo de programadores con una preparación actualizada puede inyectar un nuevo dinamismo y nivel de eficiencia al nivel institucional. <!--l. 154--></p>
<p class="noindent">
<h3 class="sectionHead">El futuro</h3>
<p><!--l. 156--></p>
<p class="noindent">Este año se ha empezado la tarea de integrar la información geográfica con las colectas biológicas en una estructura uniforme proporcionado por una base de datos geográficamente explicita (<span class="cite">[<a href="///home/duncan/ecoinformatica.html.LyXconv/ecoinformatica.html#XGolicher2008">7</a>]</span>). Esta iniciativa aprovecha del nuevo poder y facilidad de uso de software libre. La institución se beneficiaría de una extensión de este proceso para asegurar la incorporación de múltiples fuentes de información en una estructura bien planeada y accesible tanto adentro como afuera de Ecosur. Este proceso actualmente esta limitado por la capacidad técnica institucional y la estructura y orientación del departamento de informática hacia el servicio de la administración. Se propone entonces una re-estructuración de los departamentos de servicio para favorecer la integración de la informática en la investigación. <!--l. 169--></p>
<p class="indent">Múltiples elementos deben estar contemplados antes de empezar este proceso. No se considera dentro del alcance de este documento proponer los detalles técnicos de tal reestructuración. Sin embargo se visualizan cambios estructurales en el LAIGE, las colecciones biológicas, la biblioteca y el departamento de informática para unificar esfuerzos y facilitar el intercambio de información y capacidad técnica. También sería necesario la contratación de personal adicional con conocimiento técnico actualizado bajo la dirección de personal académica con preparación formal en el área de informática. <!--l. 180--></p>
<p class="noindent">
<h3 class="sectionHead">Una visión de la estructura y actividades de un departamento de Ecoinformática</h3>
<p><!--l. 182--></p>
<p class="noindent">El concepto de ecoinfomática debe estar visto no como un paraguas a nivel administrativo pero como una realidad funcional estrechamente integrada con la investigación. Por ejemplo no deben existir servidores separados para la biblioteca, Laige, colecciones biológicas y paginas web. Toda la información en Ecosur debe estar mantenida en una sola estructura con la capacidad de almacenar terrabytes de información. Hace dos años el concepto sería ambicioso. Hoy en día el costo de espacio de almacenamiento es mínimo. La arquitectura para trabajar a esta escala esta establecida. Dado de que las características del servidor(es) proporciona la funcionalidad del sistema entero su configuración sería un trabajo vital para asegurar la plataforma sólida para todas las otras actividades de Ecoinformática. Es natural que el sistema estaría basado en Linux. Entonces hay la necesidad de contratar una persona con conocimiento técnico avanzado y amplia experiencia en la configuración y mantenimiento de servidores Linux. El experto puede configurar y mantener un rango de servicios usando el software libre integrado en los servidores de Linux (Firewall, servidor de email, paginas web, ftp, ssh, PHP, MySQL, PostGIS, mapserver etc). El costo de pagar por los servicios de un profesional con experiencia previamente comprobado en una institución de investigación de prestigio internacional estaría ampliamente recompensado con la reducción en los gastos actuales en licencias de software, especialmente porque la configuración de software propietario en uso actual ha causado problemas adicionales (especialmente Lotus Domino). Para seguridad y velocidad de acceso se montará servidores espejos (copias idénticas) en cada unidad. <!--l. 208--></p>
<p class="indent">La persona contratada de mantener el sistema naturalmente proporcionará capacitación a todo el grupo. Este representará un recurso humano importante. El aumento en la capacidad tecnológica local actúa para estimular el desarrollo regional. Ecosur puede ofrecer cursos sobre la configuración y uso de software libre para reducir el gasto de ONGs, escuelas e instituciones gubernamentales. <!--l. 215--></p>
<p class="indent">El mantenimiento de la conectividad física y redes de telecomunicación no debe estar a cargo del grupo de ecoinformática. Sería mejor tener un contrato transparente con un proveedor externo de servicios. Para asegurar que el servicio sea proporcionado a un costo competitivo hay que aprovechar al máximo el poder de negociación de una institución con el tamaño y prestigio de Ecosur. Los términos del contrato tienen que estar publicados bajo la ley de transparencia. Se puede pasar la responsabilidad de contratar y negociar los términos del servicio al personal administrativo. El futuro de la conectividad de las redes institucionales es en el uso de tecnología inalámbrica, la cual esta bajando en costo. Entonces sería necesario analizar el uso de la tecnología periódicamente para asegurar su actualización. <!--l. 228--></p>
<p class="indent">El trabajo principal de ecoinformática no sería simplemente la recompilación y mantenimiento de bases de datos. Mas bien sus actividades estarían unificadas alrededor del servidor donde se guarda y maneja la información. <!--l. 232--></p>
<p class="indent">
<ol class="enumerate1">
<li class="enumerate">Grupo  de  servicios  bibliotecarios.  Este  grupo  aprovechará  al  máximo  la  experiencia  exitosa       previa del personal de SIBE. Se contempla una área activa de actualización en el uso de nuevas       herramientas de acceso a la información usando extensiones del concepto de búsqueda de texto       completo, traducciones automatizadas, material fotográfico, documentos históricos, bases de datos       estadísticas etc.</li>
<li class="enumerate">Grupo  de  Geoinformática.  Este  grupo  extenderá  el  trabajo  cartográfico  del  LAIGE  hacia       nuevos  productos  en  línea.  Se  contempla  la  ampliación  de  herramientas  como  bases  de  datos       espacialmente explicitas (por ejemplo PostGIS) y servidores de mapas. Se aprovecharán nuevas       herramientas  como  Google  Maps.  La  producción  de  herramientas  novedosas,  adaptados  a  las       necesidades  regionales,  requiere  conocimiento  de  programación  en  idiomas  como  SQL,  Java  y       PHP.</li>
<li class="enumerate">Grupo  de  Bioinformática.  Este  grupo  sería  responsable  de  mejorar  las  bases  de  datos  de       colecciones y potencialmente empezar de integrar mas información genética. Su trabajo estaría       estrechamente vinculado con el grupo de Geoinformática dado de que preguntas ecológicas tratan       de  la  abundancia  y  distribución  de  especies.  Se  buscarán  formas  innovadoras  de  presentar  la       información taxonómica en forma de claves interactivas y búsquedas de imágenes escaneadas y       fotos en el campo por características morfológicas.</li>
<li class="enumerate">Grupo de simulación y modelación. Dado la necesidad de emplear programadores de bases de datos       sería natural integrar la actividad de modelación ecológica dentro del concepto de Ecoinformática.       Investigadores con necesidades de programadores especializados para sus lineas podrían colaborar       directamente con este grupo.</li>
<li class="enumerate">Grupo de estadística y sistematización de datos. Este grupo colaborará con todos los otros grupos,       pero también ofrecerá un servicio a los investigadores en el uso de bases de datos, asegurando       que no se siga la tendencia actual de mantener datos en formas “Ad hoc” en violación de normas       internacionales  (por  ejemplo  hojas  de  cálculo  de  Excel).  El  grupo  dará  cursos  en  el  uso  de       herramientas  como  ODBC  y  estadística  avanzada.  Mantendrá  bases  de  datos  sustantivos  que       requieren conocimiento avanzado en su manejo, como por ejemplo datos climatológicos de la zona.</li>
<li class="enumerate">Grupo de comunicaciones y multi media. Este grupo investigará el uso de medios de comunicación       dinámicos  y  visuales  como  la  fotografía  y  video.  Se  proporcionará  ayuda  en  la  configuración       y uso de herramientas de comunicación como video conferencias personales para actividades de       investigación.</li>
</ol>
<p><!--l. 275--></p>
<p class="noindent">
<h3 class="sectionHead">Una visión del uso de las herramientas de Ecoinformática</h3>
<p><!--l. 277--></p>
<p class="noindent">En 2010 un investigador joven en Sud Africa esta interesado en el efecto del cambio climático en el bosque seco de la depresión central de Chiapas. Ha leído un informe de un proyecto en la zona (Reforlan) y quiere investigar con mas detalle por su cuenta. Tiene un par de días para formular una hipótesis para plantar un proyecto nuevo. Su primera pregunta es “¿cual ha sido la tendencia en el clima en los últimos 50 años en la zona?”. Entra en el sistema de Ecoinformática de Ecosur. A través de un mapa interactivo consigue los datos históricos del clima en la zona y los análisis usando software estadístico integrado al sistema. Se notan tendencias ambiguas que podrían ser artefactos. Entonces busca publicaciones sobre la calidad de datos climáticos en Chiapas. Encuentra que efectivamente los datos oficiales pueden tener sesgos y errores y la tendencia a largo plazo todavía esta oculta dentro de una variabilidad asociada con el efecto del Niño. Luego se le ocurre que la vegetación misma puede mostrar la tendencia mejor. Busca todas las colectas de árboles de la zona y grafíca la proporción de colectas de especies caducifolias contra el tiempo. Tampoco encuentra una tendencia clara. Además el uso del bosque y la perturbación antropogénica podría influir mas que el cambio climático. Entonces el investigador visualiza los mapas de cambio en la cubertura boscosa en la zona. Hay poca evidencia de cambios recientes. Se cruza con mapas de incendios, pero se encuentra que los incendios son mas bien quemas de pastizales. Empieza a formular nuevas hipótesis sobre la historia del uso en la zona. Busca fotografías del bosque y paisaje en un mapa interactivo, corriendo un “tour” virtual de la zona. Se nota una dominancia de especies dispersadas por ganado. ¿Cuando empezó la ganadería en la zona?” Busca documentos históricos sobre el uso del suelo en el siglo XIX. Había un uso extensivo de los terrenos establecido ya en 1858. Pero ¿cuales han sido las tendencias después de la Revolución Mexicana? Encuentra una tesis escrita sobre el tema recientemente, pero no puede leerla en Español. Usa el servicio de traducción automatizado para extraer la información esencial del documento. Luego encuentra que el estudiante de maestría había entrevistado algunos habitantes mas viejos de la zona. Baja los videos, con sus subtítulos en Inglés (no perfectamente traducidos dado de que la transcripción fue automatizada, pero suficientemente bien para entender), y pasa un rato fascinado con los cuentos emocionantes del tiempo de los Mapaches. Luego se vuelve a concentrar en la tarea. Busca información sobre la dinámica de la vegetación bajo disturbio. Encuentra un modelo de simulación interactivo en el sitio y lo corre con diferentes escenarios. Finalmente decide sobre su estudio. “Calibración de modelos succesionales espacialmente explícitos usando datos históricos”. Baja las capas geográficas relevantes a su estudio a su laptop y produce mapas y figuras para respaldar su propuesta. Busca las direcciones actuales del estudiante y del investigador responsable para el modelo y les invita a participar en su proyecto. Los llama por video conferencia en línea para discutir la colaboración. <!--l. 1--></p>
<p class="noindent">
<h3 class="likesectionHead">Referencias</h3>
<p><!--l. 1--></p>
<p class="noindent">
<div class="thebibliography">
<p class="bibitem"><span class="biblabel"> [1]<span class="bibsp"> </span></span>R. M. Bekker, E. van der Maarel, H. Bruelheide, and K. Woods.  Long-term datasets: From      descriptive to predictive data using ecoinformatics.  <span class="ptmri8t-x-x-120">Journal of Vegetation Science</span>, 18(4):458–462,      2007.</p>
<p class="bibitem"><span class="biblabel"> [2]<span class="bibsp"> </span></span>J. W. Brunt, P. McCartney, K. Baker, and S. G. Stafford. The future of ecoinformatics in long      term ecological research.  <span class="ptmri8t-x-x-120">6th World Multiconference on Systemics, Cybernetics and Informatics,</span> <span class="ptmri8t-x-x-120">Vol Vii, Proceedings</span>, pages 367–372, 2002.</p>
<p class="bibitem"><span class="biblabel"> [3]<span class="bibsp"> </span></span>M. A.  Crimmins  and  T. M.  Crimmins.    Monitoring  plant  phenology  using  digital  repeat      photography. <span class="ptmri8t-x-x-120">Environmental Management</span>, 41(6):949–958, 2008.</p>
<p class="bibitem"><span class="biblabel"> [4]<span class="bibsp"> </span></span>G. B. Curry and R. C. H. Connor. Automated extraction of data from text using an xml parser:      An earth science example using fossil descriptions. <span class="ptmri8t-x-x-120">Geosphere</span>, 4:159–169, 2008.</p>
<p class="bibitem"><span class="biblabel"> [5]<span class="bibsp"> </span></span>Duncan Golicher. Como georeferenciar fotos. http://duncanjg.wordpress.com/2008/08/31/como-georeferenciar-fotos-con-precision-sin-costo-ni-esfuerzo/.</p>
<p class="bibitem"><span class="biblabel"> [6]<span class="bibsp"> </span></span>Duncan              Golicher.                                            Mantenimiento              de              datos.      http://duncanjg.wordpress.com/2008/02/13/mantenimiento-de-datos/.</p>
<p class="bibitem"><span class="biblabel"> [7]<span class="bibsp"> </span></span>Duncan Golicher. http://duncanjg.wordpress.com/2008/04/29/presentacion-de-postgis-en-ecosur/, 2008.</p>
<p class="bibitem"><span class="biblabel"> [8]<span class="bibsp"> </span></span>Duncan J  Golicher  and  Luis  Cayuela.     A  methodology  for  flexible  species  distribution      modelling within an open source framework: Technical report presented to the third international      workshop on species distribution modelling: San cristobal de las casas, chiapas, mexico. Technical      report, El Colegio de La Frontera Sur, Chiapas, Mexico, 2007.</p>
<p class="bibitem"><span class="biblabel"> [9]<span class="bibsp"> </span></span>S. Kraines, R. Batres, M. Koyama, D. Wallace, and H. Komiyama. Internet-based integrated      environmental assessment - using ontologies to share computational models.  <span class="ptmri8t-x-x-120">Journal of Industrial</span> <span class="ptmri8t-x-x-120">Ecology</span>, 9(3):31–50, 2005.</p>
<p class="bibitem"><span class="biblabel"> [10]<span class="bibsp"> </span></span>P. Mika,  T. Elfring,  and  P. Groenewegen.    Application  of  semantic  technology  for  social      network analysis in the sciences. <span class="ptmri8t-x-x-120">Scientometrics</span>, 68(1):3–27, 2006.</p>
<p class="bibitem"><span class="biblabel"> [11]<span class="bibsp"> </span></span>J. D.  Olden,  N. L.  Poff,  and  B. P.  Bledsoe.     Incorporating  ecological  knowledge  into      ecoinformatics: An example of modeling hierarchically structured aquatic communities with neural      networks. <span class="ptmri8t-x-x-120">Ecological Informatics</span>, 1(1):33–42, 2006.</p>
<p class="bibitem"><span class="biblabel"> [12]<span class="bibsp"> </span></span>V. Reif and R. Tornberg.  Using time-lapse digital video recording for a nesting study of birds      of prey. <span class="ptmri8t-x-x-120">European Journal of Wildlife Research</span>, 52(4):251–258, 2006.</p>
<p class="bibitem"><span class="biblabel"> [13]<span class="bibsp"> </span></span>A. D. Richardson, J. P. Jenkins, B. H. Braswell, D. Y. Hollinger, S. V. Ollinger, and M. L.      Smith.   Use of digital webcam images to track spring green-up in a deciduous broadleaf forest.      <span class="ptmri8t-x-x-120">Oecologia</span>, 152(2):323–334, 2007.</p>
<p class="bibitem"><span class="biblabel"> [14]<span class="bibsp"> </span></span>M. Ridley.        Won   for   all:   How   the   drosophila   genome   was   sequenced.        <span class="ptmri8t-x-x-120">Nature</span>,      441(7090):153–153, 2006.</p>
<p class="bibitem"><span class="biblabel"> [15]<span class="bibsp"> </span></span>Lisa Servon.  Bridging the digital divide: Technology, community, and public policy.  <span class="ptmri8t-x-x-120">Malden,</span> <span class="ptmri8t-x-x-120">MA: Blackwell</span>.</p>
<p class="bibitem"><span class="biblabel"> [16]<span class="bibsp"> </span></span>Wikipedia. Ecoinformatics. http://en.wikipedia.org/wiki/Ecoinformatics, 2008.</p>
</div>
<p><!--l. 29--></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Corral de Piedra: Urbanización de las afueras de San Cristóbal]]></title>
<link>http://duncanjg.wordpress.com/?p=591</link>
<pubDate>Fri, 05 Sep 2008 01:13:59 +0000</pubDate>
<dc:creator>Duncan Golicher</dc:creator>
<guid>http://duncanjg.wordpress.com/2008/09/04/corral-de-piedra-urbanizacion-de-las-afueras-de-san-cristobal/</guid>
<description><![CDATA[
Este mañana probe el sistema de &#8220;geotagging&#8221; tomando fotos de las casas a lo largo del]]></description>
<content:encoded><![CDATA[<p><a href="http://duncanjg.files.wordpress.com/2008/09/screen3.png"><img class="aligncenter size-medium wp-image-592" title="screen3" src="http://duncanjg.wordpress.com/files/2008/09/screen3.png?w=300" alt="" width="300" height="169" /></a></p>
<p>Este mañana probe el sistema de "geotagging" tomando fotos de las casas a lo largo del camino a Ecosur. Funciona muy bien, aunque se perdio en señal a veces debido a los arboles en el camino.</p>
<p>El archivo esta disponible aqui.  Hay unos desplazamientos menores pero muestra mas o menos la situación actual de urbaización en la zona. (quita el .doc y abrelo en Google Earth)</p>
<p><a href="http://duncanjg.files.wordpress.com/2008/09/corraldepiedrakmz.doc">corraldepiedrakmz</a></p>
<p>Aqui hay otro, fotos tomado por Mickey el domingo 7 sep.</p>
<p><a href="http://duncanjg.wordpress.com/files/2008/09/corraldepiedra2kmz.doc">corraldepiedra2kmz</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Using ArcSDE 9.3 with PostgreSQL, Part 3.5]]></title>
<link>http://geobabble.wordpress.com/?p=281</link>
<pubDate>Thu, 21 Aug 2008 15:58:55 +0000</pubDate>
<dc:creator>Bill Dollins</dc:creator>
<guid>http://geobabble.wordpress.com/2008/08/21/using-arcsde-93-with-postgresql-part-35/</guid>
<description><![CDATA[I thought I was done with the series a while back but I&#8217;ve been getting a steady stream of que]]></description>
<content:encoded><![CDATA[<p>I thought I was done with the series a while back but I've been getting a steady stream of questions through other channels so I thought I'd wrap up a lot of the common stuff in another post. Most of the inquiries come from people trying to integrate <a href="http://www.esri.com/software/arcgis/arcsde/index.html">ArcSDE</a> for <a href="http://www.postgresql.org">PostgreSQL</a> with open-source tools in one way or another. Here are a few notes:<!--more--></p>
<ol type="1">
<li>If you plan to load data into PostgreSQL with ArcCatalog but plan to edit it with tools such as <a href="http://udig.refractions.net/">uDig</a>, <a href="http://www.gvsig.gva.es/index.php?id=gvsig&#38;L=2">gvSIG</a> or <a href="http://pub.obtusesoft.com/">zigGIS</a>, then you want to do the following:
<ol type="a">
<li>Always load your data with the PG_GEOMETRY configuration keyword. This will cause your spatial objects to be stored in the <a href="http://postgis.refractions.net/">PostGIS</a> format. None of the open-source tools I've used can understand ST_GEOMETRY.</li>
<li>Don't version your data. uDig, gvSIG and zigGIS (what I've used) only "see" the DEFAULT version anyway. They can't take advantage of versioning.</li>
<li>Although ArcCatalog does put an entry in the PostGIS geometry_columns table, it lists the geometry type as GEOMETRY. gvSIG edits this fine but it seems to monkey with uDig a little. It's not a bad idea to update this with the actual geometry type. These will be string values such as "POLYGON", "MULTIPOLYGON", etc. You'll need to do this if you plan to edit your data with zigGIS from an ArcView desktop.</li>
<li>Related to the previous item. If you were to load data using shp2pgsql or any other method that calls the PostGIS <a href="http://postgis.refractions.net/documentation/manual-1.3/ch06.html#id3059786">AddGeometryColumn</a> function, you would end up with constraints on your table limiting the geometry column to a homogenous geometry type (e.g only polygons) and a homogenous SRID. Loading via ArcCatalog doesn't do this (and I've run into other tools that don't as well). Quite frankly ArcSDE manages all of that for itself so it doesn't need such constraints. Without them, however, you can use other tools and mix your geometry types and SRIDs in the table. It's a good idea to add these constraints and I have noticed no ill effects on ArcGIS if you do.</li>
<li>As we discovered with zigGIS, there is a difference between the spatial references that are defined by default on the PostGIS spatial_ref_sys table and the ArcSDE sde_spatial_references table. This makes it possible to load data via ArcCatalog that doesn't have a corresponding SRID in the PostGIS table. This would effect your ability to add the previously discussed constraint. It will also throw off open-source tools that look at the spatial_ref_sys table. It's a good idea to update spatial_ref_sys to include those from ArcGIS that are not already supported.</li>
<li>ArcCatalog doesn't define a primary key on your spatial table. uDig really doesn't like this so it's best to add a primary key on the objectid column (this has no effect on ArcGIS that I can tell) using the following syntax:<br />
[sourcecode language="sql"]<br />
ALTER TABLE myTable<br />
ADD CONSTRAINT mytable_pkey PRIMARY KEY(objectid);<br />
[/sourcecode]<br />
gvSIG additionally expects the column with the PK to "auto-number" so you may want to experiment with adding a sequence to the column. The syntax I used to do this is:</p>
<p> [sourcecode language="sql"]<br />
CREATE SEQUENCE mytable_gid_seq<br />
INCREMENT 1<br />
MINVALUE 1<br />
MAXVALUE 9223372036854775807<br />
START 408<br />
CACHE 1;<br />
ALTER TABLE mytable_gid_seq OWNER TO postgres;<br />
ALTER TABLE myTable ALTER COLUMN objectid SET DEFAULT nextval(’mytable_gid_seq’::regclass);<br />
[/sourcecode]<br />
If you're experienced with ArcSDE, you get nervous mucking with the objectid column. I have made both the of the above changes to several data sets and made edits in uDig, gvSIG and ArcMap with no ill effect.</li>
</ol>
<li>If you plan to edit/manage your data using ArcGIS but serve it out using an open-source application like GeoServer or MapServer then there are a few considerations:
<ol type="a">
<li>If you plan to use versioning, then be diligent about posting and reconciling with DEFAULT so that any changes want to have show up will. Of course, this assumes you would just be connecting to the PostGIS data. If you connect through ArcSDE, this <em>may</em> be unnecessary.</li>
<li>Again, use the PG_GEOMETRY keyword.</li>
<li>The SRID issue discussed in item 1e above <em>may</em> be relevant here as well.</li>
</ol>
</li>
<li>The implementation of ArcSDE on the PostgreSQL platform is pretty solid. I have been able to do everything I could do on other platforms. So, if you plan to stay in the ESRI environment, go forth an conquer. I think you'll be pleased with PostgreSQL. You may want to bone up on PostgreSQL database administration, though.</li>
<p>Ultimately, support for PostgreSQL by ArcGIS opens up the possibility of numerous technology mixes. It's somewhat uncharted territory and it's not a bad idea, as with any system integration task, to do a little testing and experimentation before moving on with an implementation.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Desenvolvimento GIS]]></title>
<link>http://rafaelsussel.wordpress.com/?p=33</link>
<pubDate>Mon, 11 Aug 2008 15:06:57 +0000</pubDate>
<dc:creator>rafaelsussel</dc:creator>
<guid>http://rafaelsussel.wordpress.com/2008/08/11/desenvolvimento-gis/</guid>
<description><![CDATA[Sei do interesse que muitos possuem em relação a área de sistemas GIS e vou procurar fornecer um ]]></description>
<content:encoded><![CDATA[<p>Sei do interesse que muitos possuem em relação a área de sistemas GIS e vou procurar fornecer um "start" aos que desejarem se aventurar nessa área.<br />
Prentendo fazer uma mescla no uso de softwares livres com proprietários, poderia ser tudo Open Source, mas como eu já trabalhei em alguns projetos dessa forma, vou variar um pouco, assim eu tambem aprendo um pouco.<br />
Portanto irei utilizar como plataforma de desenvolvimento C# .Net, como o sistema será para web, poderia utilizar como opção "livre" PHP ou proprio Java.<br />
Para armazenamento de dados, irei utilizar o PostGreSQL, com a extensão GIS, a postGIS.<br />
E finalmente para a exibição dos mapas iremos utilizar o Mapserver.<br />
Ao fim dos tutoriais, estaremos com um sistema, claro que simples, mas de grande ajuda pra quem está começando.<br />
Pensei na estruturação de um cronograma para as publicações dos tutoriais:</p>
<p>1º Preparando o ambiente de desenvolvimento.</p>
<p>2º Preparando a nossa base de dados.</p>
<p>3º Finalmente, exibindo mapas...</p>
<p>4º Implementando os controles visuais</p>
<p>4º Realizando consultas</p>
<p>5º Criando layer´s dinamicos</p>
<p>6º PostGIS, operações basicas</p>
<p>Obs: Essa seguencia/lista, porderá sofrer alterações caso eu veja necessidade para isto.<br />
O primeiro tutorial, espero que seja publicado ainda esta semana, aguardem.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Start Mapping with OpenStreetMap - Part 1]]></title>
<link>http://thinkcap.wordpress.com/?p=33</link>
<pubDate>Thu, 07 Aug 2008 04:37:36 +0000</pubDate>
<dc:creator>bigduke</dc:creator>
<guid>http://thinkcap.wordpress.com/?p=33</guid>
<description><![CDATA[Following on from Paul&#8217;s article &#8220;Take Control of Your Maps&#8221; on A List Apart (must]]></description>
<content:encoded><![CDATA[<p>Following on from Paul's article <a href="http://www.alistapart.com/articles/takecontrolofyourmaps" target="_blank">"Take Control of Your Maps"</a> on A List Apart (must read for background) I started exploring the possibility of having our own mapping application due to bandwidth constraints on remote clients. No doubt the services and API's offered by Google, Yahoo, Microsoft and OpenStreetMap are mature enough for mash-ups but you still don't own the data and are limited by the functionality exposed by the API. The first part of this series covers setting up the server to start serving map tiles. This is an open source solution and is free in terms of deployment. Implementation however may have additional costs depending on the volume of transactions handled by the server.</p>
<p>Lets begin ...</p>
<p>First, download the geospatial data in the form of an <a href="http://planet.openstreetmap.org/" target="_blank">xml file</a> generously offered by <a href="http://www.openstreetmap.org" target="_blank">OpenStreetMap</a>. If you're downloading the geospatial data for the whole world its a whopping 4.2GB. Try starting with a smaller dataset first. [<a href="http://wiki.openstreetmap.org/index.php/Planet.osm" target="_blank">list available here</a>]</p>
<p>Next, the osm file needs to be converted to actual GIS data using <a href="http://postgis.refractions.net/download/windows/" target="_blank">PostGIS</a>. PostGIS is an application extension of the <a href="http://www.postgresql.org/ftp/binary/v8.3.3/win32/" target="_blank">PostgreSQL database management system</a>. Setting up the database itself is a little tricky and some of the scenarios are discussed here. This implementation was done on a windows machine.</p>
<p>While installing the PostgreSQL RDBMS you'll be presented with the EnterpriseDB Application Stack Builder ( see below). Select PostGIS extension to install it.</p>
[caption id="attachment_34" align="aligncenter" width="300" caption="EnterpriseDB Stack Builder"]<a href="http://thinkcap.files.wordpress.com/2008/08/stack-builder.png"><img class="size-medium wp-image-34" src="http://thinkcap.wordpress.com/files/2008/08/stack-builder.png?w=300" alt="EnterpriseDB Stack Builder" width="300" height="204" /></a>[/caption]
<p>Once installed, connect to the RDBMS using pgAdmin. To properly import the osm data you'll need to do the following (adapted from there sources: <a href="http://postgis.refractions.net/documentation/manual-1.3/ch02.html" target="_blank">[1]</a>, <a href="http://www.nabble.com/osm-to-postgis-data-import-issue-td17060654.html#a17135676" target="_blank">[2]</a>):</p>
<ol>
<li>Setup a role with the same login ID as your windows user name.</li>
<li>Create a new database, lets call it osm_gis, based on the template_postgis database</li>
<li>In order to make sure that the import utility is able to make a connection to the db server, in pgAdmin go to Tools &#62; Server Configuration &#62; pg_hba.conf</li>
<li>Edit the config file to allow access to all users on the local machine (assuming you installed the db server on your own machine). Auth method should be changed to 'Trust'. See below for settings.
<p>[caption id="attachment_35" align="aligncenter" width="300" caption="Client Access Settings"]<a href="http://thinkcap.files.wordpress.com/2008/08/client-access.png"><img class="size-medium wp-image-35" src="http://thinkcap.wordpress.com/files/2008/08/client-access.png?w=300" alt="Client Access Settings" width="300" height="220" /></a>[/caption]</li>
<li>After editing the settings you must reload the server to apply the config settings by clicking on the "play" button on the settings window.</li>
<li>One last step before we import the data; check the permissions on the the tables geometry_lines and spatial_ref_sys. It is imperative that both these tables can be accessed and modified by your preferred db user.</li>
<li>If you're trying to load the entire planet's data, you must tune the PostgreSQL db first. Steps to do this are outlined <a href="http://wiki.openstreetmap.org/index.php/Mapnik#Tuning_the_database" target="_blank">here</a>.</li>
<li>We are now ready to import the osm data into the database. To do so you need to get a hold of the <a href="http://artem.dev.openstreetmap.org/files/" target="_blank">"osm2pgsql.exe" file</a>. Use is as follows: <code><em>&#60;path to file&#62;</em>/osm2pgsql.exe -dosm_gis -c -v &#60;osm_file_name&#62;</code>. For an explanation of the command options refer to the command's help.</li>
</ol>
<p>Importing the data could take quite a lot of time depending on how much data needs to be processed so be patient. In the next part we'll setup the map server to generate the map tiles.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[A Good PostGIS Overview...]]></title>
<link>http://geobabble.wordpress.com/?p=238</link>
<pubDate>Wed, 06 Aug 2008 05:03:17 +0000</pubDate>
<dc:creator>Bill Dollins</dc:creator>
<guid>http://geobabble.wordpress.com/2008/08/06/a-good-postgis-overview/</guid>
<description><![CDATA[Steven Citron-Pousty gave a talk on PostGIS and has helpfully posted his slides here. It&#8217;s a g]]></description>
<content:encoded><![CDATA[<p>Steven Citron-Pousty gave a talk on PostGIS and has helpfully posted his slides <a href="http://www.slideshare.net/scitronpousty/using-post-gis-to-add-some-spatial-flavor-to-your-application">here</a>. It's a good introductory overview and provides some good examples of basic spatial SQL in PostGIS.</p>
<p>With ArcGIS Server now supporting PostgreSQL as a back end RDBMS and also supporting the use of PostGIS geometries, a lot of new users may be migrating to the PostgreSQL platform. This presentation is a good overview for anyone picking it up for the first time. Thanks, @TheSteve0!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[zigGIS Source Code and Schwag Available]]></title>
<link>http://geobabble.wordpress.com/?p=234</link>
<pubDate>Tue, 05 Aug 2008 15:34:37 +0000</pubDate>
<dc:creator>Bill Dollins</dc:creator>
<guid>http://geobabble.wordpress.com/2008/08/05/ziggis-source-code-and-schwag-available/</guid>
<description><![CDATA[Abe has announced that the source code for zigGIS is now available (governed by the zigGIS EULA). It]]></description>
<content:encoded><![CDATA[<p><a href="http://abegillespie.blogspot.com">Abe</a> has announced that the source code for zigGIS is now available (governed by the zigGIS EULA). It can be found at <a href="http://www.obtusesoft.com/source.aspx">http://www.obtusesoft.com/source.aspx</a>.</p>
<p>Additionally, there is now zigGIS apparel available at <a href="http://www.cafepress.com/obtusesoft">http://www.cafepress.com/obtusesoft</a> (just because it's fun...and a little geeky).</p>
<p>No, there is not an option to have the source code printed on a shirt.</p>
<p>Enjoy both....</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Visualización de Contratos Gubernamentales en Colombia usando el Google Earth Browser Plug-in]]></title>
<link>http://neogeografia.wordpress.com/?p=19</link>
<pubDate>Thu, 31 Jul 2008 16:24:50 +0000</pubDate>
<dc:creator>dersteppenwolf</dc:creator>
<guid>http://neogeografia.wordpress.com/2008/07/31/visualizacion-de-contratos-gubernamentales-en-colombia-usando-el-google-earth-browser-plug-in/</guid>
<description><![CDATA[
El siguiente artículo &#8220;Visualización Geográfica de Información Contractual Colombiana (VG]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter" src="http://static.gkudos.com/flash/contract/kudos_contrato_03.jpg" alt="" width="540" height="304" /></p>
<p style="text-align:left;">El siguiente artículo "<a href="http://blog.gkudos.com/2008/07/28/visualizacion-geografica-de-informacion-contractual-colombiana-vgicc/">Visualización Geográfica de Información Contractual Colombiana (VGICC)</a>" muestra un ejemplo de aplicación utilizando las nuevas características del plugin de Google Earth para browsers: <a href="http://code.google.com/apis/earth/" target="_blank">Google Earth Browser Plug-in</a>.</p>
<p style="text-align:center;"><strong>...</strong></p>
<p style="text-align:left;"><strong>English Version: </strong></p>
<p style="text-align:left;"><strong>Geographical Visualization of Government Contracts In Colombia - VGICC</strong></p>
<p style="text-align:left;">The following article "<a href="http://blog.gkudos.com/2008/07/31/geographical-visualization-of-government-contracts-in-colombia-vgicc/" target="_blank">Geographical Visualization of Government Contracts In Colombia - VGICC</a>" shows an application that explore the capabilities of the new <a href="http://code.google.com/apis/earth/" target="_blank">Google Earth Browser Plug-in</a>.</p>
<p style="text-align:left;">
<p style="text-align:left;"><img class="alignnone" src="http://static.gkudos.com/flash/contract/kudos_contrato_01.jpg" alt="" width="630" height="354" /></p>
<p style="text-align:left;">
]]></content:encoded>
</item>
<item>
<title><![CDATA[zigGIS and ArcGIS 9.3]]></title>
<link>http://geobabble.wordpress.com/?p=206</link>
<pubDate>Tue, 22 Jul 2008 14:47:18 +0000</pubDate>
<dc:creator>Bill Dollins</dc:creator>
<guid>http://geobabble.wordpress.com/2008/07/22/ziggis-and-arcgis-93/</guid>
<description><![CDATA[Now that ArcGIS 9.3 has been finalized, I have finally gotten around to testing zigGIS 2.0.1 with it]]></description>
<content:encoded><![CDATA[<p>Now that <a href="http://www.esri.com">ArcGIS 9.3</a> has been finalized, I have finally gotten around to testing <a href="http://www.obtusesoft.com">zigGIS</a> 2.0.1 with it. While the source code is available, I wanted to test the unmodified binary distro. I am happy to report that zigGIS appears to work fine with ArcGIS Desktop 9.3.</p>
<p><a href="http://geobabble.files.wordpress.com/2008/07/ziggis_arcgis_93.png"><img src="http://geobabble.wordpress.com/files/2008/07/ziggis_arcgis_93.png?w=300" alt="" width="300" height="186" class="alignnone size-medium wp-image-207" /></a></p>
<p>I guess the statement in the zigGIS About box regarding 9.2 is no longer accurate.  :D</p>
<p>I ran some preliminary tests on the editing capability and they seem to work fine. I was able to create a feature in ArcGIS, connect to my <a href="http://postgis.refractions.net">PostGIS</a> database using <a href="http://www.gvsig.gva.es/index.php?id=gvsig&#38;L=2">gvSIG</a> and see the feature. Just for grins, I then deleted the feature in gvSIG and refreshed my ArcMap display to see it disappear.</p>
<p>As you can see from the screen capture, I am using ArcEditor but that is because of other ArcGIS-related work that I do. zigGIS doesn't care about the license tier you use and will work just fine with ArcView.</p>
<p>ArcGIS Desktop 9.3 does have some improved mapping tools so those of you who have been using zigGIS as a lightweight means of access your PostGIS data from ArcMap can now look at what 9.3 has to offer.</p>
<p><a href="http://twitter.com/zigGIS">Follow zigGIS on Twitter</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Statistical Representation of Health Data Using Mapserver and Adobe Flex 3]]></title>
<link>http://flex2colombia.wordpress.com/?p=34</link>
<pubDate>Mon, 21 Jul 2008 16:21:54 +0000</pubDate>
<dc:creator>dersteppenwolf</dc:creator>
<guid>http://flex2colombia.wordpress.com/2008/07/21/statistical-representation-of-health-data-using-mapserver-and-adobe-flex-3/</guid>
<description><![CDATA[This is a web application that uses Mapserver, Php, Postgresql, Postgis and Adoble Flex 3 to create ]]></description>
<content:encoded><![CDATA[<p>This is a web application that uses Mapserver, Php, Postgresql, Postgis and Adoble Flex 3 to create interactive Maps intended to explore Colombia´s National level statistical data on Health. <a href="http://blog.gkudos.com/2008/07/22/representacion-geografica-de-indicadores-estadisticos-utilizando-software-libre/">Link</a>.</p>
<p style="text-align:center;"><a href="http://blog.gkudos.com/2008/07/22/representacion-geografica-de-indicadores-estadisticos-utilizando-software-libre/"><img class="aligncenter" src="http://static.gkudos.com/images/salud_main.jpg" alt="" width="612" height="385" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[PostGIS Onesie]]></title>
<link>http://smathermather.wordpress.com/?p=3</link>
<pubDate>Sun, 20 Jul 2008 17:25:48 +0000</pubDate>
<dc:creator>smathermather</dc:creator>
<guid>http://smathermather.wordpress.com/2008/07/20/postgis-onesie/</guid>
<description><![CDATA[Nothing more appropriate for the baby elephant than to be displayed on a onesie.
Well, I have to put]]></description>
<content:encoded><![CDATA[[caption id="attachment_17" align="alignleft" width="225" caption="Nothing more appropriate for the baby elephant than to be displayed on a onesie."]<a href="http://smathermather.files.wordpress.com/2008/07/postgis_onesie.jpg"><img class="size-medium wp-image-17" src="http://smathermather.wordpress.com/files/2008/07/postgis_onesie.jpg?w=225" alt="Nothing more appropriate for the baby elephant than to be displayed on a onesie." width="225" height="300" /></a>[/caption]
<p>Well, I have to put it out there:  is this an original, the one and only PostGIS onesie?  My son was born recently, and as he was sleeping quietly, I surfed to the PostGIS website.  One look at that baby elephant icon, and another to our newborn, and I realized I had the perfect inspiration, so time to go make my own onesie, and start a FOSS GIS blog.</p>
<p>FYI, I'm working on a PostGIS/GeoServer/OpenLayers set of services for my day job, but this probably doesn't count as work.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Visualización Interactiva de Mapas y Estadísticas utilizando Flex 3]]></title>
<link>http://neogeografia.wordpress.com/?p=16</link>
<pubDate>Sat, 19 Jul 2008 17:23:45 +0000</pubDate>
<dc:creator>dersteppenwolf</dc:creator>
<guid>http://neogeografia.wordpress.com/2008/07/19/visualizacion-interactiva-de-mapas-y-estadisticas-utilizando-flex-3/</guid>
<description><![CDATA[En el siguiente artículo &#8220;Representación Geográfica de Indicadores Estadísticos Utilizando]]></description>
<content:encoded><![CDATA[<p>En el siguiente artículo "<a href="http://blog.gkudos.com/2008/07/22/representacion-geografica-de-indicadores-estadisticos-utilizando-software-libre/" target="_blank">Representación Geográfica de Indicadores Estadísticos Utilizando Software Libre</a>" puede encontrarse una aplicación basada en Adobe Flex 3 para la visualización de estadísticas de salud de colombia:</p>
<p><a href="http://blog.gkudos.com/2008/07/22/representacion-geografica-de-indicadores-estadisticos-utilizando-software-libre/"><img class="aligncenter" src="http://static.gkudos.com/images/salud_main.jpg" alt="" width="643" height="405" /></a></p>
<p>Este aplicativo utiliza Mapserver, Postgresql, Postgis y Php para la generación de los Mapas dinámicos así como también los componentes de Charting de Adobe Flex 3.  Puede ver el artículo original en el <a href="http://blog.gkudos.com/2008/07/22/representacion-geografica-de-indicadores-estadisticos-utilizando-software-libre/" target="_blank">siguiente enlace</a>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Visualización Interactiva de Mapas y Estadísticas utilizando Flex 3]]></title>
<link>http://flex2colombia.wordpress.com/?p=31</link>
<pubDate>Fri, 18 Jul 2008 23:46:11 +0000</pubDate>
<dc:creator>dersteppenwolf</dc:creator>
<guid>http://flex2colombia.wordpress.com/2008/07/18/visualizacion-interactiva-de-mapas-y-estadisticas-utilizando-flex-3/</guid>
<description><![CDATA[En el siguiente artículo &#8220;Representación Geográfica de Indicadores Estadísticos Utilizando]]></description>
<content:encoded><![CDATA[<p>En el siguiente artículo "<a href="http://blog.gkudos.com/2008/07/22/representacion-geografica-de-indicadores-estadisticos-utilizando-software-libre/" target="_blank">Representación Geográfica de Indicadores Estadísticos Utilizando Software Libre</a>" puede encontrarse una aplicación basada en Adobe Flex 3 para la visualización de estadísticas de salud de colombia:</p>
<p><a href="http://blog.gkudos.com/2008/07/22/representacion-geografica-de-indicadores-estadisticos-utilizando-software-libre/"><img class="aligncenter" src="http://static.gkudos.com/images/salud_main.jpg" alt="" width="643" height="405" /></a></p>
<p>Este aplicativo utiliza Mapserver, Postgresql, Postgis y Php para la generación de los Mapas dinámicos así como también los componentes de Charting de Adobe Flex 3.  Puede ver el artículo original en el <a href="http://blog.gkudos.com/2008/07/22/representacion-geografica-de-indicadores-estadisticos-utilizando-software-libre/" target="_blank">siguiente enlace</a>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Priority areas for dry forest restoration in La Frailesca]]></title>
<link>http://duncanjg.wordpress.com/?p=446</link>
<pubDate>Wed, 09 Jul 2008 00:07:51 +0000</pubDate>
<dc:creator>Duncan Golicher</dc:creator>
<guid>http://duncanjg.wordpress.com/2008/07/08/priority-areas-for-dry-forest-restoration-in-la-frailesca/</guid>
<description><![CDATA[This is a marker for work in progress. Do not cite.
This morning I was contacted in order to provide]]></description>
<content:encoded><![CDATA[<p>This is a marker for work in progress. Do not cite.</p>
<p>This morning I was contacted in order to provide geographical information for one of our partners in the Reforlan project. The aim of the research is to find priority areas for forest restoration.</p>
<p>The question of how to go about the analysis is thought provoking. I have already mentioned the problem of aggregation error in this weblog. Pooling data in order to find mean values does not work at the scale in which most of the important processes act. The classic example is mean rainfall for Mexico. At the same time, some elements on the landscape cannot be mapped at a fine scale, and others, such as management units (farms or ejidos) form natural aggregation according to social factors.</p>
<p>So perhaps the first step would be determine priority pixels according to a limited number of physical processes that can be resonably accurately mapped at fine resolution (30 m x 30 m) then aggregate to find the number of pixels in each agronomic unit that could be restored. An analysis of social and economic factors at this scale could then be undertaken in order to discover where restoration might be feasible and bring the most social benefit.</p>
<p>The mappable factors at the 30m pixel scale would be</p>
<p>1. Forest cover and recent deforestation: Pixels that have forest cover presumably do not need restoring. Pixels that have been recently deforested may be prioritised, although natural regneration may be a suitable mechanism in some areas close to the original forest.</p>
<p>2. Slope: Areas with steep slopes must be prioritised for restoration in order to avoid soil erosion. Factors such as slope length may be taken into account.</p>
<p>3. Insolation (aspect): South facing slopes that receive intense insolation during the dry winter months may be in need of restoration, but successful restoration may be more challenging.</p>
<p>4. Distance from rivers: Riparian areas may be in greater need of restoration and trees may establish more successfully in moist soil. At the same time these may be the most valuable areas for irrigated  agriculture.</p>
<p>5. Conservation status: Reserves should perhaps take priority when restoration is being considered.</p>
<p>The interesting element of the research involves finding a suitable way of combing the layers in order to allow ranks to be calculated. A typical approach is weighted averaging, but this may not allow interactive effects to be included.</p>
<p>The map below shows the estimated current extent of the forest in the region and recent deforestation hotspots.</p>
[wp_caption id="attachment_447" align="aligncenter" width="300" caption="Forest cover in La Frailesca: Red and yellow areas are recently deforested: Shaded areas are federal reserves."]<a href="http://duncanjg.files.wordpress.com/2008/07/frailesca4.png"><img class="size-medium wp-image-447" src="http://duncanjg.wordpress.com/files/2008/07/frailesca4.png?w=300" alt="Shaded areas are federal reserves." width="300" height="210" /></a>[/wp_caption]
<p>Areas with the steepest slopes do tend to coincide with remaining forest cover, as would be expected, but some recent deforestation both intentionally and as a result of forest fires has taken place in the steeply sloping "Sierra" region in the West and South West  and South of the study region.</p>
[wp_caption id="attachment_448" align="aligncenter" width="300" caption="Slope in degrees (high to low is red through to green passing through blue)"]<a href="http://duncanjg.files.wordpress.com/2008/07/frailesca5.png"><img class="size-medium wp-image-448" src="http://duncanjg.wordpress.com/files/2008/07/frailesca5.png?w=300" alt="Slope in degrees (high to low is red through to green passing through blue)" width="300" height="210" /></a>[/wp_caption]
<p>North facing slopes receive less direct sunlight during clear winter days and are more likely to be covered in evergreen forest. Fuel dries out on south facing slopes leading to more intense fires. Regeneration may be difficult due to hydric stress.</p>
[wp_caption id="attachment_449" align="aligncenter" width="300" caption="Winter insolation: Yellow pixels are level areas that receive the \"]<a href="http://duncanjg.wordpress.com/files/2008/07/frailesca6.png"><img class="size-medium wp-image-449" src="http://duncanjg.wordpress.com/files/2008/07/frailesca6.png?w=300" alt="Yellow pixels are level areas that receive the \" width="300" height="210" /></a>[/wp_caption]
<p><a href="http://duncanjg.files.wordpress.com/2008/07/frailesca6.png"><br />
</a></p>
<p>Most deforestation has occured close to the major rivers.</p>
[wp_caption id="attachment_450" align="aligncenter" width="300" caption="Buffers around major rivers"]<a href="http://duncanjg.wordpress.com/files/2008/07/frailesca7.png"><img class="size-medium wp-image-450" src="http://duncanjg.wordpress.com/files/2008/07/frailesca7.png?w=300" alt="Buffers around major rivers" width="300" height="210" /></a>[/wp_caption]
<p>It may also be useful to evaluate soil type (not shown) although the maps tend to be at a coarse scale.</p>
<p>Once pixels have been ranked according to aptitude and priority for restoration (the two factors may be inversely related in many cases) they may be aggregated to agricultural management units for further analysis of socio-economic factors.</p>
[wp_caption id="attachment_451" align="aligncenter" width="300" caption="A range of social economic parameters may be associated with agricultural management units (agebs)"]<a href="http://duncanjg.files.wordpress.com/2008/07/frailesca8.png"><img class="size-medium wp-image-451" src="http://duncanjg.wordpress.com/files/2008/07/frailesca8.png?w=300" alt="A range of social economic parameters may be associated with agricultural management units (agebs)" width="300" height="210" /></a>[/wp_caption]
]]></content:encoded>
</item>
<item>
<title><![CDATA[Do we see trees or forests?: Knowledge gaps ]]></title>
<link>http://duncanjg.wordpress.com/?p=436</link>
<pubDate>Mon, 07 Jul 2008 03:15:27 +0000</pubDate>
<dc:creator>Duncan Golicher</dc:creator>
<guid>http://duncanjg.wordpress.com/2008/07/06/do-we-see-trees-or-forests-knowledge-gaps/</guid>
<description><![CDATA[It would seem reasonable to assume that research aimed to fill a basic knowledge gap should receive ]]></description>
<content:encoded><![CDATA[<p>It would seem reasonable to assume that research aimed to fill a basic knowledge gap should receive more attention than projects aimed at evaluating complex untestable theory. However in the field of tropical forest ecology it not always clear that fundamental basic knowledge gaps are either being identified or filled quickly enough. An issue that has concerned me for many years is the persistent difficulty in accurately tracing and understanding the spatial distribution of tropical organisms, particularly trees and other plants.</p>
<p>Trees are immobile, long lived, highly visible elements of the tropical landscape. It would therefore seem reasonable to assume that we already know a great deal regarding their distribution. However trees form forests. Forests cause numerous logistical difficulties for field research.  Tropical forests can be hostile, disorienting, pathless environments. They also contain a complex set of natural resources. Illegal exploitation of some of these resources such as valuable timber or plants with interesting pharmaceutical properties (of various types) may obstruct scientific research. Many tropical forests have also provided refuge at times for members of radical political movements.</p>
<p style="text-align:left;">Tropical trees can be extremely difficult to identify to species. Flowers, fruits and leaves may be out of reach. Their taxonomy is complex and dynamic. Tropical families are unfamiliar to researchers trained in temperate zones. Many species have converged in terms of leaf shape and characteristics.</p>
<p>This has led to chronic ignorance of the distribution of tropical tree species. Only a small fraction of the total area covered by tropical forest of any description has been studied in any detail. Regional species lists rely on data from a few well known areas, but within any given region distribution patterns are poorly known. Many assumptions are made concerning the nature of anthropogenic influence on areas of forest. Some are justifiable, some tend to exaggerate human impact on naturally resilient forest ecosystems.</p>
<p>Given the poor state of our knowledge it is vitally important that the few reliable data sources that are available are used to their full capacity. However even the best global data sources can only provide a small part of the picture alone. Missouri Botanical Gardens (MOBOT) has one of the largest collections of tropical plant specimens of any herbarium. MOBOT has provided online access to most of this data. Yet even when the whole set of tropical tree collections with known coordinates from this source are mapped on to space large gaps are revealed in the empirically based knowledge they provide regarding tree diversity.</p>
<p>A PostGIS query can be used together with the graticule trick mentioned in the last post to map the density of collections within 0.1 degree (approximately 100 km2) grid squares in the MOBOT Vast data base. The query is provided as a model for counting incidences within grid squares. The data itself is stored locally and forms part of a larger set that we have collated over a period of several years.<br />
<span style="color:#000080;">CREATE TABLE meso.count with oids as<br />
SELECT g.ncollects as Ncollects, a.*  from</span></p>
<p><span style="color:#000080;">grat01 a,</span></p>
<p><span style="color:#000080;">(SELECT d.gid, count(c.id) as ncollects<br />
FROM meso.trees c, grat01 d<br />
WHERE c.the_geom &#38;&#38; d.the_geom<br />
AND contains(d.the_geom, c.the_geom)<br />
AND c.source like 'MOBOT%'<br />
group by d.gid) g</span></p>
<p><span style="color:#000080;">WHERE a.gid=g.gid;</span></p>
<p>If it is assumed that 100 collections per 100 km2 is a minimum needed to provide a reasonable picture of the distribution of tree species (there may be more than 400 species in each grid square in some regions) the map below shows that only a fraction of the area  of mesoamerica can be considered to be well enough typified by this data set to allow distribution patterns to be mapped through the data alone. This contrasts sharply with the floristic atlases available for most of Western Europe based on known occurrences.</p>
<p><a href="http://duncanjg.files.wordpress.com/2008/07/qgis6.png"><img class="aligncenter size-medium wp-image-438" src="http://duncanjg.wordpress.com/files/2008/07/qgis6.png?w=300" alt="" width="300" height="210" /></a></p>
<p>Even when the grid squares with less than 50 collections (far fewer than needed) are added to the map there are many completely unknown areas when this data source is taken alone. Where collections have been taken the density is generally below 5 per 100 km2. Direct empirical evidence regarding tree diversity hot spots is simply not available. Comparisons  between Chiapas, Yucatan, Belize and Costa Rica cannot be made from the data alone.</p>
[wp_caption id="attachment_439" align="aligncenter" width="300" caption="Light green 1-2, dark green 2-5, blue 5- 50, red &#62;50"]<a href="http://duncanjg.files.wordpress.com/2008/07/qgis7.png"><img class="size-medium wp-image-439" src="http://duncanjg.wordpress.com/files/2008/07/qgis7.png?w=300" alt="Light green 1-2, dark green 2-5, blue 5- 50, red &#62;50" width="300" height="210" /></a>[/wp_caption]
<p>In contrast to our poor knowledge regarding forest composition, our knowledge regarding the extent of both forests and deforestation is becoming ever more accurate and detailed as high resolution satelite imagery becomes available. It appears that we are looking at forests, but not seeing the trees.</p>
<p><a href="http://duncanjg.files.wordpress.com/2008/07/qgis81.png"><img class="aligncenter size-medium wp-image-442" src="http://duncanjg.wordpress.com/files/2008/07/qgis81.png?w=300" alt="" width="300" height="210" /></a></p>
]]></content:encoded>
</item>

</channel>
</rss>
