<?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>srid &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/srid/</link>
	<description>Feed of posts on WordPress.com tagged "srid"</description>
	<pubDate>Fri, 24 May 2013 20:41:08 +0000</pubDate>

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

<item>
<title><![CDATA[PostGIS - Get Table SRID]]></title>
<link>http://rndxpress.wordpress.com/2013/03/08/postgis-get-table-srid/</link>
<pubDate>Fri, 08 Mar 2013 02:16:37 +0000</pubDate>
<dc:creator>nasrulhazim</dc:creator>
<guid>http://rndxpress.wordpress.com/2013/03/08/postgis-get-table-srid/</guid>
<description><![CDATA[Please check geometry_columns table if the result return `-1`. You may change the srid value if you]]></description>
<content:encoded><![CDATA[Please check geometry_columns table if the result return `-1`. You may change the srid value if you]]></content:encoded>
</item>
<item>
<title><![CDATA[Writing own libs for SisoDb - SisoDb.Spatials]]></title>
<link>http://daniel.wertheim.se/2012/11/13/writing-own-libs-for-sisodb-sisodb-spatials/</link>
<pubDate>Tue, 13 Nov 2012 22:06:47 +0000</pubDate>
<dc:creator>Daniel Wertheim</dc:creator>
<guid>http://daniel.wertheim.se/2012/11/13/writing-own-libs-for-sisodb-sisodb-spatials/</guid>
<description><![CDATA[I&#8217;m in the process of finalizing a v16.0.0 of SisoDb and there&#8217;s a first pre-release out]]></description>
<content:encoded><![CDATA[I&#8217;m in the process of finalizing a v16.0.0 of SisoDb and there&#8217;s a first pre-release out]]></content:encoded>
</item>
<item>
<title><![CDATA[new bedding]]></title>
<link>http://srinteriors.wordpress.com/2012/08/20/new-bedding/</link>
<pubDate>Mon, 20 Aug 2012 17:53:49 +0000</pubDate>
<dc:creator>SRID</dc:creator>
<guid>http://srinteriors.wordpress.com/2012/08/20/new-bedding/</guid>
<description><![CDATA[I just got some new bedding.  I was ready for a change and we really needed new sheets.  I was getti]]></description>
<content:encoded><![CDATA[<p>I just got some new bedding.  I was ready for a change and we really needed new sheets.  I was getting tired of the all white and I have this black and white <a href="http://www.westelm.com/products/organic-chevron-duvet-shams-g379/?pkey=cduvet-covers" target="_blank">ikat duvet cover</a> that I got at West Elm a while back, but I&#8217;ve still just been using my white sheets.</p>
<p>Today I went bold for me and mixed and matched some blue bedding from <a href="http://robertafreymann.com/" target="_blank">Roberta Roller Rabbit</a>.</p>
<p>I&#8217;ve also been loving this Bruschwig &#38; Fils Dzhambul fabric and have been thinking I would make 3 euro shams for my bed but I haven&#8217;t been able to make up my mind&#8230;</p>
<p>Here are my multiple bedding options, I was feeling like I wanted to change the wall color behind my bed, but now I&#8217;m thinking maybe no, just go for the Dzhambul istead.</p>
<p>What do you think, do I do the Dzhambul, do I paint the wall, do I do both, nothing??? Decorating for myself is such a challenge!!!</p>
<p><img class="alignnone size-full wp-image-3515 aligncenter" title="IMG_2571" src="http://srinteriors.files.wordpress.com/2012/08/img_2571.jpg?w=480&#038;h=480" alt="" width="480" height="480" /></p>
<p style="text-align:center;">Here is the new fitted sheet and blue shams, bold move for me as my bed is usually all white.</p>
<p><img class="alignnone size-full wp-image-3516 aligncenter" title="IMG_2573" src="http://srinteriors.files.wordpress.com/2012/08/img_2573.jpg?w=480&#038;h=480" alt="" width="480" height="480" /></p>
<p style="text-align:center;">Here it is paired with the Dzhambul fabric that I like&#8230;I&#8217;ll still have my white duvet which will mostly cover the busy sheet.  What do you think?</p>
<p><img class="alignnone size-full wp-image-3517 aligncenter" title="IMG_2574" src="http://srinteriors.files.wordpress.com/2012/08/img_2574.jpg?w=480&#038;h=480" alt="" width="480" height="480" /></p>
<p style="text-align:center;">When I want a change of pace, here is my black and white ikat bedding.  I know, my duvet cover needs a serious ironing, tell it to my 2 year old and 5 1/2 year old&#8230;</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Geometry Creation SQL ]]></title>
<link>http://iitcoauim.wordpress.com/2012/04/29/geometry-creation-sql/</link>
<pubDate>Sun, 29 Apr 2012 12:26:58 +0000</pubDate>
<dc:creator>thomas kearns</dc:creator>
<guid>http://iitcoauim.wordpress.com/2012/04/29/geometry-creation-sql/</guid>
<description><![CDATA[--('schema','name of table to add a column to','name of column to add',srid,'postgis geometry type',]]></description>
<content:encoded><![CDATA[<p><code><br />
--('schema','name of table to add a column to','name of column to add',srid,'postgis geometry type',dimension)<br />
--SELECT AddGeometryColumn ('public','recycling_dropoff_location','geom',26971,'POINT',2);</p>
<p>--SELECT AddGeometryColumn('public','recycling_dropoff_location','untransgeom',900913,'POINT',2)<br />
--SELECT AddGeometryColumn('public','recycling_dropoff_location','untransgeom2',4326,'POINT',2)</p>
<p>--st_transform(st_setsrid(st_point(lat,long),900913),26971)<br />
--three compound functions<br />
--the innermost st_point(lon,lat) creates a geometry from an x and y location<br />
--... watch the lat/lon distinctions the table im testing with appears to have them flip flopped<br />
--the next outer function st_setserid( geometry to operate on, 900913) establishes the srid of the geometry<br />
--... in this case I am assuming the unprojected google system 900913<br />
--the outermost function st_transform( geometry to operate on, 26971) converts from one projection to another<br />
--UPDATE recycling_dropoff_location<br />
--SET geom = st_transform(st_setsrid(st_point(lon,lat),900913),26971)</p>
<p>--UPDATE recycling_dropoff_location<br />
--SET untransgeom2 = st_setsrid(st_point(lon,lat),4326)</p>
<p>--UPDATE recycling_dropoff_location<br />
--SET geom = st_setsrid(st_point(st_x(st_transform(untransgeom2,26971))*3.2808399,st_y(st_transform(untransgeom2,26971))*3.2808399),26971)</p>
<p>--SELECT st_asewkt( geom )<br />
--FROM recycling_dropoff_location<br />
</code></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Shapefile to PostGIS Import]]></title>
<link>http://iitcoauim.wordpress.com/2012/04/21/shapefile-to-postgis-import/</link>
<pubDate>Sat, 21 Apr 2012 01:38:57 +0000</pubDate>
<dc:creator>bloureir</dc:creator>
<guid>http://iitcoauim.wordpress.com/2012/04/21/shapefile-to-postgis-import/</guid>
<description><![CDATA[I&#8217;m trying to import the Shapefile for building footprints in Chicago to PostGIS using Spit on]]></description>
<content:encoded><![CDATA[<p>I&#8217;m trying to import the Shapefile for building footprints in Chicago to PostGIS using Spit on qGIS, but I&#8217;ve forgot what was the SRID I was supposed to use.</p>
<p>Could anyone help me with that? Thanks (sorry for this kind of post but I figured it was the quickest way to get an answer and to get the thing going)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[DR SYED HUSIN ALI: TAHNIAH!]]></title>
<link>http://drhalimahali.wordpress.com/2008/11/10/dr-syed-husin-ali-tahniah-2/</link>
<pubDate>Sun, 09 Nov 2008 17:53:00 +0000</pubDate>
<dc:creator>drhalimahali</dc:creator>
<guid>http://drhalimahali.wordpress.com/2008/11/10/dr-syed-husin-ali-tahniah-2/</guid>
<description><![CDATA[Tahniah dan syabas diucapkan kepada Timbalan Presiden KeADILan, Dr Syed Husin Ali kerana telah berja]]></description>
<content:encoded><![CDATA[<p><a href="http://4.bp.blogspot.com/_0ynStjSqY7A/SRckYyTjtFI/AAAAAAAAGzs/joVqQJdAjQw/s1600/buku+syd+husin3.jpg"><img src="http://4.bp.blogspot.com/_0ynStjSqY7A/SRckYyTjtFI/AAAAAAAAGzs/joVqQJdAjQw/s200/buku+syd+husin3.jpg" alt="" border="0" /></a><a href="http://4.bp.blogspot.com/_0ynStjSqY7A/SRckR6kTVUI/AAAAAAAAGzk/244AspAsVuY/s1600/buku+syd+husin2.jpg"><img src="http://4.bp.blogspot.com/_0ynStjSqY7A/SRckR6kTVUI/AAAAAAAAGzk/244AspAsVuY/s200/buku+syd+husin2.jpg" alt="" border="0" /></a>Tahniah dan syabas diucapkan</p>
<p>kepada Timbalan Presiden</p>
<p>KeADILan, Dr Syed Husin Ali</p>
<p>kerana telah berjaya  menerbitkan</p>
<p>empat buah buku  salah satu  buku</p>
<p>dengan kerjasama  Unit Buku Harakah dan tiga lagi bersama  The Strategic Information Research</p>
<p>Developement Centre (SRID). Buku-buku tersebut bertajuk, &#8220;<span style="font-style:italic;">Orang Melayu Masalah dan</p>
<p>Masa </span><span style="font-style:italic;">Depannya&#8217; </span>, &#8220;<span style="font-style:italic;">Ethnic Relations in Malaysia : Harmony and Conflict</span>&#8221;  dan  &#8216;<span style="font-style:italic;">Dua</p>
<p>Wajah:Tahanan Tanpa Bicara</span>&#8221;  yang juga diterbitkan dalam versi bahasa Inggeris &#8220;<span style="font-style:italic;">Two</p>
<p>Faces: Detention  without Trial</span>&#8220;.</p>
<p>Foto oleh <span class="small"><b>Wan Zahari Wan Salleh</b>      </span></p>
<p>Cerita selanjutnya di <a href="http://www.harakahdaily.net/index.php?option=com_content&#38;task=view&#38;id=17809&#38;Itemid=1">[SINI]</a>  dan {<a href="http://drhalimahali.blogspot.com/2008/09/politics-of-political-assasination-case.html">SINI</a>}</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Updating Projections and PostGIS]]></title>
<link>http://thesteve0.wordpress.com/2007/10/08/updating-projections-and-postgis/</link>
<pubDate>Mon, 08 Oct 2007 19:37:53 +0000</pubDate>
<dc:creator>Steven Citron-Pousty</dc:creator>
<guid>http://thesteve0.wordpress.com/2007/10/08/updating-projections-and-postgis/</guid>
<description><![CDATA[I imported some data from the MAGIC server at UCONN into PostGIS. Unfortunately it did not recognize]]></description>
<content:encoded><![CDATA[I imported some data from the MAGIC server at UCONN into PostGIS. Unfortunately it did not recognize]]></content:encoded>
</item>

</channel>
</rss>
