本文整理汇总了Python中landlab.Palette.get方法的典型用法代码示例。如果您正苦于以下问题:Python Palette.get方法的具体用法?Python Palette.get怎么用?Python Palette.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类landlab.Palette
的用法示例。
在下文中一共展示了Palette.get方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Framework
# 需要导入模块: from landlab import Palette [as 别名]
# 或者: from landlab.Palette import get [as 别名]
class Framework(object):
"""
A framework for connecting and running component from The Landlab.
"""
def __init__(self):
self._palette = Palette(**load_landlab_components())
self._arena = Arena()
def instantiate(self, name):
"""
Instantiate a component called *name* from the palette and move it to
the arena.
"""
try:
self._arena.instantiate(self._palette.get(name), name)
except KeyError:
pass
def remove(self, name):
"""
Remove a component called *name* from the arena.
"""
try:
self._arena.remove(name)
except KeyError:
pass
def list_palette(self):
"""
Get a list of names of the components in the palette.
"""
return self._palette.list()
def list_arena(self):
"""
Get a list of names of the components in the arena.
"""
return self._arena.list()
def arena_uses(self):
"""
Get a list of variable names that components in the arena use.
"""
return self._arena.uses()
def arena_provides(self):
"""
Get a list of variable names that components in the arena provide.
"""
return self._arena.provides()
def palette_uses(self):
"""
Get a list of variable names that components in the palette use.
"""
return self._palette.uses()
def palette_provides(self):
"""
Get a list of variable names that components in the palette provide.
"""
return self._palette.provides()
def __repr__(self):
return 'Framework(%s)' % ', '.join(self._palette.keys())