#!/usr/bin/env python # -*- coding: utf-8 -*- #******************************************************************************* # @Author: Anne Fouilloux (University of Oslo) # # @Date: October 2014 # # @Change History: # # November 2015 - Leopold Haimberger (University of Vienna): # - moved the getEIdata program into a function "get_mars_data" # - moved the AgurmentParser into a seperate function # - adatpted the function for the use in flex_extract # - renamed file to get_mars_data # # February 2018 - Anne Philipp (University of Vienna): # - applied PEP8 style guide # - added structured documentation # - minor changes in programming style for consistence # - added function main and moved function calls vom __main__ there # (necessary for better documentation with docstrings for later # online documentation) # - use of UIFiles class for file selection and deletion # # # @License: # (C) Copyright 2014-2018. # # This software is licensed under the terms of the Apache Licence Version 2.0 # which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. # # @Program Functionality: # This program can be used as a module in the whole flex_extract process # or can be run by itself to just extract MARS data from ECMWF. To do so, # a couple of necessary parameters has to be passed with the program call. # See documentation for more details. # # @Program Content: # - main # - get_mars_data # - do_retrievement # #******************************************************************************* # ------------------------------------------------------------------------------ # MODULES # ------------------------------------------------------------------------------ import os import sys import datetime import inspect try: ecapi = True import ecmwfapi except ImportError: ecapi = False # software specific classes and modules from flex_extract import _config from tools import my_error, normal_exit, get_cmdline_arguments, read_ecenv from classes.EcFlexpart import EcFlexpart from classes.UioFiles import UioFiles # ------------------------------------------------------------------------------ # FUNCTION # ------------------------------------------------------------------------------ def main(): ''' @Description: If get_mars_data is called directly from command line, the program flow and calls the argumentparser function and the get_mars_data function for retrieving EC data. @Input: @Return: ''' args = get_cmdline_arguments() c = ControlFile(args.controlfile) env_parameter = read_ecenv(_config.PATH_ECMWF_ENV) c.assign_args_to_control(args) c.assign_envs_to_control(env_parameter) c.check_conditions(args.queue) get_mars_data(c) normal_exit(c.mailfail, 'Done!') return def get_mars_data(c): ''' @Description: Retrieves the EC data needed for a FLEXPART simulation. Start and end dates for retrieval period is set. Retrievals are divided into smaller periods if necessary and datechunk parameter is set. @Input: c: instance of class ControlFile Contains all the parameters of CONTROL file, which are e.g.: DAY1(start_date), DAY2(end_date), DTIME, MAXSTEP, TYPE, TIME, STEP, CLASS(marsclass), STREAM, NUMBER, EXPVER, GRID, LEFT, LOWER, UPPER, RIGHT, LEVEL, LEVELIST, RESOL, GAUSS, ACCURACY, OMEGA, OMEGADIFF, ETA, ETADIFF, DPDETA, SMOOTH, FORMAT, ADDPAR, WRF, CWC, PREFIX, ECSTORAGE, ECTRANS, ECFSDIR, MAILOPS, MAILFAIL, GRIB2FLEXPART, FLEXPARTDIR, BASETIME DATE_CHUNK, DEBUG, INPUTDIR, OUTPUTDIR, FLEXPART_ROOT_SCRIPTS For more information about format and content of the parameter see documentation. @Return: ''' if not os.path.exists(c.inputdir): os.makedirs(c.inputdir) if c.request == 0 or c.request == 2: print("Retrieving EC data!") elif c.request == 1: print("Printing mars requests!") print("start date %s " % (c.start_date)) print("end date %s " % (c.end_date)) if ecapi: server = ecmwfapi.ECMWFService("mars") else: server = False c.ecapi = ecapi print('Using ECMWF WebAPI: ' + str(c.ecapi)) # basetime geht rückwärts # if basetime 00 # dann wird von 12 am vortag bis 00 am start tag geholt # aber ohne 12 selbst sondern 12 + step # if basetime 12 # dann wird von 00 + step bis 12 am start tag geholt # purer forecast wird vorwärts bestimmt. # purer forecast mode ist dann wenn größer 24 stunden # wie kann das noch festgestellt werden ???? # nur FC und steps mehr als 24 ? # die einzige problematik beim reinen forecast ist die benennung der files! # also sobald es Tagesüberschneidungen gibt # allerdings ist das relevant und ersichtlich an den NICHT FLUSS DATEN # set start date of retrieval period start = datetime.date(year=int(c.start_date[:4]), month=int(c.start_date[4:6]), day=int(c.start_date[6:])) startm1 = start - datetime.timedelta(days=1) # set end date of retrieval period end = datetime.date(year=int(c.end_date[:4]), month=int(c.end_date[4:6]), day=int(c.end_date[6:])) # set time period for one single retrieval datechunk = datetime.timedelta(days=int(c.date_chunk)) if c.basetime == '00': start = startm1 if c.basetime == '00' or c.basetime == '12': # endp1 = end + datetime.timedelta(days=1) endp1 = end else: # endp1 = end + datetime.timedelta(days=2) endp1 = end + datetime.timedelta(days=1) # -------------- flux data ------------------------------------------------ if c.request == 0 or c.request == 2: print('... removing old flux content of ' + c.inputdir) tobecleaned = UioFiles(c.inputdir, '*_acc_*.' + str(os.getppid()) + '.*.grb') tobecleaned.delete_files() # if forecast for maximum one day (upto 24h) are to be retrieved, # collect accumulation data (flux data) # with additional days in the beginning and at the end # (used for complete disaggregation of original period) if c.maxstep <= 24: do_retrievement(c, server, startm1, endp1, datechunk, fluxes=True) # if forecast data longer than 24h are to be retrieved, # collect accumulation data (flux data) # with the exact start and end date # (disaggregation will be done for the # exact time period with boundary conditions) else: do_retrievement(c, server, start, end, datechunk, fluxes=True) # -------------- non flux data -------------------------------------------- if c.request == 0 or c.request == 2: print('... removing old non flux content of ' + c.inputdir) tobecleaned = UioFiles(c.inputdir, '*__*.' + str(os.getppid()) + '.*.grb') tobecleaned.delete_files() do_retrievement(c, server, start, end, datechunk, fluxes=False) return def do_retrievement(c, server, start, end, delta_t, fluxes=False): ''' @Description: Divides the complete retrieval period in smaller chunks and retrieves the data from MARS. @Input: c: instance of ControlFile Contains all the parameters of CONTROL file, which are e.g.: DAY1(start_date), DAY2(end_date), DTIME, MAXSTEP, TYPE, TIME, STEP, CLASS(marsclass), STREAM, NUMBER, EXPVER, GRID, LEFT, LOWER, UPPER, RIGHT, LEVEL, LEVELIST, RESOL, GAUSS, ACCURACY, OMEGA, OMEGADIFF, ETA, ETADIFF, DPDETA, SMOOTH, FORMAT, ADDPAR, WRF, CWC, PREFIX, ECSTORAGE, ECTRANS, ECFSDIR, MAILOPS, MAILFAIL, GRIB2FLEXPART, FLEXPARTDIR, BASETIME DATE_CHUNK, DEBUG, INPUTDIR, OUTPUTDIR, FLEXPART_ROOT_SCRIPTS For more information about format and content of the parameter see documentation. server: instance of ECMWFService The server connection to ECMWF start: instance of datetime The start date of the retrieval. end: instance of datetime The end date of the retrieval. delta_t: instance of datetime Delta_t +1 is the maximal time period of a single retrieval. fluxes: boolean, optional Decides if the flux parameters are to be retrieved or the rest of the parameter list. Default value is False. @Return: ''' # since actual day also counts as one day, # we only need to add datechunk - 1 days to retrieval # for a period delta_t_m1 = delta_t - datetime.timedelta(days=1) day = start while day <= end: flexpart = EcFlexpart(c, fluxes) tmpday = day + delta_t_m1 if tmpday < end: dates = day.strftime("%Y%m%d") + "/to/" + \ tmpday.strftime("%Y%m%d") else: dates = day.strftime("%Y%m%d") + "/to/" + \ end.strftime("%Y%m%d") print("... retrieve " + dates + " in dir " + c.inputdir) try: flexpart.retrieve(server, dates, c.request, c.inputdir) except IOError: my_error(c.mailfail, 'MARS request failed') day += delta_t return if __name__ == "__main__": main()