コード例 #1
0
ファイル: test_geo.py プロジェクト: yataOrg/skylines
def test_geographic_distance(loc1, loc2, expected):
    result = geographic_distance(loc1, loc2)
    assert result == pytest.approx(expected)
コード例 #2
0
 def geographic_distance(self, other):
     return geographic_distance(self, other)
コード例 #3
0
ファイル: geo.py プロジェクト: TobiasLohner/SkyLines
 def geographic_distance(self, other):
     return geographic_distance(self, other)