@@ -1211,8 +1211,8 @@ def match_coordinates(
1211
1211
"Input lat and lon coordinates do not seem to correspond"
1212
1212
" to geographic coordinates in degrees. This can be because"
1213
1213
" total extents are > 180 for lat or > 360 for lon, lat coordinates"
1214
- " are outside of -90<lat<90, or lon coordinates are outside of -540<lon<540. "
1215
- " If you use degree values outside of these ranges,"
1214
+ " are outside of -90<lat<90, or lon coordinates are outside of "
1215
+ "-540<lon<540. If you use degree values outside of these ranges,"
1216
1216
" please shift the coordinates to the valid ranges."
1217
1217
)
1218
1218
@@ -1454,7 +1454,8 @@ def _nearest_neighbor_haversine(centroids, coordinates, unit, threshold):
1454
1454
num_warn = np .sum (dist > threshold )
1455
1455
if num_warn :
1456
1456
LOGGER .warning (
1457
- "Distance to closest centroid is greater than %s" "km for %s coordinates." ,
1457
+ "Distance to closest centroid is greater than %s" ,
1458
+ "km for %s coordinates." ,
1458
1459
threshold ,
1459
1460
num_warn ,
1460
1461
)
@@ -1509,7 +1510,8 @@ def _nearest_neighbor_euclidean(
1509
1510
num_warn = np .sum (dist > threshold )
1510
1511
if num_warn :
1511
1512
LOGGER .warning (
1512
- "Distance to closest centroid is greater than %s" "km for %s coordinates." ,
1513
+ "Distance to closest centroid is greater than %s" ,
1514
+ "km for %s coordinates." ,
1513
1515
threshold ,
1514
1516
num_warn ,
1515
1517
)
0 commit comments