Skip to content

Commit

Permalink
Merge branch 'develop' into feature/ctest_validated_yamls
Browse files Browse the repository at this point in the history
  • Loading branch information
guoqing-noaa authored Oct 11, 2024
2 parents 07084b6 + 261fab3 commit c937745
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions rrfs-test/scripts/link_mpasjedi_expr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ sed -e "s#@RDASApp@#${RDASApp}#" ${RDASApp}/rrfs-test/scripts/templates/mpasjedi
sed -e "s#@RDASApp@#${RDASApp}#" ${RDASApp}/rrfs-test/scripts/templates/mpasjedi_expr/run_jedi.sh > run_jedi.sh
cp ${RDASApp}/rrfs-test/ush/colormap.py .
cp ${RDASApp}/rrfs-test/ush/mpasjedi_increment_singleob.py .
cp ${RDASApp}/rrfs-test/ush/mpasjedi_increment_fulldom.py .
cp ${RDASApp}/rrfs-test/ush/mpasjedi_spread.py .

mkdir -p data
Expand Down
4 changes: 2 additions & 2 deletions rrfs-test/ush/mpasjedi_increment_fulldom.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

############ USER INPUT ##########################################################
plot_var = "Increment"
lev = 1 # 1=sfc, 55=toa
lev = 23 # 1=sfc, 55=toa
clevmax_incr = 2.0 # max contour level for colorbar increment plots
decimals = 2 # number of decimals to round for text boxes
plot_box_width = 100. # define size of plot domain (units: lat/lon degrees)
Expand Down Expand Up @@ -119,7 +119,7 @@ def plot_T_inc(var_n, clevmax):

# Plot the data using triangulation
clevs, cm, units, longname = plot_T_inc(jedi_inc, clevmax_incr)
c1 = m1.tricontourf(triang, jedi_inc, clevs, cmap=cm, extend='both', transform=ccrs.PlateCarree())
c1 = m1.tricontourf(triang, jedi_inc, clevs, cmap=cm, extend='both')

# Add colorbar
cbar1 = fig.colorbar(c1, orientation="horizontal", fraction=0.046, pad=0.07)
Expand Down
4 changes: 2 additions & 2 deletions rrfs-test/ush/mpasjedi_increment_singleob.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

############ USER INPUT ##########################################################
plot_var = "Increment"
lev = 1 # 1=sfc, 55=toa
lev = 23 # 1=sfc, 55=toa
clevmax_incr = 2.0 # max contour level for colorbar increment plots
decimals = 2 # number of decimals to round for text boxes
plot_box_width = 8. # define size of plot domain (units: lat/lon degrees)
Expand Down Expand Up @@ -169,7 +169,7 @@ def plot_T_inc(var_n, clevmax):

# Plot the data using triangulation
clevs, cm, units, longname = plot_T_inc(jedi_inc, clevmax_incr)
c1 = m1.tricontourf(triang, jedi_inc, clevs, cmap=cm, extend='both', transform=ccrs.PlateCarree())
c1 = m1.tricontourf(triang, jedi_inc, clevs, cmap=cm, extend='both')

# Scatter the single ob location
m1.scatter(singleob_lon, singleob_lat, color='g', marker='o', s=2)
Expand Down

0 comments on commit c937745

Please sign in to comment.