Exemple #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
Exemple #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
Exemple #3
0
 def test_area_poly_sphere_insufficient_vertices(self):
     util.area_poly_sphere(self.lat1[:2], self.lon1[:2], 1.)
Exemple #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
Exemple #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
Exemple #6
0
 def test_area_poly_sphere_insufficient_vertices(self):
     util.area_poly_sphere(self.lat1[:2], self.lon1[:2], 1.)