#!/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 # #******************************************************************************* # ------------------------------------------------------------------------------ # 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 from tools import my_error, normal_exit, interpret_args_and_control from EcFlexpart import EcFlexpart from UioFiles import UioFiles # add path to pythonpath so that python finds its buddies LOCAL_PYTHON_PATH = os.path.dirname(os.path.abspath( inspect.getfile(inspect.currentframe()))) if LOCAL_PYTHON_PATH not in sys.path: sys.path.append(LOCAL_PYTHON_PATH) # ------------------------------------------------------------------------------ # FUNCTION # ------------------------------------------------------------------------------ def main(): ''' @Description: If get_mars_data is called from command line, this function controls the program flow and calls the argumentparser function and the get_mars_data function for retrieving EC data. @Input: @Return: ''' args, c = interpret_args_and_control() get_mars_data(c) normal_exit(c) 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) print "Retrieving EC data!" 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 'ecapi: ', c.ecapi # 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) if c.basetime == '00': start = startm1 # 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:])) if c.basetime == '00' or c.basetime == '12': endp1 = end + datetime.timedelta(days=1) else: endp1 = end + datetime.timedelta(days=2) # set time period of one single retrieval datechunk = datetime.timedelta(days=int(c.date_chunk)) # -------------- flux data ------------------------------------------------ print 'removing old flux content of ' + c.inputdir tobecleaned = UioFiles('*_acc_*.' + str(os.getppid()) + '.*.grb') tobecleaned.list_files(c.inputdir) tobecleaned.delete_files() # if forecast for maximum one day (upto 23h) 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: day = startm1 while day < endp1: # retrieve MARS data for the whole period flexpart = EcFlexpart(c, fluxes=True) tmpday = day + datechunk - datetime.timedelta(days=1) if tmpday < endp1: 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.inputdir) except IOError: my_error(c, 'MARS request failed') day += datechunk # 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: day = start while day <= end: # retrieve MARS data for the whole period flexpart = EcFlexpart(c, fluxes=True) tmpday = day + datechunk - datetime.timedelta(days=1) if tmpday < end: dates = day.strftime("%Y%m%d") + "/to/" + \ tmpday.trftime("%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.inputdir) except IOError: my_error(c, 'MARS request failed') day += datechunk # -------------- non flux data -------------------------------------------- print 'removing old non flux content of ' + c.inputdir tobecleaned = UioFiles('*__*.' + str(os.getppid()) + '.*.grb') tobecleaned.list_files(c.inputdir) tobecleaned.delete_files() day = start while day <= end: # retrieve all non flux MARS data for the whole period flexpart = EcFlexpart(c, fluxes=False) tmpday = day + datechunk - datetime.timedelta(days=1) 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.inputdir) except IOError: my_error(c, 'MARS request failed') day += datechunk return if __name__ == "__main__": main()