Peano
TestSphereProjectionInverse Namespace Reference

Variables

 lons = np.linspace(-98, -70, 1000)
 
 lats = np.linspace(15, 35, 1000)
 
 LON
 
 LAT
 
tuple proj_str
 
 transformer = Transformer.from_crs("EPSG:4326", proj_str, always_xy=True)
 
 X
 
 Y
 
 lon_reconstructed
 
 lon_diff = lon_reconstructed - LON
 
 lat_reconstructed
 
 lat_diff = lat_reconstructed - LAT
 

Variable Documentation

◆ LAT

TestSphereProjectionInverse.LAT

Definition at line 9 of file TestSphereProjectionInverse.py.

◆ lat_diff

TestSphereProjectionInverse.lat_diff = lat_reconstructed - LAT

Definition at line 34 of file TestSphereProjectionInverse.py.

◆ lat_reconstructed

TestSphereProjectionInverse.lat_reconstructed
Initial value:
1 = np.vectorize(
2  lambda x, y: Wrapper.sphereTransformInverse(x, y).second
3 )(X, Y)
sphereTransformInverse
Definition: Wrapper.py:38

Definition at line 30 of file TestSphereProjectionInverse.py.

◆ lats

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

Definition at line 8 of file TestSphereProjectionInverse.py.

◆ LON

TestSphereProjectionInverse.LON

Definition at line 9 of file TestSphereProjectionInverse.py.

◆ lon_diff

TestSphereProjectionInverse.lon_diff = lon_reconstructed - LON

Definition at line 27 of file TestSphereProjectionInverse.py.

◆ lon_reconstructed

TestSphereProjectionInverse.lon_reconstructed
Initial value:
1 = np.vectorize(
2  lambda x, y: Wrapper.sphereTransformInverse(x, y).first
3 )(X, Y)

Definition at line 23 of file TestSphereProjectionInverse.py.

◆ lons

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

Definition at line 7 of file TestSphereProjectionInverse.py.

◆ proj_str

tuple TestSphereProjectionInverse.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 TestSphereProjectionInverse.py.

◆ transformer

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

Definition at line 18 of file TestSphereProjectionInverse.py.

◆ X

TestSphereProjectionInverse.X

Definition at line 19 of file TestSphereProjectionInverse.py.

◆ Y

TestSphereProjectionInverse.Y

Definition at line 19 of file TestSphereProjectionInverse.py.