本文整理汇总了Python中mapproxy.cache.tile.TileManager.remove_tile_coords方法的典型用法代码示例。如果您正苦于以下问题:Python TileManager.remove_tile_coords方法的具体用法?Python TileManager.remove_tile_coords怎么用?Python TileManager.remove_tile_coords使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mapproxy.cache.tile.TileManager
的用法示例。
在下文中一共展示了TileManager.remove_tile_coords方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestTileManagerRemoveTiles
# 需要导入模块: from mapproxy.cache.tile import TileManager [as 别名]
# 或者: from mapproxy.cache.tile.TileManager import remove_tile_coords [as 别名]
class TestTileManagerRemoveTiles(object):
def setup(self):
self.cache_dir = tempfile.mkdtemp()
self.file_cache = FileCache(cache_dir=self.cache_dir, file_ext='png')
self.grid = TileGrid(SRS(4326), bbox=[-180, -90, 180, 90])
self.client = MockTileClient()
self.source = TiledSource(self.grid, self.client)
self.image_opts = ImageOptions(format='image/png')
self.tile_mgr = TileManager(self.grid, self.file_cache, [self.source], 'png',
image_opts=self.image_opts)
def teardown(self):
shutil.rmtree(self.cache_dir)
def test_remove_missing(self):
self.tile_mgr.remove_tile_coords([(0, 0, 0), (0, 0, 1)])
def test_remove_existing(self):
create_cached_tile(Tile((0, 0, 1)), self.file_cache)
assert self.tile_mgr.is_cached(Tile((0, 0, 1)))
self.tile_mgr.remove_tile_coords([(0, 0, 0), (0, 0, 1)])
assert not self.tile_mgr.is_cached(Tile((0, 0, 1)))