File: range.c

package info (click to toggle)
grass 6.4.4-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 104,028 kB
  • ctags: 40,409
  • sloc: ansic: 419,980; python: 63,559; tcl: 46,692; cpp: 29,791; sh: 18,564; makefile: 7,000; xml: 3,505; yacc: 561; perl: 559; lex: 480; sed: 70; objc: 7
file content (687 lines) | stat: -rw-r--r-- 17,092 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687

/**********************************************************************
 *
 *  G_read_range (name, mapset, range)
 *      const char *name             name of map
 *      const char *mapset           mapset that map belongs to
 *      struct Range *range          struct to hold range info
 *
 *  Reads the data range information associated with map layer "map"
 *  in mapset "mapset" 
 *
 *   returns:    1  if successful
 *               2  range is empty
 *               3  map is fp: get range from quant rules
 *              -1  on fail
 *
 *  note:   a warning message is printed if the file is missing or incorrect
 *
 **********************************************************************
 *
 *  G_read_fp_range (name, mapset, range)
 *      const char *name               name of map
 *      const char *mapset             mapset that map belongs to
 *      struct FPRange *range          struct to hold range info
 *
 *  Reads the fp data range information associated with map layer "map"
 *  in mapset "mapset" . If map is integer, the integer range is read
 *  and the max and min values are casted to doubles and copied to FPRange
 *
 *   returns:    1  if successful
 *               2  range is empty
 *              -1  on fail
 *
 *  note:   a warning message is printed if the file is missing or incorrect
 *
 **********************************************************************
 *
 *  G_write_[fp_]range (name, range)
 *      const char *name                name of map
 *      struct [FP]Range *range         struct holding range info
 *
 *  Writes the range information associated with map layer "map"
 *
 *   returns:    0  if successful
 *              -1  on fail (or if the map is fp )
 *
 **********************************************************************
 *
 * G_init_[fp_]range (range)
 *      struct [FP]Range *range         struct for range info
 *
 * initializes range structure for call to G_update_[fp_]range()
 *
 **********************************************************************
 *
 * G_construct_default_range (range)
 *      struct Range *range         struct for range info
 *
 *  returns 1 and range is set to DEFAULT_CELL_MIN
 *  and DEFAULT_SET_MAX, otherwise returns -1
 *
 **********************************************************************
 *
 * G_update_[fp_]range (cat, range)
 *    DCELL cat                    cat to be factored into range
 *    struct [FP]Range *range      struct for range info
 **********************************************************************
 *
 * G_row_update_[fp_]range (rast, range, data_type)
 *    void *rast                   raster row to be factored into range
 *    struct [FP]Range *range      struct for range info
 *    RASTER_MAP_TYPE data_type;
 **********************************************************************
 *
 * G_get_[fp_]range_min_max (range, min, max)
 *    struct [FP]Range *range;
 *    [D]CELL *min, *max;
 **********************************************************************/

#include <unistd.h>
#include <rpc/types.h>		/* need this for sgi */
#include <rpc/xdr.h>
#include "G.h"
#include <grass/glocale.h>
#define DEFAULT_CELL_MIN 1
#define DEFAULT_CELL_MAX 255

/*-------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------*/

/* range functions for type "Range" */

/*-------------------------------------------------------------------------*/
int G__remove_fp_range(const char *name)
{
    G_remove_misc("cell_misc", "f_range", name);

    return 0;
}


/*!
 * \brief 
 *
 * Sets the integer range <em>r</em> to [1,255]
 *
 *  \param r
 *  \return int
 */

int G_construct_default_range(struct Range *range)
{
    G_update_range(DEFAULT_CELL_MIN, range);
    G_update_range(DEFAULT_CELL_MAX, range);

    return 0;
}


/*!
 * \brief 
 *
 * Read the floating point range file <tt>f_range</tt>. This file is
 * written in binary using XDR format. If there is no defined min/max in <em>r</em>, 
 * an empty <tt>f_range</tt>file is created.
 * An empty range file indicates that the min, max are undefined. This is a
 * valid case, and the result should be an initialized range struct with no
 * defined min/max.
 * If the range file is missing and the map is a floating-point map, this
 * function will create a default range by calling <tt>G_construct_default_range()</tt>.
 *
 *  \param r
 *  \param name
 *  \param mapset
 *  \return int
 */

int G_read_fp_range(const char *name, const char *mapset,
		    struct FPRange *drange)
{
    struct Range range;
    int fd;
    char buf[200], xdr_buf[100];
    DCELL dcell1, dcell2;
    XDR xdr_str;

    G_init_fp_range(drange);

