Browse Source

changed destagger package to destag

main
Bill Ladwig 10 years ago
parent
commit
8b2843263a
  1. 6
      wrf_open/var/src/python/wrf/var/__init__.py
  2. 2
      wrf_open/var/src/python/wrf/var/cape.py
  3. 2
      wrf_open/var/src/python/wrf/var/ctt.py
  4. 2
      wrf_open/var/src/python/wrf/var/decorators.py
  5. 1
      wrf_open/var/src/python/wrf/var/destag.py
  6. 2
      wrf_open/var/src/python/wrf/var/geoht.py
  7. 2
      wrf_open/var/src/python/wrf/var/helicity.py
  8. 2
      wrf_open/var/src/python/wrf/var/omega.py
  9. 2
      wrf_open/var/src/python/wrf/var/slp.py
  10. 2
      wrf_open/var/src/python/wrf/var/uvmet.py
  11. 2
      wrf_open/var/src/python/wrf/var/wind.py

6
wrf_open/var/src/python/wrf/var/__init__.py

@ -12,8 +12,8 @@ from ctt import * @@ -12,8 +12,8 @@ from ctt import *
import ctt
from dbz import *
import dbz
from destagger import *
import destagger
from destag import *
import destag
from dewpoint import *
import dewpoint
from etaconv import *
@ -62,7 +62,7 @@ __all__ += cape.__all__ @@ -62,7 +62,7 @@ __all__ += cape.__all__
__all__ += constants.__all__
__all__ += ctt.__all__
__all__ += dbz.__all__
__all__ += destagger.__all__
__all__ += destag.__all__
__all__ += dewpoint.__all__
__all__ += etaconv.__all__
__all__ += geoht.__all__

2
wrf_open/var/src/python/wrf/var/cape.py

@ -2,7 +2,7 @@ import numpy as n @@ -2,7 +2,7 @@ import numpy as n
import numpy.ma as ma
from wrf.var.extension import computetk,computecape
from wrf.var.destagger import destagger
from wrf.var.destag import destagger
from wrf.var.constants import Constants, ConversionFactors
from wrf.var.util import extract_vars

2
wrf_open/var/src/python/wrf/var/ctt.py

@ -3,7 +3,7 @@ import numpy as n @@ -3,7 +3,7 @@ import numpy as n
from wrf.var.extension import computectt, computetk
from wrf.var.constants import Constants, ConversionFactors
from wrf.var.destagger import destagger
from wrf.var.destag import destagger
from wrf.var.decorators import convert_units
from wrf.var.util import extract_vars

2
wrf_open/var/src/python/wrf/var/decorators.py

@ -5,7 +5,7 @@ from itertools import product @@ -5,7 +5,7 @@ from itertools import product
import numpy as n
from wrf.var.units import do_conversion, check_units
from wrf.var.destagger import destagger
from wrf.var.destag import destagger
__all__ = ["convert_units", "handle_left_iter"]

1
wrf_open/var/src/python/wrf/var/destag.py

@ -1,5 +1,4 @@ @@ -1,5 +1,4 @@
import numpy as n
from wrf.var.util import extract_vars

2
wrf_open/var/src/python/wrf/var/geoht.py

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
from wrf.var.constants import Constants
from wrf.var.destagger import destagger
from wrf.var.destag import destagger
from wrf.var.decorators import convert_units
from wrf.var.util import extract_vars

2
wrf_open/var/src/python/wrf/var/helicity.py

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
from wrf.var.constants import Constants
from wrf.var.extension import computesrh, computeuh
from wrf.var.destagger import destagger
from wrf.var.destag import destagger
from wrf.var.util import extract_vars, extract_global_attrs
__all__ = ["get_srh", "get_uh"]

2
wrf_open/var/src/python/wrf/var/omega.py

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
from wrf.var.constants import Constants
from wrf.var.destagger import destagger
from wrf.var.destag import destagger
from wrf.var.extension import computeomega,computetk
from wrf.var.util import extract_vars

2
wrf_open/var/src/python/wrf/var/slp.py

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
from wrf.var.extension import computeslp, computetk
from wrf.var.constants import Constants
from wrf.var.destagger import destagger
from wrf.var.destag import destagger
from wrf.var.decorators import convert_units
from wrf.var.util import extract_vars

2
wrf_open/var/src/python/wrf/var/uvmet.py

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
from math import fabs, log, tan, sin, cos
from wrf.var.extension import computeuvmet
from wrf.var.destagger import destagger
from wrf.var.destag import destagger
from wrf.var.constants import Constants
from wrf.var.wind import _calc_wspd_wdir
from wrf.var.decorators import convert_units

2
wrf_open/var/src/python/wrf/var/wind.py

@ -2,7 +2,7 @@ @@ -2,7 +2,7 @@
import numpy as n
from wrf.var.constants import Constants
from wrf.var.destagger import destagger_windcomp
from wrf.var.destag import destagger_windcomp
from wrf.var.decorators import convert_units
__all__ = ["get_u_destag", "get_v_destag", "get_w_destag",

Loading…
Cancel
Save