-
Notifications
You must be signed in to change notification settings - Fork 10
/
pcc_download_gprof.py
75 lines (43 loc) · 1.65 KB
/
pcc_download_gprof.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
"""
-----------------------------------------------
Program zum Downloaden von GPM Daten vom Server
-----------------------------------------------
"""
from pcc import melde_dich
import ftplib
from datetime import date, timedelta as td
melde_dich('Programm pcc_download_gprof.py startet jetzt.')
meinftp = ftplib.FTP("arthurhou.pps.eosdis.nasa.gov")
meinftp.login("[email protected]","[email protected]")
d1 = date(2017, 1, 1)
d2 = date(2017, 2, 22)
delta = d2 - d1
for i in range(delta.days + 1):
zeit = d1 + td(days=i)
print zeit
directory = '/gpmdata/'+ str(zeit.strftime("%Y/%m/%d")) +'/gprof/'
meinftp.cwd(directory)
# Mein Verzeichniss
directory_local = '/automount/ags/velibor/gpmdata/gprof/'
#meinftp.retrlines('LIST')
daten=[] #Initialisierung einer Liste (leere Liste)
meinftp.dir(daten.append)
gprof_wort = '2A.GPM.GMI.GPROF2014v2-0.'
for i in range(len(daten)):
if gprof_wort in daten[i][-66::]:
print '>>>>>>>> ', daten[i][-66::]
filename1 = daten[i][-66::]
filename2 = daten[i][-66::]
print
print 'Ort und Name der lokalen Datei: ' + directory_local + filename2
print
file = open(directory_local+filename2, 'wb')
print 'Download: ftp-Server: ' + directory +filename1
meinftp.retrbinary('RETR '+filename1, file.write)
print
print 'Die lokale Datei ' + directory_local+filename2 +' wird geschlossen.'
file.close()
print meinftp.quit()
print
print 'Die FTP-Verbindung wurde von mir getrennt.'
melde_dich('Das Program pcc_download ist fertig!')