Peano
TestSphereProjection Namespace Reference

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
 

Variable Documentation

◆ LAT

TestSphereProjection.LAT

Definition at line 9 of file TestSphereProjection.py.

◆ lat_diff

TestSphereProjection.lat_diff = lat_reconstructed - LAT

Definition at line 30 of file TestSphereProjection.py.

◆ lat_reconstructed

TestSphereProjection.lat_reconstructed

Definition at line 25 of file TestSphereProjection.py.

◆ lats

TestSphereProjection.lats = np.linspace(15, 35, 1000)

Definition at line 8 of file TestSphereProjection.py.

◆ LON

TestSphereProjection.LON

Definition at line 9 of file TestSphereProjection.py.

◆ lon_diff

TestSphereProjection.lon_diff = lon_reconstructed - LON

Definition at line 27 of file TestSphereProjection.py.

◆ lon_reconstructed

TestSphereProjection.lon_reconstructed

Definition at line 25 of file TestSphereProjection.py.

◆ lons

TestSphereProjection.lons = np.linspace(-98, -70, 1000)

Definition at line 7 of file TestSphereProjection.py.

◆ proj_str

tuple TestSphereProjection.proj_str
Initial value:
1 = (
2  "+proj=aea "
3  "+lon_0=-84 +lat_1=18.3333333 +lat_2=31.6666667 +lat_0=25 "
4  "+a=6371000 +b=6371000 "
5  "+units=m +no_defs"
6 )

Definition at line 12 of file TestSphereProjection.py.

◆ transformer

TestSphereProjection.transformer = Transformer.from_crs(proj_str, "EPSG:4326", always_xy=True)

Definition at line 18 of file TestSphereProjection.py.

◆ X

TestSphereProjection.X = np.vectorize(lambda x, y: Wrapper.sphereTransform(x, y).first)(LON, LAT)

Definition at line 22 of file TestSphereProjection.py.

◆ Y

TestSphereProjection.Y = np.vectorize(lambda x, y: Wrapper.sphereTransform(x, y).second)(LON, LAT)

Definition at line 23 of file TestSphereProjection.py.