main.cpp 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612
  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->label = _("Routing using SFD (D8) direction");
  95. d8cut->description =
  96. _("If flow accumulation is larger than this value it is routed using "
  97. "SFD (D8) direction (meaningfull only for MFD flow). No answer for infinity.");
  98. /* main memory */
  99. struct Option *mem;
  100. mem = G_define_option() ;
  101. mem->key = "memory";
  102. mem->type = TYPE_INTEGER;
  103. mem->required = NO;
  104. mem->answer = "300"; /* 300MB default value */
  105. mem->description = _("Maximum runtime memory size (in MB)");
  106. /* temporary STREAM path */
  107. struct Option *streamdir;
  108. streamdir = G_define_option() ;
  109. streamdir->key = "stream_dir";
  110. streamdir->type = TYPE_STRING;
  111. streamdir->required = NO;
  112. //streamdir->answer = "";
  113. streamdir->description=
  114. _("Directory to hold temporary files (they can be large)");
  115. /* stats file */
  116. struct Option *stats_opt;
  117. stats_opt = G_define_option() ;
  118. stats_opt->key = "stats";
  119. stats_opt->type = TYPE_STRING;
  120. stats_opt->required = NO;
  121. stats_opt->description= _("Name of file containing runtime statistics");
  122. if (G_parser(argc, argv)) {
  123. exit (EXIT_FAILURE);
  124. }
  125. /* ************************* */
  126. assert(opt);
  127. opt->elev_grid = input_elev->answer;
  128. opt->filled_grid = output_elev->answer;
  129. opt->dir_grid = output_dir->answer;
  130. opt->watershed_grid = output_watershed->answer;
  131. opt->flowaccu_grid = output_accu->answer;
  132. #ifdef OUTPUT_TCI
  133. opt->tci_grid = output_tci->answer;
  134. #endif
  135. opt->d8 = sfd_flag->answer;
  136. if (!d8cut->answer) {
  137. opt->d8cut = MAX_ACCU;
  138. } else {
  139. opt->d8cut = atof(d8cut->answer);
  140. }
  141. opt->mem = atoi(mem->answer);
  142. if (!streamdir->answer) {
  143. const char *tmpdir = G_tempfile();
  144. if (G_mkdir(tmpdir) == -1)
  145. G_fatal_error(_("Unable to create temp dir"));
  146. opt->streamdir = G_store(tmpdir);
  147. }
  148. else
  149. opt->streamdir = streamdir->answer;
  150. opt->verbose = G_verbose() == G_verbose_max();
  151. opt->stats = stats_opt->answer;
  152. /* somebody should delete the options */
  153. }
  154. /* ---------------------------------------------------------------------- */
  155. /* check compatibility of map header and region header */
  156. void check_header(char* cellname) {
  157. const char *mapset;
  158. mapset = G_find_raster(cellname, "");
  159. if (mapset == NULL) {
  160. G_fatal_error(_("Raster map <%s> not found"), cellname);
  161. }
  162. /* read cell header */
  163. struct Cell_head cell_hd;
  164. Rast_get_cellhd (cellname, mapset, &cell_hd);
  165. /* check compatibility with module region */
  166. if (!((region->ew_res == cell_hd.ew_res)
  167. && (region->ns_res == cell_hd.ns_res))) {
  168. G_fatal_error(_("cell file %s resolution differs from current region"),
  169. cellname);
  170. } else {
  171. if (opt->verbose) {
  172. G_message(_("cell %s header compatible with region header"),
  173. cellname);
  174. fflush(stderr);
  175. }
  176. }
  177. /* check type of input elevation raster and check if precision is lost */
  178. RASTER_MAP_TYPE data_type;
  179. data_type = Rast_map_type(opt->elev_grid, mapset);
  180. #ifdef ELEV_SHORT
  181. G_verbose_message(_("Elevation stored as SHORT (%dB)"),
  182. sizeof(elevation_type));
  183. if (data_type == FCELL_TYPE) {
  184. G_warning(_("raster %s is of type FCELL_TYPE "
  185. "--precision may be lost."), opt->elev_grid);
  186. }
  187. if (data_type == DCELL_TYPE) {
  188. G_warning(_("raster %s is of type DCELL_TYPE "
  189. "--precision may be lost."), opt->elev_grid);
  190. }
  191. #endif
  192. #ifdef ELEV_FLOAT
  193. G_verbose_message( _("Elevation stored as FLOAT (%dB)"),
  194. sizeof(elevation_type));
  195. if (data_type == CELL_TYPE) {
  196. G_warning(_("raster %s is of type CELL_TYPE "
  197. "--you should use r.terraflow.short"), opt->elev_grid);
  198. }
  199. if (data_type == DCELL_TYPE) {
  200. G_warning(_("raster %s is of type DCELL_TYPE "
  201. "--precision may be lost."), opt->elev_grid);
  202. }
  203. #endif
  204. }
  205. /* ---------------------------------------------------------------------- */
  206. void check_args() {
  207. /* check if filled elevation grid name is valid */
  208. if (G_legal_filename (opt->filled_grid) < 0) {
  209. G_fatal_error(_("<%s> is an illegal file name"), opt->filled_grid);
  210. }
  211. /* check if output grid names are valid */
  212. if (G_legal_filename (opt->dir_grid) < 0) {
  213. G_fatal_error(_("<%s> is an illegal file name"), opt->dir_grid);
  214. }
  215. if (G_legal_filename (opt->filled_grid) < 0) {
  216. G_fatal_error(_("<%s> is an illegal file name"), opt->filled_grid);
  217. }
  218. if (G_legal_filename (opt->flowaccu_grid) < 0) {
  219. G_fatal_error(_("<%s> is an illegal file name"), opt->flowaccu_grid);
  220. }
  221. if (G_legal_filename (opt->watershed_grid) < 0) {
  222. G_fatal_error(_("<%s> is an illegal file name"), opt->watershed_grid);
  223. }
  224. #ifdef OUTPU_TCI
  225. if (G_legal_filename (opt->tci_grid) < 0) {
  226. G_fatal_error(_("<%s> is an illegal file name"), opt->tci_grid);
  227. }
  228. #endif
  229. /* check compatibility with region */
  230. check_header(opt->elev_grid);
  231. /* what else ? */
  232. }
  233. /* ---------------------------------------------------------------------- */
  234. void record_args(int argc, char **argv) {
  235. time_t t = time(NULL);
  236. char buf[BUFSIZ];
  237. if(t == (time_t)-1) {
  238. perror("time");
  239. exit(1);
  240. }
  241. #ifdef __MINGW32__
  242. strcpy(buf, ctime(&t));
  243. #else
  244. ctime_r(&t, buf);
  245. buf[24] = '\0';
  246. #endif
  247. stats->timestamp(buf);
  248. *stats << "Command Line: " << endl;
  249. for(int i=0; i<argc; i++) {
  250. *stats << argv[i] << " ";
  251. }
  252. *stats << endl;
  253. *stats << "input elevation grid: " << opt->elev_grid << "\n";
  254. *stats << "output (flooded) elevations grid: " << opt->filled_grid << "\n";
  255. *stats << "output directions grid: " << opt->dir_grid << "\n";
  256. *stats << "output sinkwatershed grid: " << opt->watershed_grid << "\n";
  257. *stats << "output accumulation grid: " << opt->flowaccu_grid << "\n";
  258. #ifdef OUTPUT_TCI
  259. *stats << "output tci grid: " << opt->tci_grid << "\n";
  260. #endif
  261. if (opt->d8) {
  262. stats ->comment("SFD (D8) flow direction");
  263. } else {
  264. stats->comment("MFD flow direction");
  265. }
  266. sprintf(buf, "D8CUT=%f", opt->d8cut);
  267. stats->comment(buf);
  268. size_t mm_size = (size_t) opt->mem << 20; /* (in bytes) */
  269. char tmp[100];
  270. formatNumber(tmp, mm_size);
  271. sprintf(buf, "Memory size: %s bytes", tmp);
  272. stats->comment(buf);
  273. }
  274. /* ---------------------------------------------------------------------- */
  275. void
  276. setFlowAccuColorTable(char* cellname) {
  277. struct Colors colors;
  278. const char *mapset;
  279. struct Range r;
  280. mapset = G_find_raster(cellname, "");
  281. if (mapset == NULL) {
  282. G_fatal_error (_("Raster map <%s> not found"), cellname);
  283. }
  284. if (Rast_read_range(cellname, mapset, &r) == -1) {
  285. G_fatal_error(_("cannot read range"));
  286. }
  287. /*fprintf(stderr, "%s range is: min=%d, max=%d\n", cellname, r.min, r.max);*/
  288. int v[6];
  289. v[0] = r.min;
  290. v[1] = 5;
  291. v[2] = 30;
  292. v[3] = 100;
  293. v[4] = 1000;
  294. v[5] = r.max;
  295. Rast_init_colors(&colors);
  296. Rast_add_c_color_rule(&v[0], 255,255,255, &v[1], 255,255,0, &colors);
  297. Rast_add_c_color_rule(&v[1], 255,255,0, &v[2], 0,255,255, &colors);
  298. Rast_add_c_color_rule(&v[2], 0,255,255, &v[3], 0,127,255, &colors);
  299. Rast_add_c_color_rule(&v[3], 0,127,255, &v[4], 0,0,255, &colors);
  300. Rast_add_c_color_rule(&v[4], 0,0,255, &v[5], 0,0,0, &colors);
  301. Rast_write_colors(cellname, mapset, &colors);
  302. Rast_free_colors(&colors);
  303. }
  304. /* ---------------------------------------------------------------------- */
  305. void
  306. setSinkWatershedColorTable(char* cellname) {
  307. struct Colors colors;
  308. const char *mapset;
  309. struct Range r;
  310. mapset = G_find_raster(cellname, "");
  311. if (mapset == NULL) {
  312. G_fatal_error (_("Raster map <%s> not found"), cellname);
  313. }
  314. if (Rast_read_range(cellname, mapset, &r) == -1) {
  315. G_fatal_error(_("cannot read range"));
  316. }
  317. Rast_init_colors(&colors);
  318. Rast_make_random_colors(&colors, 1, r.max);
  319. Rast_write_colors(cellname, mapset, &colors);
  320. Rast_free_colors(&colors);
  321. }
  322. /* print the largest interm file that will be generated during
  323. r.terraflow */
  324. void
  325. printMaxSortSize(long nodata_count) {
  326. char buf[BUFSIZ];
  327. long long fillmaxsize = (long long)nrows*ncols*sizeof(waterWindowType);
  328. long long flowmaxsize = (long long)(nrows*ncols - nodata_count)*sizeof(sweepItem);
  329. long long maxneed = (fillmaxsize > flowmaxsize) ? fillmaxsize: flowmaxsize;
  330. maxneed = 2*maxneed; /* need 2*N to sort */
  331. G_message( "total elements=%ld, nodata elements=%ld",
  332. (long)nrows*ncols, nodata_count);
  333. G_message( "largest temporary files: ");
  334. G_message( "\t\t FILL: %s [%d elements, %dB each]",
  335. formatNumber(buf, fillmaxsize),
  336. nrows * ncols, sizeof(waterWindowType));
  337. G_message( "\t\t FLOW: %s [%ld elements, %dB each]",
  338. formatNumber(buf, flowmaxsize),
  339. (long)(nrows * ncols - nodata_count), sizeof(sweepItem));
  340. G_message( "Will need at least %s space available in %s",
  341. formatNumber(buf, maxneed), /* need 2*N to sort */
  342. getenv(STREAM_TMPDIR));
  343. #ifdef HAVE_STATVFS_H
  344. fprintf(stderr, "Checking current space in %s: ", getenv(STREAM_TMPDIR));
  345. struct statvfs statbuf;
  346. statvfs(getenv(STREAM_TMPDIR), &statbuf);
  347. float avail = statbuf.f_bsize*statbuf.f_bavail;
  348. fprintf(stderr, "available %ld blocks x %ldB = %.0fB",
  349. (long)statbuf.f_bavail, statbuf.f_bsize, avail);
  350. if (avail > maxneed) {
  351. fprintf(stderr, ". OK.\n");
  352. } else {
  353. fprintf(stderr, ". Not enough space available.\n");
  354. exit(EXIT_FAILURE);
  355. }
  356. #endif
  357. }
  358. /* ---------------------------------------------------------------------- */
  359. int
  360. main(int argc, char *argv[]) {
  361. struct GModule *module;
  362. Rtimer rtTotal;
  363. char buf[BUFSIZ];
  364. /* initialize GIS library */
  365. G_gisinit(argv[0]);
  366. module = G_define_module();
  367. #ifdef ELEV_SHORT
  368. module->description = _("Flow computation for massive grids (integer version).");
  369. #endif
  370. #ifdef ELEV_FLOAT
  371. module->description = _("Flow computation for massive grids (float version).");
  372. #endif
  373. G_add_keyword(_("raster"));
  374. G_add_keyword(_("hydrology"));
  375. /* read user options; fill in global <opt> */
  376. opt = (userOptions*)malloc(sizeof(userOptions));
  377. assert(opt);
  378. region = (struct Cell_head*)malloc(sizeof(struct Cell_head));
  379. assert(region);
  380. parse_args(argc, argv);
  381. /* get the current region and dimensions */
  382. G_get_set_window(region);
  383. check_args();
  384. int nr = Rast_window_rows();
  385. int nc = Rast_window_cols();
  386. if ((nr > dimension_type_max) || (nc > dimension_type_max)) {
  387. G_fatal_error(_("[nrows=%d, ncols=%d] dimension_type overflow -- "
  388. "change dimension_type and recompile"), nr, nc);
  389. } else {
  390. nrows = (dimension_type)nr;
  391. ncols = (dimension_type)nc;
  392. }
  393. G_verbose_message( _("Region size is %d x %d"), nrows, ncols);
  394. /* check STREAM path (the place where intermediate STREAMs are placed) */
  395. sprintf(buf, "%s=%s",STREAM_TMPDIR, opt->streamdir);
  396. /* don't pass an automatic variable; putenv() isn't guaranteed to make a copy */
  397. putenv(G_store(buf));
  398. if (getenv(STREAM_TMPDIR) == NULL) {
  399. fprintf(stderr, "%s:", STREAM_TMPDIR);
  400. G_fatal_error("not set");
  401. } else {
  402. fprintf(stderr, "STREAM temporary files in %s ",
  403. getenv(STREAM_TMPDIR));
  404. 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");
  405. }
  406. if (opt->stats) {
  407. /* open the stats file */
  408. stats = new statsRecorder(opt->stats);
  409. record_args(argc, argv);
  410. {
  411. char buf[BUFSIZ];
  412. long grid_size = nrows * ncols;
  413. *stats << "region size = " << formatNumber(buf, grid_size) << " elts "
  414. << "(" << nrows << " rows x " << ncols << " cols)\n";
  415. stats->flush();
  416. }
  417. }
  418. /* set up STREAM memory manager */
  419. size_t mm_size = (size_t) opt->mem << 20; /* opt->mem is in MB */
  420. MM_manager.set_memory_limit(mm_size);
  421. if (opt->verbose) {
  422. MM_manager.warn_memory_limit();
  423. } else {
  424. MM_manager.ignore_memory_limit();
  425. }
  426. MM_manager.print_limit_mode();
  427. /* initialize nodata */
  428. nodataType::init();
  429. if (stats)
  430. *stats << "internal nodata value: " << nodataType::ELEVATION_NODATA << endl;
  431. /* start timing -- after parse_args, which are interactive */
  432. rt_start(rtTotal);
  433. #ifndef JUMP2FLOW
  434. /* read elevation into a stream */
  435. AMI_STREAM<elevation_type> *elstr=NULL;
  436. long nodata_count;
  437. elstr = cell2stream<elevation_type>(opt->elev_grid, elevation_type_max,
  438. &nodata_count);
  439. /* print the largest interm file that will be generated */
  440. printMaxSortSize(nodata_count);
  441. /* -------------------------------------------------- */
  442. /* compute flow direction and filled elevation (and watersheds) */
  443. AMI_STREAM<direction_type> *dirstr=NULL;
  444. AMI_STREAM<elevation_type> *filledstr=NULL;
  445. AMI_STREAM<waterWindowBaseType> *flowStream=NULL;
  446. AMI_STREAM<labelElevType> *labeledWater = NULL;
  447. flowStream=computeFlowDirections(elstr, filledstr, dirstr, labeledWater);
  448. delete elstr;
  449. /* write streams to GRASS raster maps */
  450. stream2_CELL(dirstr, nrows, ncols, opt->dir_grid);
  451. delete dirstr;
  452. #ifdef ELEV_SHORT
  453. stream2_CELL(filledstr, nrows, ncols, opt->filled_grid);
  454. #else
  455. stream2_CELL(filledstr, nrows, ncols, opt->filled_grid,true);
  456. #endif
  457. delete filledstr;
  458. stream2_CELL(labeledWater, nrows, ncols, labelElevTypePrintLabel(),
  459. opt->watershed_grid);
  460. setSinkWatershedColorTable(opt->watershed_grid);
  461. delete labeledWater;
  462. #else
  463. AMI_STREAM<waterWindowBaseType> *flowStream;
  464. char path[GPATH_MAX];
  465. sprintf(path, "%s/flowStream", streamdir->answer);
  466. flowStream = new AMI_STREAM<waterWindowBaseType>(path);
  467. fprintf(stderr, "flowStream opened: len=%d\n", flowStream->stream_len());
  468. fprintf(stderr, "jumping to flow accumulation computation\n");
  469. #endif
  470. /* -------------------------------------------------- */
  471. /* compute flow accumulation (and tci) */
  472. AMI_STREAM<sweepOutput> *outstr=NULL;
  473. computeFlowAccumulation(flowStream, outstr);
  474. /* delete flowStream -- deleted inside */
  475. /* write output stream to GRASS raster maps */
  476. #ifdef OUTPUT_TCI
  477. stream2_FCELL(outstr, nrows, ncols, printAccumulation(), printTci(),
  478. opt->flowaccu_grid, opt->tci_grid);
  479. #else
  480. stream2_FCELL(outstr, nrows, ncols, printAccumulation(), opt->flowaccu_grid);
  481. #endif
  482. setFlowAccuColorTable(opt->flowaccu_grid);
  483. delete outstr;
  484. rt_stop(rtTotal);
  485. if (stats) {
  486. stats->recordTime("Total running time: ", rtTotal);
  487. stats->timestamp("end");
  488. }
  489. G_done_msg(" ");
  490. /* free the globals */
  491. free(region);
  492. free(opt);
  493. if (stats)
  494. delete stats;
  495. return 0;
  496. }