Exemplo n.º 1
0
 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
Exemplo n.º 2
0
 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
Exemplo n.º 3
0
 def test_area_poly_sphere_insufficient_vertices(self):
     util.area_poly_sphere(self.lat1[:2], self.lon1[:2], 1.)
Exemplo n.º 4
0
 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
Exemplo n.º 5
0
 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
Exemplo n.º 6
0
 def test_area_poly_sphere_insufficient_vertices(self):
     util.area_poly_sphere(self.lat1[:2], self.lon1[:2], 1.)