rast_segment.h 495 B

123456789101112131415
  1. #ifndef GRASS_RAST_SEGMENT_H
  2. #define GRASS_RAST_SEGMENT_H
  3. #include <grass/raster.h>
  4. #include <grass/segment.h>
  5. void rast_segment_open(SEGMENT * segment, const char *name,
  6. RASTER_MAP_TYPE * map_type);
  7. int rast_segment_get_value_xy(SEGMENT * base_segment,
  8. struct Cell_head *input_region,
  9. RASTER_MAP_TYPE rtype, double x, double y,
  10. double *value);
  11. #endif /* GRASS_RAST_SEGMENT_H */