Peano
TestEllipsoidProjectionInverse Namespace Reference

Variables

 lons = np.linspace(-98, -70, 1000)
 
 lats = np.linspace(15, 35, 1000)
 
 LON
 
 LAT
 
string proj_str = "+proj=aea +lon_0=-84 +lat_1=18.3333333 +lat_2=31.6666667 +lat_0=25 +datum=WGS84 +units=m +no_defs"
 
 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

TestEllipsoidProjectionInverse.LAT

Definition at line 9 of file TestEllipsoidProjectionInverse.py.

◆ lat_diff

TestEllipsoidProjectionInverse.lat_diff = lat_reconstructed - LAT

Definition at line 29 of file TestEllipsoidProjectionInverse.py.

◆ lat_reconstructed

TestEllipsoidProjectionInverse.lat_reconstructed
Initial value:
1 = np.vectorize(
2  lambda x, y: Wrapper.ellipsoidTransformInverse(x, y).second
3 )(X, Y)
ellipsoidTransformInverse
Definition: Wrapper.py:35

Definition at line 25 of file TestEllipsoidProjectionInverse.py.

◆ lats

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

Definition at line 8 of file TestEllipsoidProjectionInverse.py.

◆ LON

TestEllipsoidProjectionInverse.LON

Definition at line 9 of file TestEllipsoidProjectionInverse.py.

◆ lon_diff

TestEllipsoidProjectionInverse.lon_diff = lon_reconstructed - LON

Definition at line 22 of file TestEllipsoidProjectionInverse.py.

◆ lon_reconstructed

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

Definition at line 18 of file TestEllipsoidProjectionInverse.py.

◆ lons

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

Definition at line 7 of file TestEllipsoidProjectionInverse.py.

◆ proj_str

string TestEllipsoidProjectionInverse.proj_str = "+proj=aea +lon_0=-84 +lat_1=18.3333333 +lat_2=31.6666667 +lat_0=25 +datum=WGS84 +units=m +no_defs"

Definition at line 12 of file TestEllipsoidProjectionInverse.py.

◆ transformer

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

Definition at line 13 of file TestEllipsoidProjectionInverse.py.

◆ X

TestEllipsoidProjectionInverse.X

Definition at line 14 of file TestEllipsoidProjectionInverse.py.

◆ Y

TestEllipsoidProjectionInverse.Y

Definition at line 14 of file TestEllipsoidProjectionInverse.py.