-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOld.params
2579 lines (2240 loc) · 60.8 KB
/
Old.params
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
/**********************************************************************
* TDRP params for ./Radx2Grid
**********************************************************************/
//======================================================================
//
// Radx2Grid reads moments from Radx-supported format files,
// interpolates onto a Cartesian grid, and writes out the results to
// Cartesian files.
//
//======================================================================
//======================================================================
//
// DEBUGGING.
//
//======================================================================
///////////// debug ///////////////////////////////////
//
// Debug option.
//
// If set, debug messages will be printed appropriately.
//
//
// Type: enum
// Options:
// DEBUG_OFF
// DEBUG_NORM
// DEBUG_VERBOSE
// DEBUG_EXTRA
//
debug = DEBUG_NORM;
///////////// instance ////////////////////////////////
//
// Program instance for process registration.
//
// This application registers with procmap. This is the instance used
// for registration.
//
//
// Type: string
//
instance = "test";
///////////// register_with_procmap ///////////////////
//
// Option to register this process with the process mapper (procmap).
//
// If TRUE, every minute this process will register a heartbeat with
// procmap. If the process hangs, it will be restared by the
// auto_restarter.
//
//
// Type: boolean
//
register_with_procmap = FALSE;
///////////// procmap_register_interval ///////////////
//
// Interval for registering with procmap (secs).
//
// The app will register with procmap at this interval, to update its
// status. If it does not register within twice this interval, the
// auto_restart script will restart the app.
//
//
// Type: int
//
procmap_register_interval = 60;
//======================================================================
//
// THREADING FOR SPEED.
//
//======================================================================
///////////// use_multiple_threads ////////////////////
//
// Option to use multiple compute threads to improve performance.
//
// The read and write stages occur in the main thread, since netCDF is
// not thread safe. The compute stage can be multi-threaded to improve
// performance.
//
//
// Type: boolean
//
use_multiple_threads = FALSE;
///////////// n_compute_threads ///////////////////////
//
// The number of compute threads.
//
// The moments computations are segmented in range, with each thread
// computing a fraction of the number of gates. For maximum performance,
// n_threads should be set to the number of processors multiplied by 4.
// For further tuning, use top to maximize CPU usage while varying the
// number of threads.
//
// Minimum val: 1
//
// Type: int
//
n_compute_threads = 1;
//======================================================================
//
// DATA INPUT.
//
//======================================================================
///////////// input_dir ///////////////////////////////
//
// Input directory for searching for files.
//
// Files will be searched for in this directory.
//
//
// Type: string
//
input_dir = "decode";
///////////// mode ////////////////////////////////////
//
// Operating mode.
//
// In REALTIME mode, the program waits for a new input file. In ARCHIVE
// mode, it moves through the data between the start and end times set
// on the command line. In FILELIST mode, it moves through the list of
// file names specified on the command line. Paths (in ARCHIVE mode, at
// least) MUST contain a day-directory above the data file --
// ./data_file.ext will not work as a file path, but
// ./yyyymmdd/data_file.ext will.
//
//
// Type: enum
// Options:
// REALTIME
// ARCHIVE
// FILELIST
//
mode = ARCHIVE;
///////////// max_realtime_data_age_secs //////////////
//
// Maximum age of realtime data (secs).
//
// Only data less old than this will be used.
//
//
// Type: int
//
max_realtime_data_age_secs = 300;
//======================================================================
//
// MEMORY HANDLING.
//
//======================================================================
///////////// free_memory_between_files ///////////////
//
// Option to free up memory between each new file.
//
// If true, we free up as much memory as possible between handling the
// files. If false, we reduse allocated memory to the extent possible.
//
//
// Type: boolean
//
free_memory_between_files = TRUE;
//======================================================================
//
// FILE READ OPTIONS.
//
//======================================================================
///////////// aggregate_sweep_files_on_read ///////////
//
// Option to aggregate sweep files into a volume on read.
//
// If true, and the input data is in sweeps rather than volumes (e.g.
// DORADE), the sweep files from a volume will be aggregated into a
// volume.
//
//
// Type: boolean
//
aggregate_sweep_files_on_read = FALSE;
///////////// ignore_idle_scan_mode_on_read ///////////
//
// Option to ignore data taken in IDLE mode.
//
// If true, on read will ignore files with an IDLE scan mode.
//
//
// Type: boolean
//
ignore_idle_scan_mode_on_read = TRUE;
///////////// remove_rays_with_antenna_transitions ////
//
// Option to remove rays taken while the antenna was in transition.
//
// If true, rays with the transition flag set will not be used. The
// transiton flag is set when the antenna is in transtion between one
// sweep and the next.
//
//
// Type: boolean
//
remove_rays_with_antenna_transitions = FALSE;
///////////// transition_nrays_margin /////////////////
//
// Number of transition rays to include as a margin.
//
// Sometimes the transition flag is turned on too early in a transition,
// on not turned off quickly enough after a transition. If you set this
// to a number greater than 0, that number of rays will be included at
// each end of the transition, i.e. the transition will effectively be
// shorter at each end by this number of rays.
//
//
// Type: int
//
transition_nrays_margin = 0;
///////////// remove_long_range_rays //////////////////
//
// Option to remove long range rays.
//
// Applies to NEXRAD data. If true, data from the non-Doppler long-range
// sweeps will be removed.
//
//
// Type: boolean
//
remove_long_range_rays = TRUE;
///////////// remove_short_range_rays /////////////////
//
// Option to remove short range rays.
//
// Applies to NEXRAD data. If true, data from the Doppler short-range
// sweeps will be removed.
//
//
// Type: boolean
//
remove_short_range_rays = FALSE;
///////////// trim_surveillance_sweeps_to_360deg //////
//
// Option to trip surveillance sweeps so that they only cover 360
// degrees.
//
// Some sweeps will have rays which cover more than a 360-degree
// rotation. Often these include antenna transitions. If this is set to
// true, rays are trimmed off either end of the sweep to limit the
// coverage to 360 degrees. The median elevation angle is computed and
// the end ray which deviates from the median in elevation is trimmed
// first.
//
//
// Type: boolean
//
trim_surveillance_sweeps_to_360deg = FALSE;
///////////// override_fixed_angle_with_mean_measured_angle
//
// Option to override the fixed angle with the mean angle for a sweep.
//
// If true, for each sweep the mean pointing angle is computed and then
// this is used to override the fixed angle.
//
//
// Type: boolean
//
override_fixed_angle_with_mean_measured_angle = FALSE;
//======================================================================
//
// SETTING LIMITS ON THE VALID DATA.
//
//======================================================================
///////////// set_max_range ///////////////////////////
//
// Option to set the max range for any ray.
//
//
// Type: boolean
//
set_max_range = FALSE;
///////////// max_range_km ////////////////////////////
//
// Specified maximim range - km.
//
// Gates beyond this range are removed.
//
//
// Type: double
//
max_range_km = 9999;
///////////// set_elevation_angle_limits //////////////
//
// Option to set elevation angle limits.
//
// Only use rays within the specified elevation angle limits.
//
//
// Type: boolean
//
set_elevation_angle_limits = FALSE;
///////////// lower_elevation_angle_limit /////////////
//
// Lower elevation angle limit (deg).
//
//
// Type: double
//
lower_elevation_angle_limit = 0;
///////////// upper_elevation_angle_limit /////////////
//
// Upper elevation angle limit (deg).
//
//
// Type: double
//
upper_elevation_angle_limit = 90;
///////////// set_azimuth_angle_limits ////////////////
//
// Option to set azimuth angle limits.
//
// Only use rays within the specified azimuth angle limits. This
// essentially specifies a sector for valid data. Rays outside this
// sector are ignored.
//
//
// Type: boolean
//
set_azimuth_angle_limits = FALSE;
///////////// lower_azimuth_angle_limit ///////////////
//
// Counter-clockwise azimuth angle limit (deg).
//
// This is the azimuth limit at the lower (counter clockwise) end of the
// sector. For azimuths to the west of north, use values between 180 and
// 360.
//
//
// Type: double
//
lower_azimuth_angle_limit = 0;
///////////// upper_azimuth_angle_limit ///////////////
//
// Clockwise azimuth angle limit (deg).
//
// This is the azimuth limit at the upper (clockwise) end of the sector.
//
//
// Type: double
//
upper_azimuth_angle_limit = 360;
///////////// check_fixed_angle_error /////////////////
//
// Option to limit the fixed angle error to a specfied maximum value.
//
// If true, we compute the error between the actual pointing angle and
// the fixed angle for the sweep. If the error exceeds the specified
// limit, we reject the ray. For PPIs, we check th elevation angle
// against the fixed angle. For RHIs, we check the azimuth against the
// fixed angle.
//
//
// Type: boolean
//
check_fixed_angle_error = FALSE;
///////////// max_fixed_angle_error ///////////////////
//
// Maximum permissable error in the pointing angle (deg).
//
// See 'check_fixed_angle'.
//
//
// Type: double
//
max_fixed_angle_error = 2;
//======================================================================
//
// OPTION TO OVERRIDE VOLUME NUMBER, OR AUTOINCREMENT.
//
//======================================================================
///////////// override_volume_number //////////////////
//
// Option to override the volume number in the file.
//
// Useful is there is no volume number in the data.
//
//
// Type: boolean
//
override_volume_number = FALSE;
///////////// starting_volume_number //////////////////
//
// Volume number at startup.
//
// Applies if 'override_volume_number' is true.
//
//
// Type: int
//
starting_volume_number = 1;
///////////// autoincrement_volume_number /////////////
//
// Option to automatically increment the volume number.
//
// Starts at 'starting_volume_number' and increments from there.
//
//
// Type: boolean
//
autoincrement_volume_number = FALSE;
//======================================================================
//
// OPTION TO OVERRIDE RADAR LOCATION.
//
//======================================================================
///////////// override_radar_location /////////////////
//
// Option to override the radar location.
//
// If true, the location in this file will be used. If not, the location
// in the time series data will be used.
//
//
// Type: boolean
//
override_radar_location = FALSE;
///////////// radar_latitude_deg //////////////////////
//
// Radar latitude (deg).
//
// See override_radar_location.
//
//
// Type: double
//
radar_latitude_deg = -999;
///////////// radar_longitude_deg /////////////////////
//
// Radar longitude (deg).
//
// See override_radar_location.
//
//
// Type: double
//
radar_longitude_deg = -999;
///////////// radar_altitude_meters ///////////////////
//
// Radar altitude (meters).
//
// See override_radar_location.
//
//
// Type: double
//
radar_altitude_meters = -999;
//======================================================================
//
// OPTION TO OVERRIDE INSTRUMENT AND/OR SITE NAME.
//
//======================================================================
///////////// override_instrument_name ////////////////
//
// Option to override the instrument name.
//
// If true, the name provided will be used.
//
//
// Type: boolean
//
override_instrument_name = FALSE;
///////////// instrument_name /////////////////////////
//
// Instrument name.
//
// See override_instrument_name.
//
//
// Type: string
//
instrument_name = "unknown";
///////////// override_site_name //////////////////////
//
// Option to override the site name.
//
// If true, the name provided will be used.
//
//
// Type: boolean
//
override_site_name = FALSE;
///////////// site_name ///////////////////////////////
//
// Site name.
//
// See override_site_name.
//
//
// Type: string
//
site_name = "unknown";
//======================================================================
//
// OPTION TO OVERRIDE RADAR BEAM WIDTH.
//
// The beam width is used to decide how far to extend the interpolated
// data beyond the observed data. The data is extended below the lowest
// tilt and above the highest tilt, and in the case of sector scans it
// is extended slightly beyond the sector limits.
//
//======================================================================
///////////// override_beam_width /////////////////////
//
// Option to override radar beam width.
//
// If TRUE, the program will use beam width specified in the
// 'beam_width_deg' parameter.
//
//
// Type: boolean
//
override_beam_width = FALSE;
///////////// beam_width_deg_h ////////////////////////
//
// Horizontal beam width if override is set true (deg).
//
// Used for extending the data to the left or right of sector limits, if
// applicable. This is only used if 'override_beam_width' is set true.
// Otherwise the metadata in the input data stream is used.
//
//
// Type: double
//
beam_width_deg_h = 1;
///////////// beam_width_deg_v ////////////////////////
//
// Vertical beam width if override is set true (deg).
//
// Used for extending data above or below the observed region. This only
// used if 'override_beam_width' is set true. Otherwise the metadata in
// the input data stream is used.
//
//
// Type: double
//
beam_width_deg_v = 1;
//======================================================================
//
// If the start range and/or gate spacing is not correct in the data,
// you can override it using the parameters below.
//
//======================================================================
///////////// override_gate_geometry //////////////////
//
// Option to override gate geometry.
//
// If TRUE, the program will use the start range and gate spacing
// specified here.
//
//
// Type: boolean
//
override_gate_geometry = FALSE;
///////////// start_range_km //////////////////////////
//
// Start range (km).
//
// Used for overriding the start range in the data.
//
//
// Type: double
//
start_range_km = 0.125;
///////////// gate_spacing_km /////////////////////////
//
// Gate spacing (km).
//
// Used for overriding the gate spacing in the data.
//
//
// Type: double
//
gate_spacing_km = 0.25;
//======================================================================
//
// OPTION TO OVERRIDE THE NYQUIST VELOCITY.
//
//======================================================================
///////////// override_nyquist ////////////////////////
//
// Option to override nyquist velocity in incoming data.
//
// If true, the nyquist_velocity parameter is used to specify the
// nyquist. If false, the nyquist is computed from the incoming radar
// data stream. The nyquist is used for velocity interpolation, to
// ensure that folded values are treated correctlty.
//
//
// Type: boolean
//
override_nyquist = FALSE;
///////////// nyquist_velocity ////////////////////////
//
// Specify nyquist velocity (m/s).
//
// See 'override_nyquist'.
//
//
// Type: double
//
nyquist_velocity = 25;
//======================================================================
//
// APPLYING ANGLE CORRECTIONS.
//
//======================================================================
///////////// azimuth_correction_deg //////////////////
//
// Add this value to the azimuth.
//
// Normally only used for testing, but can be used if there is a
// constant azimuth error in the data.
//
//
// Type: double
//
azimuth_correction_deg = 0;
///////////// elevation_correction_deg ////////////////
//
// Add this value to the elevation.
//
// Normally only used for testing, but can be used if there is a
// constant elevation error in the data.
//
//
// Type: double
//
elevation_correction_deg = 0;
//======================================================================
//
// SETTING PSEUDO EARTH RADIUS RATIO FOR HEIGHT COMPUTATIONS.
//
//======================================================================
///////////// override_standard_pseudo_earth_radius ///
//
// Option to override the standard 4/3 earth radius model for
// refraction.
//
// If true, the standard 4/3 earth radius will be overridden. The US NWS
// NEXRAD system uses 1.21 instead of 1.333.
//
//
// Type: boolean
//
override_standard_pseudo_earth_radius = FALSE;
///////////// pseudo_earth_radius_ratio ///////////////
//
// Ratio for computing the pseudo earth radius for beam height
// computations.
//
// For standard refraction this is 4/3. For super refraction it will be
// less than 4.3, and for sub-refraction it will be greater. NEXRAD uses
// 1.21.
//
//
// Type: double
//
pseudo_earth_radius_ratio = 1.33333;
//======================================================================
//
// INTERPOLATION.
//
//======================================================================
///////////// interp_mode /////////////////////////////
//
// Mode for interpolation.
//
// INTERP_MODE_CART: interpolate onto a 3-D Cartesian grid. This is
// equivalent to the old SPRINT application.
//
// INTERP_MODE_PPI: interpolate onto a 2-D Cartesian grid, preserving
// original radar elevation angles in the vertical. Also replaces
// SPRINT.
//
// INTERP_MODE_POLAR: interpolate onto a regular azimuth angle grid,
// preserving the elevation angles.
//
// INTERP_MODE_CART_REORDER: interpolate onto 3-D Cartesian grid using
// the reorder strategy - should only be used for MOVING platforms - DO
// NOT USE for FIXED platform, use INTERP_MODE_CART instead.
//
// INTERP_MODE_SAT: interpolate onto a grid, with a specified width
// along the satellite track.
//
//
// Type: enum
// Options:
// INTERP_MODE_CART
// INTERP_MODE_PPI
// INTERP_MODE_POLAR
// INTERP_MODE_CART_REORDER
// INTERP_MODE_CART_SAT
// INTERP_MODE_CART_MAP
//
interp_mode = INTERP_MODE_CART;
///////////// use_nearest_neighbor ////////////////////
//
// Option to use nearest neighbor method instead of interpolation.
//
// If true, use the values from the nearest point instead of
// interpolating.
//
//
// Type: boolean
//
use_nearest_neighbor = FALSE;
///////////// min_nvalid_for_interp ///////////////////
//
// Minimum number of valid data points for theinterpolation.
//
// The program performs an 8-point linear interpolation. This is the
// number of valid data points, out of the possible 8, which must be
// present for interpolation to proceed. A high number will exclude
// marginal points. A low number will include marginal points.
//
// Minimum val: 1
// Maximum val: 8
//
// Type: int
//
min_nvalid_for_interp = 3;
///////////// use_fixed_angle_for_interpolation ///////
//
// Option to use the fixed sweep angle for determining position for
// interpolation.
//
// If false, we use the measured elevaiton and azimuth for each ray. If
// true, we use the fixed angle instead of the elevation angle in PPI
// scan mode and the fixed angle instead of azimuth in RHI mode.
//
//
// Type: boolean
//
use_fixed_angle_for_interpolation = FALSE;
///////////// use_fixed_angle_for_data_limits /////////
//
// Option to use the fixed sweep angle for determining the angle limits
// of the data.
//
// If true, we use the scan strategy sweep fixed angle for determining
// the angular limits to the data. If false, we use the actual measured
// angles. We need to find the data limits so that we can extend the
// interpolation by a fraction of the beam width beyond the angular
// limits. See also 'beam_width_fraction_for_data_limit_extension'.
//
//
// Type: boolean
//
use_fixed_angle_for_data_limits = TRUE;
///////////// beam_width_fraction_for_data_limit_extension
//
// Fraction of the beam width used to extend the data beyond the
// observed limits.
//
// At the edges of the observed region, the interpolated data is
// extended by an angle computed as beam_width * fraction. For extending
// below the lowest tilt and above the upper tilt, the vertical beam
// width is used. For extended to the left or right of sector limits,
// the horizontal beam width is used.
//
//
// Type: double
//
beam_width_fraction_for_data_limit_extension = 0.5;
//======================================================================
//
// INTERPOLATION USING REORDER METHOD.
//
// !!!!!! WARNING - IMPORTANT NOTE - this mode should only be used for
// mobile platforms. Use INTERP_MODE_CART for all fixed platforms - it
// is much more robust and gives much better results !!!!!!!.
//
//======================================================================
///////////// reorder_npoints_search //////////////////
//
// Number of points retrieved around each grid point.
//
// We find this number of closest points, and then check that their
// distance is less than the search radius.
//
//
// Type: int
//
reorder_npoints_search = 24;
///////////// reorder_search_radius_km ////////////////
//
// Radius searched around a grid cell for radar points that contribute
// to theinterpolation.
//
// We optionally scale this by range, so that the radius increases at
// longer ranges where the rays are more widely spaced.
//
//
// Type: double
//
reorder_search_radius_km = 5;
///////////// reorder_scale_search_radius_with_range //
//
// Option to scale search radius based on range from radar.
//
// If true, we treat the specified search radius as a nominal value, and
// adjust it based on the range of the grid point from the radar. See
// also reorder_nominal_range_for_search_radius.
//
//
// Type: boolean
//
reorder_scale_search_radius_with_range = TRUE;
///////////// reorder_nominal_range_for_search_radius_km
//
// Range at which the xy_margin is equal to the nominal value (km).
//
// At ranges other than this, we scale the search radius linearly based
// on range from the radar, provided reorder_scale_xy_margin_with_range
// is TRUE.
//
//
// Type: double
//
reorder_nominal_range_for_search_radius_km = 60;
///////////// reorder_z_search_ratio //////////////////
//
// Ratio of search in Z dimension with respect to the XY dimensions.
//
// If this is 1.0, the search space around a grid point is effectively a
// sphere. If this value is less than 1, then the search space is
// flattened, i.e. we look farther out in the XY directions than in the
// Z direction. This has the effect of reducing the ringing effect seen
// in data with higher gradients in Z than XY. If the value is greater
// than 1, the reverse applies.
//
//
// Type: double
//
reorder_z_search_ratio = 1;
///////////// reorder_bound_grid_point_vertically /////
//
// Option to interpolate only if there is valid data both above and
// below the grid point.
//
// This enforces boundedness in the vertical coordinate. Essentially it
// prevents extrapolation above the upper sweep and below the lowest
// sweep.
//
//
// Type: boolean
//
reorder_bound_grid_point_vertically = FALSE;
///////////// reorder_min_valid_wt_ratio //////////////
//
// Min ratio of valid weights to total weights.
//
// In deciding whether a grid point should be marked as valid or