Changeset 782 for palm/trunk
- Timestamp:
- Nov 15, 2011 7:43:37 AM (13 years ago)
- Location:
- palm/trunk/SCRIPTS/NCL
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/NCL/.ncl.config.default
r566 r782 1268 1268 ; data type: float 1269 1269 ; 1270 ; example: font_size_legend = 0. 21271 ; 1272 ; default: 0. 21270 ; example: font_size_legend = 0.02 1271 ; 1272 ; default: 0.02 1273 1273 ;*************************************************** 1274 1274 if(.not. isvar("font_size_legend"))then 1275 1275 1276 1276 1277 font_size_legend = 0. 21277 font_size_legend = 0.02 1278 1278 1279 1279 -
palm/trunk/SCRIPTS/NCL/profiles.ncl
r769 r782 1156 1156 res@tmLabelAutoStride = True 1157 1157 if (legend .EQ. 1)then 1158 res@pmLegendDisplayMode 1158 res@pmLegendDisplayMode = "Always" 1159 1159 end if 1160 1160 … … 1165 1165 res@pmLegendWidthF = 0.12 1166 1166 res@pmLegendHeightF = 0.05*np 1167 res@lgLabelFontHeightF = font_size1168 res@lgTitleString = "Time (h)"1169 res@lgTitleFontHeightF = font_size1170 res@txFontHeightF = font_size1171 res@tiXAxisFontHeightF = font_size1172 res@tiYAxisFontHeightF = font_size1173 res@tmXBLabelFontHeightF = font_size1174 res@tmYLLabelFontHeightF = font_size1175 res@tiXAxisString = " "1167 res@lgLabelFontHeightF = font_size_legend 1168 res@lgTitleString = "Time (h)" 1169 res@lgTitleFontHeightF = font_size 1170 res@txFontHeightF = font_size 1171 res@tiXAxisFontHeightF = font_size 1172 res@tiYAxisFontHeightF = font_size 1173 res@tmXBLabelFontHeightF = font_size 1174 res@tmYLLabelFontHeightF = font_size 1175 res@tiXAxisString = " " 1176 1176 if ( black .eq. 0 ) then 1177 1177 res@xyLineColors = -(ispan(-237,-2,235/np)) 1178 1178 end if 1179 1179 if (norm_z .EQ. 1)then 1180 res@tiYAxisString 1180 res@tiYAxisString = "Height (m)" 1181 1181 else 1182 res@tiYAxisString 1182 res@tiYAxisString = "Height / "+norm_z+" (m)" 1183 1183 end if 1184 1184 … … 1188 1188 1189 1189 if (dash .EQ. 0 ) then 1190 res@xyMonoDashPattern 1190 res@xyMonoDashPattern = True 1191 1191 else 1192 res@xyMonoDashPattern 1192 res@xyMonoDashPattern = False 1193 1193 if (no_files .GT. 1) 1194 res@xyMonoDashPattern 1194 res@xyMonoDashPattern = True 1195 1195 print(" ") 1196 1196 print("If you use more than one file, patterns for different "+\
Note: See TracChangeset
for help on using the changeset viewer.