コード例 #1
0
ファイル: test_crs.py プロジェクト: djhoese/pyproj
def test_datum__from_authority():
    dt = Datum.from_authority("EPSG", 6326)
    assert dt.name == get_wgs84_datum_name()
コード例 #2
0
ファイル: test_crs.py プロジェクト: djhoese/pyproj
def test_datum__from_authority__invalid():
    with pytest.raises(CRSError, match="Invalid authority"):
        Datum.from_authority("BOB", 1)
コード例 #3
0
def test_datum__from_authority():
    dt = Datum.from_authority("EPSG", 6326)
    assert dt.name == "World Geodetic System 1984 ensemble"