本文整理汇总了Python中landlab.Palette.find_connections方法的典型用法代码示例。如果您正苦于以下问题:Python Palette.find_connections方法的具体用法?Python Palette.find_connections怎么用?Python Palette.find_connections使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类landlab.Palette
的用法示例。
在下文中一共展示了Palette.find_connections方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_2_components_find_connections
# 需要导入模块: from landlab import Palette [as 别名]
# 或者: from landlab.Palette import find_connections [as 别名]
def test_2_components_find_connections():
palette = Palette(one=Sample1, two=Sample2)
connections = {
"one": {"deposition__rate": ["two"]},
"two": {"air__temperature": ["one"], "surface__elevation": ["one"]},
}
assert connections == palette.find_connections()
示例2: test_2_components_find_connections
# 需要导入模块: from landlab import Palette [as 别名]
# 或者: from landlab.Palette import find_connections [as 别名]
def test_2_components_find_connections():
palette = Palette(one=Sample1, two=Sample2)
connections = {
'one': {'deposition__rate': ['two']},
'two': {'air__temperature': ['one'],
'surface__elevation': ['one']},
}
assert_dict_equal(connections, palette.find_connections())
示例3: test_find_connections
# 需要导入模块: from landlab import Palette [as 别名]
# 或者: from landlab.Palette import find_connections [as 别名]
def test_find_connections(self):
palette = Palette(one=Sample1, two=Sample2)
connections = {
'one': {'deposition__rate': ['two']},
'two': {'air__temperature': ['one'],
'surface__elevation': ['one']},
}
self.assertDictEqual(connections, palette.find_connections())
示例4: test_empty_palette
# 需要导入模块: from landlab import Palette [as 别名]
# 或者: from landlab.Palette import find_connections [as 别名]
def test_empty_palette():
"""Create a palette without components."""
palette = Palette()
assert len(palette) == 0
assert list(palette.list()) == []
assert list(palette.keys()) == []
assert palette.uses() == []
assert palette.provides() == []
providers = palette.find_provider("air__temperature")
assert providers == []
users = palette.find_user("air__temperature")
assert users == []
connections = palette.find_connections()
assert connections == {}
示例5: test_empty_palette
# 需要导入模块: from landlab import Palette [as 别名]
# 或者: from landlab.Palette import find_connections [as 别名]
def test_empty_palette():
"""Create a palette without components."""
palette = Palette()
assert_equal(len(palette), 0)
assert_equal(list(palette.list()), [])
assert_equal(list(palette.keys()), [])
assert_equal(palette.uses(), [])
assert_equal(palette.provides(), [])
providers = palette.find_provider('air__temperature')
assert_equal(providers, [])
users = palette.find_user('air__temperature')
assert_equal(users, [])
connections = palette.find_connections()
assert_dict_equal(connections, {})
示例6: test_1_component_find_connections
# 需要导入模块: from landlab import Palette [as 别名]
# 或者: from landlab.Palette import find_connections [as 别名]
def test_1_component_find_connections():
palette = Palette(sample=Sample1)
with pytest.raises(NoProvidersError):
palette.find_connections()