Skip to content
Snippets Groups Projects
Commit 00840c34 authored by rink's avatar rink
Browse files

snapshot..

parent 4627ba92
Branches
No related tags found
No related merge requests found
...@@ -1110,6 +1110,19 @@ def best_fit_altitude(amv_spd, amv_dir, amv_alt, amv_lat, amv_lon, fcst_spd, fcs ...@@ -1110,6 +1110,19 @@ def best_fit_altitude(amv_spd, amv_dir, amv_alt, amv_lat, amv_lon, fcst_spd, fcs
a3 = fcst_alt[imin+1] a3 = fcst_alt[imin+1]
v3 = vec_diff[imin+1] v3 = vec_diff[imin+1]
sat_wind_best_fit_alt = a2
# Find best fit U and V by linear interpolation:
if a2 == sat_wind_best_fit_alt:
sat_wind_best_fit_u = fcst_uwind[imin]
sat_wind_best_fit_v = fcst_vwind[imin]
else:
pass
return bf_tup return bf_tup
def get_press_bin_ranges(lop, hip, bin_size=100): def get_press_bin_ranges(lop, hip, bin_size=100):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment