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

snapshot...

parent 7d989fb8
No related branches found
No related tags found
No related merge requests found
......@@ -670,10 +670,10 @@ def make_for_full_domain_predict_viirs_clavrx(h5f, name_list=None, res_fac=1):
lats = get_grid_values(h5f, 'latitude', j_0, i_0, None, num_j=ylen, num_i=xlen, range_name=None)
lons = get_grid_values(h5f, 'longitude', j_0, i_0, None, num_j=ylen, num_i=xlen, range_name=None)
ll, cc = np.meshgrid(ll, cc, indexing='ij')
ll_2d, cc_2d = np.meshgrid(ll, cc, indexing='ij')
lats = lats[ll, cc]
lons = lons[ll, cc]
lats = lats[ll_2d, cc_2d]
lons = lons[ll_2d, cc_2d]
return grd_dct, ll, cc, lats, lons
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment