()
| 93 | |
| 94 | |
| 95 | def north_polar_proj(): |
| 96 | lats = np.array([[30.0, 30.0], |
| 97 | [30.0, 30.0]]) |
| 98 | lons = np.array([[-45, 140], |
| 99 | [-45, 140]]) |
| 100 | |
| 101 | params = {"MAP_PROJ": 2, |
| 102 | "CEN_LAT": 90.0, |
| 103 | "CEN_LON": 10, |
| 104 | "TRUELAT1": 10.0, |
| 105 | "MOAD_CEN_LAT": 90.0, |
| 106 | "STAND_LON": 10} |
| 107 | |
| 108 | return lats, lons, PolarStereographic(lats=lats, lons=lons, **params) |
| 109 | |
| 110 | |
| 111 | def dateline_rot_proj(): |
no test coverage detected