本文整理汇总了Python中gnome.map.RasterMap._off_bitmap方法的典型用法代码示例。如果您正苦于以下问题:Python RasterMap._off_bitmap方法的具体用法?Python RasterMap._off_bitmap怎么用?Python RasterMap._off_bitmap使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gnome.map.RasterMap
的用法示例。
在下文中一共展示了RasterMap._off_bitmap方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test__off_bitmap
# 需要导入模块: from gnome.map import RasterMap [as 别名]
# 或者: from gnome.map.RasterMap import _off_bitmap [as 别名]
def test__off_bitmap(self):
"""
test the _on_bitmap method
"""
# overkill for just the bitmap..
rmap = RasterMap(refloat_halflife=6,
bitmap_array=self.raster,
map_bounds=((-50, -30), (-50, 30),
(50, 30), (50, -30)),
projection=NoProjection())
# the corners
assert not rmap._off_bitmap((0, 0))
assert not rmap._off_bitmap((19, 0))
assert not rmap._off_bitmap((19, 11))
assert not rmap._off_bitmap((0, 11))
# in the middle somewhere
assert not rmap._off_bitmap((10, 6))
# just off the edges
assert rmap._off_bitmap((-1, 0))
assert rmap._off_bitmap((19, -1))
assert rmap._off_bitmap((20, 11))
assert rmap._off_bitmap((0, 12))
# way off -- just for the heck of it.
assert rmap._off_bitmap((-1000, -2000))
assert rmap._off_bitmap((1000, 2000))