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