<?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>LiangXu Wang &#187; RS</title>
	<atom:link href="http://wlx.westgis.ac.cn/category/rs/feed/" rel="self" type="application/rss+xml" />
	<link>http://wlx.westgis.ac.cn</link>
	<description>research of gis, rs, opensource.</description>
	<lastBuildDate>Wed, 28 Jul 2010 17:08:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>实现了一个SCAR的zotero translator</title>
		<link>http://wlx.westgis.ac.cn/603/</link>
		<comments>http://wlx.westgis.ac.cn/603/#comments</comments>
		<pubDate>Wed, 27 May 2009 14:55:30 +0000</pubDate>
		<dc:creator>wlx</dc:creator>
				<category><![CDATA[Program]]></category>
		<category><![CDATA[RS]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[SCAR]]></category>
		<category><![CDATA[translator]]></category>
		<category><![CDATA[zotero]]></category>

		<guid isPermaLink="false">http://wlx.westgis.ac.cn/?p=603</guid>
		<description><![CDATA[SCAR: Science of Cold and Arid Regions 是所里新办的一个期刊，看了几篇文章，打算摘录下来，zotero却不支持，需要自己再写一个转换器(translator)，花了一下午的时间，终于搞出来了，暂时不支持搜索功能。
把下面的代码保存到zotero下的translator目录，给个名字，如SCAR.js，然后重新启动一下FIREFOX，应该就可以使用了。
{
    "translatorID":"d5770df3-b41a-45cb-bb3a-261948c9af49",
    "translatorType":4,
    "label":"SCAR",
    "creator":"Liangxu Wang&#60;wangliangxu＠gmail.com&#62;",
    "target":"http://www.scar.ac.cn/hhkxen/ch/reader",
    "minVersion":"1.0",
    "maxVersion":"",
    "priority":100,
    "inRepository":true,
    "lastUpdated":"2009-5-27 22:33:00"
}
function detectWeb(doc, url) {
   [...]]]></description>
			<content:encoded><![CDATA[<p>SCAR: Science of Cold and Arid Regions 是所里新办的一个期刊，看了几篇文章，打算摘录下来，zotero却不支持，需要自己再写一个转换器(translator)，花了一下午的时间，终于搞出来了，暂时不支持搜索功能。<br />
把下面的代码保存到zotero下的translator目录，给个名字，如SCAR.js，然后重新启动一下FIREFOX，应该就可以使用了。</p>
<p><code >{<br />
    "translatorID":"d5770df3-b41a-45cb-bb3a-261948c9af49",<br />
    "translatorType":4,<br />
    "label":"SCAR",<br />
    "creator":"Liangxu Wang&lt;wangliangxu＠gmail.com&gt;",<br />
    "target":"http://www.scar.ac.cn/hhkxen/ch/reader",<br />
    "minVersion":"1.0",<br />
    "maxVersion":"",<br />
    "priority":100,<br />
    "inRepository":true,<br />
    "lastUpdated":"2009-5-27 22:33:00"<br />
}</p>
<p>function detectWeb(doc, url) {<br />
    var articleRe = /view_abstract.aspx/;<br />
    var s = articleRe.exec(url);</p>
<p>    if(s) {<br />
        return "journalArticle";<br />
    } else {<br />
        return "multiple";<br />
    }</p>
<p>    return false;<br />
}</p>
<p>function scrape(doc) {<br />
    var nsResolver = null;</p>
<p>    var itemType = "journalArticle";<br />
    var newItem = new Zotero.Item(itemType);<br />
    Zotero.debug(itemType);</p>
<p>    // 标题<br />
    var title = doc.getElementById('EnTitle').textContent;<br />
    Zotero.debug("Title:"+title);<br />
    newItem.title = title;</p>
<p>    // 附件，网页快照<br />
    var snapName = title + " (SCAR)";<br />
    Zotero.debug(snapName);<br />
    newItem.attachments.push({document:doc, title:snapName, mimeType:"text/html"});<br />
    //Zotero.debug(doc);</p>
<p>    //关键词<br />
    var keys=doc.getElementById('EnKeyWord');<br />
    var tags=keys.getElementsByTagName('u');<br />
    var i=0;<br />
    for(i=0;i&lt;tags.length;i++){<br />
      newItem.tags.push(tags[i].textContent);<br />
      Zotero.debug("tag:"+tags[i].textContent);<br />
    }<br />
    //摘要<br />
    var abstract=doc.getElementById('EnAbstract');<br />
    newItem.abstractNote = Zotero.Utilities.trim(abstract.textContent);<br />
    // 出版社<br />
    newItem.publicationTitle = 'Sciences in Cold and Arid Regions';<br />
    newItem.ISSN='1674-3822';<br />
    newItem.url = doc.location.href;<br />
    //出版时间<br />
    var ref=doc.getElementById('ReferenceText').textContent;<br />
    if (ref.match(/,(\d+).+Sciences in Cold and Arid Regions,(\d+)\((\d+)\):(.+)\./))<br />
    {<br />
      newItem.volume=ref.match(/,(\d+).+Sciences in Cold and Arid Regions,(\d+)\((\d+)\):(.+)\./)[2];<br />
      newItem.issue=ref.match(/,(\d+).+Sciences in Cold and Arid Regions,(\d+)\((\d+)\):(.+)\./)[3];<br />
      newItem.pages=ref.match(/,(\d+).+Sciences in Cold and Arid Regions,(\d+)\((\d+)\):(.+)\./)[4];<br />
      newItem.date=ref.match(/,(\d+).+Sciences in Cold and Arid Regions,(\d+)\((\d+)\):(.+)\./)[1];<br />
    }<br />
    //作者<br />
    if (ref.match(/(.+),\d+\.+/))<br />
    {<br />
      authors=ref.match(/(.+),\d+\.+/)[1].split(',');<br />
      for(i=0;i&lt;authors.length-1;i++) {<br />
        newItem.creators.push(Zotero.Utilities.cleanAuthor(authors[i], "author", true));<br />
      }<br />
      author=authors[authors.length-1].split('and');<br />
      for(i=0;i&lt;author.length;i++) {<br />
        newItem.creators.push(Zotero.Utilities.cleanAuthor(author[i], "author", true));<br />
      }<br />
    }<br />
    Zotero.debug("finished.");<br />
    newItem.complete();<br />
}</p>
<p>function doWeb(doc, url) {<br />
    var namespace = doc.documentElement.namespaceURI;<br />
    var nsResolver = null;</p>
<p>    if(detectWeb(doc, url) == "multiple") {<br />
        Zotero.debug("Enter multiple~");<br />
        // TODO: implement the multiple function.<br />
    } else {<br />
        var urls = [url];<br />
    }<br />
    Zotero.debug(urls);<br />
    // 下面对每条url进行解析<br />
    Zotero.Utilities.processDocuments(urls, scrape, function() { Zotero.done(); });<br />
    Zotero.wait();<br />
}</code><br />
也可以直接下载：<a href='http://wlx.westgis.ac.cn/uploads/2009/05/scar.js'>scar.js</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wlx.westgis.ac.cn/603/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Leica Geosystems Acquires ER Mapper</title>
		<link>http://wlx.westgis.ac.cn/373/</link>
		<comments>http://wlx.westgis.ac.cn/373/#comments</comments>
		<pubDate>Tue, 22 May 2007 10:31:34 +0000</pubDate>
		<dc:creator>wlx</dc:creator>
				<category><![CDATA[RS]]></category>
		<category><![CDATA[erdas]]></category>
		<category><![CDATA[ermapper]]></category>
		<category><![CDATA[leica]]></category>

		<guid isPermaLink="false">http://wlx.westgis.ac.cn/373/</guid>
		<description><![CDATA[Stefano Costa writes " Norcross, GA — Leica Geosystems Geospatial Imaging today announced that it has acquired all assets of Earth Resource Mapping Ltd (ER Mapper), a geospatial software company headquartered in Australia.  ER Mapper is a world-class provider of geospatial imagery processing solutions that prepare, manage, compress and deploy imagery, thus complementing Leica [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Stefano Costa writes " Norcross, GA —<a href="http://gi.leica-geosystems.com/LGISub4x133x331.aspx"> Leica Geosystems Geospatial Imaging today announced that it has acquired all assets of Earth Resource Mapping Ltd (ER Mapper), a geospatial software company headquartered in Australia. </a> ER Mapper is a world-class provider of geospatial imagery processing solutions that prepare, manage, compress and deploy imagery, thus complementing Leica Geosystems’ existing product portfolio." This links to a Leica press release. </p></blockquote>
<p>徕卡已经拥有了erdas，现在又收购了ermapper，想作遥感处理软件的巨无霸？<br />
不过，ER MAPPER是一个很有特色的软件，特别是影像的压缩、管理、分发上，或许，可以和erdas进行互补？</p>
]]></content:encoded>
			<wfw:commentRss>http://wlx.westgis.ac.cn/373/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OSSIM简介</title>
		<link>http://wlx.westgis.ac.cn/311/</link>
		<comments>http://wlx.westgis.ac.cn/311/#comments</comments>
		<pubDate>Thu, 14 Dec 2006 15:00:18 +0000</pubDate>
		<dc:creator>wlx</dc:creator>
				<category><![CDATA[GIS]]></category>
		<category><![CDATA[RS]]></category>
		<category><![CDATA[遥感]]></category>
		<category><![CDATA[introduction]]></category>
		<category><![CDATA[ossim]]></category>
		<category><![CDATA[介绍]]></category>

		<guid isPermaLink="false">http://wlx.westgis.ac.cn/311/</guid>
		<description><![CDATA[什么是OSSIM？
如果你在google里搜索ossim，会发现有两个相关产品：
一个是www.ossim.net，一个是www.ossim.org。
前面一个是Open Source Security Information Management的简写，后面一个是Open Source Software Image Map的简写。
我们这里介绍的是后者。
这里就把Mark Lucas写的overview简单翻译一下。

　　OSSIM是一个用于遥感及其影像处理、地理信息系统、摄影测量等方面的高性能软件。从1996年开发至今，现在是一个开源软件，采用了LGPL授权协议，开发语言是C++。OSSIM采用了面向对象的软件设计方法，核心功能都封装在库里，同时还提供了命令行工具以及GUI应用。
OSSIM的特色：

直接文件读写：即可以直接读写各种格式的数据文件。
MCV：显示与模型库分离，这意味你可以采用不同的显示库，比如QT、WX、GTK+
动态影像连接：尝试一下Visual Chain Editor就知道了。
基于参数的非破坏性的影像处理：用户只需要修改影像处理链和参数修改。
为空间处理、光谱处理、高光谱处理优化
内建减少不同分辨率数据集和影像分幅的优化措施：假如你有20厘米的影像数据，但你想在15米分辨率上显示，你不需要重采样数据。OSSIM可以动态自动选择合适的图层及自动重采样。
高性能计算和并行处理
无文件大小限制及打开文件数量限制，只受硬盘容量限制
超大影像镶嵌
自动色调均衡
直方图均化及匹配
空间和色调平滑：主要用于影像镶嵌，可以平滑交叉区域影像。
各种类型的注记。
支持严密几何纠正模型：物理模型纠正
支持通用传感器模型（采用有理多项式系数法）：主要是用于传感器参数不公开的平台，如Ikonos和Quickbird。
自动地形精确改正：OSSIM提供并扩展了处理多重高程数据集的功能，可以按照优先次序和图层进行地形纠正。
广泛的投影和基准面支持
支持动态插件：可以在运行时添加插件
支持高级的3D可视化：光线模拟
支持广泛的GIS数据格式
跨平台：Linux, Windows, MacOSX,  Solaris
名称值对支持（Keyword value pair support）：所有的参数都可采用这种方式进行存贮。
样例程序提供：包括命令行工具、基于QT的图形工具

]]></description>
			<content:encoded><![CDATA[<p>什么是OSSIM？<br />
如果你在google里搜索ossim，会发现有两个相关产品：<br />
一个是<a href="http://www.ossim.net">www.ossim.net</a>，一个是<a href="http://www.ossim.org">www.ossim.org</a>。<br />
前面一个是Open Source Security Information Management的简写，后面一个是Open Source Software Image Map的简写。<br />
我们这里介绍的是后者。<br />
这里就把Mark Lucas写的<a href="http://www.ossim.org/OSSIM/OSSIM%20Overview.html">overview</a>简单翻译一下。<br />
<span id="more-311"></span><br />
　　OSSIM是一个用于遥感及其影像处理、地理信息系统、摄影测量等方面的高性能软件。从1996年开发至今，现在是一个开源软件，采用了LGPL授权协议，开发语言是C++。OSSIM采用了面向对象的软件设计方法，核心功能都封装在库里，同时还提供了命令行工具以及GUI应用。</p>
<p><strong>OSSIM的特色：</strong></p>
<ul>
<li>直接文件读写：即可以直接读写各种格式的数据文件。</li>
<li>MCV：显示与模型库分离，这意味你可以采用不同的显示库，比如QT、WX、GTK+</li>
<li>动态影像连接：尝试一下Visual Chain Editor就知道了。</li>
<li>基于参数的非破坏性的影像处理：用户只需要修改影像处理链和参数修改。</li>
<li>为空间处理、光谱处理、高光谱处理优化</li>
<li>内建减少不同分辨率数据集和影像分幅的优化措施：假如你有20厘米的影像数据，但你想在15米分辨率上显示，你不需要重采样数据。OSSIM可以动态自动选择合适的图层及自动重采样。</li>
<li>高性能计算和并行处理</li>
<li>无文件大小限制及打开文件数量限制，只受硬盘容量限制</li>
<li>超大影像镶嵌</li>
<li>自动色调均衡</li>
<li>直方图均化及匹配</li>
<li>空间和色调平滑：主要用于影像镶嵌，可以平滑交叉区域影像。</li>
<li>各种类型的注记。</li>
<li>支持严密几何纠正模型：物理模型纠正</li>
<li>支持通用传感器模型（采用有理多项式系数法）：主要是用于传感器参数不公开的平台，如Ikonos和Quickbird。</li>
<li>自动地形精确改正：OSSIM提供并扩展了处理多重高程数据集的功能，可以按照优先次序和图层进行地形纠正。</li>
<li>广泛的投影和基准面支持</li>
<li>支持动态插件：可以在运行时添加插件</li>
<li>支持高级的3D可视化：光线模拟</li>
<li>支持广泛的GIS数据格式</li>
<li>跨平台：Linux, Windows, MacOSX,  Solaris</li>
<li>名称值对支持（Keyword value pair support）：所有的参数都可采用这种方式进行存贮。</li>
<li>样例程序提供：包括命令行工具、基于QT的图形工具</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://wlx.westgis.ac.cn/311/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>install envi 4.3 in ubuntu edgy</title>
		<link>http://wlx.westgis.ac.cn/255/</link>
		<comments>http://wlx.westgis.ac.cn/255/#comments</comments>
		<pubDate>Tue, 19 Sep 2006 05:38:37 +0000</pubDate>
		<dc:creator>wlx</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[RS]]></category>
		<category><![CDATA[envi]]></category>
		<category><![CDATA[ubuntu-edgy]]></category>

		<guid isPermaLink="false">http://wlxblog.westgis.ac.cn/255/</guid>
		<description><![CDATA[First download envi 4.3 for linux into my home directory, then:
cd
tar -zxvf envi_linux.x86.tar.gz
sudo mkdir /usr/local/rsi
sudo mv idl_6.3 /usr/local/rsi
sudo mv install /usr/local/rsi
sudo mv license /usr/local/rsi
cd /usr/local/rsi
sudo ./install

In the install process, I choose the first option(rsi manner), and it creates some directory by ln command(my option). After the installation, I can run envi by typing command "envi" [...]]]></description>
			<content:encoded><![CDATA[<p>First download envi 4.3 for linux into my home directory, then:</p>
<blockquote><p>cd<br />
tar -zxvf envi_linux.x86.tar.gz<br />
sudo mkdir /usr/local/rsi<br />
sudo mv idl_6.3 /usr/local/rsi<br />
sudo mv install /usr/local/rsi<br />
sudo mv license /usr/local/rsi<br />
cd /usr/local/rsi<br />
sudo ./install
</p></blockquote>
<p>In the install process, I choose the first option(rsi manner), and it creates some directory by ln command(my option). After the installation, I can run envi by typing command "envi" in terminal, maybe I should create a icon menu in the gnome desktop.</p>
]]></content:encoded>
			<wfw:commentRss>http://wlx.westgis.ac.cn/255/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to figure out Principal Component Analysis band weightings</title>
		<link>http://wlx.westgis.ac.cn/150/</link>
		<comments>http://wlx.westgis.ac.cn/150/#comments</comments>
		<pubDate>Sat, 14 Jan 2006 18:16:37 +0000</pubDate>
		<dc:creator>wlx</dc:creator>
				<category><![CDATA[RS]]></category>
		<category><![CDATA[envi]]></category>
		<category><![CDATA[pca]]></category>

		<guid isPermaLink="false">http://blog.mygis.org/150/</guid>
		<description><![CDATA[在进行主成分分析时，如何计算原波段对主成分的贡献？
答案在http://www.rsinc.com/services/techtip.asp?ttid=2807
在ENVI里转悠了半天，也没找到这个方法，google没有得到结果，最后是baidu到的。
]]></description>
			<content:encoded><![CDATA[<p>在进行主成分分析时，如何计算原波段对主成分的贡献？<br />
答案在http://www.rsinc.com/services/techtip.asp?ttid=2807<br />
在ENVI里转悠了半天，也没找到这个方法，google没有得到结果，最后是baidu到的。</p>
]]></content:encoded>
			<wfw:commentRss>http://wlx.westgis.ac.cn/150/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ubuntu breezy安装envi 4.2</title>
		<link>http://wlx.westgis.ac.cn/132/</link>
		<comments>http://wlx.westgis.ac.cn/132/#comments</comments>
		<pubDate>Thu, 24 Nov 2005 04:52:06 +0000</pubDate>
		<dc:creator>wlx</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[RS]]></category>
		<category><![CDATA[breezy]]></category>
		<category><![CDATA[envi]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.mygis.org/132/</guid>
		<description><![CDATA[没有什么要注意的问题。
下载，解压缩到某安装目录，执行install，根据提示操作。
license文件拷贝到对应的idl_6.2目录下。
执行envi_4.2\bin目录下的envi文件，或者可以再作一个菜单项或桌面快捷方式，或加一个link到系统目录中。
]]></description>
			<content:encoded><![CDATA[<p>没有什么要注意的问题。<br />
下载，解压缩到某安装目录，执行install，根据提示操作。<br />
license文件拷贝到对应的idl_6.2目录下。<br />
执行envi_4.2\bin目录下的envi文件，或者可以再作一个菜单项或桌面快捷方式，或加一个link到系统目录中。</p>
]]></content:encoded>
			<wfw:commentRss>http://wlx.westgis.ac.cn/132/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>MODIS GRID Product</title>
		<link>http://wlx.westgis.ac.cn/97/</link>
		<comments>http://wlx.westgis.ac.cn/97/#comments</comments>
		<pubDate>Mon, 20 Jun 2005 14:24:24 +0000</pubDate>
		<dc:creator>wlx</dc:creator>
				<category><![CDATA[RS]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[modis]]></category>

		<guid isPermaLink="false">http://blog.mygis.org/97/</guid>
		<description><![CDATA[Level 2G through level 4 products are considered gridded products. Gridded data are defined in a global non-overlapping grid. Globally, there are 460 tiles, of which 317 contain land pixels. Each tile has fixed Earth-locations covering an area of approximately 1200 x 1200 km (10° x 10° at the equator). All V003 MODIS Land tile [...]]]></description>
			<content:encoded><![CDATA[<p>Level 2G through level 4 products are considered gridded products. Gridded data are defined in a global non-overlapping grid. Globally, there are 460 tiles, of which 317 contain land pixels. Each tile has fixed Earth-locations covering an area of approximately 1200 x 1200 km (10° x 10° at the equator). All V003 MODIS Land tile products are defined in the equal area Integerized Sinusoidal projection (Rossow and Garder, 1984). All V004+ MODIS Land tile products are defined in the equal area Sinusoidal projection (Snyder, J.P. 1987). The tile vertical and horizontal coordinates are reflected in the product file name such as: MOD09GHK.A2004150.h13v05.004.2004152161345.hdf<br />
<strong>reference</strong></p>
<p>http://modis-250m.nascom.nasa.gov/developers/grids.html</p>
]]></content:encoded>
			<wfw:commentRss>http://wlx.westgis.ac.cn/97/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>gdal.sh自动更新安装</title>
		<link>http://wlx.westgis.ac.cn/13/</link>
		<comments>http://wlx.westgis.ac.cn/13/#comments</comments>
		<pubDate>Wed, 24 Nov 2004 09:52:33 +0000</pubDate>
		<dc:creator>wlx</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[RS]]></category>
		<category><![CDATA[gdal]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://blog.mygis.org/index.php?p=13</guid>
		<description><![CDATA[为了gdal更新的方便，写了一个简单的shell脚本：

cd /root/gdal/
cvs update
./configure --with-hdf4 --with-netcdf --with-pg=/usr/local/pgsql/bin/pg_config --with-geos --with-libtiff=internal --with-static-proj4 --with-grass=/usr/local/grass-5.7.cvs
make clean
make
make install

]]></description>
			<content:encoded><![CDATA[<p>为了gdal更新的方便，写了一个简单的shell脚本：</p>
<blockquote><p>
cd /root/gdal/<br />
cvs update<br />
./configure --with-hdf4 --with-netcdf --with-pg=/usr/local/pgsql/bin/pg_config --with-geos --with-libtiff=internal --with-static-proj4 --with-grass=/usr/local/grass-5.7.cvs<br />
make clean<br />
make<br />
make install
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://wlx.westgis.ac.cn/13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EDS: EDD web发布端程序开发计划</title>
		<link>http://wlx.westgis.ac.cn/7/</link>
		<comments>http://wlx.westgis.ac.cn/7/#comments</comments>
		<pubDate>Mon, 15 Nov 2004 06:07:54 +0000</pubDate>
		<dc:creator>wlx</dc:creator>
				<category><![CDATA[RS]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[dumper]]></category>
		<category><![CDATA[eos]]></category>
		<category><![CDATA[web-clients]]></category>

		<guid isPermaLink="false">http://blog.mygis.org/index.php?p=7</guid>
		<description><![CDATA[目前采用Linux+gdal+php进行处理.
cvs -d :pserver:username@503.mygis.org:/edd checkout eds
roadmap:
version 1
实现基于文件的HDF文件浏览
元数据浏览
数据子集浏览
subdataset image view(include bands view)
基于文件名的搜索
基于HTTP的下载
数据整体空间浏览？
version 2
基于数据库（MySQL或Postgresql或通用数据库抽象接口）
HDF数据入库
需要搜索的元数据入库
分页浏览、查询
thumb入库?(多波段如何处理?)
简单搜索（关键字）
高级搜索（基于坐标、关键字、时间...）
基于HTTP的下载
多种格式的下载（HDF、NETCDF、GEOTIFF、？）
会员制？
基于FTP的会员制下载？
数据整体空间浏览?(基于mapserver+postgis?)
]]></description>
			<content:encoded><![CDATA[<p>目前采用Linux+gdal+php进行处理.<br />
cvs -d :pserver:username@503.mygis.org:/edd checkout eds</p>
<p>roadmap:<br />
version 1<br />
实现基于文件的HDF文件浏览<br />
元数据浏览<br />
数据子集浏览<br />
subdataset image view(include bands view)<br />
基于文件名的搜索<br />
基于HTTP的下载<br />
数据整体空间浏览？<br />
version 2<br />
基于数据库（MySQL或Postgresql或通用数据库抽象接口）<br />
HDF数据入库<br />
需要搜索的元数据入库<br />
分页浏览、查询<br />
thumb入库?(多波段如何处理?)<br />
简单搜索（关键字）<br />
高级搜索（基于坐标、关键字、时间...）<br />
基于HTTP的下载<br />
多种格式的下载（HDF、NETCDF、GEOTIFF、？）<br />
会员制？<br />
基于FTP的会员制下载？<br />
数据整体空间浏览?(基于mapserver+postgis?)</p>
]]></content:encoded>
			<wfw:commentRss>http://wlx.westgis.ac.cn/7/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>glovis 6.0的安装</title>
		<link>http://wlx.westgis.ac.cn/6/</link>
		<comments>http://wlx.westgis.ac.cn/6/#comments</comments>
		<pubDate>Sun, 14 Nov 2004 07:17:47 +0000</pubDate>
		<dc:creator>wlx</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[RS]]></category>
		<category><![CDATA[glovis]]></category>
		<category><![CDATA[install]]></category>

		<guid isPermaLink="false">http://blog.mygis.org/index.php?p=6</guid>
		<description><![CDATA[开始没想到,安装glovis居然很有难度.
仔细看了install.txt,也看了pdf文档,还是有很多不清楚.
感觉其做的文档不够详细(明白?).
]]></description>
			<content:encoded><![CDATA[<p>开始没想到,安装glovis居然很有难度.<br />
仔细看了install.txt,也看了pdf文档,还是有很多不清楚.<br />
感觉其做的文档不够详细(明白?).</p>
]]></content:encoded>
			<wfw:commentRss>http://wlx.westgis.ac.cn/6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
