()
| 77 | |
| 78 | |
| 79 | def 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 | |
| 95 | def north_polar_proj(): |
no test coverage detected