-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathdimfilter.c
1235 lines (1127 loc) · 47.6 KB
/
dimfilter.c
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
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*--------------------------------------------------------------------
*
* Copyright (c) 1991-2025 by the GMT Team (https://www.generic-mapping-tools.org/team.html)
* See LICENSE.TXT file for copying and redistribution conditions.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3 or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* Contact info: www.generic-mapping-tools.org
*--------------------------------------------------------------------*/
/* dimfilter.c reads a grdfile and creates filtered grd file
*
* user selects primary filter radius, number of sectors, and the secondary filter.
* The Primary filter determines how we want to filter the raw data. However, instead
* of filtering all data inside the filter radius at once, we split the filter circle
* into several sectors and apply the filter on the data within each sector. The
* Secondary filter is then used to consolidate all the sector results into one output
* value. As an option for robust filters, we can detrend the input data prior to
* applying the primary filter using a LS plane fit.
*
* Author: Paul Wessel with help from Caleb Fassett & Seung-Sep Kim
* Date: 25-OCT-2015
* Version: GMT 6
*
* For details, see Kim, S.-S., and Wessel, P. 2008, "Directional Median Filtering
* for Regional-Residual Separation of Bathymetry, Geochem. Geophys. Geosyst.,
* 9(Q03005), doi:10.1029/2007GC001850.
*/
#include "gmt_dev.h"
#include "longopt/dimfilter_inc.h"
#define THIS_MODULE_CLASSIC_NAME "dimfilter"
#define THIS_MODULE_MODERN_NAME "dimfilter"
#define THIS_MODULE_LIB "core"
#define THIS_MODULE_PURPOSE "Directional filtering of grids in the space domain"
#define THIS_MODULE_KEYS "<G{,GG},>DQ"
#define THIS_MODULE_NEEDS "R"
#define THIS_MODULE_OPTIONS "-:RVfh"
enum Dimfilter_mode {
DIMFILTER_MODE_KIND_LOW = -1,
DIMFILTER_MODE_KIND_AVE = 0,
DIMFILTER_MODE_KIND_HIGH = +1
};
enum Dimfilter_filter {
DIMFILTER_BOXCAR = 0,
DIMFILTER_COSINE = 1,
DIMFILTER_GAUSSIAN = 2,
DIMFILTER_MEDIAN = 3,
DIMFILTER_MODE = 4
};
enum Dimfilter_sector {
DIMSECTOR_MIN = 0,
DIMSECTOR_MAX = 1,
DIMSECTOR_MEAN = 2,
DIMSECTOR_MEDIAN = 3,
DIMSECTOR_MODE = 4
};
struct DIMFILTER_INFO {
int n_columns; /* The max number of filter weights in x-direction */
int n_rows; /* The max number of filter weights in y-direction */
int x_half_width; /* Number of filter nodes to either side needed at this latitude */
int y_half_width; /* Number of filter nodes above/below this point (ny_f/2) */
int d_flag;
int f_flag;
double x_fix, y_fix;
double dx, dy; /* Grid spacing in original units */
double width;
double deg2km;
double *weight;
};
struct DIMFILTER_CTRL {
struct DIMFILTER_In {
bool active;
char *file;
} In;
struct DIMFILTER_C { /* -C */
bool active;
} C;
struct DIMFILTER_D { /* -D<distflag> */
bool active;
int mode;
} D;
struct DIMFILTER_E { /* -E */
bool active;
} E;
struct DIMFILTER_F { /* <type><filter_width>*/
bool active;
int filter; /* Id for the filter */
double width;
int mode;
} F;
struct DIMFILTER_G { /* -G<file> */
bool active;
char *file;
} G;
struct DIMFILTER_I { /* -I (for checking only) */
bool active;
} I;
struct DIMFILTER_L { /* -L */
bool active;
} L;
struct DIMFILTER_N { /* -N */
bool active;
unsigned int n_sectors;
int filter; /* Id for the filter */
int mode;
} N;
struct DIMFILTER_Q { /* -Q */
bool active;
} Q;
struct DIMFILTER_S { /* -S<file> */
bool active;
char *file;
} S;
struct DIMFILTER_T { /* -T */
bool active;
} T;
};
static void *New_Ctrl (struct GMT_CTRL *GMT) { /* Allocate and initialize a new control structure */
struct DIMFILTER_CTRL *C;
C = gmt_M_memory (GMT, NULL, 1, struct DIMFILTER_CTRL);
/* Initialize values whose defaults are not 0/false/NULL */
C->F.filter = C->N.filter = C->D.mode = GMT_NOTSET;
C->F.mode = DIMFILTER_MODE_KIND_AVE;
C->N.n_sectors = 1;
return (C);
}
static void Free_Ctrl (struct GMT_CTRL *GMT, struct DIMFILTER_CTRL *C) { /* Deallocate control structure */
if (!C) return;
gmt_M_str_free (C->In.file);
gmt_M_str_free (C->G.file);
gmt_M_str_free (C->S.file);
gmt_M_free (GMT, C);
}
static char *dimtemplate =
"#!/usr/bin/env bash\n"
"#\n"
"#\n"
"# Seung-Sep Kim, Chungnam National University, Daejeon, South Korea [[email protected]]\n"
"\n"
"# This is a template script showing the steps for DiM-based\n"
"# regional-residual separation.\n"
"#\n"
"# For details, see Kim, S.-S., and Wessel, P. (2008), \"Directional Median Filtering\n"
"# for Regional-Residual Separation of Bathymetry\", Geochem. Geophys. Geosyst.,\n"
"# 9(Q03005), doi:10.1029/2007GC001850.\n"
"\n"
"# 0. System defaults (Change if you know what you are doing):\n"
"dim_dist=2 # How we compute distances on the grid [Flat Earth approximation]\n"
"dim_sectors=8 # Number of sectors to use [8]\n"
"dim_filter=m # Primary filter [m for median]\n"
"dim_quantity=l # Secondary filter [l for lower]\n"
"dim_smooth_type=m # Smoothing filter type [m for median]\n"
"dim_smooth_width=50 # Smoothing filter width, in km [50]\n"
"\n"
"# 1. Setting up the region:\n"
"# To prevent edge effects, the input grid domain must be\n"
"# larger than the area of interest. Make sure the input\n"
"# grid exceeds the area of interest by > 1/2 max filter width.\n"
"box=-R # Area of interest, a subset of data domain\n"
"\n"
"# 2. Specify names for input and output files\n"
"bathy= # Input bathymetry grid file for the entire data domain\n"
"ors= # Intermediate Optimal Robust Separator analysis results (table)\n"
"orsout= # ORS output work folder\n"
"dim= # Final output DiM-based regional grid\n"
"err= # Final output DiM-based MAD uncertainty grid\n"
"\n"
"gmt set ELLIPSOID Sphere\n"
"\n"
"# A) ORS analysis first\n"
"# if ORS does not give you the reasonable range of filter widths,\n"
"# use the length scale of the largest feature in your domain as the\n"
"# standard to choose the filter widths\n"
"\n"
"if [ ! -f $ors ]; then\n"
"\n"
" mkdir -p $orsout\n"
"\n"
" gmt grdcut $bathy $box -G/tmp/$$.t.nc # the area of interest\n"
"\n"
" # A.1. Set filter parameters for an equidistant set of filters:\n"
" minW= # Minimum filter width candidate for ORS (e.g., 60) in km\n"
" maxW= # Maximum filter width candidate for ORS (e.g., 600) in km\n"
" intW= # Filter width step (e.g., 20) in km\n"
" level= # Base contour used to compute the volume and area of the residual (e.g., 300m)\n"
" #------stop A.1. editing here--------------------------------------\n"
"\n"
" STEP=`gmt math -T$minW/$maxW/$intW -N1/0 =`\n"
"\n"
" for width in $STEP\n"
" do\n"
" echo \"W = $width km\"\n"
" gmt dimfilter $bathy $box -G/tmp/$$.dim.nc -F${dim_filter}${width} -D${dim_dist} -N${dim_quantity}${dim_sectors} # DiM filter\n"
" gmt grdfilter /tmp/$$.dim.nc -G$orsout/dim.${width}.nc -F${dim_smooth_type}${dim_smooth_width} -D${dim_dist} # smoothing\n"
"\n"
" gmt grdmath /tmp/$$.t.nc $orsout/dim.${width}.nc SUB = /tmp/$$.sd.nc # residual from DiM\n"
" gmt grdvolume /tmp/$$.sd.nc -Sk -C$level -Vi | awk \'{print r,$2,$3,$4}\' r=${width} >> $ors # ORS from DiM\n"
" done\n"
"\n"
"fi\n"
"\n"
"# B) Compute DiM-based regional\n"
"\n"
"if [ ! -f $dim ]; then\n"
"\n"
" # B.1. Set filter parameters for an equidistant set of filters:\n"
" minW= # Minimum optimal filter width (e.g., 200) in km\n"
" maxW= # Maximum optimal filter width (e.g., 240) in km\n"
" intW= # Filter width step (e.g., 5) in km\n"
" alldepth= # for MAD analysis\n"
" #------stop B.1. editing here--------------------------------------\n"
" width=`gmt math -N1/0 -T$minW/$maxW/$intW =`\n"
" let n_widths=0\n"
" for i in $width\n"
" do\n"
" if [ ! -f $orsout/dim.${i}.nc ]; then\n"
" echo \"filtering W = ${i} km\"\n"
" gmt dimfilter $bathy $box -G/tmp/$$.dim.nc -F${dim_filter}${i} -D${dim_dist} -N${dim_quantity}${dim_sectors} # DiM filter\n"
" gmt grdfilter /tmp/$$.dim.nc -G$orsout/dim.${i}.nc -F${dim_smooth_type}${dim_smooth_width} -D${dim_dist} # smoothing\n"
" fi\n"
"\n"
" if [ ! -f $alldepth ]; then\n"
" gmt grd2xyz -Z $orsout/dim.${i}.nc > /tmp/$$.${i}.depth\n"
" fi\n"
" let n_widths=n_widths+1\n"
" done\n"
"\n"
" if [ ! -f $alldepth ]; then\n"
" paste /tmp/$$.*.depth > /tmp/$$.t.depth\n"
" # the number of columns can be different for each case\n"
" awk \'{print $1,\" \",$2,\" \",$3,\" \",$4,\" \",$5,\" \",$6,\" \",$7,\" \",$8,\" \",$9}\' /tmp/$$.t.depth > $alldepth\n"
" awk \'{for (k = 1; k <= \'\"$n_widths\"\', k++) print $1,\" \",$2,\" \",$3,\" \",$4,\" \",$5,\" \",$6,\" \",$7,\" \",$8,\" \",$9}\' /tmp/$$.t.depth > $alldepth\n"
" gmt grd2xyz $bathy $box -V > $bathy.xyz\n"
" fi\n"
"\n"
" gmt dimfilter $alldepth -Q > /tmp/$$.out\n"
" wc -l /tmp/$$.out $bathy.xyz\n"
"\n"
" paste $bathy.xyz /tmp/$$.out | awk \'{print $1,$2,$4}\' > /tmp/$$.dim.xyz\n"
" paste $bathy.xyz /tmp/$$.out | awk \'{print $1,$2,$5}\' > /tmp/$$.err.xyz\n"
"\n"
" gmt xyz2grd /tmp/$$.dim.xyz -G$dim -I1m $box -V -r\n"
" gmt xyz2grd /tmp/$$.err.xyz -G$err -I1m $box -V -r\n"
"\n"
"fi\n";
static int usage (struct GMTAPI_CTRL *API, int level) {
const char *name = gmt_show_name_and_purpose (API, THIS_MODULE_LIB, THIS_MODULE_CLASSIC_NAME, THIS_MODULE_PURPOSE);
if (level == GMT_MODULE_PURPOSE) return (GMT_NOERROR);
GMT_Usage (API, 0, "usage: %s -D<flag> -F<type><width>[+l|u] -G%s %s "
"-N<type><n_sectors>[+l|u] [%s] [-L] [-Q] [%s] [-T] [%s] [%s] [%s] [%s]\n", name,
GMT_INGRID, GMT_OUTGRID, GMT_I_OPT, GMT_Rgeo_OPT, GMT_V_OPT, GMT_f_OPT, GMT_ho_OPT, GMT_PAR_OPT);
if (level == GMT_SYNOPSIS) return (GMT_MODULE_SYNOPSIS);
GMT_Message (API, GMT_TIME_NONE, " REQUIRED ARGUMENTS:\n");
gmt_ingrid_syntax (API, 0, "Name of grid to be filtered");
GMT_Usage (API, 1, "\n-D<flag>");
GMT_Usage (API, -2, "Distance <flag> determines how grid (x,y) maps into distance units of filter width as follows:");
GMT_Usage (API, 3, "0: grid x,y same units as <filter_width>, Cartesian distances.");
GMT_Usage (API, 3, "1: grid x,y in degrees, <filter_width> in km, Cartesian distances.");
GMT_Usage (API, 3, "2: grid x,y in degrees, <filter_width> in km, x scaled by cos(middle y), Cartesian distances.");
GMT_Usage (API, -2, "These first three methods are faster; they allow weight matrix to be computed only once. "
"Next two options are slower; weights must be recomputed for each scan line:");
GMT_Usage (API, 3, "3: grid x,y in degrees, <filter_width> in km, x_scale varies as cos(y), Cartesian distances.");
GMT_Usage (API, 3, "4: grid x,y in degrees, <filter_width> in km, spherical Distances.");
GMT_Usage (API, 1, "\n-F<type><width>[+l|u]");
GMT_Usage (API, -2, "Set the primary filter <type> and full (6 sigma) filter <width>. Choose from:");
GMT_Usage (API, 3, "b: Boxcar filter.");
GMT_Usage (API, 3, "c: Cosine arch filter.");
GMT_Usage (API, 3, "g: Gaussian filter.");
GMT_Usage (API, 3, "m: Median filter.");
GMT_Usage (API, 3, "p: Maximum likelihood Probability estimator -- a mode filter.");
GMT_Usage (API, 4, "+l Return the lowest mode if multiple modes are found [return average].");
GMT_Usage (API, 4, "+u Return the uppermost mode if multiple modes are found [return average].");
gmt_outgrid_syntax (API, 'G', "Set output name for filtered grid");
GMT_Usage (API, 1, "\n-N<type><n_sectors>[+l|u]");
GMT_Usage (API, -2, "Set the secondary filter type and the number of sectors. Choose from:");
GMT_Usage (API, 3, "l: Lowest value from all sectors.");
GMT_Usage (API, 3, "u: Uppermost value from all sectors.");
GMT_Usage (API, 3, "a: Average value from all sectors.");
GMT_Usage (API, 3, "m: Median value from all sectors.");
GMT_Usage (API, 3, "p: Mode value from all sectors.");
GMT_Usage (API, 4, "+l Return the lowest mode if multiple modes are found [return average].");
GMT_Usage (API, 4, "+u Return the uppermost mode if multiple modes are found [return average].");
GMT_Message (API, GMT_TIME_NONE, "\n OPTIONAL ARGUMENTS:\n");
#ifdef OBSOLETE
GMT_Usage (API, 1, "\n-E Remove local planar trend from data, apply filter, then add back trend at filtered value.");
#endif
GMT_Option (API, "I");
GMT_Usage (API, -2, "Note: If the output increment(s) are NOT integer multiples of the input ones, filtering will be considerably slower.");
GMT_Usage (API, 1, "\n-L Write bash script dim.template.sh to standard output and stop; no other options allowed.");
GMT_Usage (API, 1, "\n-Q Select error analysis mode; see documentation for how to prepare for using this option.");
GMT_Option (API, "R");
#ifdef OBSOLETE
GMT_Message (API, GMT_TIME_NONE, "\t-S Sets output name for standard error grdfile and implies that we will compute a 2nd grid with\n");
GMT_Message (API, GMT_TIME_NONE, "\t a statistical measure of deviations from the average value. For the convolution filters this\n");
GMT_Message (API, GMT_TIME_NONE, "\t yields the standard deviation while for the median/mode filters we use MAD.\n");
#endif
GMT_Usage (API, 1, "\n-T Toggles between grid and pixel registration for output grid [Default is same as input registration].");
GMT_Option (API, "V,f,h,.");
return (GMT_MODULE_USAGE);
}
GMT_LOCAL double dimfilter_get_filter_width (struct GMT_CTRL *GMT, char *text) {
/* Most filter setups expect a constant filter width, but some may pass a grid. if so
then we must read the grid and find the largest filter and return that value. */
double width = 0.0, scl = 1.0;
size_t L = strlen (text);
char c = 0;
gmt_M_unused (GMT);
if (L && strchr ("ms", text[L-1])) { /* Appended m or s for arc units */
L--;
if (text[L] == 'm') scl = GMT_MIN2DEG; /* Got width in arc minutes */
else scl = GMT_SEC2DEG; /* Got width in arc seconds */
c = text[L];
text[L] = '\0'; /* Chop off unit */
}
width = atof (text) * scl;
if (c) text[L] = c; /* Restore m|s */
return (width);
}
static int parse (struct GMT_CTRL *GMT, struct DIMFILTER_CTRL *Ctrl, struct GMT_OPTION *options) {
/* This parses the options provided to dimfilter and sets parameters in Ctrl.
* Note Ctrl has already been initialized and non-zero default values set.
* Any GMT common options will override values set previously by other commands.
* It also replaces any file names specified as input or output with the data ID
* returned when registering these sources/destinations with the API.
*/
unsigned int n_errors = 0, set = 0;
struct GMT_OPTION *opt = NULL;
struct GMTAPI_CTRL *API = GMT->parent;
#ifdef OBSOLETE
int slow;
#endif
for (opt = options; opt; opt = opt->next) { /* Process all the options given */
switch (opt->option) {
case '<': /* Input file (only one is accepted) */
n_errors += gmt_M_repeated_module_option (API, Ctrl->In.active);
n_errors += gmt_get_required_file (GMT, opt->arg, opt->option, 0, GMT_IS_GRID, GMT_IN, GMT_FILE_REMOTE, &(Ctrl->In.file));
set++;
break;
/* Processes program-specific parameters */
case 'C':
n_errors += gmt_M_repeated_module_option (API, Ctrl->C.active);
n_errors += gmt_get_no_argument (GMT, opt->arg, opt->option, 0);
set++;
break;
case 'D':
n_errors += gmt_M_repeated_module_option (API, Ctrl->D.active);
n_errors += gmt_get_required_int (GMT, opt->arg, opt->option, 0, &Ctrl->D.mode);
set++;
break;
#ifdef OBSOLETE
case 'E':
n_errors += gmt_M_repeated_module_option (API, Ctrl->E.active);
set++;
break;
#endif
case 'F':
n_errors += gmt_M_repeated_module_option (API, Ctrl->F.active);
switch (opt->arg[0]) {
case 'b':
Ctrl->F.filter = DIMFILTER_BOXCAR;
break;
case 'c':
Ctrl->F.filter = DIMFILTER_COSINE;
break;
case 'g':
Ctrl->F.filter = DIMFILTER_GAUSSIAN;
break;
case 'm':
Ctrl->F.filter = DIMFILTER_MEDIAN;
break;
case 'p':
Ctrl->F.filter = DIMFILTER_MODE;
if (strstr (opt->arg, "+l") || opt->arg[strlen(opt->arg)-1] == '-') Ctrl->F.mode = DIMFILTER_MODE_KIND_LOW;
else if (strstr (opt->arg, "+u")) Ctrl->F.mode = DIMFILTER_MODE_KIND_HIGH;
break;
default:
n_errors++;
break;
}
Ctrl->F.width = dimfilter_get_filter_width (GMT, &opt->arg[1]);
set++;
break;
case 'G':
n_errors += gmt_M_repeated_module_option (API, Ctrl->G.active);
n_errors += gmt_get_required_file (GMT, opt->arg, opt->option, 0, GMT_IS_GRID, GMT_OUT, GMT_FILE_LOCAL, &(Ctrl->G.file));
set++;
break;
case 'I':
n_errors += gmt_M_repeated_module_option (API, Ctrl->I.active);
n_errors += gmt_parse_inc_option (GMT, 'I', opt->arg);
set++;
break;
case 'L': /* Write shell template to stdout */
n_errors += gmt_M_repeated_module_option (API, Ctrl->L.active);
n_errors += gmt_get_no_argument (GMT, opt->arg, opt->option, 0);
break;
case 'N': /* Scan: Option to set the number of sections and how to reduce the sector results to a single value */
n_errors += gmt_M_repeated_module_option (API, Ctrl->N.active);
switch (opt->arg[0]) {
case 'l': /* Lower bound (min) */
Ctrl->N.filter = DIMSECTOR_MIN;
break;
case 'u': /* Upper bound (max) */
Ctrl->N.filter = DIMSECTOR_MAX;
break;
case 'a': /* Average (mean) */
Ctrl->N.filter = DIMSECTOR_MEAN;
break;
case 'm': /* Median */
Ctrl->N.filter = DIMSECTOR_MEDIAN;
break;
case 'p': /* Mode */
Ctrl->N.filter = DIMSECTOR_MODE;
/* Check for +l but also deprecated trailing - */
if (strstr (opt->arg, "+l") || opt->arg[strlen(opt->arg)-1] == '-') Ctrl->N.mode = DIMFILTER_MODE_KIND_LOW;
else if (strstr (opt->arg, "+u")) Ctrl->N.mode = DIMFILTER_MODE_KIND_HIGH;
break;
default:
GMT_Report (API, GMT_MSG_ERROR, "Option -N: Unrecognized directive %s", opt->arg);
n_errors++;
break;
}
n_errors += gmt_get_required_uint (GMT, &opt->arg[1], opt->option, 0, &Ctrl->N.n_sectors);
set++;
break;
case 'Q': /* entering the MAD error analysis mode */
n_errors += gmt_M_repeated_module_option (API, Ctrl->Q.active);
n_errors += gmt_get_no_argument (GMT, opt->arg, opt->option, 0);
set++;
break;
#ifdef OBSOLETE
case 'S':
n_errors += gmt_M_repeated_module_option (API, Ctrl->S.active);
Ctrl->S.file = strdup (opt->arg);
set++;
break;
#endif
case 'T': /* Toggle registration */
n_errors += gmt_M_repeated_module_option (API, Ctrl->T.active);
n_errors += gmt_get_no_argument (GMT, opt->arg, opt->option, 0);
set++;
break;
default: /* Report bad options */
n_errors += gmt_default_option_error (GMT, opt);
break;
}
}
if (Ctrl->L.active)
n_errors += gmt_M_check_condition (GMT, set, "Option -L can only be used by itself.\n");
else if (!Ctrl->Q.active) {
n_errors += gmt_M_check_condition (GMT, Ctrl->D.mode < 0 || Ctrl->D.mode > 4, "Option -D: Argument must be in the range 0-4\n");
n_errors += gmt_M_check_condition (GMT, !Ctrl->In.file, "Must specify input file\n");
n_errors += gmt_M_check_condition (GMT, GMT->common.R.active[ISET] && (GMT->common.R.inc[GMT_X] <= 0.0 || GMT->common.R.inc[GMT_Y] <= 0.0), "Option -I: Must specify positive increment(s)\n");
n_errors += gmt_M_check_condition (GMT, !Ctrl->G.file, "Option -G: Must specify output file\n");
n_errors += gmt_M_check_condition (GMT, Ctrl->F.width <= 0.0, "Option -F: Correct syntax: -FX<width>, with X one of bcgmp, width is filter fullwidth\n");
n_errors += gmt_M_check_condition (GMT, Ctrl->N.n_sectors <= 0, "Option -N: Correct syntax: -Nx<nsectors>[<modifier>], with x one of l|u|a|m|p, <nsectors> is number of sectors\n");
#ifdef OBSOLETE
slow = (Ctrl->F.filter == DIMFILTER_MEDIAN || Ctrl->F.filter == DIMFILTER_MODE); /* Will require sorting etc */
n_errors += gmt_M_check_condition (GMT, Ctrl->E.active && !slow, "Option -E: Only valid for robust filters -Fm|p.\n");
#endif
}
else {
n_errors += gmt_M_check_condition (GMT, !Ctrl->In.file, "Must specify input file\n");
n_errors += gmt_M_check_condition (GMT, !Ctrl->Q.active, "Must use -Q to specify total # of columns in the input file.\n");
}
return (n_errors ? GMT_PARSE_ERROR : GMT_NOERROR);
}
GMT_LOCAL void dimfilter_set_weight_matrix (struct DIMFILTER_INFO *F, struct GMT_GRID_HEADER *h, double y_0, int fast) {
/* Last two gives offset between output node and 'origin' input node for this window (0,0 for integral grids) */
/* true when input/output grids are offset by integer values in dx/dy */
int i, j, ij, i_half, j_half;
double x_scl, y_scl, f_half, r_f_half, sigma, sig_2;
double y1, y2, theta, x, y, r, s_y1, c_y1, s_y2, c_y2;
/* Set Scales */
y_scl = (F->d_flag) ? F->deg2km : 1.0;
if (F->d_flag < 2)
x_scl = y_scl;
else if (F->d_flag == 2)
x_scl = F->deg2km * cosd (0.5 * (h->wesn[YHI] + h->wesn[YLO]));
else
x_scl = F->deg2km * cosd (y_0);
/* Get radius, weight, etc. */
i_half = F->n_columns / 2;
j_half = F->n_rows / 2;
f_half = 0.5 * F->width;
r_f_half = 1.0 / f_half;
sigma = F->width / 6.0;
sig_2 = -0.5 / (sigma * sigma);
for (i = -i_half; i <= i_half; i++) {
for (j = -j_half; j <= j_half; j++) {
ij = (j + j_half) * F->n_columns + i + i_half;
if (fast && i == 0)
r = (j == 0) ? 0.0 : j * y_scl * F->dy;
else if (fast && j == 0)
r = i * x_scl * F->dx;
else if (F->d_flag < 4) {
x = x_scl * (i * F->dx - F->x_fix);
y = y_scl * (j * F->dy - F->y_fix);
r = hypot (x, y);
}
else {
theta = i * F->dx - F->x_fix;
y1 = 90.0 - y_0;
y2 = 90.0 - (y_0 + (j * F->dy - F->y_fix));
sincosd (y1, &s_y1, &c_y1);
sincosd (y2, &s_y2, &c_y2);
r = d_acos (c_y1 * c_y2 + s_y1 * s_y2 * cosd (theta)) * F->deg2km * R2D;
}
/* Now we know r in F->width units */
if (r > f_half) {
F->weight[ij] = -1.0;
continue;
}
else if (F->f_flag == 3) {
F->weight[ij] = 1.0;
continue;
}
else {
if (F->f_flag == 0)
F->weight[ij] = 1.0;
else if (F->f_flag == 1)
F->weight[ij] = 1.0 + cos (M_PI * r * r_f_half);
else
F->weight[ij] = exp (r * r * sig_2);
}
}
}
}
#define bailout(code) {gmt_M_free_options (mode); return (code);}
#define Return(code) {Free_Ctrl (GMT, Ctrl); gmt_end_module (GMT, GMT_cpy); bailout (code);}
EXTERN_MSC int GMT_dimfilter (void *V_API, int mode, void *args) {
unsigned short int **sector = NULL;
unsigned int *n_in_median, wsize = 0, one_or_zero = 1, effort_level, n_sectors_2 = 0, col_in, row_in;
unsigned int GMT_n_multiples = 0, col_out, row_out, i, j, k, s;
bool full_360, shift = false, slow, slow2, fast_way;
int j_origin, *i_origin = NULL, ii, jj, scol, srow, error = 0;
uint64_t n_nan = 0, ij_in, ij_out, ij_wt;
double wesn[4], inc[2], x_scale, y_scale, x_width, y_width, angle, z = 0.0;
double x_out, y_out, *wt_sum = NULL, *value = NULL, last_median, this_median;
double last_median2 = 0.0, this_median2, d, **work_array = NULL, *x_shift = NULL;
double z_min, z_max, z2_min = 0.0, z2_max = 0.0, wx = 0.0, *c_x = NULL, *c_y = NULL;
#ifdef DEBUG
double x_debug[5], y_debug[5], z_debug[5];
#endif
#ifdef OBSOLETE
bool first_time = true;
int n = 0;
int n_bad_planes = 0, S = 0;
double Sx = 0.0, Sy = 0.0, Sz = 0.0, Sxx = 0.0, Syy = 0.0, Sxy = 0.0, Sxz = 0.0, Syz = 0.0;
double denominator, scale, Sw, intercept = 0.0, slope_x = 0.0, slope_y = 0.0, inv_D;
double *work_array2 = NULL;
short int **xx = NULL, **yy = NULL;
struct GMT_GRID *Sout = NULL;
#endif
char *filter_name[5] = {"Boxcar", "Cosine Arch", "Gaussian", "Median", "Mode"};
struct GMT_GRID *Gin = NULL, *Gout = NULL;
struct DIMFILTER_INFO F;
struct DIMFILTER_CTRL *Ctrl = NULL;
struct GMT_CTRL *GMT = NULL, *GMT_cpy = NULL;
struct GMT_OPTION *options = NULL;
struct GMTAPI_CTRL *API = gmt_get_api_ptr (V_API); /* Cast from void to GMTAPI_CTRL pointer */
/*----------------------- Standard module initialization and parsing ----------------------*/
if (API == NULL) return (GMT_NOT_A_SESSION);
if (mode == GMT_MODULE_PURPOSE) return (usage (API, GMT_MODULE_PURPOSE)); /* Return the purpose of program */
options = GMT_Create_Options (API, mode, args); if (API->error) bailout (API->error); /* Set or get option list */
if ((error = gmt_report_usage (API, options, 0, usage)) != GMT_NOERROR) bailout (error); /* Give usage if requested */
/* Parse the command-line arguments */
if ((GMT = gmt_init_module (API, THIS_MODULE_LIB, THIS_MODULE_CLASSIC_NAME, THIS_MODULE_KEYS, THIS_MODULE_NEEDS, module_kw, &options, &GMT_cpy)) == NULL) bailout (API->error); /* Save current state */
if (GMT_Parse_Common (API, THIS_MODULE_OPTIONS, options)) Return (API->error);
Ctrl = New_Ctrl (GMT); /* Allocate and initialize a new control structure */
if ((error = parse (GMT, Ctrl, options)) != 0) Return (error);
/*---------------------------- This is the dimfilter main code ----------------------------*/
if (Ctrl->L.active) {
printf ("%s", dimtemplate);
Return (GMT_NOERROR);
}
gmt_M_memset (&F, 1, struct DIMFILTER_INFO);
F.deg2km = GMT->current.proj.DIST_KM_PR_DEG;
if (!Ctrl->Q.active) {
if ((Gin = GMT_Read_Data (API, GMT_IS_GRID, GMT_IS_FILE, GMT_IS_SURFACE, GMT_CONTAINER_AND_DATA, NULL, Ctrl->In.file, NULL)) == NULL) { /* Get header only */
Return (API->error);
}
gmt_grd_init (GMT, Gin->header, options, true); /* Update command history only */
slow = (Ctrl->F.filter == DIMFILTER_MEDIAN || Ctrl->F.filter == DIMFILTER_MODE); /* Will require sorting etc */
slow2 = (Ctrl->N.filter == DIMSECTOR_MEDIAN || Ctrl->N.filter == DIMSECTOR_MODE); /* SCAN: Will also require sorting etc */
if (Ctrl->T.active) /* Make output grid of the opposite registration */
one_or_zero = (Gin->header->registration == GMT_GRID_PIXEL_REG) ? 1 : 0;
else
one_or_zero = (Gin->header->registration == GMT_GRID_PIXEL_REG) ? 0 : 1;
/* Use the -R region for output if set; otherwise match grid domain */
gmt_M_memcpy (wesn, (GMT->common.R.active[RSET] ? GMT->common.R.wesn : Gin->header->wesn), 4, double);
full_360 = (Ctrl->D.mode && gmt_grd_is_global (GMT, Gin->header)); /* Periodic geographic grid */
if (GMT->common.R.active[ISET])
gmt_M_memcpy (inc, GMT->common.R.inc, 2, double);
else
gmt_M_memcpy (inc, Gin->header->inc, 2, double);
if (!full_360) {
if (wesn[XLO] < Gin->header->wesn[XLO]) error = true;
if (wesn[XHI] > Gin->header->wesn[XHI]) error = true;
}
if (wesn[YLO] < Gin->header->wesn[YLO]) error = true;
if (wesn[YHI] > Gin->header->wesn[YHI]) error = true;
if (error) {
GMT_Report (API, GMT_MSG_ERROR, "New WESN incompatible with old.\n");
Return (GMT_RUNTIME_ERROR);
}
last_median = 0.5 * (Gin->header->z_min + Gin->header->z_max);
z_min = Gin->header->z_min; z_max = Gin->header->z_max;
if ((Gout = GMT_Create_Data (API, GMT_IS_GRID, GMT_IS_SURFACE, GMT_CONTAINER_AND_DATA, NULL, wesn, inc, \
!one_or_zero, GMT_NOTSET, NULL)) == NULL) Return (API->error);
/* We can save time by computing a weight matrix once [or once pr scanline] only
if new grid spacing is multiple of old spacing */
fast_way = (fabs (fmod (Gout->header->inc[GMT_X] / Gin->header->inc[GMT_X], 1.0)) < GMT_CONV4_LIMIT && fabs (fmod (Gout->header->inc[GMT_Y] / Gin->header->inc[GMT_Y], 1.0)) < GMT_CONV4_LIMIT);
if (!fast_way) {
GMT_Report (API, GMT_MSG_WARNING, "Your output grid spacing is such that filter-weights must\n");
GMT_Report (API, GMT_MSG_WARNING, "be recomputed for every output node, so expect this run to be slow. Calculations\n");
GMT_Report (API, GMT_MSG_WARNING, "can be speeded up significantly if output grid spacing is chosen to be a multiple\n");
GMT_Report (API, GMT_MSG_WARNING, "of the input grid spacing. If the odd output grid is necessary, consider using\n");
GMT_Report (API, GMT_MSG_WARNING, "a \'fast\' grid for filtering and then resample onto your desired grid with grdsample.\n");
}
#ifdef OBSOLETE
if (Ctrl->S.active) {
if ((Sout = GMT_Duplicate_Data (API, GMT_IS_GRID, GMT_DUPLICATE_ALLOC, Gout)) == NULL) Return (API->error);
}
#endif
i_origin = gmt_M_memory (GMT, NULL, Gout->header->n_columns, int);
if (!fast_way) x_shift = gmt_M_memory (GMT, NULL, Gout->header->n_columns, double);
if (fast_way && Gin->header->registration == one_or_zero) { /* multiple grid but one is pix, other is grid */
F.x_fix = 0.5 * Gin->header->inc[GMT_X];
F.y_fix = 0.5 * Gin->header->inc[GMT_Y];
shift = (F.x_fix != 0.0 || F.y_fix != 0.0);
}
/* Set up weight matrix and i,j range to test */
x_scale = y_scale = 1.0;
if (Ctrl->D.mode > 0) {
x_scale *= F.deg2km;
y_scale *= F.deg2km;
}
if (Ctrl->D.mode == 2)
x_scale *= cosd (0.5 * (wesn[YHI] + wesn[YLO]));
else if (Ctrl->D.mode > 2) {
if (fabs (wesn[YLO]) > wesn[YHI])
x_scale *= cosd (wesn[YLO]);
else
x_scale *= cosd (wesn[YHI]);
}
x_width = Ctrl->F.width / (Gin->header->inc[GMT_X] * x_scale);
y_width = Ctrl->F.width / (Gin->header->inc[GMT_Y] * y_scale);
F.d_flag = Ctrl->D.mode;
F.f_flag = Ctrl->F.filter;
F.y_half_width = irint (ceil(y_width) / 2.0);
F.x_half_width = irint (ceil(x_width) / 2.0);
F.dx = Gin->header->inc[GMT_X];
F.dy = Gin->header->inc[GMT_Y];
F.n_columns = 2 * F.x_half_width + 1;
F.n_rows = 2 * F.y_half_width + 1;
F.width = Ctrl->F.width;
F.weight = gmt_M_memory (GMT, NULL, F.n_columns*F.n_rows, double);
if (slow) { /* SCAN: Now require several work_arrays, one for each sector */
work_array = gmt_M_memory (GMT, NULL, Ctrl->N.n_sectors, double *);
#ifdef OBSOLETE
if (Ctrl->S.active) work_array2 = gmt_M_memory (GMT, NULL, 2*F.n_columns*F.n_rows, double);
if (Ctrl->E.active) {
xx = gmt_M_memory (GMT, NULL, Ctrl->N.n_sectors, short int *);
yy = gmt_M_memory (GMT, NULL, Ctrl->N.n_sectors, short int *);
}
#endif
wsize = 2*F.n_columns*F.n_rows/Ctrl->N.n_sectors; /* Should be enough, watch for messages to the contrary */
for (i = 0; i < Ctrl->N.n_sectors; i++) {
work_array[i] = gmt_M_memory (GMT, NULL, wsize, double);
#ifdef OBSOLETE
if (Ctrl->E.active) {
xx[i] = gmt_M_memory (GMT, NULL, wsize, short int);
yy[i] = gmt_M_memory (GMT, NULL, wsize, short int);
}
#endif
}
}
GMT_Report (API, GMT_MSG_INFORMATION, "Input n_columns,n_rows = (%d %d), output n_columns,n_rows = (%d %d), filter n_columns,n_rows = (%d %d)\n",
Gin->header->n_columns, Gin->header->n_rows, Gout->header->n_columns, Gout->header->n_rows, F.n_columns, F.n_rows);
GMT_Report (API, GMT_MSG_INFORMATION, "Filter type is %s.\n", filter_name[Ctrl->F.filter]);
/* Compute nearest xoutput i-indices and shifts once */
for (col_out = 0; col_out < Gout->header->n_columns; col_out++) {
x_out = gmt_M_grd_col_to_x (GMT, col_out, Gout->header); /* Current longitude */
i_origin[col_out] = (int)gmt_M_grd_x_to_col (GMT, x_out, Gin->header);
if (!fast_way) x_shift[col_out] = x_out - gmt_M_grd_col_to_x (GMT, i_origin[col_out], Gin->header);
}
/* Now we can do the filtering */
/* Determine how much effort to compute weights:
1 = Compute weights once for entire grid
2 = Compute weights once per scanline
3 = Compute weights for every output point [slow]
*/
if (fast_way && Ctrl->D.mode <= 2)
effort_level = 1;
else if (fast_way && Ctrl->D.mode > 2)
effort_level = 2;
else
effort_level = 3;
if (effort_level == 1) dimfilter_set_weight_matrix (&F, Gout->header, 0.0, shift); /* Only need this once */
if (Ctrl->C.active) { /* Use fixed-width diagonal corridors instead of bow-ties */
n_sectors_2 = Ctrl->N.n_sectors / 2;
c_x = gmt_M_memory (GMT, NULL, n_sectors_2, double);
c_y = gmt_M_memory (GMT, NULL, n_sectors_2, double);
for (i = 0; i < n_sectors_2; i++) {
angle = (i + 0.5) * (M_PI/n_sectors_2); /* Angle of central diameter of each corridor */
sincos (angle, &c_y[i], &c_x[i]); /* Unit vector of diameter */
}
}
else {
/* SCAN: Precalculate which sector each point belongs to */
sector = gmt_M_memory (GMT, NULL, F.n_rows, unsigned short int *);
for (jj = 0; jj < F.n_rows; jj++) sector[jj] = gmt_M_memory (GMT, NULL, F.n_columns, unsigned short int);
for (jj = -F.y_half_width; jj <= F.y_half_width; jj++) { /* This double loop visits all nodes in the square centered on an output node */
j = F.y_half_width + jj;
for (ii = -F.x_half_width; ii <= F.x_half_width; ii++) { /* (ii, jj) is local coordinates relative center (0,0) */
i = F.x_half_width + ii;
/* We are doing "bow-ties" and not wedges here */
angle = atan2 ((double)jj, (double)ii); /* Returns angle in -PI,+PI range */
if (angle < 0.0) angle += M_PI; /* Flip to complimentary sector in 0-PI range */
sector[j][i] = (short) rint ((Ctrl->N.n_sectors * angle) / M_PI); /* Convert to sector id 0-<n_sectors-1> */
if (sector[j][i] == Ctrl->N.n_sectors) sector[j][i] = 0; /* Ensure that exact PI is set to 0 */
}
}
}
n_in_median = gmt_M_memory (GMT, NULL, Ctrl->N.n_sectors, unsigned int);
value = gmt_M_memory (GMT, NULL, Ctrl->N.n_sectors, double);
wt_sum = gmt_M_memory (GMT, NULL, Ctrl->N.n_sectors, double);
for (row_out = 0; row_out < Gout->header->n_rows; row_out++) {
GMT_Report (API, GMT_MSG_INFORMATION, "Processing output line %d\r", row_out);
y_out = gmt_M_grd_row_to_y (GMT, row_out, Gout->header);
j_origin = (int)gmt_M_grd_y_to_row (GMT, y_out, Gin->header);
if (effort_level == 2) dimfilter_set_weight_matrix (&F, Gout->header, y_out, shift);
for (col_out = 0; col_out < Gout->header->n_columns; col_out++) {
if (effort_level == 3) dimfilter_set_weight_matrix (&F, Gout->header, y_out, shift);
gmt_M_memset (n_in_median, Ctrl->N.n_sectors, unsigned int);
gmt_M_memset (value, Ctrl->N.n_sectors, double);
gmt_M_memset (wt_sum, Ctrl->N.n_sectors, double);
#ifdef OBSOLETE
if (Ctrl->E.active) {
S = 0;
Sx = Sy = Sz = Sxx = Syy = Sxy = Sxz = Syz = Sxx = Sw = 0.0;
}
n = 0;
#endif
ij_out = gmt_M_ijp (Gout->header, row_out, col_out);
for (ii = -F.x_half_width; ii <= F.x_half_width; ii++) {
scol = i_origin[col_out] + ii;
if (scol < 0 || (col_in = scol) >= Gin->header->n_columns) continue;
for (jj = -F.y_half_width; jj <= F.y_half_width; jj++) {
srow = j_origin + jj;
if (srow < 0 || (row_in = srow) >= Gin->header->n_rows) continue;
ij_wt = (jj + F.y_half_width) * (uint64_t)F.n_columns + ii + F.x_half_width;
if (F. weight[ij_wt] < 0.0) continue;
ij_in = gmt_M_ijp (Gin->header, row_in, col_in);
if (gmt_M_is_fnan (Gin->data[ij_in])) continue;
/* Get here when point is usable */
if (Ctrl->C.active) { /* Point can belong to several corridors */
for (s = 0; s < n_sectors_2; s++) {
d = sqrt (c_y[s] * ii + c_x[s] * jj); /* Perpendicular distance to central diameter, in nodes */
if (d > F.y_half_width) continue; /* Outside this corridor */
if (slow) {
work_array[s][n_in_median[s]] = Gin->data[ij_in];
#ifdef OBSOLETE
if (Ctrl->S.active) work_array2[n++] = Gin->data[ij_in];
#endif
#ifdef DEBUG
if (n_in_median[s] < 5) x_debug[n_in_median[s]] = (double)ii;
if (n_in_median[s] < 5) y_debug[n_in_median[s]] = (double)jj;
if (n_in_median[s] < 5) z_debug[n_in_median[s]] = Gin->data[ij_in];
#endif
#ifdef OBSOLETE
if (Ctrl->E.active) { /* Sum up required terms to solve for slope and intercepts of planar trend */
xx[s][n_in_median[s]] = ii;
yy[s][n_in_median[s]] = jj;
Sx += ii;
Sy += jj;
Sz += Gin->data[ij_in];
Sxx += ii * ii;
Syy += jj * jj;
Sxy += ii * jj;
Sxz += ii * Gin->data[ij_in];
Syz += jj * Gin->data[ij_in];
S++;
}
#endif
n_in_median[s]++;
}
else {
wx = Gin->data[ij_in] * F. weight[ij_wt];
value[s] += wx;
wt_sum[s] += F. weight[ij_wt];
#ifdef OBSOLETE
if (Ctrl->S.active) {
Sxx += wx * Gin->data[ij_in];
Sw += F. weight[ij_wt];
n++;
}
#endif
}
}
}
else if (ii == 0 && jj == 0) { /* Center point belongs to all sectors */
if (slow) { /* Must store copy in all work arrays */
for (s = 0; s < Ctrl->N.n_sectors; s++) {
work_array[s][n_in_median[s]] = Gin->data[ij_in];
#ifdef DEBUG
if (n_in_median[s] < 5) x_debug[n_in_median[s]] = (double)ii;
if (n_in_median[s] < 5) y_debug[n_in_median[s]] = (double)jj;
if (n_in_median[s] < 5) z_debug[n_in_median[s]] = Gin->data[ij_in];
#endif
#ifdef OBSOLETE
if (Ctrl->E.active) xx[s][n_in_median[s]] = yy[s][n_in_median[s]] = 0; /*(0,0) at the node */
#endif
n_in_median[s]++;
}
#ifdef OBSOLETE
if (Ctrl->S.active) work_array2[n++] = Gin->data[ij_in];
#endif
}
else { /* Simply add to the weighted sums */
for (s = 0; s < Ctrl->N.n_sectors; s++) {
wx = Gin->data[ij_in] * F. weight[ij_wt];
value[s] += wx;
wt_sum[s] += F. weight[ij_wt];
}
#ifdef OBSOLETE
if (Ctrl->S.active) {
Sxx += wx * Gin->data[ij_in];
Sw += F. weight[ij_wt];
n++;
}
#endif
}
#ifdef OBSOLOTE
if (Ctrl->E.active) { /* Since r is 0, only need to update Sz and S */
Sz += Gin->data[ij_in];
S++;
}
#endif
}
else {
s = sector[jj+F.y_half_width][ii+F.x_half_width]; /* Get the sector for this node */
if (slow) {
work_array[s][n_in_median[s]] = Gin->data[ij_in];
#ifdef OBSOLETE
if (Ctrl->S.active) work_array2[n++] = Gin->data[ij_in];
#endif
#ifdef DEBUG
if (n_in_median[s] < 5) x_debug[n_in_median[s]] = (double)ii;
if (n_in_median[s] < 5) y_debug[n_in_median[s]] = (double)jj;
if (n_in_median[s] < 5) z_debug[n_in_median[s]] = Gin->data[ij_in];
(void)x_debug;
(void)y_debug;
(void)z_debug;
#endif
#ifdef OBSOLETE
if (Ctrl->E.active) { /* Sum up required terms to solve for slope and intercepts of planar trend */
xx[s][n_in_median[s]] = ii;
yy[s][n_in_median[s]] = jj;
Sx += ii;
Sy += jj;
Sz += Gin->data[ij_in];
Sxx += ii * ii;
Syy += jj * jj;
Sxy += ii * jj;
Sxz += ii * Gin->data[ij_in];
Syz += jj * Gin->data[ij_in];
S++;
}
#endif
n_in_median[s]++;
}
else {
wx = Gin->data[ij_in] * F. weight[ij_wt];
value[s] += wx;
wt_sum[s] += F. weight[ij_wt];
#ifdef OBSOLETE
if (Ctrl->S.active) {
Sxx += wx * Gin->data[ij_in];
Sw += F. weight[ij_wt];
n++;
}
#endif
}
}
}
}
/* Now we have done the sectoring and we can apply the filter on each sector */
/* k will be the number of sectors that had enough data to do the operation */
#ifdef OBSOLETE
if (Ctrl->E.active) { /* Must find trend coeeficients, remove from array, do the filter, then add in intercept (since r = 0) */
denominator = S * Sxx * Syy + 2.0 * Sx * Sy * Sxy - S * Sxy * Sxy - Sx * Sx * Syy - Sy * Sy * Sxx;
if (denominator == 0.0) {
intercept = slope_x = slope_y = 0.0;
n_bad_planes++;
}
else {
inv_D = 1.0 / denominator;
intercept = (S * Sxx * Syz + Sx * Sy * Sxz + Sz * Sx * Sxy - S * Sxy * Sxz - Sx * Sx * Syz - Sz * Sy * Sxx) * inv_D;
slope_x = (S * Sxz * Syy + Sz * Sy * Sxy + Sy * Sx * Syz - S * Sxy * Syz - Sz * Sx * Syy - Sy * Sy * Sxz) * inv_D;
slope_y = (S * Sxx * Syz + Sx * Sy * Sxz + Sz * Sx * Sxy - S * Sxy * Sxz - Sx * Sx * Syz - Sz * Sy * Sxx) * inv_D;
}
}
#endif