def test_unsupported(self): assert ( limit_srs_extents( {"EPSG:9999": DefaultMapExtent()}, ["EPSG:4326", "EPSG:3857"] ) == {} )
def test_limited_unsupported(self): assert limit_srs_extents( { "EPSG:9999": DefaultMapExtent(), "EPSG:4326": MapExtent([0, 0, 10, 10], SRS(4326)), }, ["EPSG:4326", "EPSG:3857"], ) == {"EPSG:4326": MapExtent([0, 0, 10, 10], SRS(4326))}
def test_limited_unsupported(self): eq_( limit_srs_extents( {"EPSG:9999": DefaultMapExtent(), "EPSG:4326": MapExtent([0, 0, 10, 10], SRS(4326))}, ["EPSG:4326", "EPSG:3857"], ), {"EPSG:4326": MapExtent([0, 0, 10, 10], SRS(4326))}, )
def test_limited_unsupported(self): eq_( limit_srs_extents( { 'EPSG:9999': DefaultMapExtent(), 'EPSG:4326': MapExtent([0, 0, 10, 10], SRS(4326)) }, ['EPSG:4326', 'EPSG:3857']), { 'EPSG:4326': MapExtent([0, 0, 10, 10], SRS(4326)), })
def test_unsupported(self): eq_( limit_srs_extents({'EPSG:9999': DefaultMapExtent()}, ['EPSG:4326', 'EPSG:3857']), {})
def test_defaults(self): eq_(limit_srs_extents({}, ['EPSG:4326', 'EPSG:3857']), { 'EPSG:4326': DefaultMapExtent(), 'EPSG:3857': DefaultMapExtent(), })
def test_defaults(self): assert limit_srs_extents({}, ["EPSG:4326", "EPSG:3857"]) == { "EPSG:4326": DefaultMapExtent(), "EPSG:3857": DefaultMapExtent(), }
def test_unsupported(self): eq_(limit_srs_extents({"EPSG:9999": DefaultMapExtent()}, ["EPSG:4326", "EPSG:3857"]), {})
def test_defaults(self): eq_( limit_srs_extents({}, ["EPSG:4326", "EPSG:3857"]), {"EPSG:4326": DefaultMapExtent(), "EPSG:3857": DefaultMapExtent()}, )