#include #include #include #include #include "local_proto.h" int get_stats(const char *name, struct Cell_stats *statf) { int fd; CELL *cell; int row, nrows, ncols; fd = Rast_open_old(name, ""); nrows = Rast_window_rows(); ncols = Rast_window_cols(); cell = Rast_allocate_c_buf(); Rast_init_cell_stats(statf); G_message(_("Reading %s ..."), name); for (row = 0; row < nrows; row++) { G_percent(row, nrows, 2); Rast_get_c_row(fd, cell, row); Rast_update_cell_stats(cell, ncols, statf); } if (row < nrows) exit(1); Rast_close(fd); G_free(cell); G_percent(row, nrows, 2); return 0; }