<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Geoinformatics &#187; GeoRSS</title>
	<atom:link href="http://www.geoinformatics.cn/tag/georss/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.geoinformatics.cn</link>
	<description>Arts and Sciences move me on ...</description>
	<lastBuildDate>Fri, 13 Jan 2012 10:29:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>两个GIS编程技巧</title>
		<link>http://www.geoinformatics.cn/2009/06/%e4%b8%a4%e4%b8%aagis%e7%bc%96%e7%a8%8b%e6%8a%80%e5%b7%a7/</link>
		<comments>http://www.geoinformatics.cn/2009/06/%e4%b8%a4%e4%b8%aagis%e7%bc%96%e7%a8%8b%e6%8a%80%e5%b7%a7/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 13:26:21 +0000</pubDate>
		<dc:creator>长安旧梦</dc:creator>
				<category><![CDATA[技术心得]]></category>
		<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[KML]]></category>

		<guid isPermaLink="false">http://www.geoinformatics.cn/?p=1060</guid>
		<description><![CDATA[Jquery如何获得在同一XML文档中的多个namespace下的属性值？ 对于GIS编程，一定会遇到处理多个namespace的XML文档，简单的例子，就拿GeoRSS来说，他就经常带着atom，geo，rss等多个namespace，看了很多国内的文献都没有一个很好的解答，一般来说，比如 &#60;atom :entry xmlns:atom=&#34;http://www.w3.org/2005/Atom&#34;&#62;&#60;/atom&#62; &#60;atom :content type=&#34;text&#34;&#62;blah blah&#60;/atom&#62; 会用 $(xml).find(&#8216;atom\\:content&#8217;).eq(0).text() 语句来获取atom中content 标签的值。也就是说，用 “\\”。但是有个问题，因为年久未看，好象是google chrome还是IE 8不支持这种方法。比较好的方式是 jQuery(entries).find(&#34;[@nodeName=namespace:elementName]&#34;); 也就是用@nodeName=namespace:elementName的方式获得。详见http://www.nabble.com/namespaces-XML-parsing-td22583488s27240.html的第二篇回帖。 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- 第二个问题就是上次帮andrei找如何获得地表上任意经纬度的高程值。我用firebug稍微hacking了一下USGS的一个小的WebServices。如下 http://gisdata.usgs.net/xmlwebservices2/(S(iciielatfvaogp3vexkkn1vy))/elevation_result2.aspx?X=-80.47201518072289&#038;Y=42.16883603773585 x为经度，y为纬度。然后就会通过http返回其高程值（feet），返回结果如下所示 Elevation at -80.47201518072289,42.16883603773585 = 570.301846882179 FEET ( NED 1/3rd arc-second: Eastern United States ) 好处在于，可以提供程序获得任何点的高程值只要usgs一直暴露这个webservice。]]></description>
			<content:encoded><![CDATA[<p>Jquery如何获得在同一XML文档中的多个namespace下的属性值？<br />
对于GIS编程，一定会遇到处理多个namespace的XML文档，简单的例子，就拿GeoRSS来说，他就经常带着atom，geo，rss等多个namespace，看了很多国内的文献都没有一个很好的解答，一般来说，比如</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;atom</span> :entry <span style="color: #000066;">xmlns:atom</span>=<span style="color: #ff0000;">&quot;http://www.w3.org/2005/Atom&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;/atom<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;atom</span> :content <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;text&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>blah blah<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/atom<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>会用 $(xml).find(&#8216;atom\\:content&#8217;).eq(0).text() 语句来获取atom中content 标签的值。也就是说，用 “\\”。但是有个问题，因为年久未看，好象是google chrome还是IE 8不支持这种方法。比较好的方式是</p>

<div class="wp_syntax"><div class="code"><pre class="json" style="font-family:monospace;">jQuery(entries).find(&quot;[@nodeName=namespace:elementName]&quot;);</pre></div></div>

<p>也就是用@nodeName=namespace:elementName的方式获得。详见http://www.nabble.com/namespaces-XML-parsing-td22583488s27240.html的第二篇回帖。<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
第二个问题就是上次帮andrei找如何获得地表上任意经纬度的高程值。我用firebug稍微hacking了一下USGS的一个小的WebServices。如下</p>
<p>http://gisdata.usgs.net/xmlwebservices2/(S(iciielatfvaogp3vexkkn1vy))/elevation_result2.aspx?X=-80.47201518072289&#038;Y=42.16883603773585</p>
<p>x为经度，y为纬度。然后就会通过http返回其高程值（feet），返回结果如下所示</p>

<div class="wp_syntax"><div class="code"><pre class="json" style="font-family:monospace;">Elevation at -80.47201518072289,42.16883603773585 = 570.301846882179 FEET ( NED 1/3rd arc-second: Eastern United States )</pre></div></div>

<p>好处在于，可以提供程序获得任何点的高程值只要usgs一直暴露这个webservice。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoinformatics.cn/2009/06/%e4%b8%a4%e4%b8%aagis%e7%bc%96%e7%a8%8b%e6%8a%80%e5%b7%a7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Life by Instructions</title>
		<link>http://www.geoinformatics.cn/2008/10/life-by-instructions/</link>
		<comments>http://www.geoinformatics.cn/2008/10/life-by-instructions/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 11:40:09 +0000</pubDate>
		<dc:creator>长安旧梦</dc:creator>
				<category><![CDATA[生活感悟]]></category>
		<category><![CDATA[Dreams]]></category>
		<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://www.geoinformatics.cn/?p=791</guid>
		<description><![CDATA[做TA真辛苦，不得不说。。。 要忍受印度学生的口音，还要忍耐IT Stuffs 缓慢的速度，同时，美国学生真的很喜欢看instructions，我自带Internet GIS的实验课以来，和王尊一起写了不下20篇instruction，有的是给学生写，更多的是给IT Stuffs写。给学生们写的都还不错，给IT stuffs写的，不管你写的再详细，他们也不会完全照搬去执行，生怕触犯了 FERPA，天晓得是不是为了敷衍。。还好，老外不懂中文。。抱怨他们听不懂，不过anyway，Server前几天在王尊和我的紧逼下，终于搞好了，唉，终于终于可以不被server 折磨了。。。写instructions的收获还是很大的，必须cover every small circumstances，要不美国学生就会问你为什么。所以为了让大家的生活都going smooth，我还是多写点东西吧。 写Instruction主要还是关于ESRI的产品，当然还有google 和Virtual Earth，不过我觉得收获最大的是我对Jquery的了解，感谢Dr. Qiu 介绍Jquery给我，我现在已经爱不释手了。我最近做的几个mashup的练习，都是基于Jquery的。开发速度非常快。同时，针对Mashup，经常会有跨域问题（cross domain）存在，用flex可以很好的解决，不过javascript做起来就比较麻烦了。我所知道，Google feed、google GGeoXML都是支持跨域的，但是Virual Earth加载GeoRSS的函数是不支持的。同时，Jquery的Jquery.getJSON提供了一套基于url查询字符串的跨域解决方案，使用了一个新的技术叫做JSONP, 很好很强大。。可以通过增加一个查询字符串来实现跨域访问，但是对于jquery美中不足的一点是，尚无法解析返回的数据为XML的跨域访问。 最近，我天天在想，如果有谁给我写个instructions就好了，天天照做，也不干其他，多轻松啊，现在每周必有一天甚至两天熬夜，实验室睡袋的使用频率是越来越高了，咖啡喝的也是越来越多。。唉，life。。。]]></description>
			<content:encoded><![CDATA[<p><a href="/wp-content/uploads/r0013561-21.jpg" rel="shadowbox[sbpost-791];player=img;" title="where is the another end of sea?"><img align=lefttitle="where is the another end of sea?" src="/wp-content/uploads/r0013561-21.jpg" alt="" width="480" height="343" /></a><br />
做TA真辛苦，不得不说。。。</p>
<p>要忍受印度学生的口音，还要忍耐IT Stuffs 缓慢的速度，同时，美国学生真的很喜欢看instructions，我自带Internet GIS的实验课以来，和王尊一起写了不下20篇instruction，有的是给学生写，更多的是给IT Stuffs写。给学生们写的都还不错，给IT stuffs写的，不管你写的再详细，他们也不会完全照搬去执行，生怕触犯了 FERPA，天晓得是不是为了敷衍。。还好，老外不懂中文。。抱怨他们听不懂，不过anyway，Server前几天在王尊和我的紧逼下，终于搞好了，唉，终于终于可以不被server 折磨了。。。写instructions的收获还是很大的，必须cover every small circumstances，要不美国学生就会问你为什么。所以为了让大家的生活都going smooth，我还是多写点东西吧。</p>
<p>写Instruction主要还是关于ESRI的产品，当然还有google 和Virtual Earth，不过我觉得收获最大的是我对Jquery的了解，感谢Dr. Qiu 介绍Jquery给我，我现在已经爱不释手了。我最近做的几个mashup的练习，都是基于Jquery的。开发速度非常快。同时，针对Mashup，经常会有跨域问题（cross domain）存在，用flex可以很好的解决，不过javascript做起来就比较麻烦了。我所知道，Google feed、google GGeoXML都是支持跨域的，但是Virual Earth加载GeoRSS的函数是不支持的。同时，Jquery的Jquery.getJSON提供了一套基于url查询字符串的跨域解决方案，使用了一个新的技术叫做JSONP, 很好很强大。。可以通过增加一个查询字符串来实现跨域访问，但是对于jquery美中不足的一点是，尚无法解析返回的数据为XML的跨域访问。</p>
<p>最近，我天天在想，如果有谁给我写个instructions就好了，天天照做，也不干其他，多轻松啊，现在每周必有一天甚至两天熬夜，实验室睡袋的使用频率是越来越高了，咖啡喝的也是越来越多。。唉，life。。。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoinformatics.cn/2008/10/life-by-instructions/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>brighti的georss解决方案</title>
		<link>http://www.geoinformatics.cn/2007/09/brighti%e7%9a%84georss%e8%a7%a3%e5%86%b3%e6%96%b9%e6%a1%88/</link>
		<comments>http://www.geoinformatics.cn/2007/09/brighti%e7%9a%84georss%e8%a7%a3%e5%86%b3%e6%96%b9%e6%a1%88/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 14:08:16 +0000</pubDate>
		<dc:creator>长安旧梦</dc:creator>
				<category><![CDATA[技术心得]]></category>
		<category><![CDATA[GeoRSS]]></category>

		<guid isPermaLink="false">http://www.geoinformatics.cn/index.php/category/georss/20070921495.html</guid>
		<description><![CDATA[brighti输出的georss 乍一看似乎地点不是很正确。但在谷歌地图的位置是在正确位置。传换成所有的georss格式： 包括rss, Atom和Simple gml .(注：看来也不是所有的。) 和以下格式进行协作： .kml, .kmz, .gml, .shp, .mif, .dxf。 转换为矢量数据（点，线和多边形）为 georss 。 地图特征属性转换为georss属性。 指定多个属性元素。 在Virtual Earth上显示。 浏览功能和属性。 变焦和移动。 点击第二幅地图获得教程。]]></description>
			<content:encoded><![CDATA[<p>brighti输出的georss 乍一看似乎地点不是很正确。但在谷歌地图的位置是在正确位置。传换成所有的georss格式：</p>
<ol>
<li>包括rss, Atom和Simple gml .(注：看来也不是所有的。)</li>
<li>和以下格式进行协作： .kml, .kmz, .gml, .shp, .mif, .dxf。</li>
<li>转换为矢量数据（点，线和多边形）为 georss 。</li>
<li>地图特征属性转换为georss属性。</li>
<li>指定多个属性元素。</li>
<li>在Virtual Earth上显示。</li>
<li>浏览功能和属性。</li>
<li>变焦和移动。</li>
</ol>
<p><a href="http://bp2.blogger.com/_Fbk8IlxNQXM/RvDUQufK6nI/AAAAAAAAA-0/cP8CZ32ecxo/s1600-h/Brighti_Solutions_Georss_output.jpeg" rel="shadowbox[sbpost-495];player=img;" target="_blank"><img src="http://bp2.blogger.com/_Fbk8IlxNQXM/RvDUQufK6nI/AAAAAAAAA-0/cP8CZ32ecxo/s320/Brighti_Solutions_Georss_output.jpeg" alt="Brighti Solutions GeoRSS Output" border="0" height="202" width="262" /></a>     <a href="http://mapperz.kml.googlepages.com/brighti_georss.html" target="_blank"><img src="http://bp3.blogger.com/_Fbk8IlxNQXM/RvDVf-fK6oI/AAAAAAAAA-8/qfkODo-MATc/s320/Brighti_Solutions_Georss_Gmap.jpeg" alt="Brighti Solutions GeoRSS Google Map" border="0" height="200" width="264" /></a><br />
点击第二幅地图获得教程。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoinformatics.cn/2007/09/brighti%e7%9a%84georss%e8%a7%a3%e5%86%b3%e6%96%b9%e6%a1%88/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GeoRSS Model includes &#8220;When&#8221;</title>
		<link>http://www.geoinformatics.cn/2007/05/georss-model-includes-when/</link>
		<comments>http://www.geoinformatics.cn/2007/05/georss-model-includes-when/#comments</comments>
		<pubDate>Mon, 21 May 2007 16:58:30 +0000</pubDate>
		<dc:creator>长安旧梦</dc:creator>
				<category><![CDATA[技术心得]]></category>
		<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[Illustrator]]></category>

		<guid isPermaLink="false">http://www.geoinformatics.cn/index.php/category/miscellaneous/20070521445.html</guid>
		<description><![CDATA[I just write a GeoRSS Model includes the Temporal Attributes, which is contained in the RSS 2.0, Atom and RDF.]]></description>
			<content:encoded><![CDATA[<p>I just write a GeoRSS Model includes the Temporal Attributes, which is contained in the RSS 2.0, Atom and RDF.</p>
<p><img title="georssmodel0521.jpg" id="image444" alt="georssmodel0521.jpg" src="/wp-content/uploads//georssmodel0521.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoinformatics.cn/2007/05/georss-model-includes-when/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GeoRSS at the Summer of Code</title>
		<link>http://www.geoinformatics.cn/2007/04/georss-at-the-summer-of-code/</link>
		<comments>http://www.geoinformatics.cn/2007/04/georss-at-the-summer-of-code/#comments</comments>
		<pubDate>Fri, 13 Apr 2007 18:27:55 +0000</pubDate>
		<dc:creator>长安旧梦</dc:creator>
				<category><![CDATA[技术心得]]></category>
		<category><![CDATA[GeoRSS]]></category>

		<guid isPermaLink="false">http://www.geoinformatics.cn/index.php/category/miscellaneous/20070413439.html</guid>
		<description><![CDATA[citied this news from mikel Since Google’s and Microsoft’s GeoRSS announcements last month, there’s been a big jump in interest. Just look at the GeoRSS hits graph from Technorati. Well more than anyone here can keep up with. One thing that’s jumped out at me is that among the recent batch of Google Summer of [...]]]></description>
			<content:encoded><![CDATA[<p>citied this news from mikel</p>
<p>Since Google’s and Microsoft’s GeoRSS announcements last month, there’s been a big jump in interest. Just look at the GeoRSS hits graph from Technorati.</p>
<p>Well more than anyone here can keep up with. One thing that’s jumped out at me is that among the recent batch of Google Summer of Code 2007 project approvals, there’s three projects focused on GeoRSS!</p>
<p>Geo-component for Joomla! Mickael Maison will add GeoRSS and KML support to the Joomla! CMS.</p>
<p><strong>Sahana GIS </strong>Catalogue Administration Module Mifan Careem will build out GeoRSS and WMS services for Sahana, the inspiring open source disaster management system.</p>
<p>Implementation of An Interactive GeoRSS tool in uDig Rui Li will be adding GeoRSS authoring to uDig, an OSGeo project.</p>
<p>Congrats to the students .. have an awesome summer!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoinformatics.cn/2007/04/georss-at-the-summer-of-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seminar On GeoRSS</title>
		<link>http://www.geoinformatics.cn/2007/04/seminar-on-georss/</link>
		<comments>http://www.geoinformatics.cn/2007/04/seminar-on-georss/#comments</comments>
		<pubDate>Tue, 10 Apr 2007 15:26:08 +0000</pubDate>
		<dc:creator>长安旧梦</dc:creator>
				<category><![CDATA[技术心得]]></category>
		<category><![CDATA[GeoRSS]]></category>

		<guid isPermaLink="false">http://www.geoinformatics.cn/index.php/category/georss/20070410436.html</guid>
		<description><![CDATA[Yesterday I make a speech on GeoRSS. And you could download the ppt by checking the image below. Hope you all could enjoy it.]]></description>
			<content:encoded><![CDATA[<p>Yesterday I make a speech on GeoRSS. And you could download the ppt by checking the image below. Hope you all could enjoy it.</p>
<p><a target="_blank" href="/wp-content/uploads/GeoRSS%20Seminar.rar" title="GeoRSS"><img title="GeoRSS" id="image435" alt="GeoRSS" src="/wp-content/uploads/georssppt.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoinformatics.cn/2007/04/seminar-on-georss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All feeds lead to ROME</title>
		<link>http://www.geoinformatics.cn/2007/01/all-feeds-lead-to-rome/</link>
		<comments>http://www.geoinformatics.cn/2007/01/all-feeds-lead-to-rome/#comments</comments>
		<pubDate>Tue, 09 Jan 2007 15:59:57 +0000</pubDate>
		<dc:creator>长安旧梦</dc:creator>
				<category><![CDATA[技术心得]]></category>
		<category><![CDATA[GeoRSS]]></category>

		<guid isPermaLink="false">http://www.geoinformatics.cn/index.php/category/georss/20070109406.html</guid>
		<description><![CDATA[it&#8217;s a very funny slogan regarding ROME, a java based GeoRSS library. The GeoRSS Module for rome currently supports points in GeoRSS Simple format, W3CGeo and GeoRSS GML format. you can get the sources from the links below: georss-rome-0.9.5.jar    (with source : georss-rome-src-0.9.5.jar) rome-0.9.jar jdom-1.0.jar (required by rome) and some documents: Javadoc : GeoRSS Rome [...]]]></description>
			<content:encoded><![CDATA[<p>it&#8217;s a very funny slogan regarding ROME, a java based GeoRSS library. The GeoRSS Module for rome currently supports points in GeoRSS Simple format, W3CGeo and GeoRSS GML format.<img src="/wp-content/uploads/rome-logo.png" align="right" /></p>
<p>you can get the sources from the links below:</p>
<p><a href="/georss-rome-0.9.5.jar">georss-rome-0.9.5.jar</a>    <small>(with source : <a href="/georss-rome-src-0.9.5.jar">georss-rome-src-0.9.5.jar</a>)</small><br />
<a href="/rome-0.9.jar">rome-0.9.jar</a><br />
<a href="/jdom-1.0.jar">jdom-1.0.jar</a> (required by rome)</p>
<p>and some documents:</p>
<p>Javadoc : <a href="/javadoc">GeoRSS Rome Javadoc online</a> or <a href="/georss-rome-0.8.5-javadoc.zip">GeoRSS Rome Javadoc zip</a><br />
Rome : <a href="http://rome.dev.java.net/">rome.dev.java.net</a><br />
GeoRSS.org : <a href="http://www.georss.org/">http://www.georss.org/</a></p>
<p><span id="more-406"></span></p>
<h3>GeoRSS Consumer</h3>
<pre>SyndFeedInput input = new SyndFeedInput();</pre>
<pre>SyndFeed feed = input.build(new XmlReader(new URL(          "http://www.geonames.org/recent-changes.xml")));</pre>
<pre>List entries = feed.getEntries();    for (SyndEntry entry : entries) {</pre>
<pre>GeoRSSModule geoRSSModule = GeoRSSUtils.getGeoRSS(entry);</pre>
<pre>System.out.println(entry.getTitle() + " : lat=" + geoRSSModule.getLatitude() + ",lng="</pre>
<pre>+ geoRSSModule.getLongitude() + ", desc="   + entry.getDescription().getValue() + ";</pre>
<pre>time="               + entry.getPublishedDate());</pre>
<pre>}</pre>
<h3>GeoRSS Producer</h3>
<pre>GeoRSSModule geoRSSModule = new W3CGeoModuleImpl();     //GeoRSSModule</pre>
<pre>geoRSSModule = new SimpleModuleImpl();</pre>
<pre>geoRSSModule.setLatitude(47.0);</pre>
<pre>geoRSSModule.setLongitude(9.0);</pre>
<pre>entry.getModules().add(geoRSSModule);</pre>
<p>There is also an Example for a <a href="/georss-servlet.html">GeoRSS Servlet</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoinformatics.cn/2007/01/all-feeds-lead-to-rome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>An overview of GeoRSS</title>
		<link>http://www.geoinformatics.cn/2007/01/an-overview-of-georss/</link>
		<comments>http://www.geoinformatics.cn/2007/01/an-overview-of-georss/#comments</comments>
		<pubDate>Tue, 09 Jan 2007 02:49:20 +0000</pubDate>
		<dc:creator>长安旧梦</dc:creator>
				<category><![CDATA[技术心得]]></category>
		<category><![CDATA[GeoRSS]]></category>

		<guid isPermaLink="false">http://www.geoinformatics.cn/index.php/category/miscellaneous/20070108404.html</guid>
		<description><![CDATA[最近在关注GeoRSS的相关技术方法，在此，简单给大家简单介绍以下GeoRSS。GeoRSS最早可以追溯到1989年叫做ICBM的轻量级的地理标签。2003年W3C推出的Basic Geo (WGS84 lat/long) Vocabulary中出现了 和 的标签，在只需要描述单个点位置的时候，该方法至今仍被广泛的使用，包括Yahoo Map, Google Map，Microsoft Virtual Earth等大型厂商都是该方法的忠实使用者。但是这种方法当遇到要描述线状要素、区域要素等其他复杂几何要素时，要使用除WGS 84坐标系统以外的坐标系统时，或者添加其他属性加以辅助的时候，W3C 基础地理语意规范的能力就颇显淡薄。而OGC制定的GML规范在描述时空建模上有着传统的优势。2006年7月19日，OGC在GML规划的基础之上，联合IT业的相关专家，推出了GeoRSS的规范。 按照该规范的所述，GeoRSS是指给RSS feed添加位置信息或者地理标签到的一种协议，它标准化了表达地理信息的方式，简捷并高效地满足了给Web内容添加位置信息的需求。时空信息在RSS里以XML格式指定，和RSS 0.9、RSS 1.0、RSS 2.0、Atom甚至其他基于XML格式的文件协作，实现在网络上编码时空信息。GeoRSS提供了一种地理位置搜索与聚合的方案，并且可以用于地理分析、地理搜索、地理聚合。例如在指定地点10公里范围内，所有可能受地震影响的地物的信息，在自己出行道路中出现交通事故的位置点等等。只要RSS包含了地理位置信息，就可以将应用进行扩展。]]></description>
			<content:encoded><![CDATA[<p><img align="right" src="/wp-content/uploads/georss-1.png" />最近在关注GeoRSS的相关技术方法，在此，简单给大家简单介绍以下GeoRSS。GeoRSS最早可以追溯到1989年叫做ICBM的轻量级的地理标签。2003年W3C推出的Basic Geo (WGS84 lat/long) Vocabulary中出现了 和 的标签，在只需要描述单个点位置的时候，该方法至今仍被广泛的使用，包括Yahoo Map, Google Map，Microsoft Virtual Earth等大型厂商都是该方法的忠实使用者。但是这种方法当遇到要描述线状要素、区域要素等其他复杂几何要素时，要使用除WGS 84坐标系统以外的坐标系统时，或者添加其他属性加以辅助的时候，W3C 基础地理语意规范的能力就颇显淡薄。而OGC制定的GML规范在描述时空建模上有着传统的优势。2006年7月19日，OGC在GML规划的基础之上，联合IT业的相关专家，推出了GeoRSS的规范。<br />
按照该规范的所述，GeoRSS是指给RSS feed添加位置信息或者地理标签到的一种协议，它标准化了表达地理信息的方式，简捷并高效地满足了给Web内容添加位置信息的需求。时空信息在RSS里以XML格式指定，和RSS 0.9、RSS 1.0、RSS 2.0、Atom甚至其他基于XML格式的文件协作，实现在网络上编码时空信息。GeoRSS提供了一种地理位置搜索与聚合的方案，并且可以用于地理分析、地理搜索、地理聚合。例如在指定地点10公里范围内，所有可能受地震影响的地物的信息，在自己出行道路中出现交通事故的位置点等等。只要RSS包含了地理位置信息，就可以将应用进行扩展。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoinformatics.cn/2007/01/an-overview-of-georss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GeoRSS Model</title>
		<link>http://www.geoinformatics.cn/2006/12/georss-model/</link>
		<comments>http://www.geoinformatics.cn/2006/12/georss-model/#comments</comments>
		<pubDate>Fri, 08 Dec 2006 18:09:53 +0000</pubDate>
		<dc:creator>长安旧梦</dc:creator>
				<category><![CDATA[技术心得]]></category>
		<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.geoinformatics.cn/index.php/category/web-20/20061208378.html</guid>
		<description><![CDATA[From GeoRSS.org]]></description>
			<content:encoded><![CDATA[<p>From <a href="http://www.georss.org" target="_blank">GeoRSS.org</a></p>
<p><img id="image381" title="georss-model.jpg" alt="georss-model.jpg" src="/wp-content/uploads/georss-model.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoinformatics.cn/2006/12/georss-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

