Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Carl Schreck
Carl NCL Library
Commits
540a22bd
Commit
540a22bd
authored
Jul 21, 2018
by
Carl Schreck
Browse files
Automated Nightly Commit - Sat Jul 21 00:00:14 EDT 2018
parent
887231f0
Changes
4
Hide whitespace changes
Inline
Side-by-side
cjs_graphics/cjs_draw_shaded_map.ncl
View file @
540a22bd
...
...
@@ -46,7 +46,7 @@ begin ; cjs_draw_shaded_map
res@gsnAddCyclic := False
; ...set map resources
res@mpFillOn :=
Tru
e
res@mpFillOn :=
Fals
e
res@mpOutlineOn := True
res@mpGeophysicalLineThicknessF := 1
res@mpGeophysicalLineColor := "gray30"
...
...
@@ -57,6 +57,7 @@ begin ; cjs_draw_shaded_map
res@mpDataBaseVersion := "LowRes"
res@mpDataSetName := "Earth..4"
res@mpPerimOn := True
res@mpOutlineDrawOrder := "Draw"
if( i_res ) then
copy_VarAtts( i_res, res )
...
...
cjs_graphics/cjs_shade_defaults.ncl
View file @
540a22bd
...
...
@@ -42,6 +42,7 @@ begin ; cjs_shade_defaults
res@cnLineColor := "gray"
res@cnMissingValFillPattern := "SolidFill"
res@cnMissingValFillColor := "gray"
res@cnFillDrawOrder := "PreDraw"
; ...set the contour levels
if( isatt( i_res, "cnLevels" ) ) then
...
...
ibtracs/ibt_map_one_storm.ncl
View file @
540a22bd
...
...
@@ -165,8 +165,17 @@ begin ; ibt_map_one_storm
gsRes@gsLineThicknessF = 1+colorInd*0.33333
end if
gsRes@gsLineColor = i_color(colorInd)
glowRes = gsRes
glowRes@gsLineColor = "white"
glowRes@gsLineThicknessF = 1 + gsRes@gsLineThicknessF
io_plot@$unique_string("line")$ = gsn_add_polyline( io_wks, io_plot, \
i_lon(fixCounter:fixCounter+1), i_lat(fixCounter:fixCounter+1), \
glowRes )
io_plot@$unique_string("line")$ = gsn_add_polyline( io_wks, io_plot, \
i_lon(fixCounter:fixCounter+1), i_lat(fixCounter:fixCounter+1), gsRes )
i_lon(fixCounter:fixCounter+1), i_lat(fixCounter:fixCounter+1), \
gsRes )
end do
end if
...
...
ibtracs4/ibt_map_one_storm.ncl
View file @
540a22bd
...
...
@@ -173,8 +173,17 @@ end if
end if
gsRes@gsLineColor = i_color(colorInd)
glowRes = gsRes
glowRes@gsLineColor = "white"
glowRes@gsLineThicknessF = 1 + gsRes@gsLineThicknessF
io_plot@$unique_string("line")$ = gsn_add_polyline( io_wks, io_plot, \
i_lon(fixCounter:fixCounter+1), i_lat(fixCounter:fixCounter+1), gsRes )
i_lon(fixCounter:fixCounter+1), i_lat(fixCounter:fixCounter+1), \
glowRes )
io_plot@$unique_string("line")$ = gsn_add_polyline( io_wks, io_plot, \
i_lon(fixCounter:fixCounter+1), i_lat(fixCounter:fixCounter+1), \
gsRes )
end do
end if
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment