<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-17324237999166773</atom:id><lastBuildDate>Fri, 30 Aug 2024 16:29:00 +0000</lastBuildDate><category>Link of the day</category><category>Google Maps</category><category>Open-Source</category><category>Data Environmental</category><category>ERGO</category><category>R-Project</category><category>Data Disease</category><category>Data Europe</category><category>Data Publically Available</category><category>Neils World</category><category>ASP</category><category>ArcGIS</category><category>GDAL/OGR</category><category>GeoNetwork</category><category>Google Maps API</category><category>Ordnance Survey</category><category>PHP</category><category>Data Global</category><category>Distributed Computing</category><category>Django</category><category>Drupal</category><category>EDENext</category><category>Epidemiology</category><category>MySQL</category><category>Open Street Map (OSM)</category><category>Opportunities</category><category>PostgreSQL</category><category>Python</category><category>QGIS</category><category>VBscript</category><category>Web 2.0</category><category>Yahoo Maps</category><title>GISDataMonkey</title><description>Ramblings of a GIS Data Monkey...</description><link>http://gisdatamonkey.blogspot.com/</link><managingEditor>noreply@blogger.com (The Monkey)</managingEditor><generator>Blogger</generator><openSearch:totalResults>35</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-6622941795388403939</guid><pubDate>Thu, 21 Sep 2017 13:32:00 +0000</pubDate><atom:updated>2017-09-21T14:39:49.108+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Drupal</category><category domain="http://www.blogger.com/atom/ns#">PHP</category><title>Drupal 7.x Search and CSS feed bugs due to extra lines</title><description>I recently noticed that the automatic css feeds that Drupal generate and the site search tool were not working on my Drupal 7 site.&amp;nbsp; After a little digging courtesy of Google &lt;a href=&quot;https://www.drupal.org/node/175137&quot;&gt;this pretty old post&lt;/a&gt;&lt;a href=&quot;https://www.blogger.com/null&quot;&gt; on the Drupal community site&lt;/a&gt; helped me solve both problems at once.&lt;br /&gt;
&lt;br /&gt;
The search function was returning an error when I searched on any term.&amp;nbsp; While the CSS link would prompt me to save or open the file in firefox rather than render a CSS page automatically.&amp;nbsp; When checking the downloaded file you could see the first line in the file was blank followed by the expected xml tags and script befinning on line 2. &lt;br /&gt;
&lt;br /&gt;
Basically both bugs appear to be caused by blank lines before the opening or after  closing PHP tags (&lt;b&gt; and &lt;b&gt;?&amp;gt;&lt;/b&gt;) in the module files..&amp;nbsp; In fact as best practice developers are encouraged not to include the PHP ending tag in their module files as it is so easy to save a file with one or two blank lines at the end to the file which causes errors.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
A number of solutions and quick fixes are aoutlined in the linked post.&amp;nbsp; I basically dragged all my module files into my favourite text editor and visually checked for blank lines before the opening PHP tags.&amp;nbsp; Then continued to check visually that all the module files which did have closing PHP tags &quot;&lt;b&gt;?&amp;gt;&lt;/b&gt;&quot; did not have any trailing blank lines or spaces after the tag.&amp;nbsp; In my case I found only two modules with closing PHP tags and both had blank lines after the tags.&amp;nbsp; After deleting these the bugs were solved.&lt;br /&gt;
&lt;br /&gt;
To locate the module files which need to be checked they are found in the sites/all/modules/ directory.&amp;nbsp; Within each module folder check the file with the .module suffix for blank lines as described above.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description><link>http://gisdatamonkey.blogspot.com/2017/09/drupal-7x-search-and-css-feed-bugs-due.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-1758098652450190356</guid><pubDate>Wed, 12 Jun 2013 19:05:00 +0000</pubDate><atom:updated>2013-06-13T10:55:43.569+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Django</category><category domain="http://www.blogger.com/atom/ns#">Link of the day</category><category domain="http://www.blogger.com/atom/ns#">Open-Source</category><category domain="http://www.blogger.com/atom/ns#">Python</category><title>Django, Windows7, Virtualenv, TCC/LE</title><description>Today I have been Wrestling to set up a development environment for Django 1.5.1 on Windows7 using Virtual environment.&amp;nbsp; As normal in real life there were a number of complications such as:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;I have a number programs on my laptop which install and run different versions of Python (such as ArGIS and SPSS)&lt;/li&gt;
&lt;li&gt;I had previously installed an older version of Django in one of the python installs.&lt;/li&gt;
&lt;/ul&gt;
These complications were compounded by the fact &lt;a href=&quot;http://stackoverflow.com/q/4112749/1456645&quot;&gt;Virtualenv keeps loading global site packages on Windows as described here&lt;/a&gt;.&amp;nbsp; After a morning of searching google and stackoverflow and trying out different suggestions I found this very &lt;a href=&quot;http://djangonautlostinspace.wordpress.com/2012/04/16/django-and-windows/&quot;&gt;easy to follow guide by Jtiai&lt;/a&gt; which solved all my problems.&lt;br /&gt;
&lt;br /&gt;
The key section that solved my conflicting python issues under virtualenv was the following configuration of TCC/LE command shell. (I wonder if you can configure cmd.exe in a similar way?).&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
Under working directory create subdirectory &lt;i&gt;config&lt;/i&gt;. In this directory create startup file for TCC/LE called &lt;i&gt;tcstart.btm&lt;/i&gt; &lt;/blockquote&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;pre&gt;@echo off
rem Override system python binding to handle virtualenvironments
set .py;.pyc=python.exe&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
Now create (copy) TCC/LE shortcut on desktop and rename it appropriately. Open Properties for shortcut and add to &lt;b&gt;Target&lt;/b&gt; &lt;i&gt;“C:\django\config\tcstart.btm”&lt;/i&gt;. You probably want to set &lt;b&gt;Start in&lt;/b&gt; to something useful, like &lt;i&gt;C:\django&lt;/i&gt;&lt;/blockquote&gt;
For the record the environment I have now installed comprises of:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Python 2.7&lt;/li&gt;
&lt;li&gt;Django 1.5.1&lt;/li&gt;
&lt;li&gt;virtualenv 1.9.1 &lt;/li&gt;
&lt;li&gt;TCC LE 13.0&lt;/li&gt;
&lt;/ul&gt;
</description><link>http://gisdatamonkey.blogspot.com/2013/06/django-windows7-virtualenv-tccle.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-5847434399579662706</guid><pubDate>Tue, 30 Aug 2011 14:56:00 +0000</pubDate><atom:updated>2011-08-30T15:56:34.642+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">EDENext</category><category domain="http://www.blogger.com/atom/ns#">Google Maps</category><category domain="http://www.blogger.com/atom/ns#">Open Street Map (OSM)</category><category domain="http://www.blogger.com/atom/ns#">Open-Source</category><category domain="http://www.blogger.com/atom/ns#">QGIS</category><category domain="http://www.blogger.com/atom/ns#">Yahoo Maps</category><title>How to Add Google Maps (Bing, Yahoo and Open Street Map too!) as a background in QGIS In 10 Easy Steps</title><description>Last week I wrote a short how-to tutorial outlining how to add google map satellite imagery or map layers as a background in Opensource GIS software package QGIS.&amp;nbsp; Infact the OpenLayers Plugin allows you to add data from all the major online map players, &lt;a href=&quot;http://www.bing.com/maps/&quot;&gt;Bing Maps&lt;/a&gt;, &lt;a href=&quot;http://uk.maps.yahoo.com/&quot;&gt;Yahoo Maps&lt;/a&gt; and &lt;a href=&quot;http://www.openstreetmap.org/&quot;&gt;Open Street Map (OSM)&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
The guide was originally written for the members of the &lt;a href=&quot;http://www.edenext.eu/&quot;&gt;EDENext FP7 project&lt;/a&gt;, but is available to all, and downloadable from the &lt;a href=&quot;http://www.edenextdata.com/?q=content/resources&quot;&gt;EDENext Data Portal GIS Resources page&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
I hope it is useful, please leave any feedback in the comments.</description><link>http://gisdatamonkey.blogspot.com/2011/08/how-to-add-google-maps-bing-yahoo-and.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-221538435395817387</guid><pubDate>Tue, 21 Sep 2010 10:21:00 +0000</pubDate><atom:updated>2010-09-21T11:21:46.401+01:00</atom:updated><title>Delicious Links of the day...</title><description>&lt;style type=&quot;text/css&quot;&gt;
                          h1 a:hover {background-color:#888;color:#fff ! important;}                          div#emailbody table#itemcontentlist tr td div ul {                                         list-style-type:square;                                         padding-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div blockquote {                                 padding-left:6px;                                 border-left: 6px solid #dadada;                                 margin-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div li {                                 margin-bottom:1em;                                 margin-left:1em;                         }                           table#itemcontentlist tr td a:link, table#itemcontentlist tr td a:visited, table#itemcontentlist tr td a:active, ul#summarylist li a {                                 color:#FF9900;                                 font-weight:bold;                                 text-decoration:none;                         }                                 img {border:none;}                   
&lt;/style&gt; &lt;br /&gt;
&lt;div id=&quot;emailbody&quot; style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt 2em;&quot; xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;table style=&quot;border: 0pt none; margin: 0pt; padding: 0pt; width: 100%;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;  &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;table id=&quot;itemcontentlist&quot;&gt;&lt;tbody&gt;
&lt;tr xmlns=&quot;&quot;&gt; &lt;td style=&quot;line-height: 1.4em; margin-bottom: 0pt;&quot;&gt;&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/Ivyyhw6GjHg/?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;1&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;statconn&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted: 20 Sep 2010 09:21 AM PDT&lt;/div&gt;&lt;div style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;Powerful data analysis from inside your favorite application.  The DCOM application is a dependency for Spatial Ecologies Heospatial Modelling Environment&lt;img height=&quot;1&quot; src=&quot;http://feeds.feedburner.com/%7Er/gisdatamonkey/Delicious/%7E4/Ivyyhw6GjHg?utm_source=feedburner&amp;amp;utm_medium=email&quot; width=&quot;1&quot; /&gt;&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td style=&quot;line-height: 1.4em; margin-bottom: 0pt;&quot;&gt;&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/Hj5xDcO-rTw/index.htm?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;2&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;Geospatial Modelling Environment - SpatialEcology.Com&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted: 20 Sep 2010 08:56 AM PDT&lt;/div&gt;&lt;div style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;The replacement for the excelent Hawths Tools&lt;img height=&quot;1&quot; src=&quot;http://feeds.feedburner.com/%7Er/gisdatamonkey/Delicious/%7E4/Hj5xDcO-rTw?utm_source=feedburner&amp;amp;utm_medium=email&quot; width=&quot;1&quot; /&gt;&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;table id=&quot;footer&quot; style=&quot;border-top: 1px solid rgb(153, 153, 153); margin-top: 1.5em; padding-top: 4px; width: 100%;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: left;&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: right; vertical-align: top;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: left;&quot;&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;</description><link>http://gisdatamonkey.blogspot.com/2010/09/delicious-links-of-day.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-678296388542760210</guid><pubDate>Fri, 06 Aug 2010 08:30:00 +0000</pubDate><atom:updated>2010-08-06T09:30:36.024+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">MySQL</category><title>My favourite thing about MyISAM MySQL tables!</title><description>&lt;blockquote&gt;One important feature that distinguish  MyISAM from InnoDB is that  MyISAM tables are generally binary portable. If you need to move a table  from one MySQL server to the other, just copy the files from first  server to the second server and you are ready to go. In some instances  it’s a lot handier than using say mysqldump.&lt;/blockquote&gt;I found out my recent MYSQL backups were currupted... Only after our server had been compromised!&amp;nbsp; So I spent half a day reading up on how to try and recover data from an old MySQL&amp;nbsp; Data Folder.&amp;nbsp; Untill I stumbled across this quote hidden in one of the comments on this page: &lt;a href=&quot;http://www.sitepoint.com/blogs/2009/03/25/mysql-myisam-table-pros-con/&quot;&gt;MySQL: the Pros and Cons of MyISAM Tables.&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
So for MyISAM tables it is possible to copy the folder containing the database table files (by default found in your MYSQL data directory eg. &lt;i&gt;MySQL\MySQL Server 5.0\data\nameofschema&lt;/i&gt;) and paste it into the equivilent data folder of a different MtSQL installation.&amp;nbsp; of course this will work best if the installation is a similar version to the original.&lt;br /&gt;
&lt;br /&gt;
Very useful to know if like me your MySQL dumps were currupted or you are foolish enough not to back up your data with a sqldump in the first place.</description><link>http://gisdatamonkey.blogspot.com/2010/08/my-favourite-thing-about-myisam-mysql.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-5474343810125102894</guid><pubDate>Thu, 05 Aug 2010 21:15:00 +0000</pubDate><atom:updated>2010-08-05T22:37:14.902+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ArcGIS</category><category domain="http://www.blogger.com/atom/ns#">Data Environmental</category><category domain="http://www.blogger.com/atom/ns#">Data Europe</category><category domain="http://www.blogger.com/atom/ns#">Data Publically Available</category><category domain="http://www.blogger.com/atom/ns#">GDAL/OGR</category><category domain="http://www.blogger.com/atom/ns#">Open-Source</category><title>How to import a Mapinfo Interchange Format .MIF to a shapefile</title><description>I downloaded some species distributions from &lt;a href=&quot;http://www.agroatlas.ru/en/content/pests/&quot;&gt;AgroAtlas&lt;/a&gt; earlier which were in MapInfo MIF/MID format.&amp;nbsp; It had been years since I had to import this format to .shp to view in ESRI ArcGIS and it took a little digging to figure out how.&amp;nbsp; So I thought I would blog it so I would have it documented for next time.&lt;br /&gt;
&lt;br /&gt;
First of all I checked ArcGIS for a quick win, and was disapointed.&amp;nbsp; Apparently there are two options.&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;The first is to use the MIF to shapefile utility found in the ArcGIS8.x toolbar as &lt;a href=&quot;http://resources.arcgis.com/content/kbase?fa=articleShow&amp;amp;d=26823&quot;&gt;documented here&lt;/a&gt;.&amp;nbsp; However this didn&#39;t work for me.&amp;nbsp; I got an error stating &quot;Unable to finish conversion&quot; and the tool only created a .shp and a .shx, with no .dbf or .prj for that matter.&lt;/li&gt;
&lt;li&gt;The second ESRI method was to buy the &lt;b style=&quot;font-weight: normal;&quot;&gt;&lt;a href=&quot;http://www.esri.com/software/arcgis/extensions/datainteroperability/index.html&quot;&gt;ArcGIS Data Interoperability Extension&lt;/a&gt; which seemed a little xtreme just to check out a couple of small datasets.&lt;/b&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;b style=&quot;font-weight: normal;&quot;&gt;So I got onto google and found a third non-ESRI solution using the &lt;a href=&quot;http://www.gdal.org/ogr/&quot;&gt;GDAL/OGR Simple Feature Library&lt;/a&gt; in &lt;a href=&quot;http://fwtools.maptools.org/&quot;&gt;FWTools&lt;/a&gt;.&amp;nbsp; &lt;/b&gt;FWTools is a set of Open Source GIS binaries for windows or linux including the GDAL/OGR command line libraries.&amp;nbsp; FWTools is the easiest way to install the GDAL libraries onto windows and can be done via an installer .exe file &lt;a href=&quot;http://fwtools.maptools.org/&quot;&gt;downloadable here&lt;/a&gt;. Simply double click the exe file and follow the on screen installation instructions.&amp;nbsp; Once installed open up the FWTools Shell from either the start menu&amp;gt;programs or the desktop short cut then enter the following command:&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;
&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;ogr2ogr -f &quot;ESRI Shapefile&quot; c:\output-path-to-shapefile\mydata.shp c:\path-to-mif-mid-files\mydata.mif&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
That was the simple how-to example,ogr2ogr has many other parameters that can be specified &lt;a href=&quot;http://www.gdal.org/ogr2ogr.html&quot;&gt;click here for full ogr2ogr usage documentation. &lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span id=&quot;ctl00_cphMain_BodyContent&quot;&gt;Ogr supports multiple data formats including:  ESRI Shapefile, MapInfo Tab file, TIGER, s57, DGN, CSV, DBF, GML, KML,  Interlis, SQLite, ODBC, ESRI GeoDatabase (MDB format),  PostGIS/PostgreSQL, MySQL.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b style=&quot;font-weight: normal;&quot;&gt;Other references used in researching this article: &lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://osgeo-org.1803224.n2.nabble.com/Fwd-FWrools-OGR-utilities-mif-to-shape-conversion-ogr2ogr-not-recognizing-mif-file-td5313127.html&quot;&gt;&lt;b style=&quot;font-weight: normal;&quot;&gt;http://osgeo-org.1803224.n2.nabble.com/Fwd-FWrools-OGR-utilities-mif-to-shape-conversion-ogr2ogr-not-recognizing-mif-file-td5313127.html&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.blogger.com/goog_1074813652&quot;&gt;&lt;br /&gt;
&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.blogger.com/%20http://www.bostongis.com/PrinterFriendly.aspx?content_name=ogr_cheatsheet%20&quot;&gt;&lt;b style=&quot;font-weight: normal;&quot;&gt;http://www.bostongis.com/PrinterFriendly.aspx?content_name=ogr_cheatsheet &lt;/b&gt;&lt;/a&gt;</description><link>http://gisdatamonkey.blogspot.com/2010/08/how-to-import-mapinfo-interchange.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-8933058901590726583</guid><pubDate>Wed, 21 Jul 2010 07:59:00 +0000</pubDate><atom:updated>2010-07-21T08:59:02.724+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Google Maps</category><category domain="http://www.blogger.com/atom/ns#">Link of the day</category><category domain="http://www.blogger.com/atom/ns#">Neils World</category><title>Football banter through the medium of 3D Mapping</title><description>Some Aberdeen fans have been using Google Sketch-up to wind up rival fans in Scotland. By creating quality sketch-ups of scottish grounds with famous scorelines (favouring Aberdeen) posted on the stadium score boards and images of Aberdeen celebrations on the big screens.&lt;br /&gt;
&lt;h1 style=&quot;font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;&lt;b&gt;&lt;a href=&quot;http://news.stv.tv/scotland/187589-internet-pranksters-use-google-earth-to-wind-up-opposition-football-fans/&quot;&gt;Internet  pranksters use Google Earth to wind up opposition football  fans&lt;/a&gt;&lt;/b&gt;&lt;/b&gt;&lt;/span&gt;&amp;nbsp;&lt;/h1&gt;&lt;h1 style=&quot;font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Bringing football rivalry into the GIS arena.&amp;nbsp; I like it!&lt;/span&gt;&lt;/h1&gt;&lt;br /&gt;
&lt;h1 style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/b&gt;&lt;/h1&gt;</description><link>http://gisdatamonkey.blogspot.com/2010/07/football-banter-through-medium-of-3d.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-4891344794531766295</guid><pubDate>Thu, 01 Jul 2010 10:00:00 +0000</pubDate><atom:updated>2010-07-01T11:02:31.004+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Data Environmental</category><category domain="http://www.blogger.com/atom/ns#">Link of the day</category><category domain="http://www.blogger.com/atom/ns#">R-Project</category><title></title><description>&lt;style type=&quot;text/css&quot;&gt;
                          h1 a:hover {background-color:#888;color:#fff ! important;}                          div#emailbody table#itemcontentlist tr td div ul {                                         list-style-type:square;                                         padding-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div blockquote {                                 padding-left:6px;                                 border-left: 6px solid #dadada;                                 margin-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div li {                                 margin-bottom:1em;                                 margin-left:1em;                         }                           table#itemcontentlist tr td a:link, table#itemcontentlist tr td a:visited, table#itemcontentlist tr td a:active, ul#summarylist li a {                                 color:#FF9900;                                 font-weight:bold;                                 text-decoration:none;                         }                                 img {border:none;}                   
&lt;/style&gt; &lt;br /&gt;
&lt;div id=&quot;emailbody&quot; style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt 2em;&quot; xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;table style=&quot;border: 0pt none; margin: 0pt; padding: 0pt; width: 100%;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td style=&quot;vertical-align: top;&quot; width=&quot;99%&quot;&gt;&lt;h1 style=&quot;margin: 0pt; padding-bottom: 6px;&quot;&gt;&lt;a href=&quot;http://delicious.com/GISDataMonkey&quot; style=&quot;color: #888888; font-family: Arial,Helvetica,sans-serif; font-size: 22px; font-weight: normal; text-decoration: none;&quot; title=&quot;(http://delicious.com/GISDataMonkey)&quot;&gt;Delicious Links of the day...&lt;/a&gt; &lt;/h1&gt;&lt;/td&gt;&lt;td width=&quot;1%&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;hr style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0pt; padding: 0pt;&quot; /&gt;&lt;table id=&quot;itemcontentlist&quot;&gt;&lt;tbody&gt;
&lt;tr xmlns=&quot;&quot;&gt; &lt;td style=&quot;line-height: 1.4em; margin-bottom: 0pt;&quot;&gt;&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/DHIf96PtDoM/ForDevelopers.htm?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;1&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;DISCOMAP - For Developers&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted: 11 Jun 2010 12:01 AM PDT&lt;/div&gt;&lt;div style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;Environment Agency Spatial Data Portal Developer page.  They have been kind enough to provide some examples of the technology used within their applications&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/efLessIH6Tk/convertData.R?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;1&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;http://www.stat.cmu.edu/~hseltman/files/convertData.R&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted:  15 Apr 2010 03:56 AM PDT&lt;/div&gt;&lt;div style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;This function uses R to get all or several  datasets in some particular &quot;foreign&quot; data format (e.g., SPSS, SAS,  etc.), and then writes them back out as text files (or returns a  data.frame).&lt;/div&gt;&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;table id=&quot;footer&quot; style=&quot;border-top: 1px solid rgb(153, 153, 153); margin-top: 1.5em; padding-top: 4px; width: 100%;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/td&gt; &lt;td style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: right; vertical-align: top;&quot;&gt;&lt;br /&gt;
&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td colspan=&quot;2&quot; style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;</description><link>http://gisdatamonkey.blogspot.com/2010/07/h1-ahover-background-color888colorfff.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-3248092823154691484</guid><pubDate>Fri, 09 Apr 2010 09:55:00 +0000</pubDate><atom:updated>2010-07-01T10:56:55.998+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Link of the day</category><category domain="http://www.blogger.com/atom/ns#">Open-Source</category><category domain="http://www.blogger.com/atom/ns#">R-Project</category><title></title><description>&lt;style type=&quot;text/css&quot;&gt;
                          h1 a:hover {background-color:#888;color:#fff ! important;}                          div#emailbody table#itemcontentlist tr td div ul {                                         list-style-type:square;                                         padding-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div blockquote {                                 padding-left:6px;                                 border-left: 6px solid #dadada;                                 margin-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div li {                                 margin-bottom:1em;                                 margin-left:1em;                         }                           table#itemcontentlist tr td a:link, table#itemcontentlist tr td a:visited, table#itemcontentlist tr td a:active, ul#summarylist li a {                                 color:#FF9900;                                 font-weight:bold;                                 text-decoration:none;                         }                                 img {border:none;}                   
&lt;/style&gt; &lt;br /&gt;
&lt;div id=&quot;emailbody&quot; style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt 2em;&quot; xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;table style=&quot;border: 0pt none; margin: 0pt; padding: 0pt; width: 100%;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td style=&quot;vertical-align: top;&quot; width=&quot;99%&quot;&gt;&lt;h1 style=&quot;margin: 0pt; padding-bottom: 6px;&quot;&gt;&lt;a href=&quot;http://delicious.com/GISDataMonkey&quot; style=&quot;color: #888888; font-family: Arial,Helvetica,sans-serif; font-size: 22px; font-weight: normal; text-decoration: none;&quot; title=&quot;(http://delicious.com/GISDataMonkey)&quot;&gt;Delicious Links of the day...&lt;/a&gt; &lt;br /&gt;
&lt;a href=&quot;http://fusion.google.com/add?source=atgs&amp;amp;feedurl=http://feeds.feedburner.com/gisdatamonkey/Delicious&quot;&gt;  &lt;/a&gt; &lt;/h1&gt;&lt;/td&gt; &lt;td width=&quot;1%&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;hr style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0pt; padding: 0pt;&quot; /&gt;&lt;table id=&quot;itemcontentlist&quot;&gt;&lt;tbody&gt;
&lt;tr xmlns=&quot;&quot;&gt; &lt;td style=&quot;line-height: 1.4em; margin-bottom: 0pt;&quot;&gt;&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/dShWTZ1m9nY/?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;1&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;R-Sessions&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted: 08 Apr 2010 04:12 AM PDT&lt;/div&gt;&lt;div style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;Useful articles on a variety of different R-Project topics, from How-tos to, performance, software and book reviews.&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td style=&quot;line-height: 1.4em; margin-bottom: 0pt;&quot;&gt;&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/hXMqJGQUJ68/?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;2&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;R-Sessions 10: Conditionals&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted: 08 Apr 2010 04:10 AM PDT&lt;/div&gt;&lt;div style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;Simple Conditional examples for R-project Statistics&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;tr xmlns=&quot;&quot;&gt; &lt;td style=&quot;line-height: 1.4em; margin-bottom: 0pt;&quot;&gt;&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/2n5XIrYgU3k/msg14189.html?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;1&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;[R] looping through data frames in a workspace&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted: 07 Apr 2010 08:49 AM PDT&lt;/div&gt;&lt;div style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;Off a message board.&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;table id=&quot;footer&quot; style=&quot;border-top: 1px solid rgb(153, 153, 153); margin-top: 1.5em; padding-top: 4px; width: 100%;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;  &lt;td style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: right; vertical-align: top;&quot;&gt;&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;</description><link>http://gisdatamonkey.blogspot.com/2010/04/h1-ahover-background-color888colorfff_09.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-8658281343799606115</guid><pubDate>Tue, 06 Apr 2010 14:41:00 +0000</pubDate><atom:updated>2010-04-06T15:41:13.097+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Link of the day</category><category domain="http://www.blogger.com/atom/ns#">Open-Source</category><category domain="http://www.blogger.com/atom/ns#">R-Project</category><title></title><description>&lt;style type=&quot;text/css&quot;&gt;
                          h1 a:hover {background-color:#888;color:#fff ! important;}                          div#emailbody table#itemcontentlist tr td div ul {                                         list-style-type:square;                                         padding-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div blockquote {                                 padding-left:6px;                                 border-left: 6px solid #dadada;                                 margin-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div li {                                 margin-bottom:1em;                                 margin-left:1em;                         }                           table#itemcontentlist tr td a:link, table#itemcontentlist tr td a:visited, table#itemcontentlist tr td a:active, ul#summarylist li a {                                 color:#FF9900;                                 font-weight:bold;                                 text-decoration:none;                         }                                 img {border:none;}                   
&lt;/style&gt; &lt;br /&gt;
&lt;div id=&quot;emailbody&quot; style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt 2em;&quot; xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;table style=&quot;border: 0pt none; margin: 0pt; padding: 0pt; width: 100%;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td style=&quot;vertical-align: top;&quot; width=&quot;99%&quot;&gt;&lt;h1 style=&quot;margin: 0pt; padding-bottom: 6px;&quot;&gt;&lt;a href=&quot;http://delicious.com/GISDataMonkey&quot; style=&quot;color: #888888; font-family: Arial,Helvetica,sans-serif; font-size: 22px; font-weight: normal; text-decoration: none;&quot; title=&quot;(http://delicious.com/GISDataMonkey)&quot;&gt;Delicious Links of the day...&lt;/a&gt; &lt;br /&gt;
&lt;a href=&quot;http://fusion.google.com/add?source=atgs&amp;amp;feedurl=http://feeds.feedburner.com/gisdatamonkey/Delicious&quot;&gt;  &lt;/a&gt; &lt;/h1&gt;&lt;/td&gt; &lt;td width=&quot;1%&quot;&gt;&lt;/td&gt;&lt;/tr&gt;

&lt;/tbody&gt;&lt;/table&gt;&lt;hr style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0pt; padding: 0pt;&quot; /&gt;&lt;table id=&quot;itemcontentlist&quot;&gt;&lt;tbody&gt;
&lt;tr xmlns=&quot;&quot;&gt; &lt;td style=&quot;line-height: 1.4em; margin-bottom: 0pt;&quot;&gt;&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/ieEtYLA_roM/R-data.html?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;1&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;R Data Import/Export&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted: 01 Apr 2010 01:44 AM PDT&lt;/div&gt;&lt;div style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;How to import and export different data formats with R-project Statistics&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;table id=&quot;footer&quot; style=&quot;border-top: 1px solid rgb(153, 153, 153); margin-top: 1.5em; padding-top: 4px; width: 100%;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;  &lt;td style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: right; vertical-align: top;&quot;&gt;&lt;br /&gt;
&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td colspan=&quot;2&quot; style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;</description><link>http://gisdatamonkey.blogspot.com/2010/04/h1-ahover-background-color888colorfff.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-2363204109614494423</guid><pubDate>Fri, 12 Mar 2010 19:57:00 +0000</pubDate><atom:updated>2010-03-12T19:58:28.182+00:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ASP</category><category domain="http://www.blogger.com/atom/ns#">Link of the day</category><title></title><description>&lt;style type=&quot;text/css&quot;&gt;
                          h1 a:hover {background-color:#888;color:#fff ! important;}                          div#emailbody table#itemcontentlist tr td div ul {                                         list-style-type:square;                                         padding-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div blockquote {                                 padding-left:6px;                                 border-left: 6px solid #dadada;                                 margin-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div li {                                 margin-bottom:1em;                                 margin-left:1em;                         }                           table#itemcontentlist tr td a:link, table#itemcontentlist tr td a:visited, table#itemcontentlist tr td a:active, ul#summarylist li a {                                 color:#FF9900;                                 font-weight:bold;                                 text-decoration:none;                         }                                 img {border:none;}                   
&lt;/style&gt; &lt;br /&gt;
&lt;div id=&quot;emailbody&quot; style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt 2em;&quot; xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;table style=&quot;border: 0pt none; margin: 0pt; padding: 0pt; width: 100%;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td style=&quot;vertical-align: top;&quot; width=&quot;99%&quot;&gt;&lt;h1 style=&quot;margin: 0pt; padding-bottom: 6px;&quot;&gt;&lt;a href=&quot;http://delicious.com/GISDataMonkey&quot; style=&quot;color: #888888; font-family: Arial,Helvetica,sans-serif; font-size: 22px; font-weight: normal; text-decoration: none;&quot; title=&quot;(http://delicious.com/GISDataMonkey)&quot;&gt;Delicious Links of the day...&lt;/a&gt; &lt;br /&gt;
&lt;a href=&quot;http://fusion.google.com/add?source=atgs&amp;amp;feedurl=http://feeds.feedburner.com/gisdatamonkey/Delicious&quot;&gt; &lt;/a&gt;&lt;/h1&gt;&lt;/td&gt;&lt;td width=&quot;1%&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;hr style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0pt; padding: 0pt;&quot; /&gt;&lt;table id=&quot;itemcontentlist&quot;&gt;&lt;tbody&gt;
&lt;tr xmlns=&quot;&quot;&gt; &lt;td style=&quot;line-height: 1.4em; margin-bottom: 0pt;&quot;&gt;&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/s-QD6s-mKRw/ms677209%28VS.85%29.aspx?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;1&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;CreateParameter Method (ADO)&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted: 08 Mar 2010 03:09 AM PST&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;table id=&quot;footer&quot; style=&quot;border-top: 1px solid rgb(153, 153, 153); margin-top: 1.5em; padding-top: 4px; width: 100%;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: left;&quot;&gt;&lt;/td&gt; &lt;td style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: right; vertical-align: top;&quot;&gt;&lt;br /&gt;
&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td colspan=&quot;2&quot; style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;</description><link>http://gisdatamonkey.blogspot.com/2010/03/h1-ahover-background-color888colorfff_12.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-4338829298991061815</guid><pubDate>Fri, 05 Mar 2010 09:23:00 +0000</pubDate><atom:updated>2010-03-05T09:27:02.870+00:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Epidemiology</category><category domain="http://www.blogger.com/atom/ns#">ERGO</category><category domain="http://www.blogger.com/atom/ns#">Link of the day</category><category domain="http://www.blogger.com/atom/ns#">Opportunities</category><title></title><description>&lt;style type=&quot;text/css&quot;&gt;
                          h1 a:hover {background-color:#888;color:#fff ! important;}                          div#emailbody table#itemcontentlist tr td div ul {                                         list-style-type:square;                                         padding-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div blockquote {                                 padding-left:6px;                                 border-left: 6px solid #dadada;                                 margin-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div li {                                 margin-bottom:1em;                                 margin-left:1em;                         }                           table#itemcontentlist tr td a:link, table#itemcontentlist tr td a:visited, table#itemcontentlist tr td a:active, ul#summarylist li a {                                 color:#FF9900;                                 font-weight:bold;                                 text-decoration:none;                         }                                 img {border:none;}                   
&lt;/style&gt; &lt;br /&gt;
&lt;div id=&quot;emailbody&quot; style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt 2em;&quot; xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;table style=&quot;border: 0pt none; margin: 0pt; padding: 0pt; width: 100%;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td style=&quot;vertical-align: top;&quot; width=&quot;99%&quot;&gt;&lt;h1 style=&quot;margin: 0pt; padding-bottom: 6px;&quot;&gt;&lt;a href=&quot;http://delicious.com/GISDataMonkey&quot; style=&quot;color: #888888; font-family: Arial,Helvetica,sans-serif; font-size: 22px; font-weight: normal; text-decoration: none;&quot; title=&quot;(http://delicious.com/GISDataMonkey)&quot;&gt;Delicious Links of the day...&lt;/a&gt; &lt;br /&gt;
&lt;a href=&quot;http://fusion.google.com/add?source=atgs&amp;amp;feedurl=http://feeds.feedburner.com/gisdatamonkey/Delicious&quot;&gt;&lt;/a&gt;&lt;/h1&gt;&lt;/td&gt; &lt;td width=&quot;1%&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;hr style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0pt; padding: 0pt;&quot; /&gt;&lt;ul id=&quot;summarylist&quot; style=&quot;clear: both; padding: 0pt 0pt 0pt 1.2em; width: 100%;&quot;&gt;&lt;li&gt; &lt;a href=&quot;http://www.blogger.com/post-edit.g?blogID=17324237999166773&amp;amp;postID=4338829298991061815#1&quot;&gt;Avia-GIS&lt;/a&gt; &lt;/li&gt;
&lt;li&gt; &lt;a href=&quot;http://www.blogger.com/post-edit.g?blogID=17324237999166773&amp;amp;postID=4338829298991061815#2&quot;&gt;Euro-AEGIS&lt;/a&gt; &lt;/li&gt;
&lt;li&gt; &lt;a href=&quot;http://www.blogger.com/post-edit.g?blogID=17324237999166773&amp;amp;postID=4338829298991061815#3&quot;&gt;Earthworks-jobs.com - Jobs in Oil, Energy, Gas, Geoscience, Geosciences ...&lt;/a&gt; &lt;/li&gt;
&lt;li&gt; &lt;a href=&quot;http://www.blogger.com/post-edit.g?blogID=17324237999166773&amp;amp;postID=4338829298991061815#4&quot;&gt;Infectious Disease Research Network (IDRN)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt; &lt;a href=&quot;http://www.blogger.com/post-edit.g?blogID=17324237999166773&amp;amp;postID=4338829298991061815#5&quot;&gt;ArcGIS Desktop 9.3 - Creating a new geodatabase&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt;&lt;table id=&quot;itemcontentlist&quot;&gt;&lt;tbody&gt;
&lt;tr xmlns=&quot;&quot;&gt; &lt;td style=&quot;line-height: 1.4em; margin-bottom: 0pt;&quot;&gt;&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/KYxlnT5mV3A/?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;1&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;Avia-GIS&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted: 04 Mar 2010 06:58 AM PST&lt;/div&gt;&lt;div style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;Avia-GIS &quot;Agriculture and Veterinary Information and Analysis&quot; is a Belgian consultancy company founded in 2001 that specializes in the collection, processing and analysis of spatial information, and the development of space-time information systems.&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td style=&quot;line-height: 1.4em; margin-bottom: 0pt;&quot;&gt;&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/FEZdtESEXLo/?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;2&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;Euro-AEGIS&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted: 04 Mar 2010 06:56 AM PST&lt;/div&gt;&lt;div style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;Euro-AEGIS, European Agro-Environmental health GIS associates EEIG, is a European Economical Interest Grouping (EEIG) founded by Avia-GIS (Zoersel, Belgium) and ERGO (Oxford, UK) in 2004.&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td style=&quot;line-height: 1.4em; margin-bottom: 0pt;&quot;&gt;&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/vg2qrYI3QY8/?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;3&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;Earthworks-jobs.com - Jobs in Oil, Energy, Gas, Geoscience, Geosciences ...&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted: 04 Mar 2010 06:47 AM PST&lt;/div&gt;&lt;div style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;In my opinion the best website for Environmental science (especially GIS) related jobs.&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td style=&quot;line-height: 1.4em; margin-bottom: 0pt;&quot;&gt;&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/ZBWZVP8KU4c/index.php?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;4&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;Infectious Disease Research Network (IDRN)&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted: 04 Mar 2010 06:43 AM PST&lt;/div&gt;&lt;div style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;Our focus is on UK-based research, although we welcome international members and collaborators. - Also has an excellent Job page if you are looking for opportunities in this field.&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td style=&quot;line-height: 1.4em; margin-bottom: 0pt;&quot;&gt;&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/wWozpNRaCi0/index.cfm?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;5&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;ArcGIS Desktop 9.3 - Creating a new geodatabase&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted: 04 Mar 2010 03:04 AM PST&lt;/div&gt;&lt;div style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;ArcGIS Desktop 9.3 Help - Creating a new geodatabase.  Official documentation on creating Personal, file and ArcSDE geodatabases.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;table id=&quot;footer&quot; style=&quot;border-top: 1px solid rgb(153, 153, 153); margin-top: 1.5em; padding-top: 4px; width: 100%;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: right; vertical-align: top;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: left;&quot;&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;</description><link>http://gisdatamonkey.blogspot.com/2010/03/h1-ahover-background-color888colorfff.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-6901386212043553254</guid><pubDate>Thu, 25 Feb 2010 07:19:00 +0000</pubDate><atom:updated>2010-02-25T07:27:06.757+00:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Link of the day</category><category domain="http://www.blogger.com/atom/ns#">Ordnance Survey</category><title></title><description>&lt;style type=&quot;text/css&quot;&gt;
                          h1 a:hover {background-color:#888;color:#fff ! important;}                          div#emailbody table#itemcontentlist tr td div ul {                                         list-style-type:square;                                         padding-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div blockquote {                                 padding-left:6px;                                 border-left: 6px solid #dadada;                                 margin-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div li {                                 margin-bottom:1em;                                 margin-left:1em;                         }                           table#itemcontentlist tr td a:link, table#itemcontentlist tr td a:visited, table#itemcontentlist tr td a:active, ul#summarylist li a {                                 color:#FF9900;                                 font-weight:bold;                                 text-decoration:none;                         }                                 img {border:none;}                   
&lt;/style&gt; &lt;br /&gt;
&lt;div id=&quot;emailbody&quot; style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt 2em;&quot; xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;table style=&quot;border: 0pt none; margin: 0pt; padding: 0pt; width: 100%;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td style=&quot;vertical-align: top;&quot; width=&quot;99%&quot;&gt;&lt;h1 style=&quot;margin: 0pt; padding-bottom: 6px;&quot;&gt;&lt;a href=&quot;http://delicious.com/GISDataMonkey&quot; style=&quot;color: #888888; font-family: Arial,Helvetica,sans-serif; font-size: 22px; font-weight: normal; text-decoration: none;&quot; title=&quot;(http://delicious.com/GISDataMonkey)&quot;&gt;Delicious Links of the day...&lt;/a&gt; &lt;br /&gt;
&lt;/h1&gt;&lt;/td&gt; &lt;td width=&quot;1%&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;hr style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0pt; padding: 0pt;&quot; /&gt;&lt;table id=&quot;itemcontentlist&quot;&gt;&lt;tbody&gt;
&lt;tr xmlns=&quot;&quot;&gt; &lt;td style=&quot;line-height: 1.4em; margin-bottom: 0pt;&quot;&gt;&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/w5m5kYyivic/nghelp1.html?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;1&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;Interactive Guide to the National Grid&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted: 23 Feb 2010 01:06 AM PST&lt;/div&gt;&lt;div style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;Ordnance Survey Guide to the National grid with a 2-side PDF guide, including the Alpha-numeric grid map with numbers.&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/6EedKscplCk/Web_colors?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;1&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;Web colors - Wikipedia, the free encyclopedia&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted:  22 Feb 2010 03:48 AM PST&lt;/div&gt;&lt;div style=&quot;color: #ff9900; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;A Selection of W=web colours that can be utilised  for palettes in web GIS applications such as ArcIMS and Mapserver.&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;table id=&quot;footer&quot; style=&quot;border-top: 1px solid rgb(153, 153, 153); margin-top: 1.5em; padding-top: 4px; width: 100%;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: right; vertical-align: top;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;color: #333333; font-family: Helvetica,Arial,Sans-Serif; font-size: 11px; margin: 0pt 6px 1.2em 0pt; text-align: left;&quot;&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;</description><link>http://gisdatamonkey.blogspot.com/2010/02/h1-ahover-background-color888colorfff.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-8854107406705399618</guid><pubDate>Mon, 22 Feb 2010 09:38:00 +0000</pubDate><atom:updated>2010-02-22T09:41:32.209+00:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ASP</category><category domain="http://www.blogger.com/atom/ns#">Link of the day</category><category domain="http://www.blogger.com/atom/ns#">VBscript</category><title>Delicious Link: FormatPercent Function - VBScript</title><description>&lt;style type=&quot;text/css&quot;&gt;
                          h1 a:hover {background-color:#888;color:#fff ! important;}                          div#emailbody table#itemcontentlist tr td div ul {                                         list-style-type:square;                                         padding-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div blockquote {                                 padding-left:6px;                                 border-left: 6px solid #dadada;                                 margin-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div li {                                 margin-bottom:1em;                                 margin-left:1em;                         }                           table#itemcontentlist tr td a:link, table#itemcontentlist tr td a:visited, table#itemcontentlist tr td a:active, ul#summarylist li a {                                 color:#8CDFFF;                                 font-weight:bold;                                 text-decoration:none;                         }                                 img {border:none;}                   
&lt;/style&gt; &lt;br /&gt;
&lt;div id=&quot;emailbody&quot; style=&quot;color: yellow; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt 2em;&quot; xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;table id=&quot;itemcontentlist&quot;&gt;&lt;tbody&gt;
&lt;tr xmlns=&quot;&quot;&gt; &lt;td style=&quot;line-height: 1.4em; margin-bottom: 0pt;&quot;&gt;&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/1lvl09-bKXo/h943xb4h%28VS.85%29.aspx?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;1&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;FormatPercent Function - VBScript&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted: 21 Feb 2010 06:13 AM PST&lt;/div&gt;&lt;div style=&quot;color: yellow; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;VBScript format percent function&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;</description><link>http://gisdatamonkey.blogspot.com/2010/02/delicious-link-formatpercent-function.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-6942340310196991417</guid><pubDate>Sun, 21 Feb 2010 14:16:00 +0000</pubDate><atom:updated>2010-02-22T09:49:35.528+00:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Ordnance Survey</category><title></title><description>&lt;div id=&quot;emailbody&quot; style=&quot;color: yellow; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt 2em;&quot; xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;table id=&quot;itemcontentlist&quot;&gt;&lt;tbody&gt;
&lt;tr xmlns=&quot;&quot;&gt;&lt;td style=&quot;line-height: 1.4em; margin-bottom: 0pt;&quot;&gt;&lt;div style=&quot;margin: 1em 0pt 3px;&quot;&gt;&lt;a href=&quot;http://feedproxy.google.com/%7Er/gisdatamonkey/Delicious/%7E3/8vq_OSA1dyM/British_national_grid_reference_system?utm_source=feedburner&amp;amp;utm_medium=email&quot; name=&quot;1&quot; style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 18px;&quot;&gt;British national grid reference system - Wikipedia, the free encyclopedia&lt;/a&gt; &lt;/div&gt;&lt;div style=&quot;color: #555555; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 9px 0pt 3px;&quot;&gt;Posted: 19 Feb 2010 07:06 AM PST&lt;/div&gt;&lt;div style=&quot;color: yellow; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 140%; margin: 0pt;&quot;&gt;Useful GB Ordnance Survey Alpha-numeric grid location map and description.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;</description><link>http://gisdatamonkey.blogspot.com/2010/02/delicious-link-british-national-grid.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-8654860363735744187</guid><pubDate>Thu, 18 Feb 2010 08:09:00 +0000</pubDate><atom:updated>2010-02-18T08:41:01.026+00:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ArcGIS</category><category domain="http://www.blogger.com/atom/ns#">Link of the day</category><title>Delicious Links Of the Day</title><description>&lt;div style=&quot;color: white; font-family: inherit;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;http://webhelp.esri.com/arcgisdesktop/9.3/index.cfm?TopicName=Delete_Raster_Catalog_items_%28data_management%29&quot;&gt;Delete Raster Catalog Items (Data Management) - ArcGIS Desktop 9.3 help&lt;/a&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;
&lt;/span&gt; &lt;span style=&quot;color: yellow; font-size: small;&quot;&gt;&lt;span style=&quot;font-family: inherit;&quot;&gt;Deletes all raster datasets contained in a raster catalog. - Or a subset of items if used within ArcMap with a selection.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;span style=&quot;color: cyan; font-family: inherit; font-size: large;&quot;&gt;&lt;a href=&quot;http://rick.cogley.info/blog/index.php?id=1112112513525533382&quot;&gt;How to publish your Delicious bookmarks on Blogger curtesy of Blog:Cogley&lt;/a&gt;&lt;/span&gt;</description><link>http://gisdatamonkey.blogspot.com/2010/02/delicious-link-delete-raster-catalog.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-7945479270346163702</guid><pubDate>Tue, 02 Feb 2010 08:09:00 +0000</pubDate><atom:updated>2010-02-02T08:10:55.869+00:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Data Environmental</category><category domain="http://www.blogger.com/atom/ns#">Data Publically Available</category><category domain="http://www.blogger.com/atom/ns#">ERGO</category><category domain="http://www.blogger.com/atom/ns#">Link of the day</category><title>Launch of the IGAD Livestock Information Portal</title><description>The IGAD LPI (Livestock Policy Initiative) team have recently re-launched the &lt;a href=&quot;http://www.igad-data.org/&quot;&gt;www.igad-data.org&lt;/a&gt; site as the IGAD Livestock Information Portal.&amp;nbsp; As well as continuing to provide the most comprehensive GIS database currently available for the IGAD region.&amp;nbsp; It is now also a key resource of Livestock Policy documents, updated by contacts on the ground in each of the seven member countries.&lt;br /&gt;
&lt;a href=&quot;http://www.blogger.com/goog_1265097173229&quot;&gt;&lt;br /&gt;
&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://en.wikipedia.org/wiki/Intergovernmental_Authority_on_Development&quot;&gt;IGAD is the Intergovernmental Authority on Development&lt;/a&gt;, a seven-country regional development organization in East Africa. Its headquarters are located in Djibouti City.&amp;nbsp; The member countries include Djibouti, Eritrea, Ethiopia, Kenya, Somalia, Sudan and Uganda.&lt;br /&gt;
&lt;br /&gt;
The &lt;a href=&quot;http://www.igad-lpi.org/&quot;&gt;IGAD Livestock Policy Initiative&lt;/a&gt; is a project implemented by IGAD through the UN FAO (Food and Agricultural Organisation) with the financial support of the European Commission.</description><link>http://gisdatamonkey.blogspot.com/2010/02/launch-of-igad-livestock-information.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-5831408497778451061</guid><pubDate>Tue, 02 Feb 2010 07:50:00 +0000</pubDate><atom:updated>2010-02-02T07:51:46.695+00:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Link of the day</category><title>GISDataMonkey is now on Delicious</title><description>I have started adding my bookmarks to Yahoos social bookmarking site Delicious.&amp;nbsp; So check out my internet and &lt;a href=&quot;http://delicious.com/network?add=GISDataMonkey&quot;&gt;add me to your own Delicious Network&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://delicious.com/GISDataMonkey%20&quot;&gt;http://delicious.com/GISDataMonkey &lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
You will find bookmarks relating to a wide variety of topics including GIS, programming, statistics, disease and epidemiology and many more.&amp;nbsp; For a taster check out my Delicious &lt;a href=&quot;http://en.wikipedia.org/wiki/Tag_cloud&quot;&gt;tag cloud&lt;/a&gt; which I have added to the bottom of the right-hand column of this blog.&lt;br /&gt;
&lt;br /&gt;
Enjoy!</description><link>http://gisdatamonkey.blogspot.com/2010/02/gisdatamonkey-is-now-on-delicious.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-5795637578278789332</guid><pubDate>Tue, 21 Jul 2009 09:07:00 +0000</pubDate><atom:updated>2009-07-21T10:14:43.347+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Data Disease</category><category domain="http://www.blogger.com/atom/ns#">Data Environmental</category><category domain="http://www.blogger.com/atom/ns#">Data Europe</category><category domain="http://www.blogger.com/atom/ns#">ERGO</category><title>INTERNATIONAL CONFERENCE EDEN 2010 - Emerging Diseases in a changing European eNvironment</title><description>&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;The end of a project I have been contributing to over the last 3+ years culminates in the following conference in Montpellier next year.  A European funded multi-disciplinary research project co-ordinated over 50+ institutions accross Europe and beyond.  It has done some exciting research into the understanding anf spatial modelling of vector-borne disease...&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;&quot; align=&quot;center&quot;&gt;&lt;b&gt;&lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;INTERNATIONAL CONFERENCE&lt;br /&gt;EDEN 2010&lt;/span&gt;&lt;br /&gt;(Emerging Diseases in a changing European eNvironment)&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt; &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt;&lt;b&gt;10-11-12th May 2010&lt;br /&gt;Montpellier, France&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt;&lt;b&gt;CALL FOR ABSTRACTS&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt;&lt;br /&gt;From 2004 to 2010, the EDEN  project (&lt;a rel=&quot;nofollow&quot; class=&quot;moz-txt-link-freetext&quot; target=&quot;_blank&quot; href=&quot;http://www.eden-fp6project.net/&quot;&gt;http://www.eden-fp6project.net/&lt;/a&gt;) has operated in 24 countries with 49 partner institutions and 80 scientific teams. This represents more than 200 research years of work on the effects of environmental changes on the emergence of vector-borne diseases in  Europe .&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt;  &lt;/span&gt; &lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt;EDEN&lt;/span&gt;&lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt; is organising an &lt;b&gt;International Conference in Montpellier , 10-12 May 2010&lt;/b&gt;, to present its most exciting scientific results to the international community, and to stimulate debates with prominent world scientists in this critical area.&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt;  &lt;b&gt;To ensure a wider debate the conference is not restricted to contributions from EDEN partners only but is opened to any interested scientist or research team working on similar topics in Europe or at its fringes.&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt;   The conference will cover the following groups of vectors and vector-borne diseases:&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt;- Mosquitoes and mosquito-borne diseases, including arboviruses (e.g. West Nile Virus, Rift Valley Fever) and malaria,&lt;br /&gt;- Ticks and tick-borne diseases,&lt;br /&gt;- Rodents and rodent-borne diseases,&lt;br /&gt;- Sandflies and sandfly-borne diseases.&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt;   The content of poster and oral communications presented during the conference should focus on:&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt;- The identification of high-risk ecosystems for the emergence of vector-borne diseases,&lt;br /&gt;- Biological, ecological and epidemiological processes involved in the emergence of vector-borne diseases, and their modelling,&lt;br /&gt;- Applications for improved vector or disease monitoring, and disease information systems.&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt;Registration will officially begin from 30th September 2009, but &lt;b&gt;advance submissions of proposed talks, or posters, are welcome from now on&lt;/b&gt;.&lt;span style=&quot;&quot;&gt;  &lt;/span&gt;The EDEN Steering Committee will take the final decision on which talks and posters will be included in the final programme.&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt; More information on the conference is available at &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://international-conference2010.eden-fp6project.net/&quot;&gt;http://international-conference2010.eden-fp6project.net/&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot; style=&quot;&quot;&gt;&lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt;   We would be grateful if you could advertise this conference widely.&lt;/span&gt;&lt;/p&gt;  &lt;span style=&quot;&quot; lang=&quot;EN-GB&quot;&gt;  The EDEN coordinator&lt;/span&gt;</description><link>http://gisdatamonkey.blogspot.com/2009/07/international-conference-eden-2010.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-4496526784403562118</guid><pubDate>Thu, 29 Jan 2009 16:20:00 +0000</pubDate><atom:updated>2009-01-29T16:24:49.043+00:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Link of the day</category><title>Links of the day</title><description>&lt;a href=&quot;http://sixrevisions.com/tools/internet_explorer_extensions_addons_web_developers/&quot;&gt;IE web developer addons&lt;/a&gt; reccomendations by sixrevisions.com&lt;br /&gt;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.theukwebdesigncompany.com/articles/entity-escape-characters.php&quot;&gt;HTML Escape Characters: Complete List&lt;/a&gt; from www.theukwebdesigncompany.com</description><link>http://gisdatamonkey.blogspot.com/2009/01/links-of-day.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-3947059634371497311</guid><pubDate>Fri, 09 Jan 2009 15:44:00 +0000</pubDate><atom:updated>2009-01-09T16:02:20.178+00:00</atom:updated><title>Dell Latitude Bluetooth Solution after installing XP service pack 3</title><description>&lt;span style=&quot;font-weight: bold;&quot;&gt;Problem: &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;After installing Windows XP service pack 3 my Dell Latitude D810 lost its Bluetooth .  I couldn&#39;t switch Bluetooth on using Function F2 (The blue light didn&#39;t go on).  Since I couldn&#39;t switch it on I couldn&#39;t use any bluetooth devices.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Fix:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I followed XBoxBrians solution from &lt;a href=&quot;http://en.community.dell.com/forums/t/19011073.aspx?PageIndex=2&quot;&gt;this thread&lt;/a&gt;.  Basically downloaded the &lt;a href=&quot;http://www.csd.toshiba.com/cgi-bin/tais/su/su_sc_dtlViewDL.jsp?soid=1816237&amp;amp;moid=null&amp;amp;rpn=&amp;amp;BV_SessionID=@@@@0731062391.1211379261@@@@&amp;amp;BV_EngineID=cccgadeeeghlhdecgfkceghdgngdgnn.0&amp;amp;ct=DL&amp;amp;all_docs=false&quot;&gt;Toshiba Bluetooth stack from here&lt;/a&gt;.  I installed it (it firstly uninstalls the existing stack).  This updated the bluetooth software and drivers and seemed to fix my problem.  I can&#39;t promise that it will solve yours but I hope it helps!</description><link>http://gisdatamonkey.blogspot.com/2009/01/dell-latitude-bluetooth-solution-after.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-524464505629473736</guid><pubDate>Wed, 10 Dec 2008 13:23:00 +0000</pubDate><atom:updated>2008-12-10T13:27:47.632+00:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Link of the day</category><title>Link of the Day Lat - Long Finder</title><description>Exactly what it says on the tin, find a Latitude and Longitude using a google maps application.  It will give you an answer in decimals and degrees and minutes. If you have an address use the search box to the right of the map.&lt;br /&gt;&lt;br /&gt;http://www.satsig.net/maps/lat-long-finder.htm</description><link>http://gisdatamonkey.blogspot.com/2008/12/link-of-day-lat-long-finder.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-1849355421181539138</guid><pubDate>Mon, 24 Nov 2008 11:48:00 +0000</pubDate><atom:updated>2008-12-10T13:28:38.416+00:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Link of the day</category><title>Recommended text editor: NOTEPAD++</title><description>My favourite text editor, not much more to say, try it you might like it...&lt;br /&gt;&lt;br /&gt;http://notepad-plus.sourceforge.net/uk/site.htm&lt;br /&gt;&lt;br /&gt;Here are the features of Notepad++ :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;    Syntax Highlighting and Syntax Folding&lt;/li&gt;&lt;li&gt;    WYSIWYG&lt;/li&gt;&lt;li&gt;    User Defined Syntax Highlighting    &lt;/li&gt;&lt;li&gt;    Auto-completion&lt;/li&gt;&lt;li&gt;    Multi-Document&lt;/li&gt;&lt;li&gt;    Multi-View&lt;/li&gt;&lt;li&gt;    Regular Expression Search/Replace supported&lt;/li&gt;&lt;li&gt;    Full Drag ‘N&#39; Drop supported&lt;/li&gt;&lt;li&gt;    Dynamic position of Views&lt;/li&gt;&lt;li&gt;    File Status Auto-detection&lt;/li&gt;&lt;li&gt;    Zoom in and zoom out&lt;/li&gt;&lt;li&gt;    Multi-Language environment supported&lt;/li&gt;&lt;li&gt;    Bookmark&lt;/li&gt;&lt;li&gt;    Brace and Indent guideline Highlighting&lt;/li&gt;&lt;li&gt;    Macro recording and playback &lt;/li&gt;&lt;/ul&gt;</description><link>http://gisdatamonkey.blogspot.com/2008/11/recommended-text-editor-notepad.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-2485900707207329006</guid><pubDate>Mon, 18 Aug 2008 11:11:00 +0000</pubDate><atom:updated>2008-08-18T12:23:59.854+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Open-Source</category><title>2008 Free and Open Source Software for Geospatial (FOSS4G) Conference, September 29 - October 3, Cape Town, South Africa</title><description>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.foss4g2008.org/&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhMLKVwfu-g_wu4Yp72dIm3Q59-QPSQ4kkw-ueUD8gdSETvt-tsNH1p1QUjHCHy2rrgq2_UnhVVFlrHm6PV7rhPULQtoiLpNdODPH9dfCD6Q9nD6okeA-NWlOHgn0SluNufSJSrBzrCcg/s320/homeHeaderLogoImage_en_US.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5235816622939749874&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;2008 Free and Open Source Software for Geospatial (FOSS4G) Conference incorporating GISSA 2008, is coming up soon, in September 29 - October 3, Cape Town, South Africa.&lt;br /&gt;&lt;br /&gt;Lots of workshops and talks on all things opensource including GeoNetwork, Mapserver, Geoserver, OpenLayers, GRASS PostGIS and many more.&lt;br /&gt;&lt;br /&gt;Check out the website from more details...&lt;br /&gt;&lt;a href=&quot;http://www.foss4g2008.org/&quot;&gt;http://www.foss4g2008.org&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The current line up can be viewed here...&lt;br /&gt;&lt;a href=&quot;http://wiki.osgeo.org/wiki/FOSS4G2008_Workshops_and_Technical_Visits&quot;&gt;http://wiki.osgeo.org/wiki/FOSS4G2008_Workshops_and_Technical_Visits&lt;/a&gt;</description><link>http://gisdatamonkey.blogspot.com/2008/08/2008-free-and-open-source-software-for.html</link><author>noreply@blogger.com (The Monkey)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhMLKVwfu-g_wu4Yp72dIm3Q59-QPSQ4kkw-ueUD8gdSETvt-tsNH1p1QUjHCHy2rrgq2_UnhVVFlrHm6PV7rhPULQtoiLpNdODPH9dfCD6Q9nD6okeA-NWlOHgn0SluNufSJSrBzrCcg/s72-c/homeHeaderLogoImage_en_US.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-17324237999166773.post-5991523022793799626</guid><pubDate>Thu, 14 Aug 2008 19:27:00 +0000</pubDate><atom:updated>2008-08-14T21:54:04.832+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Google Maps</category><category domain="http://www.blogger.com/atom/ns#">Neils World</category><title>Monkey Karma</title><description>A little more neo-googleography here in its loosest sense. The GISDataMonkey would like to share some good karma and recommend to you all those places that treat me well when I visit, whether its quality or value for money I shall add it to this map. I shall be adding more places from time to as I think of them (or as they earn it)...&lt;br /&gt;&lt;iframe marginheight=&quot;0&quot; marginwidth=&quot;0&quot; src=&quot;http://maps.google.co.uk/maps/ms?ie=UTF8&amp;amp;hl=en&amp;amp;msa=0&amp;amp;msid=107141440241001669176.00045466d63c6cd3816f9&amp;amp;ll=49.787978,-1.188226&amp;amp;spn=5.030233,2.903858&amp;amp;output=embed&amp;amp;s=AARTsJob1-MtR339nWPBimtD55KpsjOjtA&quot; frameborder=&quot;0&quot; height=&quot;350&quot; scrolling=&quot;no&quot; width=&quot;425&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;small&gt;&lt;a href=&quot;http://maps.google.co.uk/maps/ms?ie=UTF8&amp;amp;hl=en&amp;amp;msa=0&amp;amp;msid=107141440241001669176.00045466d63c6cd3816f9&amp;amp;ll=49.787978,-1.188226&amp;amp;spn=5.030233,2.903858&amp;amp;source=embed&quot; style=&quot;color: rgb(0, 0, 255); text-align: left;&quot;&gt;View Larger Map&lt;/a&gt;&lt;/small&gt;&lt;br /&gt;&lt;br /&gt;There are restauranrs, cafes, pubs, places to stay and I&#39;m sure I&#39;ll be adding things to do too.  Leave a comment on either the blog or the map to let me know if you take up any of my recommendations and whether you agree or disagree with me on the service, cheers!</description><link>http://gisdatamonkey.blogspot.com/2008/08/monkey-karma.html</link><author>noreply@blogger.com (The Monkey)</author><thr:total>0</thr:total></item></channel></rss>