    if (G_raster_map_type(name, mapset) == CELL_TYPE) {
	/* if map is integer
	   read integer range and convert it to double */

	if (G_read_range(name, mapset, &range) >= 0) {
	    /* if the integer range is empty */
	    if (range.first_time)
		return 2;

	    G_update_fp_range((DCELL) range.min, drange);
	    G_update_fp_range((DCELL) range.max, drange);
	    return 1;
	}
	return -1;
    }

    fd = -1;

    if (G_find_file2_misc("cell_misc", "f_range", name, mapset)) {
	fd = G_open_old_misc("cell_misc", "f_range", name, mapset);
	if (fd < 0)
	    goto error;

	if (read(fd, xdr_buf, 2 * XDR_DOUBLE_NBYTES) != 2 * XDR_DOUBLE_NBYTES)
	    return 2;

	xdrmem_create(&xdr_str, xdr_buf, (u_int) XDR_DOUBLE_NBYTES * 2,
		      XDR_DECODE);

	/* if the f_range file exists, but empty */
	if (!xdr_double(&xdr_str, &dcell1) || !xdr_double(&xdr_str, &dcell2))
	    goto error;

	G_update_fp_range(dcell1, drange);
	G_update_fp_range(dcell2, drange);
	close(fd);
	return 1;
    }

  error:
    if (fd > 0)
	close(fd);
    sprintf(buf, _("can't read f_range file for [%s in %s]"), name, mapset);
    G_warning(buf);
    return -1;
}

/*-------------------------------------------------------------------------*/


/*!
 * \brief read raster range
 *
 * This routine reads the range information for the
 * raster map <b>name</b> in <b>mapset</b> into the <b>range</b>
 * structure.
 * A diagnostic message is printed and -1 is returned if there is an error
 * reading the range file. Otherwise, 0 is returned.
 *
 * Old range file (those with 4 numbers) should
 * treat zeros in this file as NULL-values. New range files (those with just 2
 * numbers) should treat these numbers as real data (zeros are real data in this
 * case).
 * An empty range file indicates that the min, max are undefined. This is a
 * valid case, and the result should be an initialized range struct with no
 * defined min/max.
 * If the range file is missing and the map is a floating-point map, this
 * function will create a default range by calling <tt>G_construct_default_range()</tt>.
 *
 *  \param name
 *  \param mapset
 *  \param range
 *
 *  \return int
 */

int G_read_range(const char *name, const char *mapset, struct Range *range)
{
    FILE *fd;
    CELL x[4];
    char buf[200];
    int n, count;
    struct Quant quant;
    struct FPRange drange;

    G_init_range(range);
    fd = NULL;

    /* if map is not integer, read quant rules, and get limits */
    if (G_raster_map_type(name, mapset) != CELL_TYPE) {
	DCELL dmin, dmax;

	if (G_read_quant(name, mapset, &quant) < 0) {
	    sprintf(buf,
		    "G_read_range(): can't read quant rules for fp map %s@%s",
		    name, mapset);
	    G_warning(buf);
	    return -1;
	}
	if (G_quant_is_truncate(&quant) || G_quant_is_round(&quant)) {
	    if (G_read_fp_range(name, mapset, &drange) >= 0) {
		G_get_fp_range_min_max(&drange, &dmin, &dmax);
		if (G_quant_is_truncate(&quant)) {
		    x[0] = (CELL) dmin;
		    x[1] = (CELL) dmax;
		}
		else {		/* round */

		    if (dmin > 0)
			x[0] = (CELL) (dmin + .5);
		    else
			x[0] = (CELL) (dmin - .5);
		    if (dmax > 0)
			x[1] = (CELL) (dmax + .5);
		    else
			x[1] = (CELL) (dmax - .5);
		}
	    }
	    else
		return -1;
	}
	else
	    G_quant_get_limits(&quant, &dmin, &dmax, &x[0], &x[1]);

	G_update_range(x[0], range);
	G_update_range(x[1], range);
	return 3;
    }

    if (G_find_file2_misc("cell_misc", "range", name, mapset)) {
	fd = G_fopen_old_misc("cell_misc", "range", name, mapset);
	if (!fd)
	    goto error;

	/* if range file exists but empty */
	if (!fgets(buf, sizeof buf, fd))
	    return 2;

	x[0] = x[1] = x[2] = x[3] = 0;
	count = sscanf(buf, "%d%d%d%d", &x[0], &x[1], &x[2], &x[3]);

	/* if wrong format */
	if (count <= 0)
	    goto error;

	for (n = 0; n < count; n++) {
	    /* if count==4, the range file is old (4.1) and 0's in it
	       have to be ignored */
	    if (count < 4 || x[n])
		G_update_range((CELL) x[n], range);
	}
	fclose(fd);
	return 1;
    }

  error:
    if (fd)
	fclose(fd);
    sprintf(buf, _("can't read range file for [%s in %s]"), name, mapset);
    G_warning(buf);
    return -1;
}

