「Customizing the GRASS Toolbox」の版間の差分

提供: OSGeo.JP Wiki
移動: 案内検索
(ページの作成: <H3> Customizing the GRASS Toolbox </H3> <P> Nearly all GRASS modules can be added to the GRASS toolbox. A XML interface is provided to parse the pretty simple XML files which …)
 
(ページの置換: '--~~~~このページは削除予定です。')
 
行1: 行1:
<H3>
+
--[[利用者:Sanak|Sanak]] 2009年10月4日 () 13:23 (UTC)このページは削除予定です。
Customizing the GRASS Toolbox
+
</H3>
+
 
+
<P>
+
Nearly all GRASS modules can be added to the GRASS toolbox. A XML
+
interface is provided to parse the pretty simple XML files which configures
+
the modules appearance and parameters inside the toolbox.
+
 
+
<P>
+
A sample XML file for generating the module v.buffer (v.buffer.qgm)  
+
looks like this:
+
<PRE>
+
&lt;?xml version="1.0" encoding="UTF-8"?&gt;
+
&lt;!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd"&gt;
+
 
+
&lt;qgisgrassmodule label="Vector buffer" module="v.buffer"&gt;
+
        &lt;option key="input" typeoption="type" layeroption="layer" /&gt;
+
        &lt;option key="buffer"/&gt;
+
        &lt;option key="output" /&gt;
+
&lt;/qgisgrassmodule&gt;
+
</PRE>
+
 
+
<P>
+
The parser reads this definition and creates a new tab inside the toolbox
+
when you select the module. A more detailed description for adding new
+
modules, changing the modules group, etc. can be found on the QGIS wiki at
+
<BR>http://wiki.qgis.org/qgiswiki/Adding_New_Tools_to_the_GRASS_Toolbox.
+
 
+
<P>
+
<BR><HR>
+

2009年10月4日 (日) 22:23時点における最新版

--Sanak 2009年10月4日 (日) 13:23 (UTC)このページは削除予定です。