def test_parse_location(loc_column, exp_longitude, exp_latitude): latitude, longitude = srs.parse_location(loc_column) assert_quantity_allclose(latitude, exp_latitude) assert_quantity_allclose(longitude, exp_longitude)