Quellcode durchsuchen

reorganizing lidar tools: move vector lidar tools to vector

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@42319 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Metz vor 15 Jahren
Ursprung
Commit
28402f738c
35 geänderte Dateien mit 107 neuen und 19 gelöschten Zeilen
  1. 19 0
      lib/lidar/README
  2. 13 0
      raster/r.resamp.bspline/README
  3. 5 1
      vector/Makefile
  4. 0 13
      vector/lidar/Makefile
  5. 1 1
      vector/lidar/v.lidar.correction/Makefile
  6. 13 0
      vector/v.lidar.correction/README
  7. 0 0
      vector/v.lidar.correction/correction.c
  8. 0 0
      vector/v.lidar.correction/correction.h
  9. 0 0
      vector/v.lidar.correction/main.c
  10. 0 0
      vector/v.lidar.correction/v.lidar.correction.html
  11. 1 1
      vector/lidar/v.lidar.edgedetection/Makefile
  12. 13 0
      vector/v.lidar.edgedetection/README
  13. 0 0
      vector/v.lidar.edgedetection/edgedetection.c
  14. 0 0
      vector/v.lidar.edgedetection/edgedetection.h
  15. 0 0
      vector/v.lidar.edgedetection/main.c
  16. 0 0
      vector/v.lidar.edgedetection/v.lidar.edgedetection.html
  17. 0 0
      vector/v.lidar.growing/ConvexHull.c
  18. 1 1
      vector/lidar/v.lidar.growing/Makefile
  19. 13 0
      vector/v.lidar.growing/README
  20. 0 0
      vector/v.lidar.growing/growing.c
  21. 0 0
      vector/v.lidar.growing/growing.h
  22. 0 0
      vector/v.lidar.growing/main.c
  23. 0 0
      vector/v.lidar.growing/v.lidar.growing.html
  24. 1 1
      vector/lidar/v.outlier/Makefile
  25. 13 0
      vector/v.outlier/README
  26. 0 0
      vector/v.outlier/main.c
  27. 0 0
      vector/v.outlier/outlier.c
  28. 0 0
      vector/v.outlier/outlier.h
  29. 0 0
      vector/v.outlier/v.outlier.html
  30. 1 1
      vector/lidar/v.surf.bspline/Makefile
  31. 13 0
      vector/v.surf.bspline/README
  32. 0 0
      vector/v.surf.bspline/bspline.h
  33. 0 0
      vector/v.surf.bspline/crosscorr.c
  34. 0 0
      vector/v.surf.bspline/main.c
  35. 0 0
      vector/v.surf.bspline/v.surf.bspline.html

+ 19 - 0
lib/lidar/README

@@ -0,0 +1,19 @@
+modules currently using the lidar library are
+
+for LiDAR point cloud filtering
+v.lidar.edgedetection
+v.lidar.growing
+v.lidar.correction
+
+for more general purpose
+v.outlier
+v.surf.bspline
+r.resamp.bspline
+
+when modifying the lidar library, the above modules might need adjustment
+
+All the above modules use similar routines and are currently in sync. 
+If a bug is detected in one of the modules, the bug might be
+present in the other modules as well, please check these as well
+
+MM 2010/05

+ 13 - 0
raster/r.resamp.bspline/README

@@ -0,0 +1,13 @@
+part of the LiDAR tools
+
+LiDAR point cloud filtering
+v.lidar.edgedetection
+v.lidar.growing
+v.lidar.correction
+
+more general purpose
+v.outlier
+v.surf.bspline
+r.resamp.bspline
+
+developers: please keep all LiDAR tools in sync

+ 5 - 1
vector/Makefile

@@ -30,6 +30,9 @@ SUBDIRS = \
 	v.kcv \
 	v.kcv \
 	v.kernel \
 	v.kernel \
 	v.label \
 	v.label \
+	v.lidar.correction \
+	v.lidar.edgedetection \
+	v.lidar.growing \
 	v.lrs \
 	v.lrs \
 	v.proj \
 	v.proj \
 	v.mkgrid \
 	v.mkgrid \
@@ -56,6 +59,7 @@ SUBDIRS = \
 	v.out.pov \
 	v.out.pov \
 	v.out.svg \
 	v.out.svg \
 	v.out.vtk \
 	v.out.vtk \
+	v.outlier \
 	v.overlay \
 	v.overlay \
 	v.parallel \
 	v.parallel \
 	v.patch \
 	v.patch \
@@ -68,6 +72,7 @@ SUBDIRS = \
 	v.segment \
 	v.segment \
 	v.select \
 	v.select \
 	v.support \
 	v.support \
+	v.surf.bspline \
 	v.surf.idw \
 	v.surf.idw \
 	v.surf.rst \
 	v.surf.rst \
 	v.transform \
 	v.transform \
@@ -82,7 +87,6 @@ SUBDIRS = \
 	v.what \
 	v.what \
 	v.what.rast\
 	v.what.rast\
 	v.vol.rst \
 	v.vol.rst \
-	lidar \
 	v.out.ogr \
 	v.out.ogr \
 	v.in.ogr \
 	v.in.ogr \
 	v.external \
 	v.external \

+ 0 - 13
vector/lidar/Makefile

@@ -1,13 +0,0 @@
-MODULE_TOPDIR = ../..
-
-SUBDIRS = \
-	v.surf.bspline \
-	v.outlier \
-	v.lidar.correction \
-	v.lidar.edgedetection \
-	v.lidar.growing
-
-include $(MODULE_TOPDIR)/include/Make/Dir.make
-
-default: parsubdirs
-

+ 1 - 1
vector/lidar/v.lidar.correction/Makefile

