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

snapshot...

parent a67615d5
No related branches found
No related tags found
No related merge requests found
...@@ -548,13 +548,13 @@ taiwain_extent = [-3342, -502, 1470, 3510] # GEOS coordinates, not line, elem ...@@ -548,13 +548,13 @@ taiwain_extent = [-3342, -502, 1470, 3510] # GEOS coordinates, not line, elem
# ------------ This code will not be needed when we implement a Fully Connected CNN ----------------------------------- # ------------ This code will not be needed when we implement a Fully Connected CNN -----------------------------------
# Generate and return tiles of name_list parameters # Generate and return tiles of name_list parameters
def make_for_full_domain_predict(h5f, name_list=None, satellite='GOES16', domain='FD'): def make_for_full_domain_predict(h5f, name_list=None, satellite='GOES16', domain='FD', res_fac=1):
w_x = 16 w_x = 16
w_y = 16 w_y = 16
i_0 = 0 i_0 = 0
j_0 = 0 j_0 = 0
s_x = w_x s_x = int(w_x / res_fac)
s_y = w_y s_y = int(w_y / res_fac)
geos, xlen, xmin, xmax, ylen, ymin, ymax = get_cartopy_crs(satellite, domain) geos, xlen, xmin, xmax, ylen, ymin, ymax = get_cartopy_crs(satellite, domain)
if satellite == 'H08': 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