/*-------------------------------------------------------------------------*/


/*!
 * \brief write raster range file
 *
 * This routine writes the range information for the raster map
 * <b>name</b> in the current mapset from the <b>range</b> structure.
 * A diagnostic message is printed and -1 is returned if there is an error
 * writing the range file. Otherwise, 0 is returned.
 *
 * This routine only writes 2 numbers (min,max) to the range
 * file, instead of the 4 (pmin,pmax,nmin,nmax) previously written.
 * If there is no defined min,max, an empty file is written.
 *
 *  \param name
 *  \param range
 *
 *  \return int
 */

int G_write_range(const char *name, const struct Range *range)
{
    FILE *fd;
    char buf[200];

    if (G_raster_map_type(name, G_mapset()) != CELL_TYPE) {
	sprintf(buf, "G_write_range(): the map is floating point!");
	goto error;
    }
    fd = G_fopen_new_misc("cell_misc", "range", name);
    if (!fd)
	goto error;

    if (range->first_time)
	/* if range hasn't been updated */
    {
	fclose(fd);
	return 0;
    }
    fprintf(fd, "%ld %ld\n", (long)range->min, (long)range->max);
    fclose(fd);
    return 0;

  error:
    G_remove_misc("cell_misc", "range", name);	/* remove the old file with this name */
    sprintf(buf, _("can't write range file for [%s in %s]"),
	    name, G_mapset());
    G_warning(buf);
    return -1;
}

/*-------------------------------------------------------------------------*/


/*!
 * \brief 
 *
 * Write the floating point range
 * file <tt>f_range</tt>. This file is written in binary using XDR format. If
 * there is no defined min/max in <em>r</em>, an empty <tt>f_range</tt>file is
 * created.
 *
 *  \param r
 *  \return int
 */

int G_write_fp_range(const char *name, const struct FPRange *range)
{
    int fd;
    char buf[200], xdr_buf[100];
    XDR xdr_str;

    sprintf(buf, "cell_misc/%s", name);
    fd = G_open_new(buf, "f_range");
    if (fd < 0)
	goto error;

    if (range->first_time)
	/* if range hasn't been updated, write empty file meaning Nulls */
    {
	close(fd);
	return 0;
    }

    xdrmem_create(&xdr_str, xdr_buf, (u_int) XDR_DOUBLE_NBYTES * 2,
		  XDR_ENCODE);

    if (!xdr_double(&xdr_str, (double *)&(range->min)))
	goto error;
    if (!xdr_double(&xdr_str, (double *)&(range->max)))
	goto error;

    write(fd, xdr_buf, XDR_DOUBLE_NBYTES * 2);
    close(fd);
    return 0;

  error:
    G_remove(buf, "f_range");	/* remove the old file with this name */
    sprintf(buf, _("can't write range file for [%s in %s]"),
	    name, G_mapset());
    G_warning(buf);
    return -1;
}

/*-------------------------------------------------------------------------*/


/*!
 * \brief update range structure
 *
 * Compares the <b>cat</b> value with the minimum and maximum
 * values in the <b>range</b> structure, modifying the range if <b>cat</b>
 * extends the range.
 *
 * NULL-values must be detected and ignored.
 *
 *  \param cat
 *  \param range
 *
 *  \return int
 */

int G_update_range(CELL cat, struct Range *range)
{
    if (!G_is_c_null_value(&cat)) {
	if (range->first_time) {
	    range->first_time = 0;
	    range->min = cat;
	    range->max = cat;
	    return 0;
	}
	if (cat < range->min)
	    range->min = cat;
	if (cat > range->max)
	    range->max = cat;
    }

    return 0;
}

/*-------------------------------------------------------------------------*/

int G_update_fp_range(DCELL val, struct FPRange *range)
{
    if (!G_is_d_null_value(&val)) {
	if (range->first_time) {
	    range->first_time = 0;
	    range->min = val;
	    range->max = val;
	    return 0;
	}
	if (val < range->min)
	    range->min = val;
	if (val > range->max)
	    range->max = val;
    }
    return 0;
}

/*-------------------------------------------------------------------------*/


/*!
 * \brief update range structure
 *
 * This routine updates the <b>range</b> data
 * just like <i>G_update_range</i>, but for <b>n</b> values from the
 * <b>cell</b> array.
 *
 *  \param cell
 *  \param n
 *  \param range
 *  \return int
 */