@@ -1,4 +1,4 @@
-MODULE_TOPDIR = ../../..
+MODULE_TOPDIR = ../..
 
 
 PGM = v.lidar.correction
 PGM = v.lidar.correction
 
 

+ 13 - 0
vector/v.lidar.correction/README

@@ -0,0 +1,13 @@
+part of the LiDAR tools
+
+LiDAR point cloud filtering
+v.lidar.edgedetection
+v.lidar.growing
+v.lidar.correction
+
+more general purpose
+v.outlier
+v.surf.bspline
+r.resamp.bspline
+
+developers: please keep all LiDAR tools in sync

vector/lidar/v.lidar.correction/correction.c → vector/v.lidar.correction/correction.c


vector/lidar/v.lidar.correction/correction.h → vector/v.lidar.correction/correction.h


vector/lidar/v.lidar.correction/main.c → vector/v.lidar.correction/main.c


vector/lidar/v.lidar.correction/v.lidar.correction.html → vector/v.lidar.correction/v.lidar.correction.html


+ 1 - 1
vector/lidar/v.lidar.edgedetection/Makefile

@@ -1,4 +1,4 @@
-MODULE_TOPDIR = ../../..
+MODULE_TOPDIR = ../..
 
 
 PGM = v.lidar.edgedetection
 PGM = v.lidar.edgedetection
 
 

+ 13 - 0
vector/v.lidar.edgedetection/README

@@ -0,0 +1,13 @@
+part of the LiDAR tools
+
+LiDAR point cloud filtering
+v.lidar.edgedetection
+v.lidar.growing
+v.lidar.correction
+
+more general purpose
+v.outlier
+v.surf.bspline
+r.resamp.bspline
+
+developers: please keep all LiDAR tools in sync

vector/lidar/v.lidar.edgedetection/edgedetection.c → vector/v.lidar.edgedetection/edgedetection.c


vector/lidar/v.lidar.edgedetection/edgedetection.h → vector/v.lidar.edgedetection/edgedetection.h


vector/lidar/v.lidar.edgedetection/main.c → vector/v.lidar.edgedetection/main.c


vector/lidar/v.lidar.edgedetection/v.lidar.edgedetection.html → vector/v.lidar.edgedetection/v.lidar.edgedetection.html


vector/lidar/v.lidar.growing/ConvexHull.c → vector/v.lidar.growing/ConvexHull.c


+ 1 - 1
vector/lidar/v.lidar.growing/Makefile

@@ -1,4 +1,4 @@
-MODULE_TOPDIR = ../../..
+MODULE_TOPDIR = ../..
 
 
 PGM = v.lidar.growing
 PGM = v.lidar.growing
 
 

+ 13 - 0
vector/v.lidar.growing/README

@@ -0,0 +1,13 @@
+part of the LiDAR tools
+
+LiDAR point cloud filtering
+v.lidar.edgedetection
+v.lidar.growing
+v.lidar.correction
+
+more general purpose
+v.outlier
+v.surf.bspline
+r.resamp.bspline
+
+developers: please keep all LiDAR tools in sync

vector/lidar/v.lidar.growing/growing.c → vector/v.lidar.growing/growing.c


vector/lidar/v.lidar.growing/growing.h → vector/v.lidar.growing/growing.h


vector/lidar/v.lidar.growing/main.c → vector/v.lidar.growing/main.c


vector/lidar/v.lidar.growing/v.lidar.growing.html → vector/v.lidar.growing/v.lidar.growing.html


+ 1 - 1
vector/lidar/v.outlier/Makefile

@@ -1,4 +1,4 @@
-MODULE_TOPDIR = ../../..
+MODULE_TOPDIR = ../..
 
 
 PGM = v.outlier
 PGM = v.outlier
 
 

+ 13 - 0
vector/v.outlier/README

@@ -0,0 +1,13 @@
+part of the LiDAR tools
+
+LiDAR point cloud filtering
+v.lidar.edgedetection
+v.lidar.growing
+v.lidar.correction
+
+more general purpose
+v.outlier
+v.surf.bspline
+r.resamp.bspline
+
+developers: please keep all LiDAR tools in sync

vector/lidar/v.outlier/main.c → vector/v.outlier/main.c


vector/lidar/v.outlier/outlier.c → vector/v.outlier/outlier.c


vector/lidar/v.outlier/outlier.h → vector/v.outlier/outlier.h


vector/lidar/v.outlier/v.outlier.html → vector/v.outlier/v.outlier.html


+ 1 - 1
vector/lidar/v.surf.bspline/Makefile

@@ -1,4 +1,4 @@
-MODULE_TOPDIR = ../../..
+MODULE_TOPDIR = ../..
 
 
 PGM = v.surf.bspline
 PGM = v.surf.bspline
 
 

+ 13 - 0
vector/v.surf.bspline/README

@@ -0,0 +1,13 @@
+part of the LiDAR tools
+
+LiDAR point cloud filtering
+v.lidar.edgedetection
+v.lidar.growing
+v.lidar.correction
+
+more general purpose
+v.outlier
+v.surf.bspline
+r.resamp.bspline
+
+developers: please keep all LiDAR tools in sync

vector/lidar/v.surf.bspline/bspline.h → vector/v.surf.bspline/bspline.h


vector/lidar/v.surf.bspline/crosscorr.c → vector/v.surf.bspline/crosscorr.c


vector/lidar/v.surf.bspline/main.c → vector/v.surf.bspline/main.c


vector/lidar/v.surf.bspline/v.surf.bspline.html → vector/v.surf.bspline/v.surf.bspline.html