123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /****************************************************************************
- *
- * MODULE: r.random.cells
- * AUTHOR(S): Charles Ehlschlaeger; National Center for Geographic Information
- * and Analysis, University of California, Santa Barbara (original contributor)
- * Markus Neteler <neteler itc.it>
- * Roberto Flor <flor itc.it>,
- * Brad Douglas <rez touchofmadness.com>, Glynn Clements <glynn gclements.plus.com>
- * PURPOSE: generates a random sets of cells that are at least
- * some distance apart
- * COPYRIGHT: (C) 1999-2008 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 "ransurf.h"
- #include "local_proto.h"
- double NS, EW;
- int CellCount, Rs, Cs;
- double MaxDist, MaxDistSq;
- FLAG *Cells;
- CELLSORTER *DoNext;
- CELL **Out, *CellBuffer;
- int Seed, OutFD;
- struct Flag *Verbose;
- struct Option *Distance;
- struct Option *Output;
- struct Option *SeedStuff;
- int main(int argc, char *argv[])
- {
- struct GModule *module;
- G_gisinit(argv[0]);
- /* Set description */
- module = G_define_module();
- G_add_keyword(_("raster"));
- G_add_keyword(_("sampling"));
- G_add_keyword(_("random"));
- module->description =
- _("Generates random cell values with spatial dependence.");
- Output = G_define_standard_option(G_OPT_R_OUTPUT);
- Distance = G_define_option();
- Distance->key = "distance";
- Distance->type = TYPE_DOUBLE;
- Distance->required = YES;
- Distance->multiple = NO;
- Distance->description =
- _("Maximum distance of spatial correlation (value(s) >= 0.0)");
- SeedStuff = G_define_option();
- SeedStuff->key = "seed";
- SeedStuff->type = TYPE_INTEGER;
- SeedStuff->required = NO;
- SeedStuff->description =
- _("Random seed (SEED_MIN >= value >= SEED_MAX) (default [random])");
- if (G_parser(argc, argv))
- exit(EXIT_FAILURE);
- Init();
- Indep();
-
- G_done_msg(" ");
-
- exit(EXIT_SUCCESS);
- }
|