MCPcopy Create free account
hub / github.com/NCAR/wrf-python / south_polar_proj

Function south_polar_proj

test/misc/projtest.py:79–92  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

77
78
79def south_polar_proj():
80 lats = np.array([[-30.0, -30.0],
81 [-30.0, -30.0]])
82 lons = np.array([[-120, 60],
83 [-120, 60]])
84
85 params = {"MAP_PROJ": 2,
86 "CEN_LAT": -90.0,
87 "CEN_LON": 0,
88 "TRUELAT1": -10.0,
89 "MOAD_CEN_LAT": -90.0,
90 "STAND_LON": 0}
91
92 return lats, lons, PolarStereographic(lats=lats, lons=lons, **params)
93
94
95def north_polar_proj():

Callers 1

make_testFunction · 0.85

Calls 1

PolarStereographicClass · 0.90

Tested by

no test coverage detected