Skip to content

Commit

Permalink
* yagUtils.ncl: use import directory
Browse files Browse the repository at this point in the history
Signed-off-by: Yakkala Yagnesh Raghava <hi@yagnesh.org>
  • Loading branch information
yyr committed Feb 27, 2013
1 parent 20628ae commit 88a0c92
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
1 change: 0 additions & 1 deletion anno.ncl
Expand Up @@ -5,7 +5,6 @@
; Description:
; Annotation library.


;_____________________________________________________________________________
; procedure: anno_top_left
; Doc:
Expand Down
2 changes: 2 additions & 0 deletions plot.ncl
@@ -1,3 +1,5 @@
import("gsn_code")

;_____________________________________________________________________________
; procedure: panelize
; Doc:
Expand Down
6 changes: 3 additions & 3 deletions wps.ncl
@@ -1,6 +1,9 @@
; File: wps.ncl
; Created: 月曜日, 8月 20 2012

import("WRFUserARW")


;_____________________________________________________________________________
; Function: wps_parse_namelist_for_domain
; Doc: parse namelist.wps and set domain specific resources.
Expand Down Expand Up @@ -279,9 +282,6 @@ begin
end do

end if

return(mp)

end

;;; wps.ncl ends here
5 changes: 3 additions & 2 deletions wrf.ncl
@@ -1,4 +1,6 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; I/O ;;;;;;;;;;;;;;;;;;;;;;;;;;;
import("WRFUserARW")

;__________________ I/O ________________________________________

;_____________________________________________________________________________
; Function: no_of_levels
Expand Down Expand Up @@ -408,7 +410,6 @@ begin

end do
end do

return(div)
end

Expand Down
24 changes: 11 additions & 13 deletions yagUtils.ncl
Expand Up @@ -7,18 +7,16 @@
; Description:
; This one script is needed to load.

load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/shea_util.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/wrf/WRF_contributed.ncl"
load "$nsc/WRFUserARW.ncl"

load "$nsc/is.ncl"
load "$nsc/generic.ncl"
load "$nsc/resources.ncl"
load "$nsc/anno.ncl"
load "$nsc/plot.ncl"
if ( .not. isdefined("import") ) then
print("Fatal: NCL-import is not loaded, See README")
exit
end if

load "$nsc/wps.ncl"
load "$nsc/wrf.ncl"
import("generic")
import("is")
import("resources")
import("anno")
import("plot")
import("wrf")
import("wps")

0 comments on commit 88a0c92

Please sign in to comment.