File: __init__.py

package info (click to toggle)
ectrans 1.7.0-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,968 kB
  • sloc: f90: 51,064; ansic: 5,942; cpp: 1,112; python: 488; sh: 127; makefile: 47
file content (15 lines) | stat: -rw-r--r-- 575 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import numpy
import os
_here = os.path.abspath(os.path.dirname(__file__))

lon_number_by_lat = numpy.load(os.path.join(_here, 'lon_number_by_lat.npy'))
zonal_wavenumbers = numpy.load(os.path.join(_here, 'zonal_wavenumbers.npy'))

antwrp1300 = {
    'sp'       : numpy.load(os.path.join(_here, 'antwrp1300-s1t@sp.npy')),
    'sp2gp'    : numpy.load(os.path.join(_here, 'antwrp1300-s1t@sp2gp.npy')),
    }
tl149_c24 = {
    'sp'       : numpy.load(os.path.join(_here, 'tl149-c24-s1t@sp.npy')),
    'sp2gp'    : numpy.load(os.path.join(_here, 'tl149-c24-s1t@sp2gp.npy')),
    }