source: flex_extract.git/python/getMARSdata.py @ e18f4b5

ctbtodev
Last change on this file since e18f4b5 was e18f4b5, checked in by skomo <p.skomorowski@…>, 6 years ago

initial git repo of version 7.0.3

  • Property mode set to 100755
File size: 5.3 KB
Line 
1#!/usr/bin/env python
2#
3# This software is licensed under the terms of the Apache Licence Version 2.0
4# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
5#
6# Functionality provided: Prepare input 3D-wind fields in hybrid coordinates + surface fields for FLEXPART runs
7#
8# Creation: October  2014 - Anne Fouilloux - University of Oslo
9# Extension November 2015 - Leopold Haimberger - University of Vienna for:
10# - using the WebAPI also for general MARS retrievals
11# - job submission on ecgate and cca
12# - job templates suitable for twice daily operational dissemination
13# - dividing retrievals of longer periods into digestable chunks
14# - retrieve also longer term forecasts, not only analyses and short term forecast data
15# - conversion into GRIB2
16# - conversion into .fp format for faster execution of FLEXPART
17#
18#
19# Further documentation may be obtained from www.flexpart.eu
20#
21# Requirements:
22# in addition to a standard python 2.6 or 2.7 installation the following packages need to be installed
23# ECMWF WebMARS, gribAPI with python enabled, emoslib, ecaccess web toolkit, all available from https://software.ecmwf.int/
24# dateutils
25# matplotlib (optional, for debugging)
26#
27# Get MARS GRIB fields from ECMWF for FLEXPART
28#
29
30#import socket
31
32#hostname=socket.gethostname()
33#ecapi= 'ecmwf' not in hostname
34try:
35    ecapi=True
36    import ecmwfapi
37except ImportError:
38    ecapi=False
39
40import calendar
41import shutil
42import datetime
43import time
44import os,glob,sys,inspect
45#from string import strip
46from argparse import ArgumentParser,ArgumentDefaultsHelpFormatter
47# add path to submit.py to pythonpath so that python finds its buddies
48localpythonpath=os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
49if localpythonpath not in sys.path:
50    sys.path.append(localpythonpath)
51
52from FlexpartTools import MARSretrieval, EIFlexpart, silentremove, \
53     Control,myerror,normalexit, interpret_args_and_control
54
55
56def getMARSdata(args,c):
57
58    if not os.path.exists(c.inputdir):
59        os.makedirs(c.inputdir)
60    print "start date %s "%(c.start_date)
61    print "end date %s "%(c.end_date)
62
63    if ecapi:
64        if int(c.public):
65            server = ecmwfapi.ECMWFDataServer()
66        else:
67            server = ecmwfapi.ECMWFService("mars")
68    else:
69        server = False
70
71    c.ecapi=ecapi
72    print 'ecapi:',c.ecapi
73# Retrieve ERA interim data for running flexpart
74
75    syear=int(c.start_date[:4])
76    smonth=int(c.start_date[4:6])
77    sday=int(c.start_date[6:])
78    start = datetime.date( year = syear, month = smonth, day = sday )
79    startm1=start- datetime.timedelta(days=1)
80    if c.basetime=='00':
81        start=startm1
82    eyear=int(c.end_date[:4])
83    emonth=int(c.end_date[4:6])
84    eday=int(c.end_date[6:])
85
86    end = datetime.date( year = eyear, month = emonth, day = eday )
87    if c.basetime=='00' or c.basetime=='12':
88        endp1=end+ datetime.timedelta(days=1)
89    else:
90        endp1=end+ datetime.timedelta(days=2)
91
92    datechunk=datetime.timedelta(days=int(c.date_chunk))
93    print 'removing content of '+c.inputdir
94    tobecleaned=glob.glob(c.inputdir+'/*_acc_*.'+str(os.getppid())+'.*.grb')
95    for f in tobecleaned:
96        os.remove(f)
97
98    times=None
99    if c.maxstep<=24:
100        day=startm1
101        while day<endp1:
102            # we need to retrieve MARS data for this period (maximum one month)
103            flexpart = EIFlexpart(c,fluxes=True)
104            if day+datechunk-datetime.timedelta(days=1)<endp1:
105                dates= day.strftime("%Y%m%d") + "/to/" + (day+datechunk-datetime.timedelta(days=1)).strftime("%Y%m%d")
106            else:
107                dates= day.strftime("%Y%m%d") + "/to/" + end.strftime("%Y%m%d")
108
109            print "retrieve " + dates + " in dir " + c.inputdir
110            try:
111                flexpart.retrieve(server, c.public, dates, times, c.inputdir)
112            except IOError:
113                myerror(c,'MARS request failed')
114
115            day+=datechunk
116    else:
117        day=start
118        while day<=end:
119            # we need to retrieve MARS data for this period (maximum one month)
120            flexpart = EIFlexpart(c,fluxes=True)
121            if day+datechunk-datetime.timedelta(days=1)<end:
122                dates= day.strftime("%Y%m%d") + "/to/" + (day+datechunk-datetime.timedelta(days=1)).strftime("%Y%m%d")
123            else:
124                dates= day.strftime("%Y%m%d") + "/to/" + end.strftime("%Y%m%d")
125
126            print "retrieve " + dates + " in dir " + c.inputdir
127            flexpart.retrieve(server, c.public, dates, times, c.inputdir)
128            day+=datechunk
129
130
131
132    tobecleaned=glob.glob(c.inputdir+'/*__*.'+str(os.getppid())+'.*.grb')
133    for f in tobecleaned:
134        os.remove(f)
135    day=start
136    times=None
137    while day<=end:
138
139            # we need to retrieve MARS data for this period (maximum one month)
140        flexpart = EIFlexpart(c)
141        if day+datechunk-datetime.timedelta(days=1)<end:
142            dates= day.strftime("%Y%m%d") + "/to/" + (day+datechunk-datetime.timedelta(days=1)).strftime("%Y%m%d")
143        else:
144            dates= day.strftime("%Y%m%d") + "/to/" + end.strftime("%Y%m%d")
145        print "retrieve " + dates + " in dir " + c.inputdir
146
147        flexpart.retrieve(server, c.public, dates, times, c.inputdir)
148        day+=datechunk
149
150
151if __name__ == "__main__":
152
153    args,c=interpret_args_and_control()
154    getMARSdata(args,c)
155    normalexit(c)
Note: See TracBrowser for help on using the repository browser.
hosted by ZAMG