示例#1
0
文件: tests.py 项目: sgillies/coorder
def test_epsg4326_init():
    assert is_latlng({'init': 'epsg:4326'}) is True
示例#2
0
文件: tests.py 项目: sgillies/coorder
def test_epsg4326():
    assert is_latlng('EPSG:4326') is True
示例#3
0
文件: tests.py 项目: sgillies/coorder
def test_CRS84():
    assert is_latlng('urn:ogc:def:crs:OGC:1.3:CRS84') is False
示例#4
0
文件: tests.py 项目: sgillies/coorder
def test_epsg3857():
    assert is_latlng('epsg:3857') is False
示例#5
0
文件: tests.py 项目: sgillies/coorder
def test_None():
    assert is_latlng(None) is False
示例#6
0
文件: tests.py 项目: sgillies/coorder
def test_4326():
    assert is_latlng(4326) is True