123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416 |
- /****************************************************************************
- *
- * MODULE: r.quantile
- * AUTHOR(S): Glynn Clements <glynn gclements.plus.com> (original contributor),
- * PURPOSE: Compute quantiles using two passes
- *
- * 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 <stdio.h>
- #include <string.h>
- #include <math.h>
- #include <grass/gis.h>
- #include <grass/raster.h>
- #include <grass/glocale.h>
- struct bin
- {
- size_t origin;
- DCELL min, max;
- size_t base, count;
- };
- static int rows, cols;
- static DCELL min, max;
- static int num_quants;
- static DCELL *quants;
- static int num_slots;
- static size_t *slots;
- static DCELL slot_size;
- static grass_int64 total;
- static size_t num_values;
- static unsigned short *slot_bins;
- static int num_bins_alloc;
- static int num_bins_used;
- static struct bin *bins;
- static DCELL *values;
- static inline int get_slot(DCELL c)
- {
- int i = (int)floor((c - min) / slot_size);
- if (i < 0)
- i = 0;
- if (i > num_slots - 1)
- i = num_slots - 1;
- return i;
- }
- /* get zero-based rank for quantile */
- /* generic formula for one-based rank
- * rank = quant * (N + 1 - 2C) + C
- * with quant = quantile, N = number of values, C = constant
- * common values for C:
- * C = 0
- * rank = quant * (N + 1)
- * recommended by NIST (National Institute of Standards and Technology)
- * https://www.itl.nist.gov/div898/handbook/prc/section2/prc262.htm
- * C = 0.5
- * rank = quant * N + 0.5
- * Matlab
- * C = 1
- * rank = quant * (N - 1) + 1
- * numpy, R, MS Excel, ...
- * Noted as an alternative by NIST */
- static inline double get_quantile(int n)
- {
- double rnk;
- if (n >= num_quants) {
- /* stop condition for initialize_bins() */
- return (double)total + total;
- }
- rnk = quants[n] * (total - 1);
- if (rnk < 0)
- rnk = 0;
- if (rnk > total - 1)
- rnk = total - 1;
- return rnk;
- }
- static void get_slot_counts(int infile)
- {
- DCELL *inbuf = Rast_allocate_d_buf();
- int row, col;
- G_message(_("Computing histogram"));
- total = 0;
- for (row = 0; row < rows; row++) {
- Rast_get_d_row(infile, inbuf, row);
- for (col = 0; col < cols; col++) {
- int i;
- if (Rast_is_d_null_value(&inbuf[col]))
- continue;
- i = get_slot(inbuf[col]);
- slots[i]++;
- total++;
- }
- G_percent(row, rows, 2);
- }
- G_percent(rows, rows, 2);
- G_free(inbuf);
- }
- static void initialize_bins(void)
- {
- int slot;
- double next;
- int bin = 0;
- size_t accum = 0;
- int quant = 0;
- int use_next_slot = 0;
- G_message(_("Computing bins"));
- num_values = 0;
- next = get_quantile(quant);
- /* for a given quantile, two bins might be needed
- * if the index for this quantile is
- * > accumulated count of current bin
- * and
- * < accumulated count of next bin */
- for (slot = 0; slot < num_slots; slot++) {
- size_t count = slots[slot];
- size_t accum2 = accum + count;
- if (count > 0 &&
- (accum2 > next || use_next_slot) &&
- bin < num_bins_alloc) {
- struct bin *b = &bins[bin];
- slot_bins[slot] = ++bin;
- b->origin = accum;
- b->base = num_values;
- b->count = 0;
- b->min = min + slot_size * slot;
- b->max = min + slot_size * (slot + 1);
- use_next_slot = 0;
- if (accum2 - next < 1) {
- use_next_slot = 1;
- }
- else {
- while (accum2 > next)
- next = get_quantile(++quant);
- }
- num_values += count;
- }
- accum = accum2;
- }
- num_bins_used = bin;
- G_debug(1, "Number of used bins: %d", num_bins_used);
- G_debug(1, "Number of values: %lu", num_values);
- }
- static void fill_bins(int infile)
- {
- DCELL *inbuf = Rast_allocate_d_buf();
- int row, col;
- G_message(_("Binning data"));
- for (row = 0; row < rows; row++) {
- Rast_get_d_row(infile, inbuf, row);
- for (col = 0; col < cols; col++) {
- int i, bin;
- struct bin *b;
- if (Rast_is_d_null_value(&inbuf[col]))
- continue;
- i = get_slot(inbuf[col]);
- if (!slot_bins[i])
- continue;
- bin = slot_bins[i] - 1;
- b = &bins[bin];
- values[b->base + b->count++] = inbuf[col];
- }
- G_percent(row, rows, 2);
- }
- G_percent(rows, rows, 2);
- G_free(inbuf);
- }
- static int compare_dcell(const void *aa, const void *bb)
- {
- DCELL a = *(const DCELL *)aa;
- DCELL b = *(const DCELL *)bb;
- if (a < b)
- return -1;
- if (a > b)
- return 1;
- return 0;
- }
- static void sort_bins(void)
- {
- int bin;
- G_message(_("Sorting bins"));
- for (bin = 0; bin < num_bins_used; bin++) {
- struct bin *b = &bins[bin];
- qsort(&values[b->base], b->count, sizeof(DCELL), compare_dcell);
- }
- }
- static void compute_quantiles(int recode)
- {
- int bin = 0;
- double prev_v = min;
- int quant;
- G_message(_("Computing quantiles"));
- for (quant = 0; quant < num_quants; quant++) {
- struct bin *b = &bins[bin];
- double next = get_quantile(quant);
- double k, v;
- size_t i0, i1;
- for (; bin < num_bins_used; bin++) {
- b = &bins[bin];
- if (b->origin + b->count >= next)
- break;
- }
- if (bin < num_bins_used) {
- k = next - b->origin;
- i0 = (size_t)floor(k);
- i1 = (size_t)ceil(k);
- v = (i0 == i1)
- ? values[b->base + i0]
- : values[b->base + i0] * (i1 - k) +
- values[b->base + i1] * (k - i0);
- }
- else
- v = max;
- if (recode)
- fprintf(stdout, "%f:%f:%i\n", prev_v, v, quant + 1);
- else
- fprintf(stdout, "%d:%f:%f\n", quant, 100 * quants[quant], v);
- prev_v = v;
- }
- if (recode)
- printf("%f:%f:%i\n", prev_v, max, num_quants + 1);
- }
- int main(int argc, char *argv[])
- {
- struct GModule *module;
- struct
- {
- struct Option *input, *quant, *perc, *slots, *file;
- } opt;
- struct {
- struct Flag *r;
- } flag;
- int recode;
- int infile;
- struct FPRange range;
- int num_slots_max;
- G_gisinit(argv[0]);
- module = G_define_module();
- G_add_keyword(_("raster"));
- G_add_keyword(_("algebra"));
- G_add_keyword(_("statistics"));
- G_add_keyword(_("percentile"));
- G_add_keyword(_("quantile"));
- module->description = _("Compute quantiles using two passes.");
- opt.input = G_define_standard_option(G_OPT_R_INPUT);
- opt.quant = G_define_option();
- opt.quant->key = "quantiles";
- opt.quant->type = TYPE_INTEGER;
- opt.quant->required = NO;
- opt.quant->description = _("Number of quantiles");
- opt.quant->answer = "4";
- opt.perc = G_define_option();
- opt.perc->key = "percentiles";
- opt.perc->type = TYPE_DOUBLE;
- opt.perc->required = NO;
- opt.perc->multiple = YES;
- opt.perc->description = _("List of percentiles");
- opt.slots = G_define_option();
- opt.slots->key = "bins";
- opt.slots->type = TYPE_INTEGER;
- opt.slots->required = NO;
- opt.slots->description = _("Number of bins to use");
- opt.slots->answer = "1000000";
- opt.file = G_define_standard_option(G_OPT_F_OUTPUT);
- opt.file->key = "file";
- opt.file->required = NO;
- opt.file->description =
- _("Name for output file (if omitted or \"-\" output to stdout)");
- flag.r = G_define_flag();
- flag.r->key = 'r';
- flag.r->description = _("Generate recode rules based on quantile-defined intervals");
- if (G_parser(argc, argv))
- exit(EXIT_FAILURE);
- num_slots = atoi(opt.slots->answer);
- recode = flag.r->answer;
- if (opt.file->answer != NULL && strcmp(opt.file->answer, "-") != 0) {
- if (NULL == freopen(opt.file->answer, "w", stdout)) {
- G_fatal_error(_("Unable to open file <%s> for writing"), opt.file->answer);
- }
- }
- if (opt.perc->answer) {
- int i;
- for (i = 0; opt.perc->answers[i]; i++) ;
- num_quants = i;
- quants = G_calloc(num_quants, sizeof(DCELL));
- for (i = 0; i < num_quants; i++)
- quants[i] = atof(opt.perc->answers[i]) / 100;
- qsort(quants, num_quants, sizeof(DCELL), compare_dcell);
- }
- else {
- int i;
- num_quants = atoi(opt.quant->answer) - 1;
- quants = G_calloc(num_quants, sizeof(DCELL));
- for (i = 0; i < num_quants; i++)
- quants[i] = 1.0 * (i + 1) / (num_quants + 1);
- }
- if (num_quants > 65535)
- G_fatal_error(_("Too many quantiles"));
- infile = Rast_open_old(opt.input->answer, "");
- Rast_read_fp_range(opt.input->answer, "", &range);
- Rast_get_fp_range_min_max(&range, &min, &max);
- rows = Rast_window_rows();
- cols = Rast_window_cols();
- /* minimum 1000 values per slot to reduce memory consumption */
- num_slots_max = ((size_t)rows * cols) / 1000;
- if (num_slots_max < 1)
- num_slots_max = 1;
- if (num_slots > num_slots_max) {
- G_message(_("Reducing number of bins from %d to %d"),
- num_slots, num_slots_max);
- num_slots = num_slots_max;
- }
- slots = G_calloc(num_slots, sizeof(size_t));
- slot_bins = G_calloc(num_slots, sizeof(unsigned short));
- slot_size = (max - min) / num_slots;
- get_slot_counts(infile);
- /* sometimes two bins are needed to calculate a quantile */
- num_bins_alloc = num_quants * 2;
- bins = G_calloc(num_bins_alloc, sizeof(struct bin));
- initialize_bins();
- G_free(slots);
- values = G_calloc(num_values, sizeof(DCELL));
- fill_bins(infile);
- Rast_close(infile);
- G_free(slot_bins);
- sort_bins();
- compute_quantiles(recode);
- return (EXIT_SUCCESS);
- }
|