Skip to content
Snippets Groups Projects
Commit 9b0d01b1 authored by Oriol Tintó's avatar Oriol Tintó
Browse files

Applying Philip's patch.

parent 6e9c2bc8
No related branches found
No related tags found
No related merge requests found
Pipeline #19177 passed
...@@ -165,24 +165,24 @@ def remap_one_file(in_grid, out_grid, one_file, dst_fodler, rename=None, src_vgr ...@@ -165,24 +165,24 @@ def remap_one_file(in_grid, out_grid, one_file, dst_fodler, rename=None, src_vgr
# rename the file if requested # rename the file if requested
if rename is not None: if rename is not None:
# read the time stamp # read the time stamp
if content["time"].size != 1: # if content["time"].size != 1:
logging.error("more then one timestep, unable to rename the file!") # logging.error("more then one timestep, unable to rename the file!")
exit(-1) # exit(-1)
if content["time"].attrs["units"] == "day as %Y%m%d.%f": # if content["time"].attrs["units"] == "day as %Y%m%d.%f":
date_part = int(content["time"][0]) # date_part = int(content["time"][0])
time_part = float(content["time"][0]) - date_part # time_part = float(content["time"][0]) - date_part
year = str(date_part)[0:4] # year = str(date_part)[0:4]
month = str(date_part)[4:6] # month = str(date_part)[4:6]
day = str(date_part)[6:8] # day = str(date_part)[6:8]
hour = "%02d" % round(time_part * 24) # hour = "%02d" % round(time_part * 24)
else: # else:
logging.error("unsupported timeformat!") # logging.error("unsupported timeformat!")
exit(-1) # exit(-1)
# replace ICON-style placeholders: # # replace ICON-style placeholders:
rename = rename.replace("<y>", year) # rename = rename.replace("<y>", year)
rename = rename.replace("<m>", month) # rename = rename.replace("<m>", month)
rename = rename.replace("<d>", day) # rename = rename.replace("<d>", day)
rename = rename.replace("<h>", hour) # rename = rename.replace("<h>", hour)
rename = os.path.join(dst_fodler, rename) rename = os.path.join(dst_fodler, rename)
else: else:
rename = os.path.join(dst_fodler, (os.path.basename(one_file))) rename = os.path.join(dst_fodler, (os.path.basename(one_file)))
......
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