[GRASS-SVN] r63800 - in grass-addons/grass7/misc: . m.eigensystem
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Dec 28 06:01:15 PST 2014
Author: neteler
Date: 2014-12-28 06:01:15 -0800 (Sun, 28 Dec 2014)
New Revision: 63800
Added:
grass-addons/grass7/misc/Makefile
grass-addons/grass7/misc/m.eigensystem/
Modified:
grass-addons/grass7/misc/m.eigensystem/Makefile
grass-addons/grass7/misc/m.eigensystem/m.eigensystem.html
Log:
m.eigensystem Addon: ported to GRASS GIS 7 for g.extension
Added: grass-addons/grass7/misc/Makefile
===================================================================
--- grass-addons/grass7/misc/Makefile (rev 0)
+++ grass-addons/grass7/misc/Makefile 2014-12-28 14:01:15 UTC (rev 63800)
@@ -0,0 +1,9 @@
+MODULE_TOPDIR = ..
+
+SUBDIRS = \
+ m.eigensystem \
+ m.gcp.filter
+
+include $(MODULE_TOPDIR)/include/Make/Dir.make
+
+default: subdirs
Modified: grass-addons/grass7/misc/m.eigensystem/Makefile
===================================================================
--- grass-addons/grass6/misc/m.eigensystem/Makefile 2014-12-28 13:30:25 UTC (rev 63799)
+++ grass-addons/grass7/misc/m.eigensystem/Makefile 2014-12-28 14:01:15 UTC (rev 63800)
@@ -19,11 +19,6 @@
$(BIN)/$(PGM): $(OBJ)
$(FC) -o $@ $(OBJ)
-html:
- $(MKDIR) $(GISBASE)/docs/html
- $(INSTALL_DATA) $(PGM).html $(GISBASE)/docs/html/
- $(MAKE) mancmd
-
clean:
-rm -f *.o
Modified: grass-addons/grass7/misc/m.eigensystem/m.eigensystem.html
===================================================================
--- grass-addons/grass6/misc/m.eigensystem/m.eigensystem.html 2014-12-28 13:30:25 UTC (rev 63799)
+++ grass-addons/grass7/misc/m.eigensystem/m.eigensystem.html 2014-12-28 14:01:15 UTC (rev 63800)
@@ -1,27 +1,3 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-<title>GRASS GIS: m.eigensystem</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link rel="stylesheet" href="grassdocs.css" type="text/css">
-</head>
-<body bgcolor="white">
-
-<img src="grass_logo.png" alt="GRASS logo"><hr align=center size=6 noshade>
-
-<h2>NAME</h2>
-
-<em><b>m.eigensystem</b></em> - Computes eigen values and eigen vectors
-for square matricies.
-
-<br>
-
-<em>(GRASS Data Import/Processing Program)</em>
-
-<h2>SYNOPSIS</h2>
-
-<b>m.eigensystem < </b><em>inputfile </em>
-
<h2>DESCRIPTION</h2>
<em>m.eigensystem</em>
@@ -108,7 +84,7 @@
</pre>
-<h2>PROGRAM NOTES</h2>
+<h2>NOTES</h2>
The relative importance of the eigen value (E) is the ratio (percentage)
of the eigen value to the sum of the eigen values. Note that the output
@@ -153,14 +129,14 @@
r.mapcalc "pc.3 = 1.8175*map.1 - 1.6232*map.2 - 0.1797*map.3"
</pre></div>
-<h2>NOTES</h2>
+<h2>PROGRAM NOTES</h2>
The source code for this program requires a Fortran compiler.
<p>
The equivalent <em>i.pca</em> command is:
<div class="code"><pre>
- i.pca in=spot.ms.1,spot.ms.2,spot.ms.3 out=spot_pca
+i.pca in=spot.ms.1,spot.ms.2,spot.ms.3 out=spot_pca
</pre></div>
@@ -182,5 +158,3 @@
<p>
<i>Last changed: $Date$</i>
-</body>
-</html>
More information about the grass-commit
mailing list