int G_row_update_range(const CELL * cell, int n, struct Range *range)
{
    G__row_update_range(cell, n, range, 0);

    return 0;
}

/*-------------------------------------------------------------------------*/

int G__row_update_range(const CELL * cell, int n,
			struct Range *range, int ignore_zeros)
{
    CELL cat;

    while (n-- > 0) {
	cat = *cell++;
	if (G_is_c_null_value(&cat) || (ignore_zeros && !cat))
	    continue;
	if (range->first_time) {
	    range->first_time = 0;
	    range->min = cat;
	    range->max = cat;
	    continue;
	}
	if (cat < range->min)
	    range->min = cat;
	if (cat > range->max)
	    range->max = cat;
    }

    return 0;
}

/*-------------------------------------------------------------------------*/

int G_row_update_fp_range(const void *rast, int n,
			  struct FPRange *range, RASTER_MAP_TYPE data_type)
{
    DCELL val = 0L;

    while (n-- > 0) {
	switch (data_type) {
	case CELL_TYPE:
	    val = (DCELL) * ((CELL *) rast);
	    break;
	case FCELL_TYPE:
	    val = (DCELL) * ((FCELL *) rast);
	    break;
	case DCELL_TYPE:
	    val = *((DCELL *) rast);
	    break;
	}

	if (G_is_null_value(rast, data_type)) {
	    rast = G_incr_void_ptr(rast, G_raster_size(data_type));
	    continue;
	}
	if (range->first_time) {
	    range->first_time = 0;
	    range->min = val;
	    range->max = val;
	}
	else {
	    if (val < range->min)
		range->min = val;
	    if (val > range->max)
		range->max = val;
	}

	rast = G_incr_void_ptr(rast, G_raster_size(data_type));
    }

    return 0;
}

/*-------------------------------------------------------------------------*/

/*!
 * \brief initialize range structure
 *
 * Initializes the <b>range</b> structure for updates by
 * <i>G_update_range</i> and <i>G_row_update_range.</i>
 *
 * Must set a flag in the range structure that indicates that
 * no min/max have been defined - probably a <tt>"first"</tt> boolean flag.
 *
 *  \param range
 *  \return int
 */

int G_init_range(struct Range *range)
{
    G_set_c_null_value(&(range->min), 1);
    G_set_c_null_value(&(range->max), 1);
    range->first_time = 1;

    return 0;
}

/*-------------------------------------------------------------------------*/


/*!
 * \brief get range min and max
 *
 * The <b>min</b>inum and <b>max</b>imum CELL
 * values are extracted from the <b>range</b> structure.
 *
 * If the range structure has no defined min/max
 * (first!=0) there will not be a valid range. In this case the min and
 * max returned must be the NULL-value.
 *
 *  \param range
 *  \param min
 *  \param max
 *  \return int
 */


int G_get_range_min_max(const struct Range *range, CELL * min, CELL * max)
{
    if (range->first_time) {
	G_set_c_null_value(min, 1);
	G_set_c_null_value(max, 1);
    }
    else {
	if (G_is_c_null_value(&(range->min)))
	    G_set_c_null_value(min, 1);
	else
	    *min = range->min;

	if (G_is_c_null_value(&(range->max)))
	    G_set_c_null_value(max, 1);
	else
	    *max = range->max;
    }

    return 0;
}

/*-------------------------------------------------------------------------*/

/*!
 * \brief 
 *
 * Must set a flag in the range
 * structure that indicates that no min/max have been defined - probably a
 * <tt>"first"</tt> boolean flag.
 *
 *  \param r
 *  \return int
 */

int G_init_fp_range(struct FPRange *range)
{
    G_set_d_null_value(&(range->min), 1);
    G_set_d_null_value(&(range->max), 1);
    range->first_time = 1;

    return 0;
}

/*-------------------------------------------------------------------------*/


/*!
 * \brief 
 *
 * Extract the min/max from the range structure <em>r</em>.
 * If the range structure has no defined min/max (first!=0) there will not be a
 * valid range. In this case the min and max returned must be the NULL-value.
 *
 *  \param r
 *  \param min
 *  \param max
 *  \return int
 */

int G_get_fp_range_min_max(const struct FPRange *range,
			   DCELL * min, DCELL * max)
{
    if (range->first_time) {
	G_set_d_null_value(min, 1);
	G_set_d_null_value(max, 1);
    }
    else {
	if (G_is_d_null_value(&(range->min)))
	    G_set_d_null_value(min, 1);
	else
	    *min = range->min;

	if (G_is_d_null_value(&(range->max)))
	    G_set_d_null_value(max, 1);
	else
	    *max = range->max;
    }

    return 0;
}