From fc956f51447f5c0842d3600b523340d37c5086f9 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Sat, 22 Jan 2022 18:03:40 -0600 Subject: [PATCH] minor... --- modules/util/lon_lat_grid.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/util/lon_lat_grid.py b/modules/util/lon_lat_grid.py index 40274aba..cae5bcf5 100644 --- a/modules/util/lon_lat_grid.py +++ b/modules/util/lon_lat_grid.py @@ -21,6 +21,8 @@ class LonLatGrid: # Incoming longitude must be in range: 0 - 360 degrees # Can have NaN for off Earth grid points (these are handled internally). # closeness_threshold (m): if < distance of located_point to target, return off grid + # reduce: resolution blow down factor + # leaf_size: Number of points at which to switch to brute-force, default=40 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') -- GitLab