-
Notifications
You must be signed in to change notification settings - Fork 1
/
RadxConvert_AMQ.params
2349 lines (2034 loc) · 54.4 KB
/
RadxConvert_AMQ.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 RadxConvert
**********************************************************************/
//======================================================================
//
// Converts files between CfRadial and other radial formats.
//
//======================================================================
//======================================================================
//
// 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_VERBOSE;
///////////// instance ////////////////////////////////
//
// Program instance for process registration.
//
// This application registers with procmap. This is the instance used
// for registration.
//
//
// Type: string
//
instance = "test";
//======================================================================
//
// DATA INPUT.
//
//======================================================================
///////////// input_dir ///////////////////////////////
//
// Input directory for searching for files.
//
// Files will be searched for in this directory.
//
//
// Type: string
//
input_dir = ".";
///////////// 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 = FILELIST;
///////////// 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;
///////////// latest_data_info_avail //////////////////
//
// Is _latest_data_info file available?.
//
// If TRUE, will watch the latest_data_info file. If FALSE, will scan
// the input directory for new files.
//
//
// Type: boolean
//
latest_data_info_avail = TRUE;
///////////// search_recursively //////////////////////
//
// Option to recurse to subdirectories while looking for new files.
//
// If TRUE, all subdirectories with ages less than max_dir_age will be
// searched. This may take considerable CPU, so be careful in its use.
// Only applies if latest_data_info_avail is FALSE.
//
//
// Type: boolean
//
search_recursively = TRUE;
///////////// max_recursion_depth /////////////////////
//
// Maximum depth for recursive directory scan.
//
// Only applies search_recursively is TRUE. This is the max depth, below
// input_dir, to which the recursive directory search will be carried
// out. A depth of 0 will search the top-level directory only. A depth
// of 1 will search the level below the top directory, etc.
//
//
// Type: int
//
max_recursion_depth = 5;
///////////// wait_between_checks /////////////////////
//
// Sleep time between checking directory for input - secs.
//
// If a directory is large and files do not arrive frequently, set this
// to a higher value to reduce the CPU load from checking the directory.
// Only applies if latest_data_info_avail is FALSE.
//
// Minimum val: 1
//
// Type: int
//
wait_between_checks = 2;
///////////// file_quiescence /////////////////////////
//
// File quiescence when checking for files - secs.
//
// This allows you to make sure that a file coming from a remote machine
// is complete before reading it. Only applies if latest_data_info_avail
// is FALSE.
//
//
// Type: int
//
file_quiescence = 5;
///////////// search_ext //////////////////////////////
//
// File name extension.
//
// If set, only files with this extension will be processed.
//
//
// Type: string
//
search_ext = "";
///////////// gematronik_realtime_mode ////////////////
//
// Set to TRUE if we are watching for Gematronik XML volumes.
//
// Gematronik volumes (for a given time) are stored in multiple files,
// one for each field. Therefore, after the time on a volume changes and
// a new field file is detected, we need to wait a while to ensure that
// all of the files have had a chance to be writted to disk. You need to
// set gematronik_realtime_wait_secs to a value in excess of the time it
// takes for all of the files to be written.
//
//
// Type: boolean
//
gematronik_realtime_mode = FALSE;
///////////// gematronik_realtime_wait_secs ///////////
//
// Number of seconds to wait, so that all field files can be written to
// disk before we start to read.
//
// See 'gematronik_realtime_mode'.
//
//
// Type: int
//
gematronik_realtime_wait_secs = 5;
//======================================================================
//
// OPTIONAL FIXED ANGLE OR SWEEP NUMBER LIMITS.
//
// Fixed angles are elevation in PPI mode and azimuth in RHI mode.
//
//======================================================================
///////////// set_fixed_angle_limits //////////////////
//
// Option to set fixed angle limits.
//
// Only use sweeps within the specified fixed angle limits.
//
//
// Type: boolean
//
set_fixed_angle_limits = FALSE;
///////////// lower_fixed_angle_limit /////////////////
//
// Lower fixed angle limit - degrees.
//
//
// Type: double
//
lower_fixed_angle_limit = 0;
///////////// upper_fixed_angle_limit /////////////////
//
// Upper fixed angle limit - degrees.
//
//
// Type: double
//
upper_fixed_angle_limit = 90;
///////////// set_sweep_num_limits ////////////////////
//
// Option to set sweep number limits.
//
// If 'apply_strict_angle_limits' is set, only read sweeps within the
// specified limits. If strict checking is false and no data lies within
// the limits, return the closest applicable sweep.
//
//
// Type: boolean
//
set_sweep_num_limits = FALSE;
///////////// lower_sweep_num /////////////////////////
//
// Lower sweep number limit.
//
//
// Type: int
//
lower_sweep_num = 0;
///////////// upper_sweep_num /////////////////////////
//
// Upper sweep number limit.
//
//
// Type: int
//
upper_sweep_num = 0;
///////////// apply_strict_angle_limits ///////////////
//
// Option to apply strict checking for angle or sweep number limits on
// read.
//
// If true, an error will occur if the fixed angle limits or sweep num
// limits are outside the bounds of the data. If false, a read is
// guaranteed to return at least 1 sweep - if no sweep lies within the
// angle limits set, the nearest sweep will be returned.
//
//
// Type: boolean
//
apply_strict_angle_limits = TRUE;
//======================================================================
//
// READ OPTIONS.
//
//======================================================================
///////////// read_set_radar_num //////////////////////
//
// Option to set the radar number.
//
// See read_radar_num.
//
//
// Type: boolean
//
read_set_radar_num = FALSE;
///////////// read_radar_num //////////////////////////
//
// Set the radar number for the data to be extracted.
//
// Most files have data from a single radar, so this does not apply. The
// NOAA HRD files, however, have data from both the lower fuselage (LF,
// radar_num = 1) and tail (TA, radar_num = 2) radars. For HRD files, by
// default the TA radar will be used, unless the radar num is set to 1
// for the LF radar. If this is set to 1, it will force the convert to
// assume a lower fuselage radar. If set to 2, it will assume a tail
// radar.
//
//
// Type: int
//
read_radar_num = -1;
///////////// 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;
///////////// aggregate_all_files_on_read /////////////
//
// Option to aggregate all files in the file list on read.
//
// If true, all of the files specified with the '-f' arg will be
// aggregated into a single volume as they are read in. This only
// applies to FILELIST mode. Overrides 'aggregate_sweep_files_on_read'.
//
//
// Type: boolean
//
aggregate_all_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_all_data_missing ///////
//
// Option to remove rays for which all data is missing.
//
// If true, ray data will be checked. If all fields have missing data at
// all gates, the ray will be removed after reading.
//
//
// Type: boolean
//
remove_rays_with_all_data_missing = FALSE;
///////////// clear_transition_flag_on_all_rays ///////
//
// Option to clear the transition flag on all rays.
//
// If true, for all rays on which the transition flag is set, this flag
// will be removed, so that all rays are considered to be NOT in
// transition.
//
//
// Type: boolean
//
clear_transition_flag_on_all_rays = FALSE;
///////////// 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;
///////////// 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;
///////////// 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;
///////////// preserve_sweeps /////////////////////////
//
// Preserve sweeps just as they are in the file.
//
// Applies generally to NEXRAD data. If true, the sweep details are
// preserved. If false, we consolidate sweeps from split cuts into a
// single sweep.
//
//
// Type: boolean
//
preserve_sweeps = FALSE;
///////////// 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;
///////////// set_ngates_constant /////////////////////
//
// Option to force the number of gates to be constant.
//
// If TRUE, the number of gates on all rays will be set to the maximum,
// and gates added to shorter rays will be filled with missing values.
//
//
// Type: boolean
//
set_ngates_constant = FALSE;
///////////// remap_to_predominant_range_geometry /////
//
// Option to remap all rays to the predominant range geometry.
//
// If TRUE, all rays will be remapped onto the same range geometry,
// determined as the most common geometry amongst all of the rays read
// in.
//
//
// Type: boolean
//
remap_to_predominant_range_geometry = FALSE;
///////////// remap_to_finest_range_geometry //////////
//
// Option to remap all rays to the finest range geometry.
//
// If TRUE, all rays will be remapped onto the same range geometry,
// determined as that with the finest resolution in range - i.e. with
// the minimum gate spacing.
//
//
// Type: boolean
//
remap_to_finest_range_geometry = FALSE;
//======================================================================
//
// OPTION TO OVERRIDE GATE GEOMETRY.
//
//======================================================================
///////////// override_start_range ////////////////////
//
// Option to override the start range.
//
// If true, the specified start range in this file will be used. If not,
// the start range in the data file will be used.
//
//
// Type: boolean
//
override_start_range = FALSE;
///////////// start_range_km //////////////////////////
//
// Specified start range (km).
//
// See override_start_range.
//
//
// Type: double
//
start_range_km = 0;
///////////// override_gate_spacing ///////////////////
//
// Option to override the gate spacing.
//
// If true, the specified gate spacing in this file will be used. If
// not, the gate spacing in the data file will be used.
//
//
// Type: boolean
//
override_gate_spacing = FALSE;
///////////// gate_spacing_km /////////////////////////
//
// Specified gate spacing (km).
//
// See override_gate_spacing.
//
//
// Type: double
//
gate_spacing_km = 0.0075;
//======================================================================
//
// 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 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;
///////////// change_radar_latitude_sign //////////////
//
// Option to negate the latitude.
//
// Mainly useful for RAPIC files. In RAPIC, latitude is always positive,
// so mostly you need to set the latitiude to the negative value of
// itself.
//
//
// Type: boolean
//
change_radar_latitude_sign = FALSE;
///////////// apply_georeference_corrections //////////
//
// Option to apply the georeference info for moving platforms.
//
// For moving platforms, measured georeference information is sometimes
// available. If this is set to true, the georeference data is applied
// and appropriate corrections made. If possible, Earth-centric azimuth
// and elevation angles will be computed.
//
//
// Type: boolean
//
apply_georeference_corrections = FALSE;
//======================================================================
//
// OPTION TO CORRECT TIME.
//
//======================================================================
///////////// apply_time_offset ///////////////////////
//
// Option to apply an offset to the ray times.
//
// If TRUE, this offset will be ADDED to the existing ray times. This is
// useful, for example, for correcting time errors, or converting from
// local time to UTC.
//
//
// Type: boolean
//
apply_time_offset = FALSE;
///////////// time_offset_secs ////////////////////////
//
// Time offset (secs).
//
// See 'apply_time_offset'. This value will be ADDED to the existing ray
// times.
//
//
// Type: double
//
time_offset_secs = 0;
//======================================================================
//
// OPTION TO CORRECT ANTENNA ANGLES.
//
//======================================================================
///////////// apply_azimuth_offset ////////////////////
//
// Option to apply an offset to the azimuth values.
//
// If TRUE, this offset will be ADDED to the measured azimuth angles.
// This is useful, for example, in the case of a mobile platform which
// is not set up oriented to true north. Suppose you have a truck (like
// the DOWs) which is oriented off true north. Then if you add in the
// truck HEADING relative to true north, the measured azimuth angles
// will be adjusted by the heading, to give azimuth relative to TRUE
// north.
//
//
// Type: boolean
//
apply_azimuth_offset = FALSE;
///////////// azimuth_offset //////////////////////////
//
// Azimuth offset (degrees).
//
// See 'apply_azimuth_offset'. This value will be ADDED to the measured
// azimuths.
//
//
// Type: double
//
azimuth_offset = 0;
///////////// apply_elevation_offset //////////////////
//
// Option to apply an offset to the elevation values.
//
// If TRUE, this offset will be ADDED to the measured elevation angles.
// This is useful to correct for a systematic bias in measured elevation
// angles.
//
//
// Type: boolean
//
apply_elevation_offset = FALSE;
///////////// elevation_offset ////////////////////////
//
// Elevation offset (degrees).
//
// See 'apply_elevation_offset'. This value will be ADDED to the
// measured elevations.
//
//
// Type: double
//
elevation_offset = 0;
//======================================================================
//
// OPTION TO OVERRIDE INSTRUMENT TYPE, PLATFORM TYPE AND PRIMARY AXIS.
//
// This applies to read operations.
//
//======================================================================
///////////// override_instrument_type ////////////////
//
// Option to override instrument type on read.
//
// If true, the file will be read in, the instrument type will be
// changed, and then any post-read processing will be performed.
//
//
// Type: boolean
//
override_instrument_type = FALSE;
///////////// instrument_type /////////////////////////
//
// Specify the instrument type. See override_instrument_type.
//
//
// Type: enum
// Options:
// INSTRUMENT_RADAR
// INSTRUMENT_LIDAR
//
instrument_type = INSTRUMENT_RADAR;
///////////// override_platform_type //////////////////
//
// Option to override platform type on read. If true, the file will be
// read in, the platform type will be changed, and then any post-read
// processing will be performed.
//
// PLATFORM_FIXED - radar is in a fixed location
// PLATFORM_VEHICLE - radar is mounted on a land vehicle
// PLATFORM_SHIP - radar is mounted on a ship
// PLATFORM_AIRCRAFT_FORE - forward-looking on aircraft
// PLATFORM_AIRCRAFT_AFT - backward-looking on aircraft
// PLATFORM_AIRCRAFT_TAIL - tail - e.g. ELDORA
// PLATFORM_AIRCRAFT_BELLY - belly radar on aircraft
// PLATFORM_AIRCRAFT_ROOF - roof radar on aircraft
// PLATFORM_AIRCRAFT_NOSE - radar in nose radome on aircraft
// PLATFORM_SATELLITE_ORBIT - orbiting satellite
// PLATFORM_SATELLITE_GEOSTAT - geostationary satellite.
//
//
// Type: boolean
//
override_platform_type = FALSE;
///////////// platform_type ///////////////////////////
//
// Platform type.
//
// See override_platform_type.
//
//
// Type: enum
// Options:
// PLATFORM_FIXED
// PLATFORM_VEHICLE
// PLATFORM_SHIP
// PLATFORM_AIRCRAFT_FORE
// PLATFORM_AIRCRAFT_AFT
// PLATFORM_AIRCRAFT_TAIL
// PLATFORM_AIRCRAFT_BELLY
// PLATFORM_AIRCRAFT_ROOF
// PLATFORM_AIRCRAFT_NOSE
// PLATFORM_SATELLITE_ORBIT
// PLATFORM_SATELLITE_GEOSTAT
//
platform_type = PLATFORM_FIXED;
///////////// override_primary_axis ///////////////////
//
// Option to override primary axis on read. If true, the file will be
// read in, the primary axis will be changed, and then any post-read
// processing will be performed.
//
// PRIMARY_AXIS_Z - vertical
// PRIMARY_AXIS_Y - longitudinal axis of platform
// PRIMARY_AXIS_X - lateral axis of platform
// PRIMARY_AXIS_Z_PRIME - inverted vertical
// PRIMARY_AXIS_Y_PRIME - ELDORA, HRD tail
// PRIMARY_AXIS_X_PRIME - translated lateral.
//
//
// Type: boolean
//
override_primary_axis = FALSE;
///////////// primary_axis ////////////////////////////
//
// Platform type.
//
// See override_primary_axis.
//
//
// Type: enum
// Options:
// PRIMARY_AXIS_Z
// PRIMARY_AXIS_Y