-
Notifications
You must be signed in to change notification settings - Fork 0
/
RetiredNames.py
91 lines (76 loc) · 2.66 KB
/
RetiredNames.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
76
77
78
79
80
81
82
83
84
85
86
87
88
# coding: utf-8
# In[4]:
#List of retired storm names, for bolding in the "plotAllSeasons" notebook.
#Dictionary, with key being year (int) and list of names in each year.
#Will need to be saved as a python script so it can be imported.
#For Pacific, include Central Pacific
#retired names as these are included in HURDAT2.
# In[5]:
Atlantic = {1954: ['Carol', 'Edna', 'Hazel'],
1955: ['Connie', 'Diane', 'Ione', 'Janet'],
1957: ['Audrey'],
1960: ['Donna'],
1961: ['Carla', 'Hattie'],
1963: ['Flora'],
1964: ['Cleo', 'Dora', 'Hilda'],
1965: ['Betsy'],
1966: ['Inez'],
1967: ['Beulah'],
1969: ['Camille'],
1970: ['Celia'],
1972: ['Agnes'],
1974: ['Carmen', 'Fifi'],
1975: ['Eloise'],
1977: ['Anita'],
1978: ['Greta'],
1979: ['David', 'Frederic'],
1980: ['Allen'],
1983: ['Alicia'],
1985: ['Elena', 'Gloria'],
1988: ['Gilbert', 'Joan'],
1989: ['Hugo'],
1990: ['Diana', 'Klaus'],
1991: ['Bob'],
1992: ['Andrew'],
1995: ['Luis', 'Marilyn', 'Opal', 'Roxanne'],
1996: ['Cesar', 'Fran', 'Hortense'],
1998: ['Georges', 'Mitch'],
1999: ['Floyd', 'Lenny'],
2000: ['Keith'],
2001: ['Allison', 'Iris', 'Michelle'],
2002: ['Isidore', 'Lili'],
2003: ['Fabian', 'Isabel', 'Juan'],
2004: ['Charley', 'Frances', 'Ivan', 'Jeanne'],
2005: ['Dennis', 'Katrina', 'Rita', 'Stan', 'Wilma'],
2007: ['Dean', 'Felix', 'Noel'],
2008: ['Gustav', 'Ike', 'Paloma'],
2010: ['Igor', 'Tomas'],
2011: ['Irene'],
2012: ['Sandy'],
2013: ['Ingrid'],
2015: ['Erika', 'Joaquin'],
2016: ['Matthew', 'Otto'],
2017: ['Harvey', 'Irma', 'Maria', 'Nate']
}
# In[6]:
Pacific = {
#1965: ['Hazel'], #Retired for unknown reasons
#1970: ['Adele'], #Retired for unknown reasons
1978: ['Fico'],
1982: ['Iwa'],
#1987: ['Knut'], #Retired for unknown reasons
#1988: ['Iva'], #Retired due to similarity to Iwa
1991: ['Fefa'],
1992: ['Iniki'],
1995: ['Ismael'],
1997: ['Pauline', 'Paka'],
#2001: ['Adolph'], #Retired for political reasons
2002: ['Kenna'],
#2004: ['Isis'], #Retired for political reasons
2006: ['Ioke'],
2008: ['Alma'],
2013: ['Manuel'],
2014: ['Odile'],
2015: ['Patricia']
}
# In[ ]: