[GRASS-SVN] r29808 - in grass-addons: r.boxcount r.boxcount.sh

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jan 23 10:05:50 EST 2008


Author: florian
Date: 2008-01-23 10:05:50 -0500 (Wed, 23 Jan 2008)
New Revision: 29808

Modified:
   grass-addons/r.boxcount.sh/r.boxcount.sh
   grass-addons/r.boxcount/bits.c
   grass-addons/r.boxcount/bits.h
   grass-addons/r.boxcount/file.c
   grass-addons/r.boxcount/file.h
   grass-addons/r.boxcount/main.c
   grass-addons/r.boxcount/record.h
   grass-addons/r.boxcount/sort.c
   grass-addons/r.boxcount/sort.h
Log:
updated license information for r.boxcount*


Modified: grass-addons/r.boxcount/bits.c
===================================================================
--- grass-addons/r.boxcount/bits.c	2008-01-23 15:05:06 UTC (rev 29807)
+++ grass-addons/r.boxcount/bits.c	2008-01-23 15:05:50 UTC (rev 29808)
@@ -1,7 +1,37 @@
+/****************************************************************************
+ *
+ * MODULE:       r.boxcount
+ * AUTHOR(S):    
+ *
+ *  Original author:
+ *  Mark Lake  14/5/99
+ *  
+ *  University College London
+ *  Institute of Archaeology
+ *  31-34 Gordon Square
+ *  London.  WC1H 0PY
+ *  email: mark.lake at ucl.ac.uk
+ * 
+ *  Adaptations for grass63:
+ *  Florian Kindl, 2006-10-02
+ *  University of Innsbruck
+ *  Institute of Geography
+ *  email: florian.kindl at uibk.ac.at
+ *
+ * PURPOSE: 
+ * These functions manipuluate individual bits and might
+ * need modification on a Big-Endian machine (e.g SPARC, 68xxx).  
+ * This code was developed on an 80x86.
+ *  
+ *
+ * COPYRIGHT:    (C) 2008 by the authors
+ *  
+ *               This program is free software under the GNU General Public
+ *   	    	 License (>=v2). Read the file COPYING that comes with GRASS
+ *   	    	 for details.
+ *
+ *****************************************************************************/
 
-/* These functions manipuluate individual bits and might
-   need modification on a Big-Endian machine (e.g SPARC, 68xxx).  
-   This code was developed on an 80x86.                                   */
 
 
 

Modified: grass-addons/r.boxcount/bits.h
===================================================================
--- grass-addons/r.boxcount/bits.h	2008-01-23 15:05:06 UTC (rev 29807)
+++ grass-addons/r.boxcount/bits.h	2008-01-23 15:05:50 UTC (rev 29808)
@@ -1,3 +1,31 @@
+/****************************************************************************
+ *
+ * MODULE:       r.boxcount
+ * AUTHOR(S):    
+ *
+ *  Original author:
+ *  Mark Lake  14/5/99
+ *  
+ *  University College London
+ *  Institute of Archaeology
+ *  31-34 Gordon Square
+ *  London.  WC1H 0PY
+ *  email: mark.lake at ucl.ac.uk
+ * 
+ *  Adaptations for grass63:
+ *  Florian Kindl, 2006-10-02
+ *  University of Innsbruck
+ *  Institute of Geography
+ *  email: florian.kindl at uibk.ac.at
+ *
+ *
+ * COPYRIGHT:    (C) 2008 by the authors
+ *  
+ *               This program is free software under the GNU General Public
+ *   	    	 License (>=v2). Read the file COPYING that comes with GRASS
+ *   	    	 for details.
+ *
+ *****************************************************************************/
 #ifndef BITSH
 #define BITSH
 

Modified: grass-addons/r.boxcount/file.c
===================================================================
--- grass-addons/r.boxcount/file.c	2008-01-23 15:05:06 UTC (rev 29807)
+++ grass-addons/r.boxcount/file.c	2008-01-23 15:05:50 UTC (rev 29808)
@@ -1,3 +1,31 @@
+/****************************************************************************
+ *
+ * MODULE:       r.boxcount
+ * AUTHOR(S):    
+ *
+ *  Original author:
+ *  Mark Lake  14/5/99
+ *  
+ *  University College London
+ *  Institute of Archaeology
+ *  31-34 Gordon Square
+ *  London.  WC1H 0PY
+ *  email: mark.lake at ucl.ac.uk
+ * 
+ *  Adaptations for grass63:
+ *  Florian Kindl, 2006-10-02
+ *  University of Innsbruck
+ *  Institute of Geography
+ *  email: florian.kindl at uibk.ac.at
+ *
+ *
+ * COPYRIGHT:    (C) 2008 by the authors
+ *  
+ *               This program is free software under the GNU General Public
+ *   	    	 License (>=v2). Read the file COPYING that comes with GRASS
+ *   	    	 for details.
+ *
+ *****************************************************************************/
 
 #include <stdlib.h>
 #include <string.h>

Modified: grass-addons/r.boxcount/file.h
===================================================================
--- grass-addons/r.boxcount/file.h	2008-01-23 15:05:06 UTC (rev 29807)
+++ grass-addons/r.boxcount/file.h	2008-01-23 15:05:50 UTC (rev 29808)
@@ -1,3 +1,31 @@
+/****************************************************************************
+ *
+ * MODULE:       r.boxcount
+ * AUTHOR(S):    
+ *
+ *  Original author:
+ *  Mark Lake  14/5/99
+ *  
+ *  University College London
+ *  Institute of Archaeology
+ *  31-34 Gordon Square
+ *  London.  WC1H 0PY
+ *  email: mark.lake at ucl.ac.uk
+ * 
+ *  Adaptations for grass63:
+ *  Florian Kindl, 2006-10-02
+ *  University of Innsbruck
+ *  Institute of Geography
+ *  email: florian.kindl at uibk.ac.at
+ *
+ *
+ * COPYRIGHT:    (C) 2008 by the authors
+ *  
+ *               This program is free software under the GNU General Public
+ *   	    	 License (>=v2). Read the file COPYING that comes with GRASS
+ *   	    	 for details.
+ *
+ *****************************************************************************/
 #ifndef FILEH
 #define FILEH
 

Modified: grass-addons/r.boxcount/main.c
===================================================================
--- grass-addons/r.boxcount/main.c	2008-01-23 15:05:06 UTC (rev 29807)
+++ grass-addons/r.boxcount/main.c	2008-01-23 15:05:50 UTC (rev 29808)
@@ -2,18 +2,21 @@
  *
  * MODULE:       r.boxcount
  * AUTHOR(S):    
- * 
+ *
+ *  Original author:
  *  Mark Lake  14/5/99
  *  
  *  University College London
  *  Institute of Archaeology
  *  31-34 Gordon Square
  *  London.  WC1H 0PY
- *  
- *  Email: mark.lake at ucl.ac.uk
+ *  email: mark.lake at ucl.ac.uk
  * 
- *  Port to Grass63 Florian Kindl, 2006-10-02
- *  florian.kindl at uibk.ac.at
+ *  Adaptations for grass63:
+ *  Florian Kindl, 2006-10-02
+ *  University of Innsbruck
+ *  Institute of Geography
+ *  email: florian.kindl at uibk.ac.at
  *
  * PURPOSE: 
  *  
@@ -66,7 +69,7 @@
  *  and might need modification on a Big-Endian machine
  *  (e.g SPARC, 68xxx).  This code was developed on an 80586.
  *
- * COPYRIGHT:    (C) 2002,2005 by the GRASS Development Team
+ * COPYRIGHT:    (C) 2008 by the authors
  *  
  *               This program is free software under the GNU General Public
  *   	    	 License (>=v2). Read the file COPYING that comes with GRASS

Modified: grass-addons/r.boxcount/record.h
===================================================================
--- grass-addons/r.boxcount/record.h	2008-01-23 15:05:06 UTC (rev 29807)
+++ grass-addons/r.boxcount/record.h	2008-01-23 15:05:50 UTC (rev 29808)
@@ -1,3 +1,31 @@
+/****************************************************************************
+ *
+ * MODULE:       r.boxcount
+ * AUTHOR(S):    
+ *
+ *  Original author:
+ *  Mark Lake  14/5/99
+ *  
+ *  University College London
+ *  Institute of Archaeology
+ *  31-34 Gordon Square
+ *  London.  WC1H 0PY
+ *  email: mark.lake at ucl.ac.uk
+ * 
+ *  Adaptations for grass63:
+ *  Florian Kindl, 2006-10-02
+ *  University of Innsbruck
+ *  Institute of Geography
+ *  email: florian.kindl at uibk.ac.at
+ *
+ *
+ * COPYRIGHT:    (C) 2008 by the authors
+ *  
+ *               This program is free software under the GNU General Public
+ *   	    	 License (>=v2). Read the file COPYING that comes with GRASS
+ *   	    	 for details.
+ *
+ *****************************************************************************/
 #ifndef RECORDH
 #define RECORDH
 

Modified: grass-addons/r.boxcount/sort.c
===================================================================
--- grass-addons/r.boxcount/sort.c	2008-01-23 15:05:06 UTC (rev 29807)
+++ grass-addons/r.boxcount/sort.c	2008-01-23 15:05:50 UTC (rev 29808)
@@ -1,3 +1,31 @@
+/****************************************************************************
+ *
+ * MODULE:       r.boxcount
+ * AUTHOR(S):    
+ *
+ *  Original author:
+ *  Mark Lake  14/5/99
+ *  
+ *  University College London
+ *  Institute of Archaeology
+ *  31-34 Gordon Square
+ *  London.  WC1H 0PY
+ *  email: mark.lake at ucl.ac.uk
+ * 
+ *  Adaptations for grass63:
+ *  Florian Kindl, 2006-10-02
+ *  University of Innsbruck
+ *  Institute of Geography
+ *  email: florian.kindl at uibk.ac.at
+ *
+ *
+ * COPYRIGHT:    (C) 2008 by the authors
+ *  
+ *               This program is free software under the GNU General Public
+ *   	    	 License (>=v2). Read the file COPYING that comes with GRASS
+ *   	    	 for details.
+ *
+ *****************************************************************************/
 
 #include <stdlib.h>
 #include <stdio.h>

Modified: grass-addons/r.boxcount/sort.h
===================================================================
--- grass-addons/r.boxcount/sort.h	2008-01-23 15:05:06 UTC (rev 29807)
+++ grass-addons/r.boxcount/sort.h	2008-01-23 15:05:50 UTC (rev 29808)
@@ -1,3 +1,31 @@
+/****************************************************************************
+ *
+ * MODULE:       r.boxcount
+ * AUTHOR(S):    
+ *
+ *  Original author:
+ *  Mark Lake  14/5/99
+ *  
+ *  University College London
+ *  Institute of Archaeology
+ *  31-34 Gordon Square
+ *  London.  WC1H 0PY
+ *  email: mark.lake at ucl.ac.uk
+ * 
+ *  Adaptations for grass63:
+ *  Florian Kindl, 2006-10-02
+ *  University of Innsbruck
+ *  Institute of Geography
+ *  email: florian.kindl at uibk.ac.at
+ *
+ *
+ * COPYRIGHT:    (C) 2008 by the authors
+ *  
+ *               This program is free software under the GNU General Public
+ *   	    	 License (>=v2). Read the file COPYING that comes with GRASS
+ *   	    	 for details.
+ *
+ *****************************************************************************/
 #ifndef SORTH
 #define SORTH
 

Modified: grass-addons/r.boxcount.sh/r.boxcount.sh
===================================================================
--- grass-addons/r.boxcount.sh/r.boxcount.sh	2008-01-23 15:05:06 UTC (rev 29807)
+++ grass-addons/r.boxcount.sh/r.boxcount.sh	2008-01-23 15:05:50 UTC (rev 29808)
@@ -5,14 +5,23 @@
 # MODULE: boxcount.sh
 #
 # AUTHORS:
-# Mark Lake, 1/9/99
+#
+# Original author:
+# Mark Lake  1/9/99
+# University College London
+# Institute of Archaeology
+# 31-34 Gordon Square
+# London.  WC1H 0PY
+# email: mark.lake at ucl.ac.uk
 # 
-# adaptations for GRASS GIS 6.3:
-# Florian Kindl, 2006-10-04
-# florian.kindl at uibk.ac.at
+#  Adaptations for grass63:
+#  Florian Kindl, 2006-10-02
+#  University of Innsbruck
+#  Institute of Geography
+#  email: florian.kindl at uibk.ac.at
 #
 # PURPOSE: Study  how the boxcounting fractal dimension varies across a raster map.
-# COPYRIGHT: (C) 2006 by the authors.
+# COPYRIGHT: (C) 2008 by the authors.
 #        This program is free software under the GNU General Public
 #        License (>=v2). Read the file COPYING that comes with GRASS
 #        for details.



More information about the grass-commit mailing list