![]() |
Peano
|
Variables | |
lons = np.linspace(-98, -70, 1000) | |
lats = np.linspace(15, 35, 1000) | |
LON | |
LAT | |
tuple | proj_str |
transformer = Transformer.from_crs(proj_str, "EPSG:4326", always_xy=True) | |
X = np.vectorize(lambda x, y: Wrapper.sphereTransform(x, y).first)(LON, LAT) | |
Y = np.vectorize(lambda x, y: Wrapper.sphereTransform(x, y).second)(LON, LAT) | |
lon_reconstructed | |
lat_reconstructed | |
lon_diff = lon_reconstructed - LON | |
lat_diff = lat_reconstructed - LAT | |
TestSphereProjection.LAT |
Definition at line 9 of file TestSphereProjection.py.
TestSphereProjection.lat_diff = lat_reconstructed - LAT |
Definition at line 30 of file TestSphereProjection.py.
TestSphereProjection.lat_reconstructed |
Definition at line 25 of file TestSphereProjection.py.
TestSphereProjection.lats = np.linspace(15, 35, 1000) |
Definition at line 8 of file TestSphereProjection.py.
TestSphereProjection.LON |
Definition at line 9 of file TestSphereProjection.py.
TestSphereProjection.lon_diff = lon_reconstructed - LON |
Definition at line 27 of file TestSphereProjection.py.
TestSphereProjection.lon_reconstructed |
Definition at line 25 of file TestSphereProjection.py.
TestSphereProjection.lons = np.linspace(-98, -70, 1000) |
Definition at line 7 of file TestSphereProjection.py.
tuple TestSphereProjection.proj_str |
Definition at line 12 of file TestSphereProjection.py.
TestSphereProjection.transformer = Transformer.from_crs(proj_str, "EPSG:4326", always_xy=True) |
Definition at line 18 of file TestSphereProjection.py.
TestSphereProjection.X = np.vectorize(lambda x, y: Wrapper.sphereTransform(x, y).first)(LON, LAT) |
Definition at line 22 of file TestSphereProjection.py.
TestSphereProjection.Y = np.vectorize(lambda x, y: Wrapper.sphereTransform(x, y).second)(LON, LAT) |
Definition at line 23 of file TestSphereProjection.py.