info.h 619 B

1234567891011121314151617181920212223242526
  1. /*
  2. * lidar-related printing and scanning functions
  3. *
  4. * Authors:
  5. * Markus Metz (r.in.lidar)
  6. * Vaclav Petras (refactoring and various additions)
  7. *
  8. * Copyright 2011-2016 by Vaclav Petras, and The GRASS Development Team
  9. *
  10. * This program is free software licensed under the GPL (>=v2).
  11. * Read the COPYING file that comes with GRASS for details.
  12. *
  13. */
  14. #ifndef __INFO_H__
  15. #define __INFO_H__
  16. #include <grass/gis.h>
  17. #include <grass/raster.h>
  18. #include <liblas/capi/liblas.h>
  19. void print_lasinfo(LASHeaderH, LASSRSH);
  20. int scan_bounds(LASReaderH, int, int, int, double, struct Cell_head *);
  21. #endif /* __INFO_H__ */