local_proto.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. /****************************************************************************
  2. *
  3. * MODULE: r.contour
  4. *
  5. * AUTHOR(S): Terry Baker - CERL
  6. * Andrea Aime <aaime liberto it>
  7. *
  8. * PURPOSE: Produces a vector map of specified contours from a
  9. * raster map layer.
  10. *
  11. * COPYRIGHT: (C) 2001 by the GRASS Development Team
  12. *
  13. * This program is free software under the GNU General Public
  14. * License (>=v2). Read the file COPYING that comes with GRASS
  15. * for details.
  16. *
  17. ***************************************************************************/
  18. #ifndef __LOCAL_PROTO_H__
  19. #define __LOCAL_PROTO_H__
  20. /* cont.c */
  21. void contour(double *, int, struct Map_info, DCELL **, struct Cell_head, int);
  22. int checkedge(DCELL, DCELL, double);
  23. /* main.c */
  24. DCELL **get_z_array(int, int, int);
  25. double *getlevels(struct Option *, struct Option *, struct Option *,
  26. struct Option *, struct FPRange *, int *);
  27. void displaceMatrix(DCELL **, int, int, double *, int);
  28. #endif /* __LOCAL_PROTO_H__ */