Skip to content

Commit

Permalink
Moved from the incorrect directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bikegeek committed Nov 13, 2024
1 parent 9a38a9a commit 12c7bcb
Showing 1 changed file with 50 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#
# Settings for METplotpy skew-T diagram
#


# Input and output file information
input_directory: !ENV '${SKEW_T_PLOT_INPUT_BASE}'
input_file_extension: '.dat'
output_directory: !ENV '${SKEW_T_PLOT_OUTPUT_BASE}/skew_t'
log_level: "INFO"
log_directory: !ENV '${METPLUS_BASE}'
log_filename: 'tc_diags_skewt.log'

# Sounding hours of interest. If all_sounding_hours is set to False, then the
# list of hours from sounding_hours_of_interest will be used.
all_sounding_hours: False
sounding_hours_of_interest: [0, 6,48]

# Turn on/off displaying features on the diagram
display_dry_adiabats: True
display_moist_adiabats: True
display_mixing_lines: True
display_windbarbs: True

# Control the density of windbarbs and levels (eg. skip the nth value)
# Set to 1 if no decimation is to be performed.
decimate_barbs: 3

# Level labels along y2-axis (if False, then labels will be along temperature curve).
level_labels_along_y2-axis: False

# figure size in inches
figure_size_width: 9
figure_size_height: 9

# Appearance of Temperature and dewpoint lines
# solid line '-', dashed line '--', dotted line ':'
# dashdot '-.'
temp_line_color: red
temp_line_style: '-'
temp_line_thickness: 2

dewpt_line_color: green
dewpt_line_style: '-'
dewpt_line_thickness: 2

# Set x-axis limits (temps) by position to "crop out" irrelevant areas.
set_x_axis_limits: False
x_axis_min: -50
x_axis_max: 50

0 comments on commit 12c7bcb

Please sign in to comment.