main.cpp 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604
  1. /****************************************************************************
  2. *
  3. * MODULE: r.terraflow
  4. *
  5. * COPYRIGHT (C) 2007, 2010 Laura Toma
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. *****************************************************************************/
  18. #include <stdio.h>
  19. #include <stdlib.h>
  20. #include <string.h>
  21. #include <assert.h>
  22. #include <ctype.h>
  23. #include <time.h>
  24. #include <sys/types.h>
  25. #ifdef HAVE_STATVFS_H
  26. #include <sys/statvfs.h>
  27. #endif
  28. extern "C" {
  29. #include <grass/gis.h>
  30. #include <grass/raster.h>
  31. #include <grass/glocale.h>
  32. }
  33. #include "option.h"
  34. #include "common.h" /* declares the globals */
  35. #include "fill.h"
  36. #include "flow.h"
  37. #include "nodata.h"
  38. #include "grass2str.h"
  39. #include "water.h"
  40. #include "sortutils.h"
  41. /* globals: in common.H
  42. extern statsRecorder *stats;
  43. extern userOptions* opt;
  44. extern struct Cell_head region;
  45. */
  46. /* #define JUMP2FLOW */
  47. /* define it only if you want to skip the flow direction computation
  48. and jump directly to computing flow accumulation; the flowstream
  49. must exist in /STREAM_DIR/flowStream */
  50. /* ---------------------------------------------------------------------- */
  51. void
  52. parse_args(int argc, char *argv[]) {
  53. /* input elevation grid */
  54. struct Option *input_elev;
  55. input_elev = G_define_standard_option(G_OPT_R_ELEV);
  56. /* output filled elevation grid */
  57. struct Option *output_elev;
  58. output_elev = G_define_standard_option(G_OPT_R_OUTPUT);
  59. output_elev->key = "filled";
  60. output_elev->description= _("Name for output filled (flooded) elevation raster map");
  61. /* output direction grid */
  62. struct Option *output_dir;
  63. output_dir = G_define_standard_option(G_OPT_R_OUTPUT);
  64. output_dir->key = "direction";
  65. output_dir->description= _("Name for output flow direction raster map");
  66. /* output sinkwatershed grid */
  67. struct Option *output_watershed;
  68. output_watershed = G_define_standard_option(G_OPT_R_OUTPUT);
  69. output_watershed->key = "swatershed";
  70. output_watershed->description= _("Name for output sink-watershed raster map");
  71. /* output flow accumulation grid */
  72. struct Option *output_accu;
  73. output_accu = G_define_standard_option(G_OPT_R_OUTPUT);
  74. output_accu->key = "accumulation";
  75. output_accu->description= _("Name for output flow accumulation raster map");
  76. #ifdef OUTPUT_TCI
  77. struct Option *output_tci;
  78. output_tci = G_define_standard_option(G_OPT_R_OUTPUT);
  79. output_tci->key = "tci";
  80. output_tci->description=
  81. _("Name for output topographic convergence index (tci) raster map");
  82. #endif
  83. /* MFD/SFD flag */
  84. struct Flag *sfd_flag;
  85. sfd_flag = G_define_flag() ;
  86. sfd_flag->key = 's';
  87. sfd_flag->description= _("SFD (D8) flow (default is MFD)");
  88. /* D8CUT value*/
  89. struct Option *d8cut;
  90. d8cut = G_define_option();
  91. d8cut->key = "d8cut";
  92. d8cut->type = TYPE_DOUBLE;
  93. d8cut->required = NO;
  94. d8cut->answer = G_store("infinity"); /* default value */
  95. d8cut->label = _("Routing using SFD (D8) direction");
  96. d8cut->description =
  97. _("If flow accumulation is larger than this value it is routed using "
  98. "SFD (D8) direction (meaningfull only for MFD flow)");
  99. /* main memory */
  100. struct Option *mem;
  101. mem = G_define_option() ;
  102. mem->key = "memory";
  103. mem->type = TYPE_INTEGER;
  104. mem->required = NO;
  105. mem->answer = G_store("300"); /* 300MB default value */
  106. mem->description = _("Maximum runtime memory size (in MB)");
  107. /* temporary STREAM path */
  108. struct Option *streamdir;
  109. streamdir = G_define_option() ;
  110. streamdir->key = "stream_dir";
  111. streamdir->type = TYPE_STRING;
  112. streamdir->required = NO;
  113. #ifdef __MINGW32__
  114. streamdir->answer = G_convert_dirseps_from_host(G_store(getenv("TEMP")));
  115. #else
  116. streamdir->answer = G_store("/var/tmp/");
  117. #endif
  118. streamdir->description=
  119. _("Directory to hold temporary files (they can be large)");
  120. /* stats file */
  121. struct Option *stats_opt;
  122. stats_opt = G_define_option() ;
  123. stats_opt->key = "stats";
  124. stats_opt->type = TYPE_STRING;
  125. stats_opt->required = NO;
  126. stats_opt->description= _("Name of file containing runtime statistics");
  127. stats_opt->answer = G_store("stats.out");
  128. if (G_parser(argc, argv)) {
  129. exit (EXIT_FAILURE);
  130. }
  131. /* ************************* */
  132. assert(opt);
  133. opt->elev_grid = input_elev->answer;
  134. opt->filled_grid = output_elev->answer;
  135. opt->dir_grid = output_dir->answer;
  136. opt->watershed_grid = output_watershed->answer;
  137. opt->flowaccu_grid = output_accu->answer;
  138. #ifdef OUTPUT_TCI
  139. opt->tci_grid = output_tci->answer;
  140. #endif
  141. opt->d8 = sfd_flag->answer;
  142. if (strcmp(d8cut->answer, "infinity") == 0) {
  143. opt->d8cut = MAX_ACCU;
  144. } else {
  145. opt->d8cut = atof(d8cut->answer);
  146. }
  147. opt->mem = atoi(mem->answer);
  148. opt->streamdir = streamdir->answer;
  149. opt->verbose = G_verbose() == G_verbose_max();
  150. opt->stats = stats_opt->answer;
  151. /* somebody should delete the options */
  152. }
  153. /* ---------------------------------------------------------------------- */
  154. /* check compatibility of map header and region header */
  155. void check_header(char* cellname) {
  156. const char *mapset;
  157. mapset = G_find_raster(cellname, "");
  158. if (mapset == NULL) {
  159. G_fatal_error(_("Raster map <%s> not found"), cellname);
  160. }
  161. /* read cell header */
  162. struct Cell_head cell_hd;
  163. Rast_get_cellhd (cellname, mapset, &cell_hd);
  164. /* check compatibility with module region */
  165. if (!((region->ew_res == cell_hd.ew_res)
  166. && (region->ns_res == cell_hd.ns_res))) {
  167. G_fatal_error(_("cell file %s resolution differs from current region"),
  168. cellname);
  169. } else {
  170. if (opt->verbose) {
  171. G_message(_("cell %s header compatible with region header"),
  172. cellname);
  173. fflush(stderr);
  174. }
  175. }
  176. /* check type of input elevation raster and check if precision is lost */
  177. RASTER_MAP_TYPE data_type;
  178. data_type = Rast_map_type(opt->elev_grid, mapset);
  179. #ifdef ELEV_SHORT
  180. G_verbose_message(_("Elevation stored as SHORT (%dB)"),
  181. sizeof(elevation_type));
  182. if (data_type == FCELL_TYPE) {
  183. G_warning(_("raster %s is of type FCELL_TYPE "
  184. "--precision may be lost."), opt->elev_grid);
  185. }
  186. if (data_type == DCELL_TYPE) {
  187. G_warning(_("raster %s is of type DCELL_TYPE "
  188. "--precision may be lost."), opt->elev_grid);
  189. }
  190. #endif
  191. #ifdef ELEV_FLOAT
  192. G_verbose_message( _("Elevation stored as FLOAT (%dB)"),
  193. sizeof(elevation_type));
  194. if (data_type == CELL_TYPE) {
  195. G_warning(_("raster %s is of type CELL_TYPE "
  196. "--you should use r.terraflow.short"), opt->elev_grid);
  197. }
  198. if (data_type == DCELL_TYPE) {
  199. G_warning(_("raster %s is of type DCELL_TYPE "
  200. "--precision may be lost."), opt->elev_grid);
  201. }
  202. #endif
  203. }
  204. /* ---------------------------------------------------------------------- */
  205. void check_args() {
  206. /* check if filled elevation grid name is valid */
  207. if (G_legal_filename (opt->filled_grid) < 0) {
  208. G_fatal_error(_("<%s> is an illegal file name"), opt->filled_grid);
  209. }
  210. /* check if output grid names are valid */
  211. if (G_legal_filename (opt->dir_grid) < 0) {
  212. G_fatal_error(_("<%s> is an illegal file name"), opt->dir_grid);
  213. }
  214. if (G_legal_filename (opt->filled_grid) < 0) {
  215. G_fatal_error(_("<%s> is an illegal file name"), opt->filled_grid);
  216. }
  217. if (G_legal_filename (opt->flowaccu_grid) < 0) {
  218. G_fatal_error(_("<%s> is an illegal file name"), opt->flowaccu_grid);
  219. }
  220. if (G_legal_filename (opt->watershed_grid) < 0) {
  221. G_fatal_error(_("<%s> is an illegal file name"), opt->watershed_grid);
  222. }
  223. #ifdef OUTPU_TCI
  224. if (G_legal_filename (opt->tci_grid) < 0) {
  225. G_fatal_error(_("<%s> is an illegal file name"), opt->tci_grid);
  226. }
  227. #endif
  228. /* check compatibility with region */
  229. check_header(opt->elev_grid);
  230. /* what else ? */
  231. }
  232. /* ---------------------------------------------------------------------- */
  233. void record_args(int argc, char **argv) {
  234. time_t t = time(NULL);
  235. char buf[BUFSIZ];
  236. if(t == (time_t)-1) {
  237. perror("time");
  238. exit(1);
  239. }
  240. #ifdef __MINGW32__
  241. strcpy(buf, ctime(&t));
  242. #else
  243. ctime_r(&t, buf);
  244. buf[24] = '\0';
  245. #endif
  246. stats->timestamp(buf);
  247. *stats << "Command Line: " << endl;
  248. for(int i=0; i<argc; i++) {
  249. *stats << argv[i] << " ";
  250. }
  251. *stats << endl;
  252. *stats << "input elevation grid: " << opt->elev_grid << "\n";
  253. *stats << "output (flooded) elevations grid: " << opt->filled_grid << "\n";
  254. *stats << "output directions grid: " << opt->dir_grid << "\n";
  255. *stats << "output sinkwatershed grid: " << opt->watershed_grid << "\n";
  256. *stats << "output accumulation grid: " << opt->flowaccu_grid << "\n";
  257. #ifdef OUTPUT_TCI
  258. *stats << "output tci grid: " << opt->tci_grid << "\n";
  259. #endif
  260. if (opt->d8) {
  261. stats ->comment("SFD (D8) flow direction");
  262. } else {
  263. stats->comment("MFD flow direction");
  264. }
  265. sprintf(buf, "D8CUT=%f", opt->d8cut);
  266. stats->comment(buf);
  267. size_t mm_size = (size_t) opt->mem << 20; /* (in bytes) */
  268. char tmp[100];
  269. formatNumber(tmp, mm_size);
  270. sprintf(buf, "Memory size: %s bytes", tmp);
  271. stats->comment(buf);
  272. }
  273. /* ---------------------------------------------------------------------- */
  274. void
  275. setFlowAccuColorTable(char* cellname) {
  276. struct Colors colors;
  277. const char *mapset;
  278. struct Range r;
  279. mapset = G_find_raster(cellname, "");
  280. if (mapset == NULL) {
  281. G_fatal_error (_("Raster map <%s> not found"), cellname);
  282. }
  283. if (Rast_read_range(cellname, mapset, &r) == -1) {
  284. G_fatal_error(_("cannot read range"));
  285. }
  286. /*fprintf(stderr, "%s range is: min=%d, max=%d\n", cellname, r.min, r.max);*/
  287. int v[6];
  288. v[0] = r.min;
  289. v[1] = 5;
  290. v[2] = 30;
  291. v[3] = 100;
  292. v[4] = 1000;
  293. v[5] = r.max;
  294. Rast_init_colors(&colors);
  295. Rast_add_c_color_rule(&v[0], 255,255,255, &v[1], 255,255,0, &colors);
  296. Rast_add_c_color_rule(&v[1], 255,255,0, &v[2], 0,255,255, &colors);
  297. Rast_add_c_color_rule(&v[2], 0,255,255, &v[3], 0,127,255, &colors);
  298. Rast_add_c_color_rule(&v[3], 0,127,255, &v[4], 0,0,255, &colors);
  299. Rast_add_c_color_rule(&v[4], 0,0,255, &v[5], 0,0,0, &colors);
  300. Rast_write_colors(cellname, mapset, &colors);
  301. Rast_free_colors(&colors);
  302. }
  303. /* ---------------------------------------------------------------------- */
  304. void
  305. setSinkWatershedColorTable(char* cellname) {
  306. struct Colors colors;
  307. const char *mapset;
  308. struct Range r;
  309. mapset = G_find_raster(cellname, "");
  310. if (mapset == NULL) {
  311. G_fatal_error (_("Raster map <%s> not found"), cellname);
  312. }
  313. if (Rast_read_range(cellname, mapset, &r) == -1) {
  314. G_fatal_error(_("cannot read range"));
  315. }
  316. Rast_init_colors(&colors);
  317. Rast_make_random_colors(&colors, 1, r.max);
  318. Rast_write_colors(cellname, mapset, &colors);
  319. Rast_free_colors(&colors);
  320. }
  321. /* print the largest interm file that will be generated during
  322. r.terraflow */
  323. void
  324. printMaxSortSize(long nodata_count) {
  325. char buf[BUFSIZ];
  326. long long fillmaxsize = (long long)nrows*ncols*sizeof(waterWindowType);
  327. long long flowmaxsize = (long long)(nrows*ncols - nodata_count)*sizeof(sweepItem);
  328. long long maxneed = (fillmaxsize > flowmaxsize) ? fillmaxsize: flowmaxsize;
  329. maxneed = 2*maxneed; /* need 2*N to sort */
  330. G_message( "total elements=%ld, nodata elements=%ld",
  331. (long)nrows*ncols, nodata_count);
  332. G_message( "largest temporary files: ");
  333. G_message( "\t\t FILL: %s [%d elements, %dB each]",
  334. formatNumber(buf, fillmaxsize),
  335. nrows * ncols, sizeof(waterWindowType));
  336. G_message( "\t\t FLOW: %s [%ld elements, %dB each]",
  337. formatNumber(buf, flowmaxsize),
  338. (long)(nrows * ncols - nodata_count), sizeof(sweepItem));
  339. G_message( "Will need at least %s space available in %s",
  340. formatNumber(buf, maxneed), /* need 2*N to sort */
  341. getenv(STREAM_TMPDIR));
  342. #ifdef HAVE_STATVFS_H
  343. fprintf(stderr, "Checking current space in %s: ", getenv(STREAM_TMPDIR));
  344. struct statvfs statbuf;
  345. statvfs(getenv(STREAM_TMPDIR), &statbuf);
  346. float avail = statbuf.f_bsize*statbuf.f_bavail;
  347. fprintf(stderr, "available %ld blocks x %ldB = %.0fB",
  348. (long)statbuf.f_bavail, statbuf.f_bsize, avail);
  349. if (avail > maxneed) {
  350. fprintf(stderr, ". OK.\n");
  351. } else {
  352. fprintf(stderr, ". Not enough space available.\n");
  353. exit(EXIT_FAILURE);
  354. }
  355. #endif
  356. }
  357. /* ---------------------------------------------------------------------- */
  358. int
  359. main(int argc, char *argv[]) {
  360. struct GModule *module;
  361. Rtimer rtTotal;
  362. char buf[BUFSIZ];
  363. /* initialize GIS library */
  364. G_gisinit(argv[0]);
  365. module = G_define_module();
  366. #ifdef ELEV_SHORT
  367. module->description = _("Flow computation for massive grids (integer version).");
  368. #endif
  369. #ifdef ELEV_FLOAT
  370. module->description = _("Flow computation for massive grids (float version).");
  371. #endif
  372. G_add_keyword(_("raster"));
  373. G_add_keyword(_("hydrology"));
  374. /* read user options; fill in global <opt> */
  375. opt = (userOptions*)malloc(sizeof(userOptions));
  376. assert(opt);
  377. region = (struct Cell_head*)malloc(sizeof(struct Cell_head));
  378. assert(region);
  379. parse_args(argc, argv);
  380. /* get the current region and dimensions */
  381. G_get_set_window(region);
  382. check_args();
  383. int nr = Rast_window_rows();
  384. int nc = Rast_window_cols();
  385. if ((nr > dimension_type_max) || (nc > dimension_type_max)) {
  386. G_fatal_error(_("[nrows=%d, ncols=%d] dimension_type overflow -- "
  387. "change dimension_type and recompile"), nr, nc);
  388. } else {
  389. nrows = (dimension_type)nr;
  390. ncols = (dimension_type)nc;
  391. }
  392. G_verbose_message( _("Region size is %d x %d"), nrows, ncols);
  393. /* check STREAM path (the place where intermediate STREAMs are placed) */
  394. sprintf(buf, "%s=%s",STREAM_TMPDIR, opt->streamdir);
  395. /* don't pass an automatic variable; putenv() isn't guaranteed to make a copy */
  396. putenv(G_store(buf));
  397. if (getenv(STREAM_TMPDIR) == NULL) {
  398. fprintf(stderr, "%s:", STREAM_TMPDIR);
  399. G_fatal_error("not set");
  400. } else {
  401. fprintf(stderr, "STREAM temporary files in %s ",
  402. getenv(STREAM_TMPDIR));
  403. fprintf(stderr, "(THESE INTERMEDIATE STREAMS WILL NOT BE DELETED IN CASE OF ABNORMAL TERMINATION OF THE PROGRAM. TO SAVE SPACE PLEASE DELETE THESE FILES MANUALLY!)\n");
  404. }
  405. /* open the stats file */
  406. stats = new statsRecorder(opt->stats);
  407. record_args(argc, argv);
  408. {
  409. char buf[BUFSIZ];
  410. long grid_size = nrows * ncols;
  411. *stats << "region size = " << formatNumber(buf, grid_size) << " elts "
  412. << "(" << nrows << " rows x " << ncols << " cols)\n";
  413. stats->flush();
  414. }
  415. /* set up STREAM memory manager */
  416. size_t mm_size = (size_t) opt->mem << 20; /* opt->mem is in MB */
  417. MM_manager.set_memory_limit(mm_size);
  418. if (opt->verbose) {
  419. MM_manager.warn_memory_limit();
  420. } else {
  421. MM_manager.ignore_memory_limit();
  422. }
  423. MM_manager.print_limit_mode();
  424. /* initialize nodata */
  425. nodataType::init();
  426. *stats << "internal nodata value: " << nodataType::ELEVATION_NODATA << endl;
  427. /* start timing -- after parse_args, which are interactive */
  428. rt_start(rtTotal);
  429. #ifndef JUMP2FLOW
  430. /* read elevation into a stream */
  431. AMI_STREAM<elevation_type> *elstr=NULL;
  432. long nodata_count;
  433. elstr = cell2stream<elevation_type>(opt->elev_grid, elevation_type_max,
  434. &nodata_count);
  435. /* print the largest interm file that will be generated */
  436. printMaxSortSize(nodata_count);
  437. /* -------------------------------------------------- */
  438. /* compute flow direction and filled elevation (and watersheds) */
  439. AMI_STREAM<direction_type> *dirstr=NULL;
  440. AMI_STREAM<elevation_type> *filledstr=NULL;
  441. AMI_STREAM<waterWindowBaseType> *flowStream=NULL;
  442. AMI_STREAM<labelElevType> *labeledWater = NULL;
  443. flowStream=computeFlowDirections(elstr, filledstr, dirstr, labeledWater);
  444. delete elstr;
  445. /* write streams to GRASS raster maps */
  446. stream2_CELL(dirstr, nrows, ncols, opt->dir_grid);
  447. delete dirstr;
  448. #ifdef ELEV_SHORT
  449. stream2_CELL(filledstr, nrows, ncols, opt->filled_grid);
  450. #else
  451. stream2_CELL(filledstr, nrows, ncols, opt->filled_grid,true);
  452. #endif
  453. delete filledstr;
  454. stream2_CELL(labeledWater, nrows, ncols, labelElevTypePrintLabel(),
  455. opt->watershed_grid);
  456. setSinkWatershedColorTable(opt->watershed_grid);
  457. delete labeledWater;
  458. #else
  459. AMI_STREAM<waterWindowBaseType> *flowStream;
  460. char path[GPATH_MAX];
  461. sprintf(path, "%s/flowStream", streamdir->answer);
  462. flowStream = new AMI_STREAM<waterWindowBaseType>(path);
  463. fprintf(stderr, "flowStream opened: len=%d\n", flowStream->stream_len());
  464. fprintf(stderr, "jumping to flow accumulation computation\n");
  465. #endif
  466. /* -------------------------------------------------- */
  467. /* compute flow accumulation (and tci) */
  468. AMI_STREAM<sweepOutput> *outstr=NULL;
  469. computeFlowAccumulation(flowStream, outstr);
  470. /* delete flowStream -- deleted inside */
  471. /* write output stream to GRASS raster maps */
  472. #ifdef OUTPUT_TCI
  473. stream2_FCELL(outstr, nrows, ncols, printAccumulation(), printTci(),
  474. opt->flowaccu_grid, opt->tci_grid);
  475. #else
  476. stream2_FCELL(outstr, nrows, ncols, printAccumulation(), opt->flowaccu_grid);
  477. #endif
  478. setFlowAccuColorTable(opt->flowaccu_grid);
  479. delete outstr;
  480. rt_stop(rtTotal);
  481. stats->recordTime("Total running time: ", rtTotal);
  482. stats->timestamp("end");
  483. G_done_msg(" ");
  484. /* free the globals */
  485. free(region);
  486. free(opt);
  487. delete stats;
  488. return 0;
  489. }