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

snapshot...

parent 53d48a07
No related branches found
No related tags found
No related merge requests found
......@@ -597,13 +597,13 @@ def make_for_full_domain_predict(h5f, name_list=None, satellite='GOES16', domain
return grd_dct, ll, cc
def make_for_full_domain_predict2(h5f, satellite='GOES16', domain='FD'):
def make_for_full_domain_predict2(h5f, satellite='GOES16', domain='FD', res_fac=1):
w_x = 16
w_y = 16
i_0 = 0
j_0 = 0
s_x = w_x
s_y = w_y
s_x = int(w_x / res_fac)
s_y = int(w_y / res_fac)
geos, xlen, xmin, xmax, ylen, ymin, ymax = get_cartopy_crs(satellite, domain)
if satellite == 'H08':
......
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