()
| 58 | |
| 59 | |
| 60 | def argentina_proj(): |
| 61 | lats = np.array([[-57.144064, -57.144064], |
| 62 | [-21.154470, -21.154470]]) |
| 63 | lons = np.array([[-86.893797, -37.089724], |
| 64 | [-86.893797, -37.089724]]) |
| 65 | |
| 66 | params = {"MAP_PROJ": 6, |
| 67 | "CEN_LAT": -39.222954, |
| 68 | "CEN_LON": -65.980109, |
| 69 | "TRUELAT1": 0, |
| 70 | "TRUELAT2": 0, |
| 71 | "MOAD_CEN_LAT": -39.222954, |
| 72 | "STAND_LON": 180.0 - -65.980109, |
| 73 | "POLE_LAT": 90 + -39.222954, |
| 74 | "POLE_LON": 0.0} |
| 75 | |
| 76 | return lats, lons, RotatedLatLon(lats=lats, lons=lons, **params) |
| 77 | |
| 78 | |
| 79 | def south_polar_proj(): |
no test coverage detected