primary_axis¶
Platform type.
See override_primary_axis.
Type: enum
Options:
- PRIMARY_AXIS_Z
- PRIMARY_AXIS_Y
- PRIMARY_AXIS_X
- PRIMARY_AXIS_Z_PRIME
- PRIMARY_AXIS_Y_PRIME
- PRIMARY_AXIS_X_PRIME
primary_axis = PRIMARY_AXIS_Z;
======================================================================
======================================================================
Converts files between CfRadial and other radial formats.
Debug option.
If set, debug messages will be printed appropriately.
Type: enum
Options:
debug = DEBUG_OFF;
Program instance for process registration.
- This application registers with procmap. This is the instance used
- for registration.
Type: string
instance = “test”;
Input directory for searching for files.
Files will be searched for in this directory.
Type: string
input_dir = “.”;
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:
mode = FILELIST;
Maximum age of realtime data (secs).
Only data less old than this will be used.
Type: int
max_realtime_data_age_secs = 300;
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;
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;
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;
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 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;
File name extension.
If set, only files with this extension will be processed.
Type: string
search_ext = “”;
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;
- 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;
Fixed angles are elevation in PPI mode and azimuth in RHI mode.
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 - degrees.
Type: double
lower_fixed_angle_limit = 0;
Upper fixed angle limit - degrees.
Type: double
upper_fixed_angle_limit = 90;
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;
- 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;
Option to set the radar number.
See read_radar_num.
Type: boolean
read_set_radar_num = FALSE;
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;
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;
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;
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;
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;
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;
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;
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;
- 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;
Specified maximim range - km.
Gates beyond this range are removed.
Type: double
max_range_km = 9999;
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;
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;
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;
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;
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;
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 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;
Specified start range (km).
See override_start_range.
Type: double
start_range_km = 0;
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;
Specified gate spacing (km).
See override_gate_spacing.
Type: double
gate_spacing_km = 0.0075;
Option to override the instrument name.
If true, the name provided will be used.
Type: boolean
override_instrument_name = FALSE;
Instrument name.
See override_instrument_name.
Type: string
instrument_name = “unknown”;
Option to override the site name.
If true, the name provided will be used.
Type: boolean
override_site_name = FALSE;
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;
Volume number at startup.
Applies if ‘override_volume_number’ is true.
Type: int
starting_volume_number = 1;
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 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).
See override_radar_location.
Type: double
radar_latitude_deg = -999;
Radar longitude (deg).
See override_radar_location.
Type: double
radar_longitude_deg = -999;
Radar altitude (meters).
See override_radar_location.
Type: double
radar_altitude_meters = -999;
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;
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 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).
- See ‘apply_time_offset’. This value will be ADDED to the existing ray
- times.
Type: double
time_offset_secs = 0;
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 (degrees).
- See ‘apply_azimuth_offset’. This value will be ADDED to the measured
- azimuths.
Type: double
azimuth_offset = 0;
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 (degrees).
- See ‘apply_elevation_offset’. This value will be ADDED to the
- measured elevations.
Type: double
elevation_offset = 0;
This applies to read operations.
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;
Specify the instrument type. See override_instrument_type.
Type: enum
Options:
instrument_type = INSTRUMENT_RADAR;
- 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.
See override_platform_type.
Type: enum
Options:
platform_type = PLATFORM_FIXED;
- 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;
Platform type.
See override_primary_axis.
Type: enum
Options:
primary_axis = PRIMARY_AXIS_Z;
SWEEP FIXED ANGLE.
Option to force a reload of sweep info from rays.
- If TRUE, this forces the app to call
- RadxVol::loadSweepInfoFromRays(), which reads through the rays and reloads the sweep info appropriately.
Type: boolean
reload_sweep_info_from_rays = FALSE;
Option to force a reload of volume info from rays.
- If TRUE, this forces the app to call
- RadxVol::loadVolumeInfoFromRays(), which reads through the rays and reloads the volume summary info appropriately.
Type: boolean
reload_volume_info_from_rays = FALSE;
Option to recompute sweep fixed angles using the angles in the data.
- Normally the sweep angles are set using the scan strategy angles -
- i.e., the theoretically perfect angles. This option allows you to recompute the sweep angles using the measured elevation angles (in PPI mode) or azimuth angles (in RHI mode).
Type: boolean
recompute_sweep_fixed_angles = FALSE;
Optimize the transitions in surveillance mode.
- If true, we check the transitions between sweeps in surveillance
- mode, and move problem rays into the correct sweep. We also set the transition flag on/off based on the max elevation error speficied. See below.
Type: boolean
optimize_surveillance_transitions = FALSE;
- Max elevation angle error when optimizing surveillance transitions
- (degrees).
- If the difference between the fixed angle and measured angle exceeds
- this value, the transition flag will be set. If not, it will be cleared.
Type: double
optimized_transitions_max_elev_error = 0.25;
- Adjust the limits of sweeps, by comparing the measured angles to the
- fixed angles.
- Sometimes the transitions from one fixed angle to another are not
- accurately described by the scan flags, and as a result rays are not correctly assigned to the sweeps. This option goes through the volume in ray order, and adjusts the way rays are associated with each sweep. It does this by comparing the actual angle with the fixed angle, and minimizes the angular difference.
Type: boolean
adjust_sweep_limits_using_angles = FALSE;
Sort the sweeps by fixed angle.
- For some volumes, the sweep fixed angles may not be in increasing
- order. This option allows you to reorder the sweeps, and rays, into the correct order.
Type: boolean
sort_sweeps_by_fixed_angle = FALSE;
Option to override the version global attribute.
- If empty, no effect. If not empty, this string is used to override
- the version attribute.
Type: string
version_override = “”;
Option to override the title global attribute.
- If empty, no effect. If not empty, this string is used to override
- the title attribute.
Type: string
title_override = “”;
Option to override the institution global attribute.
- If empty, no effect. If not empty, this string is used to override
- the institution attribute.
Type: string
institution_override = “”;
Option to override the references global attribute.
- If empty, no effect. If not empty, this string is used to override
- the references attribute.
Type: string
references_override = “”;
Option to override the source global attribute.
- If empty, no effect. If not empty, this string is used to override
- the source attribute.
Type: string
source_override = “”;
Option to override the history global attribute.
- If empty, no effect. If not empty, this string is used to override
- the history attribute.
Type: string
history_override = “”;
Option to override the comment global attribute.
- If empty, no effect. If not empty, this string is used to override
- the comment attribute.
Type: string
comment_override = “”;
Option to override the author global attribute.
- If empty, no effect. If not empty, this string is used to override
- the author attribute.
Type: string
author_override = “”;
Only applies to CfRadial output format.
Add user-specified global attributes to output file.
Only applies to CfRadial files. See below for details.
Type: boolean
add_user_specified_global_attributes = FALSE;
User-defined global attributes.
- Applies if ‘add_user_specified_global_attributes’ is true. Array
- attributes are comma-delimited.
- Type: struct
- typedef struct {
- string name; attr_type_t attrType;
Options:
user_defined_global_attributes = {
name = “attr_string”,
attrType = ATTR_STRING,
val = “user-attribute”
name = “attr_int”,
attrType = ATTR_INT,
val = “99”
name = “attr_double”,
attrType = ATTR_DOUBLE,
val = “99.99”
name = “attr_int_array”,
attrType = ATTR_INT_ARRAY,
val = “1,2,3,4,5”
name = “attr_double_array”,
attrType = ATTR_DOUBLE_ARRAY,
val = “1.1,2.2,3.3,4.4,5.5”
};
Set the field names and output encoding.
If false, all fields will be used.
Type: boolean
set_output_fields = FALSE;
Output field details.
- Set the details for the output fields. The output_field_name is the
- ndtCDF variable name. Set the long name to a more descriptive name. Set the standard name to the CF standard name for this field. If the long name or standard name are empty, the existing names are used. If SCALING_SPECIFIED, then the scale and offset is used.
- Type: struct
- typedef struct {
- string input_field_name; string output_field_name; string long_name; string standard_name; string output_units; output_encoding_t encoding;
Options:
Options:
output_fields = {
input_field_name = “DBZ”,
output_field_name = “DBZ”,
long_name = “reflectivity”,
standard_name = “equivalent_reflectivity_factor”,
output_units = “dBZ”,
encoding = OUTPUT_ENCODING_ASIS,
output_scaling = SCALING_DYNAMIC,
output_scale = 0.01,
output_offset = 0
input_field_name = “VEL”,
output_field_name = “VEL”,
long_name = “radial_velocity”,
standard_name = “radial_velocity_of_scatterers_away_from_instrument”,
output_units = “m/s”,
encoding = OUTPUT_ENCODING_ASIS,
output_scaling = SCALING_DYNAMIC,
output_scale = 0.01,
output_offset = 0
};
Option to write out the unspecified fields as they are.
- If false, only the fields listed in output_fields will be written. If
- this is true, all other fields will be written unchanged.
Type: boolean
write_other_fields_unchanged = FALSE;
Option to exclude fields in the specified list.
- If true, the specified fields will be excluded. This may be easier
- than specifiying all of the fields to be included, if that list is very long.
Type: boolean
exclude_specified_fields = FALSE;
List of fields to be excluded.
List the names to be excluded.
Type: string 1D array - variable length.
excluded_fields = {
};
Option to set output encoding for all fields.
Type: boolean
set_output_encoding_for_all_fields = FALSE;
Output encoding for all fields, if requested.
Type: enum
Options:
output_encoding = OUTPUT_ENCODING_ASIS;
- You have the option of censoring the data fields - i.e. setting the
- fields to missing values - at gates which meet certain criteria. If this is done correctly, it allows you to preserve the valid data and discard the noise, thereby improving compression.
Apply censoring based on field values and thresholds.
- If TRUE, censoring will be performed. See ‘censoring_fields’ for
- details on how the censoring is applied.
Type: boolean
apply_censoring = FALSE;
Fields to be used for censoring.
- Specify the fields to be used to determine whether a gate should be
- censored. The name refers to the input data field names. Valid field values lie in the range from min_valid_value to max_valid_value inclusive. If the value of a field at a gate lies within this range, it is considered valid. Each specified field is examined at each gate, and is flagged as valid if its value lies in the valid range. These field flags are then combined as follows: first, all of the LOGICAL_OR flags are combined, yielding a single combined_or flag which is true if any of the LOGICAL_OR fields is true. The combined_or flag is then combined with all of the LOGICAL_AND fields, yielding a true value only if the combined_or flag and the LOGICAL_AND fields are all true. If this final flag is true, then the data at the gate is regarded as valid and is retained. If the final flag is false, the data at the gate is censored, and all of the fields at the gate are set to missing.
- Type: struct
- typedef struct {
- string name; double min_valid_value; double max_valid_value; logical_t combination_method;
Options:
censoring_fields = {
name = “SNR”,
min_valid_value = 0,
max_valid_value = 1000,
combination_method = LOGICAL_OR
name = “NCP”,
min_valid_value = 0.15,
max_valid_value = 1000,
combination_method = LOGICAL_OR
};
Minimum valid run of non-censored gates.
- Only active if set to 2 or greater. A check is made to remove short
- runs of noise. Looking along the radial, we compute the number of contiguous gates (a ‘run’) with uncensored data. For the gates in this run to be accepted the length of the run must exceed censoring_min_valid_run. If the number of gates in a run is less than this, then all gates in the run are censored.
Type: int
censoring_min_valid_run = 1;
- These transforms are fixed. The same transform is applied to all
- files.
Apply linear transform to specified fields.
If true, we will apply a linear transform to selected fields.
Type: boolean
apply_linear_transforms = FALSE;
transform field details.
- Set the field name, scale and offset to be applied to the selected
- fields. NOTE: the field name is the INPUT field name.
- Type: struct
- typedef struct {
- string input_field_name; double transform_scale; double transform_offset;
}
1D array - variable length.
transform_fields = {
input_field_name = “DBZ”,
transform_scale = 1,
transform_offset = 0
input_field_name = “VEL”,
transform_scale = 1,
transform_offset = 0
};
- These transforms vary from file to file, controlled by specific
- metadata.
Apply linear transforms that vary based on specific metadata.
If true, we will apply variable linear transform to selected fields.
Type: boolean
apply_variable_transforms = FALSE;
Details for variable transforms.
- We based the field decision off the input_field_name. You need to
- pick the method of control: STATUS_XML_FIELD - based on the value associated with an XML tag in the status block; ELEVATION_DEG - based on the elevation in degrees; PULSE_WIDTH_US - based on the pulse with in microsecs. For STATUS_XML_FIELD Set the relevant status_xml_tag, which will be used to find the relevant value. The lookup table is a series of entries specifying the metadata_value and the scale and offset to be appied for that given metadata value. Each entry is enclosed in parentheses, and is of the form (metadata_value, scale, offset). The entries themselves are also are comma-separated. Interpolation is used for metadata values that lie between those specified in the lookup table. The enries in the lookup table should have metadata_values that are monotonically increasing.
- Type: struct
- typedef struct {
- string input_field_name; variable_transform_control_t control;
Options:
variable_transform_fields = {
input_field_name = “dBZ”,
control = STATUS_XML_FIELD,
xml_tag = “gdrxanctxfreq”,
lookup_table = “(57.0, 1.0, -0.7), (60.0, 1.0, -0.2), (64.0, 1.0, -0.3), (67.0, 1.0, -1.8), (68.0, 1.0, -1.2), (69.0, 1.0, -1.3)”
input_field_name = “dBZv”,
control = STATUS_XML_FIELD,
xml_tag = “gdrxanctxfreq”,
lookup_table = “(57.0, 1.0, 0.1), (58.0, 1.0, 0.3), (60.0, 1.0, -0.3), (67.0, 1.0, -2.3), (69.0, 1.0, -2.0)”
input_field_name = “ZDR”,
control = STATUS_XML_FIELD,
xml_tag = “gdrxanctxfreq”,
lookup_table = “(56.0, 1.0, -0.75), (58.0, 1.0, -0.75), (61.0, 1.0, 0.1), (63.5, 1.0, 0.2), (64.0, 1.0, 0.6), (69.0, 1.0, 0.6)”
};
Format for the output files.
Type: enum
Options:
output_format = OUTPUT_FORMAT_CFRADIAL;
NetCDF style - if output_format is CFRADIAL.
- netCDF classic format, netCDF 64-bit offset format, netCDF4 using
- HDF5 format, netCDF4 using HDF5 format but only netCDF3 calls.
Type: enum
Options:
netcdf_style = NETCDF4;
Option to leave data in native byte order.
If false, data will be byte-swapped as appropriate on output.
Type: boolean
output_native_byte_order = FALSE;
Option to compress data fields on output.
Applies to netCDF and Dorade. UF does not support compression.
Type: boolean
output_compressed = TRUE;
Option to force the use of ragged arrays for CfRadial files.
- Only applies to CfRadial. If true, forces the use of ragged arrays
- even if the number of gates for all rays is constant.
Type: boolean
output_force_ngates_vary = FALSE;
Compression level for output, if compressed.
- Applies to netCDF only. Dorade compression is run-length encoding,
- and has not options..
Type: int
compression_level = 4;
Output directory path.
Files will be written to this directory.
Type: string
output_dir = “./output”;
Mode for computing output file name.
- START_AND_END_TIMES: include both start and end times in file name.
- START_TIME_ONLY: include only start time in file name. END_TIME_ONLY: include only end time in file name. SPECIFY_FILE_NAME: file of this name will be written to output_dir.
Type: enum
Options:
output_filename_mode = START_AND_END_TIMES;
Optional prefix for output filename.
- If empty, the standard prefix will be used. Only applies to CfRadial
- files. Standard prefix is ‘cfrad.’.
Type: string
output_filename_prefix = “”;
Optional suffix for output filename.
- If not empty, the suffix will be inserted immediately prior to the
- extension.
Type: string
output_filename_suffix = “”;
Option to include the instrument name in the file name.
- Default is true. Only applies to CfRadial files. If true, the
- instrument name will be included just before the volume number in the output file name.
Type: boolean
include_instrument_name_in_file_name = TRUE;
Option to include the site name in the file name.
- Only applies to CfRadial files. If true, the site name will be
- included just before the volume number in the output file name.
Type: boolean
include_site_name_in_file_name = FALSE;
Option to include sub-seconds in date-time part of file name.
- Default is true. Only applies to CfRadial files. If true, the
- millisecs of the start and end time will be included in the file name.
Type: boolean
include_subsecs_in_file_name = TRUE;
Option to include the scan type in the file name.
- Default is true. Only applies to CfRadial files. If true, the scan
- type (SUR, SEC, RHI, VER etc) will be included in the file name.
Type: boolean
include_scan_type_in_file_name = TRUE;
Option to include the volume number in the file name.
- Default is false. Only applies to CfRadial files. If true, the volume
- number is included in the file name, preceded by ‘_v’.
Type: boolean
include_vol_num_in_file_name = FALSE;
Option to use a hyphen between date and time in filename.
- Default is false. Only applies to CfRadial files. Normally an
- underscore is used.
Type: boolean
use_hyphen_in_file_name_datetime_part = FALSE;
Name of output file.
- Applies only if output_filename_mode is SPECIFY_FILE_NAME. File of
- this name will be written to output_dir.
Type: string
output_filename = “cfradial.test.nc”;
Add the day directory to the output directory.
Path will be output_dir/yyyymmdd/filename.
Type: boolean
append_day_dir_to_output_dir = TRUE;
Add the year directory to the output directory.
Path will be output_dir/yyyy/yyyymmdd/filename.
Type: boolean
append_year_dir_to_output_dir = FALSE;
Option to write out individual sweeps if appropriate.
- If true, the volume is split into individual sweeps for writing.
- Applies to CfRadial format. This is always true for DORADE format files.
Type: boolean
write_individual_sweeps = FALSE;
Option to write out _latest_data_info files.
- If true, the _latest_data_info files will be written after the
- converted file is written.
Type: boolean
write_latest_data_info = FALSE;
- Option to write CfRadial files using ‘proposed_standard_name’
- attribute.
- Default is false. Only applies to CfRadial files. Normally we use the
- ‘standard_name’ attribute. However, some organizations reject these as valid files since the standard names are not yet accepted. Using proposed_standard_name’ instead avoids this issue.
Type: boolean
write_using_proposed_standard_name_attr = FALSE;
Option to separate the files based on scan type.
- Sometimes a scan strategy will switch between surveillance scans,
- sector scans, rhi scans, vertically-pointing scans and sun scans. If true, the files will be separated into subdirectories based on scan type.
Type: boolean
separate_output_dirs_by_scan_type = FALSE;
The directory path for surveillance scan files.
- See ‘separate_by_scan_type’. If the scan mode is surveillance, this
- subdirectory will be created under the ouput dir.
Type: string
surveillance_subdir = “sur”;
The directory path for sector scan files.
- See ‘separate_by_scan_type’. If the scan mode is sector, this
- subdirectory will be created under the ouput dir.
Type: string
sector_subdir = “sec”;
The directory path for rhi files.
- See ‘separate_by_scan_type’. If the scan mode is rhi, this
- subdirectory will be created under the ouput dir.
Type: string
rhi_subdir = “rhi”;
The directory path for vert scan files.
- See ‘separate_by_scan_type’. If the scan mode is vert, this
- subdirectory will be created under the ouput dir.
Type: string
vert_subdir = “vert”;
The directory path for sun scan files.
- See ‘separate_by_scan_type’. If the scan mode is sun, this
- subdirectory will be created under the ouput dir.
Type: string
sun_subdir = “sun”;
- Missing values are applicable to both metadata and field data. The
- default values should be satisfactory for most purposes. However, you can choose to override these if you are careful with the selected values.
- The default values for metadata are:
- missingMetaDouble = -9999.0 missingMetaFloat = -9999.0 missingMetaInt = -9999 missingMetaChar = -128
- The default values for field data are:
- missingFl64 = -9.0e33 missingFl32 = -9.0e33 missingSi32 = -2147483647 missingSi16 = -32768 missingSi08 = -128.
Option to override the missing values for meta-data.
See following parameter options.
Type: boolean
override_missing_metadata_values = FALSE;
Missing value for metadata of type double.
Only applies if override_missing_metadata_values is TRUE.
Type: double
missing_metadata_double = -9999;
Missing value for metadata of type float.
Only applies if override_missing_metadata_values is TRUE.
Type: float
missing_metadata_float = -9999;
Missing value for metadata of type int.
Only applies if override_missing_metadata_values is TRUE.
Type: int
missing_metadata_int = -9999;
Missing value for metadata of type char.
Only applies if override_missing_metadata_values is TRUE.
Type: int
missing_metadata_char = -128;
Option to override the missing values for field data.
See following parameter options.
Type: boolean
override_missing_field_values = FALSE;
Missing value for field data of type 64-bit float.
Only applies if override_missing_field_values is TRUE.
Type: double
missing_field_fl64 = -9e+33;
Missing value for field data of type 32-bit float.
Only applies if override_missing_field_values is TRUE.
Type: double
missing_field_fl32 = -9e+33;
Missing value for field data of type 32-bit integer.
Only applies if override_missing_field_values is TRUE.
Type: int
missing_field_si32 = -2147483647;
Missing value for field data of type 16-bit integer.
Only applies if override_missing_field_values is TRUE.
Type: int
missing_field_si16 = -232768;
Missing value for field data of type 8-bit integer.
Only applies if override_missing_field_values is TRUE.
Type: int
missing_field_si08 = -128;