()
| 39 | |
| 40 | |
| 41 | def nz_proj(): |
| 42 | lats = np.array([[-47.824014, -47.824014], |
| 43 | [-32.669853, -32.669853]]) |
| 44 | lons = np.array([[163.839595, -179.693502], |
| 45 | [163.839595, -179.693502]]) |
| 46 | |
| 47 | params = {"MAP_PROJ": 6, |
| 48 | "CEN_LAT": -41.814869, |
| 49 | "CEN_LON": 179.693502, |
| 50 | "TRUELAT1": 0, |
| 51 | "TRUELAT2": 0, |
| 52 | "MOAD_CEN_LAT": -41.814869, |
| 53 | "STAND_LON": 180.0 - 179.693502, |
| 54 | "POLE_LAT": 48.185131, |
| 55 | "POLE_LON": 0.0} |
| 56 | |
| 57 | return lats, lons, RotatedLatLon(lats=lats, lons=lons, **params) |
| 58 | |
| 59 | |
| 60 | def argentina_proj(): |
no test coverage detected