예제 #1
0
파일: tests.py 프로젝트: jjhelmus/atmos
 def test_area_poly_sphere_different_radius(self):
     area_calc = util.area_poly_sphere(self.lat1, self.lon1, 2.)
     assert abs(area_calc - 4*self.area1) < 4*self.tol1
예제 #2
0
파일: tests.py 프로젝트: jjhelmus/atmos
 def test_area_poly_sphere(self):
     area_calc = util.area_poly_sphere(self.lat1, self.lon1, 1.)
     assert abs(area_calc - self.area1) < self.tol1
예제 #3
0
파일: tests.py 프로젝트: jjhelmus/atmos
 def test_area_poly_sphere_insufficient_vertices(self):
     util.area_poly_sphere(self.lat1[:2], self.lon1[:2], 1.)
예제 #4
0
파일: tests.py 프로젝트: jjhelmus/atmos
 def test_area_poly_sphere_different_radius(self):
     area_calc = util.area_poly_sphere(self.lat1, self.lon1, 2.)
     assert abs(area_calc - 4 * self.area1) < 4 * self.tol1
예제 #5
0
파일: tests.py 프로젝트: jjhelmus/atmos
 def test_area_poly_sphere(self):
     area_calc = util.area_poly_sphere(self.lat1, self.lon1, 1.)
     assert abs(area_calc - self.area1) < self.tol1
예제 #6
0
파일: tests.py 프로젝트: jjhelmus/atmos
 def test_area_poly_sphere_insufficient_vertices(self):
     util.area_poly_sphere(self.lat1[:2], self.lon1[:2], 1.)