Skip to content
Snippets Groups Projects
Commit 492c130b authored by tomrink's avatar tomrink
Browse files

minor...

parent b2624d3e
Branches
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ class LonLatGrid:
# grd_lons, grd_lats: the longitude, latitude of each grid point (must be 2D grids), must have same shape
# Incoming longitude must be in range: 0 - 360 degrees
# Can have NaN for off Earth grid points (these are handled internally).
# closeness_threshold: if < distance of located_point to target, return off grid
# closeness_threshold (m): if < distance of located_point to target, return off grid
def __init__(self, grd_lons, grd_lats, closeness_threshold=2000, reduce=1, leaf_size=40):
if grd_lons.shape != grd_lats.shape:
raise MyGenericException('incoming lons,lats must have same shape')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment