예제 #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