本文整理汇总了Python中karta.vector.geometry.Polygon.extent方法的典型用法代码示例。如果您正苦于以下问题:Python Polygon.extent方法的具体用法?Python Polygon.extent怎么用?Python Polygon.extent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类karta.vector.geometry.Polygon
的用法示例。
在下文中一共展示了Polygon.extent方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_poly_extent_foreign_crs
# 需要导入模块: from karta.vector.geometry import Polygon [as 别名]
# 或者: from karta.vector.geometry.Polygon import extent [as 别名]
def test_poly_extent_foreign_crs(self):
poly = Polygon([(0.0, 8.0), (0.0, 5.0), (6.0, 1.0)], crs=LonLatWGS84)
poly3 = Polygon([(0.0, 8.0, 0.5), (0.0, 5.0, 0.8), (6.0, 1.0, 0.6)],
crs=LonLatWGS84)
x, y = zip(*poly.vertices(crs=NSIDCNorth))
self.assertEqual(poly.extent(NSIDCNorth), (min(x), max(x), min(y), max(y)))
self.assertEqual(poly3.extent(NSIDCNorth), (min(x), max(x), min(y), max(y)))
return
示例2: test_poly_extent
# 需要导入模块: from karta.vector.geometry import Polygon [as 别名]
# 或者: from karta.vector.geometry.Polygon import extent [as 别名]
def test_poly_extent(self):
poly = Polygon([(0.0, 8.0), (0.0, 5.0), (6.0, 1.0)])
poly3 = Polygon([(0.0, 8.0, 0.5), (0.0, 5.0, 0.8), (6.0, 1.0, 0.6)])
self.assertEqual(poly.extent(), (0.0, 6.0, 1.0, 8.0))
self.assertEqual(poly3.extent(), (0.0, 6.0, 1.0, 8.0))
return