123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- /****************************************************************************
- *
- * MODULE: r.random
- *
- * AUTHOR(S): Dr. James Hinthorne - Central Wash. Uni. GIS Lab
- * Modified for GRASS 5.x
- * Eric G. Miller
- * Modified for GRASS 6.x and updates
- * Brad Douglas
- *
- * PURPOSE: Generate a vector or raster map of random points
- * selected from an input map
- *
- * COPYRIGHT: (C) 2003-2007 by the GRASS Development Team
- *
- * This program is free software under the GNU General Public
- * License (>=v2). Read the file COPYING that comes with GRASS
- * for details.
- *
- *****************************************************************************/
- #include <stdlib.h>
- #include <grass/gis.h>
- #include <grass/glocale.h>
- #include "local_proto.h"
- static int has_percent(char *);
- int main(int argc, char *argv[])
- {
- short percent;
- double percentage;
- gcell_count targets;
- gcell_count count;
- struct rr_state myState;
- long seed_value;
- struct GModule *module;
- struct
- {
- struct Option *input, *cover, *raster, *sites, *npoints, *seed;
- } parm;
- struct
- {
- struct Flag *zero, *info, *z_geometry, *notopol_flag;
- } flag;
- G_gisinit(argv[0]);
- module = G_define_module();
- G_add_keyword(_("raster"));
- G_add_keyword(_("sampling"));
- G_add_keyword(_("vector"));
- G_add_keyword(_("random"));
- G_add_keyword(_("level1"));
- module->description =
- _("Creates a raster map layer and vector point map "
- "containing randomly located points.");
- parm.input = G_define_standard_option(G_OPT_R_INPUT);
- parm.input->description = _("Name of input raster map");
- parm.cover = G_define_standard_option(G_OPT_R_INPUT);
- parm.cover->key = "cover";
- parm.cover->required = NO;
- parm.cover->description = _("Name of cover raster map");
- parm.npoints = G_define_option();
- parm.npoints->key = "npoints";
- parm.npoints->key_desc = "number[%]";
- parm.npoints->type = TYPE_STRING;
- parm.npoints->required = YES;
- parm.npoints->description = _("The number of points to allocate");
- parm.raster = G_define_standard_option(G_OPT_R_OUTPUT);
- parm.raster->required = NO;
- parm.raster->key = "raster";
- parm.sites = G_define_standard_option(G_OPT_V_OUTPUT);
- parm.sites->required = NO;
- parm.sites->key = "vector";
- parm.seed = G_define_option();
- parm.seed->key = "seed";
- parm.seed->type = TYPE_INTEGER;
- parm.seed->required = NO;
- parm.seed->description = _("Seed for rand() function");
- flag.zero = G_define_flag();
- flag.zero->key = 'z';
- flag.zero->description = _("Generate points also for NULL category");
- flag.info = G_define_flag();
- flag.info->key = 'i';
- flag.info->description =
- _("Report information about input raster and exit");
- flag.z_geometry = G_define_flag();
- flag.z_geometry->key = 'd';
- flag.z_geometry->description = _("Generate vector points as 3D points");
- flag.notopol_flag = G_define_standard_flag(G_FLG_V_TOPO);
- flag.notopol_flag->description = _("Do not build topology in points mode");
- flag.notopol_flag->guisection = _("Points");
- if (G_parser(argc, argv) != 0)
- exit(EXIT_FAILURE);
- /* Set some state variables */
- myState.use_nulls = flag.zero->answer;
- myState.inraster = parm.input->answer;
- if (parm.cover->answer) {
- myState.docover = TRUE;
- myState.inrcover = parm.cover->answer;
- }
- else {
- myState.docover = FALSE;
- myState.inrcover = NULL;
- }
- myState.outraster = parm.raster->answer;
- myState.outvector = parm.sites->answer;
- myState.z_geometry = flag.z_geometry->answer;
- myState.notopol = flag.notopol_flag->answer;
- /* If they only want info we ignore the rest */
- get_stats(&myState);
- if (flag.info->answer) {
- #ifdef HAVE_LONG_LONG_INT
- G_message("Raster: %s\n"
- "Cover: %s\n"
- "Cell Count: %llu\n"
- "Null Cells: %llu\n\n",
- myState.inraster, myState.inrcover,
- myState.nCells, myState.nNulls);
- #else
- G_message("Raster: %s\n"
- "Cover: %s\n"
- "Cell Count: %lu\n"
- "Null Cells: %lu\n\n",
- myState.inraster, myState.inrcover,
- myState.nCells, myState.nNulls);
- #endif
- exit(EXIT_SUCCESS);
- }
- if (!(parm.raster->answer || parm.sites->answer))
- G_fatal_error(_("Note: one (or both) of %s and %s must be specified"),
- parm.raster->key, parm.sites->key);
- /* look for n[%] */
- percent = has_percent(parm.npoints->answer);
- if (percent) {
- if (sscanf(parm.npoints->answer, "%lf", &percentage) != 1
- || percentage <= 0.0 || percentage > 100.0) {
- G_fatal_error(_("<%s=%s> invalid percentage"),
- parm.npoints->key, parm.npoints->answer);
- }
- }
- else {
- #ifdef HAVE_LONG_LONG_INT
- if (sscanf(parm.npoints->answer, "%llu", &targets) != 1
- #else
- if (sscanf(parm.npoints->answer, "%lu", &targets) != 1
- #endif
- || targets <= 0) {
- G_fatal_error(_("<%s=%s> invalid number of points"),
- parm.npoints->key, parm.npoints->answer);
- }
- }
- count = (myState.use_nulls) ? myState.nCells :
- myState.nCells - myState.nNulls;
- if (percent)
- myState.nRand = (gcell_count)(count * percentage / 100.0 + .5);
- else {
- if (targets > count) {
- #ifdef HAVE_LONG_LONG_INT
- if (myState.use_nulls)
- G_fatal_error(_("There aren't [%llu] cells in the current region"),
- targets);
- else
- G_fatal_error(_("There aren't [%llu] non-NULL cells in the current region"),
- targets);
- #else
- if (myState.use_nulls)
- G_fatal_error(_("There aren't [%lu] cells in the current region"),
- targets);
- else
- G_fatal_error(_("There aren't [%lu] non-NULL cells in the current region"),
- targets);
- #endif
- }
- if (targets <= 0)
- G_fatal_error(_("There are no valid locations in the current region"));
- myState.nRand = targets;
- }
- if (parm.seed->answer) {
- seed_value = atol(parm.seed->answer);
- G_srand48(seed_value);
- G_debug(3, "Read random seed from seed=: %ld", seed_value);
- }
- else {
- seed_value = G_srand48_auto();
- G_debug(3, "Generated random seed (-s): %ld", seed_value);
- }
- execute_random(&myState);
- if (myState.outraster)
- make_support(&myState, percent, percentage);
- return EXIT_SUCCESS;
- }
- static int has_percent(char *s)
- {
- while (*s)
- if (*s++ == '%')
- return 1;
- return 0;
- }
|