diff --git a/CopyOfai_models_jed.Rmd b/CopyOfai_models_jed.Rmd new file mode 100644 index 0000000..8f2956b --- /dev/null +++ b/CopyOfai_models_jed.Rmd @@ -0,0 +1,228 @@ +--- +title: "ai_model_assignment" +author: "Katie Willi and Caitlin Mothes" +date: "`r Sys.Date()`" +output: github_document +--- + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = TRUE, eval = FALSE) +``` + +For this assignment, copy and paste both **your question to the chat bot** as well as **the chat bot's response** below each assignment question. + +```{r} +packageLoad <- + function(x) { + for (i in 1:length(x)) { + if (!x[i] %in% installed.packages()) { + install.packages(x[i]) + } + library(x[i], character.only = TRUE) + } + } + +# create a string of package names +packages <- c('tidyverse', + 'palmerpenguins', + 'lterdatasampler','purrr','rstatix') + +packageLoad(packages) + +``` + +1) Ask an AI chat bot (like ChatGPT or Claude) what the following chunk of code does: + +```{r} +library(palmerpenguins) + +data("penguins") + +step_one <- function(x){ + x <- as.character(x) + } + +species_list <- unlist(lapply(penguins$species, step_one)) +adelie_indices <- which(species_list == "Adelie") +adelie_penguins <- penguins[adelie_indices, ] +``` + +**Question posed to chat bot: what does this code chunk do? library(palmerpenguins) + +data("penguins") + +step_one \<- function(x){ +x \<- as.character(x) +} + +species_list \<- unlist(lapply(penguins\$species, step_one)) +adelie_indices \<- which(species_list == "Adelie") +adelie_penguins \<- penguins[adelie_indices, ]** + +**Chat bot response:** The code chunk provided loads the **`palmerpenguins`** dataset and creates a subset of the data containing only Adelie penguins. Here is a step-by-step explanation of what the code does: + +1. The **`library(palmerpenguins)`** command loads the **`palmerpenguins`** package, which contains the **`penguins`** dataset. + +2. The **`data("penguins")`** command loads the **`penguins`** dataset into the R environment. + +3. The **`step_one`** function is defined to convert a variable **`x`** to a character string using the **`as.character()`** function. + +4. The **`lapply()`** function is used to apply the **`step_one()`** function to each element of the **`species`** column in the **`penguins`** dataset. This creates a list of character strings. + +5. The **`unlist()`** function is used to convert the list of character strings to a vector. + +6. The **`which()`** function is used to find the indices of the elements in the vector that are equal to "Adelie". + +7. The **`penguins[adelie_indices, ]`** command is used to subset the **`penguins`** dataset and create a new dataset called **`adelie_penguins`**. + +In summary, the code chunk creates a new dataset called **`adelie_penguins`** that contains only the observations for Adelie penguins in the **`penguins`** dataset.The **`palmerpenguins`** dataset contains observations for three different species of penguins: Adelie, Chinstrap, and Gentoo. The dataset was collected from three islands in the Palmer Archipelago, Antarctica + +[**2**](https://towardsdatascience.com/plotly-pandas-for-the-palmer-penguins-f5cdab3c16c8) + +. The code chunk is useful for creating a subset of the data that only contains observations for Adelie penguins, which can be useful for further analysis or visualization. + +2) Ask the AI model to simplify the code in question 1. + +**Question to chat bot: simplify this code. library(palmerpenguins) + +data("penguins") + +step_one \<- function(x){ +x \<- as.character(x) +} + +species_list \<- unlist(lapply(penguins\$species, step_one)) +adelie_indices \<- which(species_list == "Adelie") +adelie_penguins \<- penguins[adelie_indices, ]** + +**Chat bot response:** The provided code chunk loads the **`palmerpenguins`** dataset and creates a subset of the data containing only Adelie penguins. Here is a simplified version of the code: + +``` +library(palmerpenguins) +data("penguins") +adelie_penguins <- subset(penguins, species == "Adelie") +``` + +This simplified code does the same thing as the original code, but it is shorter and easier to read. The **`subset()`** function is used to create a subset of the **`penguins`** dataset that only contains observations for Adelie penguins. The resulting dataset is stored in a variable called **`adelie_penguins`**. + +3. Is the AI model's response to Question 2 in the {tidyverse} style (e.g., does the response use any {tidyverse} functions, the `%>%` pipe, etc.)? + +**Question to chat bot: is this code in tidyverse style? library(palmerpenguins) + +data("penguins") + +step_one \<- function(x){ +x \<- as.character(x) +} + +species_list \<- unlist(lapply(penguins\$species, step_one)) +adelie_indices \<- which(species_list == "Adelie") +adelie_penguins \<- penguins[adelie_indices, ]** + +**Chat bot response:** The provided code chunk is not in tidyverse style. The code uses base R functions such as **`unlist()`** and **`which()`** to create a subset of the **`penguins`** dataset containing only Adelie penguins. In contrast, the tidyverse style emphasizes the use of a consistent set of packages and functions to perform data manipulation tasks. The tidyverse style is based on the **`dplyr`** package, which provides a set of functions for data manipulation that are designed to work together seamlessly.Here is an example of how the code could be rewritten in tidyverse style: + +``` +library(palmerpenguins) +data("penguins") + +library(dplyr) +adelie_penguins <- penguins %>% + filter(species == "Adelie") +``` + +In this code, the **`dplyr`** package is loaded along with the **`palmerpenguins`** package. The **`filter()`** function from **`dplyr`** is used to create a subset of the **`penguins`** dataset that only contains observations for Adelie penguins. The resulting dataset is stored in a variable called **`adelie_penguins`**.Note that the tidyverse style is not necessarily better or worse than the base R style, but it can make code more readable and easier to maintain, especially for larger and more complex datasets. + +4. If the AI model's response did not use the {tidyverse}, ask it to convert the code into {tidyverese} style. If your response already used the {tidyverse}, make a guess as to why it might have already done so. *\<--- just a thought experiment, don't worry too much about how you answer this!* + +**Question to chat bot** (*if your previous question was not in tidyverse)*: **convert this code to tidyverse style. library(palmerpenguins) + +data("penguins") + +step_one \<- function(x){ +x \<- as.character(x) +} + +species_list \<- unlist(lapply(penguins\$species, step_one)) +adelie_indices \<- which(species_list == "Adelie") +adelie_penguins \<- penguins[adelie_indices, ]** + +## + +**Chat bot response:** To convert the provided code chunk to tidyverse style, we can use the **`filter()`** function from the **`dplyr`** package to create a subset of the **`penguins`** dataset that only contains observations for Adelie penguins. Here is the code in tidyverse style: + +``` +library(palmerpenguins) +library(dplyr) + +data("penguins") + +adelie_penguins <- penguins %>% + filter(species == "Adelie") +``` + +In this code, we first load the **`palmerpenguins`** package and the **`dplyr`** package. We then load the **`penguins`** dataset using the **`data()`** function. The **`filter()`** function from **`dplyr`** is used to create a subset of the **`penguins`** dataset that only contains observations for Adelie penguins. The resulting dataset is stored in a variable called **`adelie_penguins`**.Note that the tidyverse style emphasizes the use of a consistent set of packages and functions to perform data manipulation tasks. The **`dplyr`** package provides a set of functions for data manipulation that are designed to work together seamlessly. + +5. Does the code that ChatGPT put together for you work? If it doesn't, ask the chat bot to fix it. Does it work now? + +```{r} +library(palmerpenguins) +library(dplyr) + +data("penguins") + +adelie_penguins <- penguins %>% + filter(species == "Adelie") +``` + +The code perplexity gave worked! + +6. Ask the chat bot if there is a significant difference in bill length across Adelie penguin sexes in the {palmerpenguins} data set (using R). + +**Question posed to chat bot:** calculate if there is a significant difference in bill lengths across Adelie penguin sexes in the {palmerpenguins} data set (using R). + +**Chat bot response:** To calculate if there is a significant difference in bill lengths across Adelie penguin sexes in the **`palmerpenguins`** dataset, we can perform a t-test using the **`t.test()`** function in R. Here is the code: + +``` +library(palmerpenguins) + +data("penguins") + +adelie_penguins <- subset(penguins, species == "Adelie") + +t.test(bill_length_mm ~ sex, data = adelie_penguins) +``` + +In this code, we first load the **`palmerpenguins`** package and load the **`penguins`** dataset using the **`data()`** function. We then create a subset of the **`penguins`** dataset that only contains observations for Adelie penguins using the **`subset()`** function. The **`t.test()`** function is used to perform a t-test on the **`bill_length_mm`** variable, comparing the bill lengths of male and female Adelie penguins. The resulting output will include the t-statistic, degrees of freedom, p-value, and confidence interval for the difference in means between the two groups.Note that the t-test assumes that the data is normally distributed and that the variances of the two groups are equal. If these assumptions are not met, alternative tests such as the Wilcoxon rank-sum test may be more appropriate. + +7. Does the code produced work? (*Copy and paste the code in R Studio console to run it).* If not, what was wrong with it's answer? + +```{r} +library(palmerpenguins) + +data("penguins") + +adelie_penguins <- subset(penguins, species == "Adelie") + +t.test(bill_length_mm ~ sex, data = adelie_penguins) + +``` + +8.Did the chat bot's response include an assessment of whether the Adelie penguins data met the assumptions of the statistical test used in the response? (e.g., test for normality or equal variances)? If not, pose the question again to test for the assumptions and paste the new question/response below. + +**Question to chat bot:** calculate could you provide if there is a significant difference in bill lengths across Adelie penguin sexes in the {palmerpenguins} data set (using R). + +**Chat bot response:** Based on the available search results, we can conclude that there is a significant difference in bill lengths across Adelie penguin sexes in the **`palmerpenguins`** dataset. Specifically, the mean bill length for males is greater than the mean bill length for females in Adelie penguins + +. However, to confirm this statistically, we can perform a t-test using the **`t.test()`** function in R.Here is the code to perform the t-test: + +``` +library(palmerpenguins) + +data("penguins") + +adelie_penguins <- subset(penguins, species == "Adelie") + +t.test(bill_length_mm ~ sex, data = adelie_penguins) +``` + +In this code, we first load the **`palmerpenguins`** package and load the **`penguins`** dataset using the **`data()`** function. We then create a subset of the **`penguins`** dataset that only contains observations for Adelie penguins using the **`subset()`** function. The **`t.test()`** function is used to perform a t-test on the **`bill_length_mm`** variable, comparing the bill lengths of male and female Adelie penguins. The resulting output will include the t-statistic, degrees of freedom, p-value, and confidence interval for the difference in means between the two groups.If the p-value is less than the significance level (usually 0.05), we can reject the null hypothesis and conclude that there is a significant difference in bill lengths across Adelie penguin sexes in the **`palmerpenguins`** dataset. diff --git a/data/storms.csv b/data/storms.csv new file mode 100644 index 0000000..cc6149b --- /dev/null +++ b/data/storms.csv @@ -0,0 +1,19067 @@ +name,year,month,day,hour,lat,long,status,category,wind,pressure,tropicalstorm_force_diameter,hurricane_force_diameter +Amy,1975,6,27,0,27.5,-79,tropical depression,NA,25,1013,NA,NA +Amy,1975,6,27,6,28.5,-79,tropical depression,NA,25,1013,NA,NA +Amy,1975,6,27,12,29.5,-79,tropical depression,NA,25,1013,NA,NA +Amy,1975,6,27,18,30.5,-79,tropical depression,NA,25,1013,NA,NA +Amy,1975,6,28,0,31.5,-78.8,tropical depression,NA,25,1012,NA,NA +Amy,1975,6,28,6,32.4,-78.7,tropical depression,NA,25,1012,NA,NA +Amy,1975,6,28,12,33.3,-78,tropical depression,NA,25,1011,NA,NA +Amy,1975,6,28,18,34,-77,tropical depression,NA,30,1006,NA,NA +Amy,1975,6,29,0,34.4,-75.8,tropical storm,NA,35,1004,NA,NA +Amy,1975,6,29,6,34,-74.8,tropical storm,NA,40,1002,NA,NA +Amy,1975,6,29,12,33.8,-73.8,tropical storm,NA,45,1000,NA,NA +Amy,1975,6,29,18,33.8,-72.8,tropical storm,NA,50,998,NA,NA +Amy,1975,6,30,0,34.3,-71.6,tropical storm,NA,50,998,NA,NA +Amy,1975,6,30,6,35.6,-70.8,tropical storm,NA,55,998,NA,NA +Amy,1975,6,30,12,35.9,-70.5,tropical storm,NA,60,987,NA,NA +Amy,1975,6,30,18,36.2,-70.2,tropical storm,NA,60,987,NA,NA +Amy,1975,7,1,0,36.2,-69.8,tropical storm,NA,60,984,NA,NA +Amy,1975,7,1,6,36.2,-69.4,tropical storm,NA,60,984,NA,NA +Amy,1975,7,1,12,36.2,-68.3,tropical storm,NA,60,984,NA,NA +Amy,1975,7,1,18,36.7,-67.2,tropical storm,NA,60,984,NA,NA +Amy,1975,7,2,0,37.4,-66.7,tropical storm,NA,60,984,NA,NA +Amy,1975,7,2,6,37.3,-65.9,tropical storm,NA,60,984,NA,NA +Amy,1975,7,2,12,37.3,-65.1,tropical storm,NA,60,981,NA,NA +Amy,1975,7,2,18,37.3,-64.1,tropical storm,NA,60,986,NA,NA +Amy,1975,7,3,0,37.7,-62.8,tropical storm,NA,55,986,NA,NA +Amy,1975,7,3,6,38.2,-61.2,tropical storm,NA,55,986,NA,NA +Amy,1975,7,3,12,39.3,-59.6,tropical storm,NA,55,986,NA,NA +Amy,1975,7,3,18,40.5,-58,tropical storm,NA,50,986,NA,NA +Amy,1975,7,4,0,42.5,-54.8,tropical storm,NA,50,986,NA,NA +Amy,1975,7,4,6,44.5,-51.6,tropical storm,NA,50,986,NA,NA +Amy,1975,7,4,12,47,-48,extratropical,NA,45,995,NA,NA +Blanche,1975,7,24,0,26,-68.4,tropical depression,NA,20,1014,NA,NA +Blanche,1975,7,24,6,26,-69.5,tropical depression,NA,20,1014,NA,NA +Blanche,1975,7,24,12,26.1,-70.5,tropical depression,NA,25,1014,NA,NA +Blanche,1975,7,24,18,26.5,-71.5,tropical depression,NA,30,1013,NA,NA +Blanche,1975,7,25,0,27.2,-72.5,tropical depression,NA,30,1012,NA,NA +Blanche,1975,7,25,6,28,-73.6,tropical depression,NA,30,1010,NA,NA +Blanche,1975,7,25,12,28.9,-74.3,tropical depression,NA,30,1007,NA,NA +Blanche,1975,7,25,18,29.9,-74.9,tropical depression,NA,30,1006,NA,NA +Blanche,1975,7,26,0,31,-75,tropical depression,NA,30,1005,NA,NA +Blanche,1975,7,26,6,32.2,-74.6,tropical storm,NA,35,1004,NA,NA +Blanche,1975,7,26,12,33.4,-73.5,tropical storm,NA,35,1003,NA,NA +Blanche,1975,7,26,18,34.2,-72.2,tropical storm,NA,50,998,NA,NA +Blanche,1975,7,27,0,35,-71,tropical storm,NA,60,992,NA,NA +Blanche,1975,7,27,6,35.9,-70,hurricane,1,65,987,NA,NA +Blanche,1975,7,27,12,36.9,-69,hurricane,1,70,984,NA,NA +Blanche,1975,7,27,18,37.9,-68,hurricane,1,75,981,NA,NA +Blanche,1975,7,28,0,39.3,-67.2,hurricane,1,75,980,NA,NA +Blanche,1975,7,28,6,41.2,-66.4,hurricane,1,70,980,NA,NA +Blanche,1975,7,28,12,44,-65.2,extratropical,NA,60,988,NA,NA +Blanche,1975,7,28,18,47.2,-62.4,extratropical,NA,60,992,NA,NA +Caroline,1975,8,24,12,22.4,-69.8,tropical depression,NA,25,1011,NA,NA +Caroline,1975,8,24,18,21.9,-71.1,tropical depression,NA,25,1011,NA,NA +Caroline,1975,8,25,0,21.6,-72.5,tropical depression,NA,25,1010,NA,NA +Caroline,1975,8,25,6,21.2,-73.8,tropical depression,NA,25,1010,NA,NA +Caroline,1975,8,25,12,20.9,-75.1,tropical depression,NA,25,1011,NA,NA +Caroline,1975,8,25,18,20.6,-76.4,tropical depression,NA,25,1011,NA,NA +Caroline,1975,8,26,0,20.4,-77.7,tropical depression,NA,25,1011,NA,NA +Caroline,1975,8,26,6,20.3,-79,tropical depression,NA,25,1011,NA,NA +Caroline,1975,8,26,12,20.2,-80.3,tropical depression,NA,25,1012,NA,NA +Caroline,1975,8,26,18,20.2,-81.6,tropical depression,NA,25,1012,NA,NA +Caroline,1975,8,27,0,20.4,-82.8,tropical depression,NA,25,1013,NA,NA +Caroline,1975,8,27,6,20.8,-84,tropical depression,NA,25,1013,NA,NA +Caroline,1975,8,27,12,21.1,-85.1,tropical depression,NA,25,1014,NA,NA +Caroline,1975,8,27,18,21.5,-86.3,tropical depression,NA,25,1014,NA,NA +Caroline,1975,8,28,0,22,-87.5,tropical depression,NA,25,1014,NA,NA +Caroline,1975,8,28,6,22.4,-88.8,tropical depression,NA,25,1014,NA,NA +Caroline,1975,8,28,12,22.8,-90.1,tropical depression,NA,25,1013,NA,NA +Caroline,1975,8,28,18,22.9,-91,tropical depression,NA,25,1010,NA,NA +Caroline,1975,8,29,0,23,-91.9,tropical depression,NA,30,1007,NA,NA +Caroline,1975,8,29,6,23.1,-92.6,tropical storm,NA,35,1003,NA,NA +Caroline,1975,8,29,12,23.2,-93.2,tropical storm,NA,40,999,NA,NA +Caroline,1975,8,29,18,23.2,-93.6,tropical storm,NA,50,994,NA,NA +Caroline,1975,8,30,0,23.3,-94.2,hurricane,1,65,990,NA,NA +Caroline,1975,8,30,6,23.5,-94.9,hurricane,1,65,990,NA,NA +Caroline,1975,8,30,12,23.7,-95.6,hurricane,1,65,989,NA,NA +Caroline,1975,8,30,18,23.8,-96.3,hurricane,1,70,987,NA,NA +Caroline,1975,8,31,0,24,-97,hurricane,3,100,973,NA,NA +Caroline,1975,8,31,6,24.1,-97.5,hurricane,3,100,963,NA,NA +Caroline,1975,8,31,12,24.3,-97.8,hurricane,2,90,963,NA,NA +Caroline,1975,8,31,18,24.8,-98,tropical storm,NA,55,993,NA,NA +Caroline,1975,9,1,0,25.1,-98.3,tropical depression,NA,30,1000,NA,NA +Caroline,1975,9,1,6,25.2,-98.7,tropical depression,NA,20,1002,NA,NA +Caroline,1975,9,1,12,25.3,-99,tropical depression,NA,20,1002,NA,NA +Doris,1975,8,28,12,33.3,-46.3,subtropical storm,NA,35,1005,NA,NA +Doris,1975,8,28,18,33.6,-47.5,subtropical storm,NA,40,1005,NA,NA +Doris,1975,8,29,0,34.5,-48.1,subtropical storm,NA,40,1005,NA,NA +Doris,1975,8,29,6,34.7,-48.5,subtropical storm,NA,45,1005,NA,NA +Doris,1975,8,29,12,34.9,-48.9,tropical storm,NA,45,1005,NA,NA +Doris,1975,8,29,18,35.2,-49.1,tropical storm,NA,50,1000,NA,NA +Doris,1975,8,30,0,35.3,-48.9,tropical storm,NA,55,997,NA,NA +Doris,1975,8,30,6,35.3,-48.5,tropical storm,NA,55,997,NA,NA +Doris,1975,8,30,12,35.3,-48,tropical storm,NA,55,997,NA,NA +Doris,1975,8,30,18,35,-47.1,tropical storm,NA,55,997,NA,NA +Doris,1975,8,31,0,34.9,-46.3,hurricane,1,65,990,NA,NA +Doris,1975,8,31,6,34.8,-45.7,hurricane,1,65,990,NA,NA +Doris,1975,8,31,12,34.7,-45.2,hurricane,1,70,990,NA,NA +Doris,1975,8,31,18,34.6,-44.9,hurricane,1,70,990,NA,NA +Doris,1975,9,1,0,34.5,-44.6,hurricane,1,75,984,NA,NA +Doris,1975,9,1,6,34.6,-44.2,hurricane,1,75,984,NA,NA +Doris,1975,9,1,12,34.9,-44,hurricane,1,75,984,NA,NA +Doris,1975,9,1,18,35.4,-44,hurricane,1,75,984,NA,NA +Doris,1975,9,2,0,35.8,-44.4,hurricane,2,90,970,NA,NA +Doris,1975,9,2,6,36.4,-44.5,hurricane,2,95,965,NA,NA +Doris,1975,9,2,12,37,-44.3,hurricane,2,95,965,NA,NA +Doris,1975,9,2,18,37.7,-44.2,hurricane,2,95,965,NA,NA +Doris,1975,9,3,0,38.4,-43.8,hurricane,2,95,965,NA,NA +Doris,1975,9,3,6,39.7,-43.6,hurricane,2,95,965,NA,NA +Doris,1975,9,3,12,41.1,-43,hurricane,2,95,965,NA,NA +Doris,1975,9,3,18,42,-42.5,hurricane,2,90,970,NA,NA +Doris,1975,9,4,0,42.8,-42,tropical storm,NA,60,995,NA,NA +Doris,1975,9,4,6,43.2,-41.4,extratropical,NA,45,1005,NA,NA +Doris,1975,9,4,12,43.5,-40.7,extratropical,NA,45,1005,NA,NA +Eloise,1975,9,13,12,17.6,-55.2,tropical depression,NA,25,1009,NA,NA +Eloise,1975,9,13,18,17.7,-56.3,tropical depression,NA,25,1009,NA,NA +Eloise,1975,9,14,0,17.8,-57.3,tropical depression,NA,25,1009,NA,NA +Eloise,1975,9,14,6,17.9,-58.3,tropical depression,NA,25,1009,NA,NA +Eloise,1975,9,14,12,18,-59.4,tropical depression,NA,25,1009,NA,NA +Eloise,1975,9,14,18,18.1,-60.5,tropical depression,NA,25,1009,NA,NA +Eloise,1975,9,15,0,18.3,-61.7,tropical depression,NA,25,1009,NA,NA +Eloise,1975,9,15,6,18.5,-62.8,tropical depression,NA,25,1009,NA,NA +Eloise,1975,9,15,12,18.8,-63.8,tropical depression,NA,30,1007,NA,NA +Eloise,1975,9,15,18,18.9,-64.8,tropical depression,NA,30,1007,NA,NA +Eloise,1975,9,16,0,19,-65.6,tropical storm,NA,35,1007,NA,NA +Eloise,1975,9,16,6,19.2,-66.7,tropical storm,NA,45,1007,NA,NA +Eloise,1975,9,16,12,19.4,-67.5,tropical storm,NA,55,1002,NA,NA +Eloise,1975,9,16,18,19.5,-68.4,hurricane,1,65,1002,NA,NA +Eloise,1975,9,17,0,19.6,-69.2,hurricane,1,65,997,NA,NA +Eloise,1975,9,17,6,19.7,-70.2,tropical storm,NA,60,1000,NA,NA +Eloise,1975,9,17,12,19.7,-71.2,tropical storm,NA,55,1000,NA,NA +Eloise,1975,9,17,18,19.8,-72.2,tropical storm,NA,50,1000,NA,NA +Eloise,1975,9,18,0,19.9,-73.3,tropical storm,NA,45,1000,NA,NA +Eloise,1975,9,18,6,19.9,-74.5,tropical storm,NA,45,1000,NA,NA +Eloise,1975,9,18,12,19.9,-75.7,tropical storm,NA,40,1000,NA,NA +Eloise,1975,9,18,18,20,-77,tropical storm,NA,40,1000,NA,NA +Eloise,1975,9,19,0,20,-78.2,tropical storm,NA,35,1000,NA,NA +Eloise,1975,9,19,6,19.9,-79.1,tropical storm,NA,35,1000,NA,NA +Eloise,1975,9,19,12,19.9,-79.8,tropical storm,NA,35,1000,NA,NA +Eloise,1975,9,19,18,19.8,-81,tropical storm,NA,35,1000,NA,NA +Eloise,1975,9,20,0,19.8,-82.2,tropical storm,NA,35,1000,NA,NA +Eloise,1975,9,20,6,19.8,-83.4,tropical storm,NA,35,1000,NA,NA +Eloise,1975,9,20,12,19.9,-84.6,tropical storm,NA,35,1006,NA,NA +Eloise,1975,9,20,18,20,-85.5,tropical storm,NA,35,1006,NA,NA +Eloise,1975,9,21,0,20.2,-86.4,tropical storm,NA,40,1001,NA,NA +Eloise,1975,9,21,6,20.8,-87.1,tropical storm,NA,45,1001,NA,NA +Eloise,1975,9,21,12,21.4,-87.8,tropical storm,NA,50,1001,NA,NA +Eloise,1975,9,21,18,22.4,-88.5,tropical storm,NA,55,995,NA,NA +Eloise,1975,9,22,0,23.6,-88.9,tropical storm,NA,60,995,NA,NA +Eloise,1975,9,22,6,24.8,-89.4,hurricane,1,65,993,NA,NA +Eloise,1975,9,22,12,25.8,-89.5,hurricane,1,75,986,NA,NA +Eloise,1975,9,22,18,26.5,-89.4,hurricane,2,85,980,NA,NA +Eloise,1975,9,23,0,27.3,-88.5,hurricane,2,95,968,NA,NA +Eloise,1975,9,23,6,28.4,-87.3,hurricane,3,105,958,NA,NA +Eloise,1975,9,23,12,30.2,-86.3,hurricane,3,110,955,NA,NA +Eloise,1975,9,23,18,33,-85.7,tropical storm,NA,55,982,NA,NA +Eloise,1975,9,24,0,35.5,-84.3,tropical depression,NA,30,999,NA,NA +Eloise,1975,9,24,6,36.5,-83.5,extratropical,NA,20,1004,NA,NA +Eloise,1975,9,24,12,37,-82.5,extratropical,NA,20,1004,NA,NA +Eloise,1975,9,24,18,37.5,-81.5,extratropical,NA,20,1004,NA,NA +Faye,1975,9,24,18,23,-56.9,tropical depression,NA,25,1005,NA,NA +Faye,1975,9,25,0,23.8,-57.2,tropical depression,NA,30,1005,NA,NA +Faye,1975,9,25,6,24.2,-58.1,tropical storm,NA,35,1005,NA,NA +Faye,1975,9,25,12,24.8,-58.8,tropical storm,NA,45,999,NA,NA +Faye,1975,9,25,18,25.5,-59.4,tropical storm,NA,60,993,NA,NA +Faye,1975,9,26,0,26.5,-60,hurricane,1,65,990,NA,NA +Faye,1975,9,26,6,27.9,-60.9,hurricane,1,70,988,NA,NA +Faye,1975,9,26,12,29.6,-62,hurricane,1,75,985,NA,NA +Faye,1975,9,26,18,31,-63.1,hurricane,2,85,985,NA,NA +Faye,1975,9,27,0,32.7,-64.2,hurricane,2,90,985,NA,NA +Faye,1975,9,27,6,34.4,-65.2,hurricane,2,90,979,NA,NA +Faye,1975,9,27,12,36.1,-65.7,hurricane,2,90,982,NA,NA +Faye,1975,9,27,18,37.4,-65,hurricane,2,90,985,NA,NA +Faye,1975,9,28,0,38.4,-63.7,hurricane,2,85,985,NA,NA +Faye,1975,9,28,6,39.8,-60.5,hurricane,1,80,985,NA,NA +Faye,1975,9,28,12,41,-57.1,hurricane,1,75,979,NA,NA +Faye,1975,9,28,18,42.3,-52,hurricane,1,75,977,NA,NA +Faye,1975,9,29,0,42.8,-46,hurricane,1,70,977,NA,NA +Faye,1975,9,29,6,42.9,-40,hurricane,1,65,977,NA,NA +Gladys,1975,9,22,18,10.3,-34.8,tropical depression,NA,25,1012,NA,NA +Gladys,1975,9,23,0,10.6,-35.8,tropical depression,NA,25,1012,NA,NA +Gladys,1975,9,23,6,11,-36.7,tropical depression,NA,25,1012,NA,NA +Gladys,1975,9,23,12,11.4,-37.4,tropical depression,NA,25,1012,NA,NA +Gladys,1975,9,23,18,11.7,-38.2,tropical depression,NA,30,1010,NA,NA +Gladys,1975,9,24,0,12.1,-38.8,tropical depression,NA,30,1010,NA,NA +Gladys,1975,9,24,6,12.4,-39.6,tropical depression,NA,30,1010,NA,NA +Gladys,1975,9,24,12,12.9,-40,tropical depression,NA,30,1010,NA,NA +Gladys,1975,9,24,18,13.5,-40.4,tropical storm,NA,35,1005,NA,NA +Gladys,1975,9,25,0,14.2,-41,tropical storm,NA,40,1005,NA,NA +Gladys,1975,9,25,6,14.8,-42,tropical storm,NA,50,1000,NA,NA +Gladys,1975,9,25,12,15.4,-43,tropical storm,NA,60,1000,NA,NA +Gladys,1975,9,25,18,15.8,-44,hurricane,1,65,990,NA,NA +Gladys,1975,9,26,0,16.2,-45,hurricane,1,65,990,NA,NA +Gladys,1975,9,26,6,16.4,-46.1,hurricane,1,65,990,NA,NA +Gladys,1975,9,26,12,16.6,-47.7,hurricane,1,65,990,NA,NA +Gladys,1975,9,26,18,16.8,-49.3,hurricane,1,65,990,NA,NA +Gladys,1975,9,27,0,17.1,-50.7,hurricane,1,65,990,NA,NA +Gladys,1975,9,27,6,17.6,-52.2,hurricane,1,65,990,NA,NA +Gladys,1975,9,27,12,18.2,-53.7,hurricane,1,65,990,NA,NA +Gladys,1975,9,27,18,18.8,-55.1,hurricane,1,65,990,NA,NA +Gladys,1975,9,28,0,19.4,-56.4,hurricane,1,65,992,NA,NA +Gladys,1975,9,28,6,19.6,-57.4,hurricane,1,65,992,NA,NA +Gladys,1975,9,28,12,19.8,-58.2,hurricane,1,65,1000,NA,NA +Gladys,1975,9,28,18,20.3,-59.3,hurricane,1,65,998,NA,NA +Gladys,1975,9,29,0,21.2,-60.3,hurricane,1,65,995,NA,NA +Gladys,1975,9,29,6,22.1,-61.4,hurricane,1,70,990,NA,NA +Gladys,1975,9,29,12,23,-62.6,hurricane,1,70,990,NA,NA +Gladys,1975,9,29,18,23.6,-63.9,hurricane,1,75,985,NA,NA +Gladys,1975,9,30,0,24.1,-65.2,hurricane,1,80,975,NA,NA +Gladys,1975,9,30,6,24.6,-66.5,hurricane,1,80,975,NA,NA +Gladys,1975,9,30,12,25.1,-67.9,hurricane,1,80,975,NA,NA +Gladys,1975,9,30,18,25.6,-69.3,hurricane,1,80,975,NA,NA +Gladys,1975,10,1,0,26.1,-70.6,hurricane,1,80,975,NA,NA +Gladys,1975,10,1,6,26.8,-71.7,hurricane,1,80,975,NA,NA +Gladys,1975,10,1,12,27.9,-72.4,hurricane,1,80,975,NA,NA +Gladys,1975,10,1,18,29.4,-73,hurricane,2,90,969,NA,NA +Gladys,1975,10,2,0,31,-73,hurricane,3,100,954,NA,NA +Gladys,1975,10,2,6,32.9,-72.1,hurricane,3,110,942,NA,NA +Gladys,1975,10,2,12,35.3,-69.8,hurricane,4,120,939,NA,NA +Gladys,1975,10,2,18,37.8,-67,hurricane,4,120,939,NA,NA +Gladys,1975,10,3,0,40.8,-62.6,hurricane,3,110,950,NA,NA +Gladys,1975,10,3,6,43.7,-57,hurricane,2,85,960,NA,NA +Gladys,1975,10,3,12,46.6,-50.6,hurricane,2,85,960,NA,NA +Gladys,1975,10,3,18,50.5,-45.5,extratropical,NA,75,975,NA,NA +Gladys,1975,10,4,0,55,-40,extratropical,NA,65,980,NA,NA +Hallie,1975,10,24,18,29.1,-79.3,subtropical depression,NA,30,1006,NA,NA +Hallie,1975,10,25,0,28.8,-79,subtropical depression,NA,30,1006,NA,NA +Hallie,1975,10,25,6,29.4,-79.4,subtropical depression,NA,30,1006,NA,NA +Hallie,1975,10,25,12,30,-79.7,subtropical depression,NA,30,1006,NA,NA +Hallie,1975,10,25,18,30.2,-79.8,subtropical depression,NA,30,1006,NA,NA +Hallie,1975,10,26,0,30.5,-79.9,subtropical depression,NA,30,1006,NA,NA +Hallie,1975,10,26,6,30.9,-80.1,tropical depression,NA,30,1006,NA,NA +Hallie,1975,10,26,12,31.8,-79.6,tropical depression,NA,30,1005,NA,NA +Hallie,1975,10,26,18,32.5,-78.7,tropical storm,NA,35,1003,NA,NA +Hallie,1975,10,27,0,33.5,-77.5,tropical storm,NA,45,1002,NA,NA +Hallie,1975,10,27,6,34.5,-75.5,tropical storm,NA,45,1002,NA,NA +Hallie,1975,10,27,12,35.7,-73.8,tropical storm,NA,45,1004,NA,NA +Hallie,1975,10,27,18,36.4,-72.6,extratropical,NA,40,1006,NA,NA +Hallie,1975,10,28,0,36.9,-71.4,extratropical,NA,35,1008,NA,NA +Belle,1976,8,6,6,26,-72.8,tropical depression,NA,25,1012,NA,NA +Belle,1976,8,6,12,26.3,-73,tropical depression,NA,25,1012,NA,NA +Belle,1976,8,6,18,26,-73.4,tropical depression,NA,30,1009,NA,NA +Belle,1976,8,7,0,25.6,-73.2,tropical storm,NA,40,1005,NA,NA +Belle,1976,8,7,6,26,-73.2,tropical storm,NA,45,1000,NA,NA +Belle,1976,8,7,12,26.2,-73.7,tropical storm,NA,55,993,NA,NA +Belle,1976,8,7,18,26.6,-74.2,hurricane,1,70,985,NA,NA +Belle,1976,8,8,0,26.9,-74.6,hurricane,1,80,972,NA,NA +Belle,1976,8,8,6,27.4,-75.1,hurricane,2,90,962,NA,NA +Belle,1976,8,8,12,28.1,-75.1,hurricane,2,95,959,NA,NA +Belle,1976,8,8,18,29.5,-75.3,hurricane,3,100,958,NA,NA +Belle,1976,8,9,0,30.9,-75.3,hurricane,3,105,957,NA,NA +Belle,1976,8,9,6,32.5,-75.2,hurricane,3,105,959,NA,NA +Belle,1976,8,9,12,34.4,-74.7,hurricane,2,95,963,NA,NA +Belle,1976,8,9,18,36.6,-74.2,hurricane,2,90,970,NA,NA +Belle,1976,8,10,0,38.8,-73.8,hurricane,1,80,977,NA,NA +Belle,1976,8,10,6,41,-73.2,tropical storm,NA,60,983,NA,NA +Belle,1976,8,10,12,42.6,-72.4,tropical storm,NA,35,992,NA,NA +Dottie,1976,8,18,0,26,-84,tropical depression,NA,20,1010,NA,NA +Dottie,1976,8,18,12,24.7,-82.7,tropical depression,NA,20,1009,NA,NA +Dottie,1976,8,19,6,24.8,-82,tropical depression,NA,30,1003,NA,NA +Dottie,1976,8,19,18,26.6,-80.1,tropical storm,NA,35,1006,NA,NA +Dottie,1976,8,20,6,29.6,-80,tropical storm,NA,45,996,NA,NA +Dottie,1976,8,20,12,30.6,-80,tropical storm,NA,40,999,NA,NA +Dottie,1976,8,20,18,32,-80,tropical storm,NA,35,1005,NA,NA +Dottie,1976,8,21,0,33,-80,tropical storm,NA,35,1005,NA,NA +Dottie,1976,8,21,6,33.3,-80,tropical depression,NA,25,1010,NA,NA +Dottie,1976,8,21,12,33.5,-80,tropical depression,NA,20,1015,NA,NA +Candice,1976,8,18,12,31.7,-68.2,tropical depression,NA,30,1007,NA,NA +Candice,1976,8,18,18,33.4,-67.5,tropical storm,NA,35,1003,NA,NA +Candice,1976,8,19,0,35.2,-66.4,tropical storm,NA,40,996,NA,NA +Candice,1976,8,19,18,38.2,-64,tropical storm,NA,40,999,NA,NA +Candice,1976,8,20,0,38.8,-63.7,tropical storm,NA,35,1005,NA,NA +Candice,1976,8,20,6,39.7,-63.3,tropical storm,NA,35,1005,NA,NA +Candice,1976,8,20,18,40.8,-61,tropical storm,NA,40,997,NA,NA +Candice,1976,8,21,6,41.2,-59.3,hurricane,1,65,993,NA,NA +Candice,1976,8,21,12,41,-59,hurricane,1,65,989,NA,NA +Candice,1976,8,22,18,41.3,-56.4,hurricane,1,80,964,NA,NA +Candice,1976,8,23,18,44.4,-51.2,hurricane,1,80,971,NA,NA +Emmy,1976,8,20,12,14,-48,tropical depression,NA,20,1012,NA,NA +Emmy,1976,8,21,12,14.4,-52.8,tropical depression,NA,25,1012,NA,NA +Emmy,1976,8,22,0,15.2,-54.2,tropical depression,NA,25,1010,NA,NA +Emmy,1976,8,22,6,15.8,-55.2,tropical depression,NA,30,1009,NA,NA +Emmy,1976,8,22,12,16.2,-56,tropical storm,NA,35,1006,NA,NA +Emmy,1976,8,22,18,17,-57.2,tropical storm,NA,40,1004,NA,NA +Emmy,1976,8,23,6,18.6,-60,tropical storm,NA,50,997,NA,NA +Emmy,1976,8,23,18,20.2,-62,tropical storm,NA,55,996,NA,NA +Emmy,1976,8,24,0,21.3,-63.2,tropical storm,NA,55,998,NA,NA +Emmy,1976,8,24,6,22.7,-64,tropical storm,NA,55,999,NA,NA +Emmy,1976,8,24,12,23.8,-64.5,tropical storm,NA,55,999,NA,NA +Emmy,1976,8,24,18,24.5,-64.8,tropical storm,NA,60,995,NA,NA +Emmy,1976,8,25,6,26,-63.4,tropical storm,NA,60,991,NA,NA +Emmy,1976,8,25,12,26.5,-62.1,hurricane,1,65,990,NA,NA +Emmy,1976,8,25,18,26.6,-60.4,hurricane,1,65,991,NA,NA +Emmy,1976,8,26,0,26.8,-59,hurricane,1,70,988,NA,NA +Emmy,1976,8,26,6,27,-57.8,hurricane,1,75,984,NA,NA +Emmy,1976,8,26,12,27.2,-56.2,hurricane,1,80,980,NA,NA +Emmy,1976,8,26,18,27.7,-54.8,hurricane,2,85,976,NA,NA +Emmy,1976,8,27,12,30.9,-53.7,hurricane,2,85,975,NA,NA +Emmy,1976,8,28,12,33.5,-56.6,hurricane,2,85,975,NA,NA +Emmy,1976,8,29,12,35,-56.8,hurricane,2,90,974,NA,NA +Emmy,1976,8,30,12,34.9,-52,hurricane,2,90,975,NA,NA +Emmy,1976,8,31,12,35.1,-44.9,hurricane,2,85,977,NA,NA +Emmy,1976,9,1,12,35.1,-36.6,hurricane,1,80,975,NA,NA +Emmy,1976,9,3,0,35.2,-28.7,hurricane,1,75,980,NA,NA +Emmy,1976,9,3,18,38,-27.2,hurricane,1,70,984,NA,NA +Emmy,1976,9,4,0,38.8,-26.8,hurricane,1,65,988,NA,NA +Emmy,1976,9,4,6,39.6,-25.8,hurricane,1,65,994,NA,NA +Emmy,1976,9,4,12,40.5,-25,extratropical,NA,50,998,NA,NA +Emmy,1976,9,4,18,41,-24,extratropical,NA,30,1002,NA,NA +Frances,1976,8,27,12,12.5,-37.5,tropical depression,NA,25,1009,NA,NA +Frances,1976,8,28,18,14.7,-45.3,tropical storm,NA,50,1002,NA,NA +Frances,1976,8,29,12,16.6,-49.6,tropical storm,NA,50,998,NA,NA +Frances,1976,8,29,18,17.5,-50.5,tropical storm,NA,60,994,NA,NA +Frances,1976,8,30,0,18.3,-51.6,hurricane,1,65,991,NA,NA +Frances,1976,8,30,18,20.2,-54.2,hurricane,1,65,987,NA,NA +Frances,1976,8,31,0,21,-54.9,hurricane,1,65,980,NA,NA +Frances,1976,8,31,12,23.1,-55.2,hurricane,1,75,975,NA,NA +Frances,1976,9,1,0,25.3,-54.9,hurricane,2,90,968,NA,NA +Frances,1976,9,1,6,26.3,-54.3,hurricane,3,100,963,NA,NA +Frances,1976,9,1,12,27.2,-53.7,hurricane,2,95,966,NA,NA +Frances,1976,9,4,0,32,-37.2,hurricane,1,65,992,NA,NA +Frances,1976,9,4,12,34.9,-34.1,extratropical,NA,55,992,NA,NA +Frances,1976,9,6,18,41.9,-27.6,extratropical,NA,45,998,NA,NA +Gloria,1976,9,26,12,23,-58,tropical depression,NA,20,1009,NA,NA +Gloria,1976,9,26,18,23.7,-58.1,tropical depression,NA,20,1007,NA,NA +Gloria,1976,9,27,0,24.3,-58.2,tropical depression,NA,25,1005,NA,NA +Gloria,1976,9,27,6,24.9,-58.1,tropical depression,NA,30,1001,NA,NA +Gloria,1976,9,27,12,25.7,-58,tropical storm,NA,35,997,NA,NA +Gloria,1976,9,27,18,26.3,-58,tropical storm,NA,45,994,NA,NA +Gloria,1976,9,28,0,27,-58,tropical storm,NA,55,993,NA,NA +Gloria,1976,9,28,6,27.5,-58.2,tropical storm,NA,60,992,NA,NA +Gloria,1976,9,28,12,27.8,-58.6,tropical storm,NA,60,992,NA,NA +Gloria,1976,9,28,18,28.2,-59,tropical storm,NA,60,991,NA,NA +Gloria,1976,9,29,0,28.6,-59.5,tropical storm,NA,60,988,NA,NA +Gloria,1976,9,29,6,29.1,-59.8,hurricane,1,65,984,NA,NA +Gloria,1976,9,29,12,29.7,-60.2,hurricane,1,65,979,NA,NA +Gloria,1976,9,29,18,30.2,-60.3,hurricane,1,70,973,NA,NA +Gloria,1976,9,30,0,31.1,-60.2,hurricane,1,80,970,NA,NA +Gloria,1976,9,30,6,32.2,-59.8,hurricane,2,85,971,NA,NA +Gloria,1976,9,30,12,33.1,-58.8,hurricane,2,90,977,NA,NA +Gloria,1976,9,30,18,34,-57.5,hurricane,2,90,981,NA,NA +Gloria,1976,10,1,0,34.7,-56.1,hurricane,2,90,985,NA,NA +Gloria,1976,10,1,6,35.3,-54.8,hurricane,2,85,988,NA,NA +Gloria,1976,10,1,12,35.7,-53.7,hurricane,1,80,990,NA,NA +Gloria,1976,10,1,18,36.1,-52.6,hurricane,1,75,992,NA,NA +Gloria,1976,10,2,0,36.4,-51.7,hurricane,1,70,993,NA,NA +Gloria,1976,10,2,6,36.6,-50.8,tropical storm,NA,60,994,NA,NA +Gloria,1976,10,2,12,36.8,-49.9,tropical storm,NA,60,995,NA,NA +Gloria,1976,10,2,18,36.9,-49,tropical storm,NA,55,996,NA,NA +Gloria,1976,10,3,0,36.8,-48.3,tropical storm,NA,50,997,NA,NA +Gloria,1976,10,3,6,36.4,-47.6,tropical storm,NA,45,998,NA,NA +Gloria,1976,10,3,12,36.2,-46.9,tropical storm,NA,40,999,NA,NA +Gloria,1976,10,3,18,35.8,-45.8,tropical storm,NA,40,1001,NA,NA +Gloria,1976,10,4,0,35.7,-44.6,tropical storm,NA,35,1002,NA,NA +Gloria,1976,10,4,6,36,-43,tropical depression,NA,30,1003,NA,NA +Gloria,1976,10,4,12,36.5,-41.4,tropical depression,NA,30,1005,NA,NA +Gloria,1976,10,4,18,37.4,-38.7,tropical depression,NA,30,1006,NA,NA +Gloria,1976,10,5,0,39,-35,extratropical,NA,30,1008,NA,NA +Holly,1976,10,22,18,19.1,-55.8,tropical depression,NA,25,1006,NA,NA +Holly,1976,10,23,18,22.5,-58,tropical storm,NA,35,1002,NA,NA +Holly,1976,10,24,6,24.2,-58.2,tropical storm,NA,45,995,NA,NA +Holly,1976,10,24,12,24.9,-58.1,hurricane,1,65,990,NA,NA +Holly,1976,10,25,0,27.2,-57.5,hurricane,1,65,995,NA,NA +Holly,1976,10,25,12,30.4,-55.7,tropical storm,NA,50,1000,NA,NA +Holly,1976,10,29,0,46.5,-30,extratropical,NA,35,1000,NA,NA +Anita,1977,8,29,12,26.9,-88.4,tropical depression,NA,20,1012,NA,NA +Anita,1977,8,29,18,27,-88.9,tropical depression,NA,25,1010,NA,NA +Anita,1977,8,30,0,26.9,-89.4,tropical depression,NA,30,1009,NA,NA +Anita,1977,8,30,6,26.8,-89.8,tropical storm,NA,40,1006,NA,NA +Anita,1977,8,30,12,26.7,-90.3,tropical storm,NA,50,1003,NA,NA +Anita,1977,8,30,18,26.5,-90.6,hurricane,1,65,997,NA,NA +Anita,1977,8,31,0,26.4,-91,hurricane,1,70,991,NA,NA +Anita,1977,8,31,6,26.3,-91.4,hurricane,1,75,988,NA,NA +Anita,1977,8,31,12,26.2,-91.8,hurricane,1,75,986,NA,NA +Anita,1977,8,31,18,26.1,-92.3,hurricane,1,80,985,NA,NA +Anita,1977,9,1,0,25.9,-92.8,hurricane,1,80,979,NA,NA +Anita,1977,9,1,6,25.8,-93.7,hurricane,2,85,972,NA,NA +Anita,1977,9,1,12,25.5,-94.7,hurricane,2,90,963,NA,NA +Anita,1977,9,1,18,25.2,-95.5,hurricane,3,110,945,NA,NA +Anita,1977,9,2,0,24.6,-96.2,hurricane,5,140,931,NA,NA +Anita,1977,9,2,6,24.2,-97.1,hurricane,5,150,926,NA,NA +Anita,1977,9,2,12,23.7,-98,hurricane,4,120,940,NA,NA +Anita,1977,9,2,18,23.1,-99.2,hurricane,1,70,978,NA,NA +Anita,1977,9,3,0,22.5,-101,tropical storm,NA,40,998,NA,NA +Anita,1977,9,3,6,22,-103,tropical depression,NA,25,1011,NA,NA +Babe,1977,9,3,6,26.8,-86.3,subtropical depression,NA,25,1007,NA,NA +Babe,1977,9,3,18,27.6,-88.5,subtropical storm,NA,35,1005,NA,NA +Babe,1977,9,4,12,26.8,-91.7,subtropical storm,NA,45,1003,NA,NA +Babe,1977,9,4,18,27.5,-91.7,tropical storm,NA,50,1000,NA,NA +Babe,1977,9,5,6,28.7,-91.4,hurricane,1,65,995,NA,NA +Babe,1977,9,5,18,29.8,-91.6,tropical storm,NA,50,1000,NA,NA +Babe,1977,9,6,18,31.7,-89.4,tropical depression,NA,25,1004,NA,NA +Babe,1977,9,7,12,33.8,-87.1,tropical depression,NA,25,1008,NA,NA +Babe,1977,9,8,0,34.5,-84.8,tropical depression,NA,25,1010,NA,NA +Babe,1977,9,9,0,34.8,-80.2,tropical depression,NA,25,1012,NA,NA +Clara,1977,9,5,12,32.8,-80,tropical depression,NA,20,1015,NA,NA +Clara,1977,9,5,18,33.2,-79,tropical depression,NA,20,1014,NA,NA +Clara,1977,9,6,0,33.6,-78.2,tropical depression,NA,20,1013,NA,NA +Clara,1977,9,6,6,33.8,-77.6,tropical depression,NA,25,1012,NA,NA +Clara,1977,9,6,12,34,-77,tropical depression,NA,25,1011,NA,NA +Clara,1977,9,6,18,34.2,-76.4,tropical depression,NA,25,1010,NA,NA +Clara,1977,9,7,0,34.4,-75.8,tropical depression,NA,30,1010,NA,NA +Clara,1977,9,7,6,34.6,-75,tropical depression,NA,30,1010,NA,NA +Clara,1977,9,7,12,34.7,-74.3,tropical depression,NA,30,1010,NA,NA +Clara,1977,9,7,18,34.9,-73,tropical depression,NA,30,1010,NA,NA +Clara,1977,9,8,0,35.1,-71.7,tropical storm,NA,35,1006,NA,NA +Clara,1977,9,8,6,35.3,-69.7,tropical storm,NA,45,1001,NA,NA +Clara,1977,9,8,12,35.5,-67.7,hurricane,1,65,993,NA,NA +Clara,1977,9,8,18,35.6,-66.2,hurricane,1,65,994,NA,NA +Clara,1977,9,9,0,35.5,-64.6,hurricane,1,65,998,NA,NA +Clara,1977,9,9,6,34.8,-63.5,tropical storm,NA,60,1000,NA,NA +Clara,1977,9,9,12,34,-62.8,tropical storm,NA,55,999,NA,NA +Clara,1977,9,9,18,33.4,-62.8,tropical storm,NA,50,1001,NA,NA +Clara,1977,9,10,0,32.8,-63.2,tropical storm,NA,45,1000,NA,NA +Clara,1977,9,10,6,32.8,-63.6,tropical storm,NA,40,1000,NA,NA +Clara,1977,9,10,12,33,-63.8,tropical storm,NA,45,1001,NA,NA +Clara,1977,9,10,18,33.5,-63.7,tropical storm,NA,45,1001,NA,NA +Clara,1977,9,11,0,34.2,-63.2,tropical storm,NA,45,1002,NA,NA +Clara,1977,9,11,6,34.8,-62.5,tropical storm,NA,45,1002,NA,NA +Clara,1977,9,11,12,36,-61.5,extratropical,NA,45,1001,NA,NA +Clara,1977,9,11,18,38,-59.8,extratropical,NA,45,1001,NA,NA +Clara,1977,9,12,0,40.5,-57.5,extratropical,NA,45,1001,NA,NA +Dorothy,1977,9,26,18,28.5,-71.5,tropical depression,NA,20,1010,NA,NA +Dorothy,1977,9,27,0,29.5,-69.8,tropical depression,NA,20,1009,NA,NA +Dorothy,1977,9,27,6,30.2,-67.9,tropical depression,NA,30,1005,NA,NA +Dorothy,1977,9,27,12,30.9,-65.8,tropical storm,NA,40,1002,NA,NA +Dorothy,1977,9,27,18,31.9,-63.6,tropical storm,NA,45,1000,NA,NA +Dorothy,1977,9,28,0,33.2,-61.8,tropical storm,NA,50,996,NA,NA +Dorothy,1977,9,28,6,34.4,-60.8,tropical storm,NA,60,992,NA,NA +Dorothy,1977,9,28,12,35.5,-59.7,hurricane,1,65,988,NA,NA +Dorothy,1977,9,28,18,37,-58.8,hurricane,1,70,984,NA,NA +Dorothy,1977,9,29,0,38.3,-57,hurricane,1,75,980,NA,NA +Dorothy,1977,9,29,6,40,-55.5,hurricane,1,70,984,NA,NA +Dorothy,1977,9,29,12,42,-54,hurricane,1,65,988,NA,NA +Dorothy,1977,9,29,18,44.5,-53,extratropical,NA,60,990,NA,NA +Dorothy,1977,9,30,0,47,-51,extratropical,NA,50,995,NA,NA +Dorothy,1977,9,30,6,49.5,-48.5,extratropical,NA,45,1000,NA,NA +Evelyn,1977,10,13,18,26.9,-62.9,tropical depression,NA,30,1010,NA,NA +Evelyn,1977,10,14,0,29,-64,tropical depression,NA,30,1008,NA,NA +Evelyn,1977,10,14,6,30.9,-64.9,tropical storm,NA,35,1005,NA,NA +Evelyn,1977,10,14,12,33,-64.9,tropical storm,NA,40,1002,NA,NA +Evelyn,1977,10,14,18,35.9,-64.4,tropical storm,NA,50,999,NA,NA +Evelyn,1977,10,15,0,39.2,-63.3,hurricane,1,65,994,NA,NA +Evelyn,1977,10,15,6,42.4,-61.5,hurricane,1,70,996,NA,NA +Evelyn,1977,10,15,12,45.5,-60.1,hurricane,1,70,998,NA,NA +Evelyn,1977,10,15,18,47.4,-59.2,hurricane,1,70,999,NA,NA +Evelyn,1977,10,16,0,49.1,-58.3,extratropical,NA,45,1000,NA,NA +Frieda,1977,10,16,18,17.3,-83.2,tropical depression,NA,25,1011,NA,NA +Frieda,1977,10,17,0,17.3,-83.4,tropical depression,NA,30,1010,NA,NA +Frieda,1977,10,17,6,17.3,-83.6,tropical depression,NA,30,1009,NA,NA +Frieda,1977,10,17,12,17.2,-83.9,tropical storm,NA,40,1008,NA,NA +Frieda,1977,10,17,18,17.2,-84.4,tropical storm,NA,45,1007,NA,NA +Frieda,1977,10,18,0,17.3,-85,tropical storm,NA,50,1006,NA,NA +Frieda,1977,10,18,6,17.4,-85.8,tropical storm,NA,40,1005,NA,NA +Frieda,1977,10,18,12,17.5,-86.6,tropical depression,NA,30,1006,NA,NA +Frieda,1977,10,18,18,17.6,-87.4,tropical depression,NA,25,1008,NA,NA +Frieda,1977,10,19,0,17.6,-88.3,tropical depression,NA,20,1010,NA,NA +Amelia,1978,7,30,18,25.7,-97,tropical depression,NA,30,1006,NA,NA +Amelia,1978,7,31,0,26.4,-97.4,tropical storm,NA,45,1005,NA,NA +Amelia,1978,7,31,6,27.2,-97.8,tropical storm,NA,40,1007,NA,NA +Amelia,1978,7,31,12,28,-98.2,tropical storm,NA,35,1008,NA,NA +Amelia,1978,7,31,18,28.6,-98.7,tropical depression,NA,30,1010,NA,NA +Amelia,1978,8,1,0,29.3,-99.2,tropical depression,NA,25,1010,NA,NA +Bess,1978,8,5,12,25.3,-90.4,tropical depression,NA,20,1012,NA,NA +Bess,1978,8,5,18,25.1,-91,tropical depression,NA,20,1012,NA,NA +Bess,1978,8,6,0,24.8,-91.8,tropical depression,NA,25,1011,NA,NA +Bess,1978,8,6,6,24.5,-92.5,tropical depression,NA,30,1010,NA,NA +Bess,1978,8,6,12,24.2,-93.3,tropical depression,NA,30,1009,NA,NA +Bess,1978,8,6,18,23.9,-94,tropical storm,NA,35,1008,NA,NA +Bess,1978,8,7,0,23.3,-95,tropical storm,NA,40,1007,NA,NA +Bess,1978,8,7,6,22.8,-95.7,tropical storm,NA,40,1006,NA,NA +Bess,1978,8,7,12,22.2,-96.2,tropical storm,NA,40,1005,NA,NA +Bess,1978,8,7,18,21.6,-96.6,tropical storm,NA,45,1006,NA,NA +Bess,1978,8,8,0,21.1,-96.8,tropical storm,NA,45,1007,NA,NA +Bess,1978,8,8,6,20.4,-96.9,tropical storm,NA,40,1008,NA,NA +Bess,1978,8,8,12,20,-97,tropical depression,NA,25,1010,NA,NA +Cora,1978,8,7,12,13,-35,tropical depression,NA,25,1010,NA,NA +Cora,1978,8,7,18,13.4,-36.2,tropical depression,NA,25,1010,NA,NA +Cora,1978,8,8,0,13.8,-37.8,tropical depression,NA,25,1009,NA,NA +Cora,1978,8,8,6,13.9,-39.6,tropical depression,NA,30,1008,NA,NA +Cora,1978,8,8,12,14,-41.5,tropical storm,NA,50,1003,NA,NA +Cora,1978,8,8,18,14,-43.2,hurricane,1,65,990,NA,NA +Cora,1978,8,9,0,14,-44.9,hurricane,1,80,980,NA,NA +Cora,1978,8,9,6,13.9,-46.8,hurricane,1,80,980,NA,NA +Cora,1978,8,9,12,13.6,-48.6,hurricane,1,70,988,NA,NA +Cora,1978,8,9,18,13.2,-50.6,hurricane,1,65,998,NA,NA +Cora,1978,8,10,0,12.8,-52.8,tropical storm,NA,60,1006,NA,NA +Cora,1978,8,10,6,12.4,-54.8,tropical storm,NA,55,1007,NA,NA +Cora,1978,8,10,12,12.2,-56.8,tropical storm,NA,55,1007,NA,NA +Cora,1978,8,10,18,12.1,-58.8,tropical storm,NA,50,1008,NA,NA +Cora,1978,8,11,0,12,-60.9,tropical storm,NA,45,1008,NA,NA +Cora,1978,8,11,6,12,-62.8,tropical storm,NA,35,1008,NA,NA +Cora,1978,8,11,12,12.1,-64.8,tropical depression,NA,30,1008,NA,NA +Cora,1978,8,11,18,12.1,-66.8,tropical depression,NA,30,1009,NA,NA +Cora,1978,8,12,0,12.2,-68.8,tropical depression,NA,30,1010,NA,NA +Debra,1978,8,26,12,23.4,-88.4,tropical depression,NA,25,1010,NA,NA +Debra,1978,8,27,6,24.5,-91.4,tropical depression,NA,25,1008,NA,NA +Debra,1978,8,28,0,25.8,-93.8,tropical depression,NA,25,1006,NA,NA +Debra,1978,8,28,18,28.7,-94.1,tropical storm,NA,40,1002,NA,NA +Debra,1978,8,29,0,29.6,-93.6,tropical storm,NA,50,1000,NA,NA +Debra,1978,8,29,12,32,-93,tropical depression,NA,30,1002,NA,NA +Debra,1978,8,29,18,34.2,-92.7,tropical depression,NA,15,1005,NA,NA +Ella,1978,8,30,0,26.2,-59.7,tropical depression,NA,20,1012,NA,NA +Ella,1978,8,30,6,26.5,-60.8,tropical depression,NA,20,1011,NA,NA +Ella,1978,8,30,12,27,-62,tropical depression,NA,30,1010,NA,NA +Ella,1978,8,30,18,27.3,-63.1,tropical storm,NA,40,1005,NA,NA +Ella,1978,8,31,0,27.6,-64.2,tropical storm,NA,50,1000,NA,NA +Ella,1978,8,31,6,28.2,-65.9,tropical storm,NA,55,993,NA,NA +Ella,1978,8,31,12,28.8,-67.6,tropical storm,NA,60,986,NA,NA +Ella,1978,8,31,18,29.3,-68.8,hurricane,1,70,980,NA,NA +Ella,1978,9,1,0,29.6,-70,hurricane,2,90,978,NA,NA +Ella,1978,9,1,6,30.1,-71.1,hurricane,3,100,975,NA,NA +Ella,1978,9,1,12,30.7,-71.8,hurricane,3,110,970,NA,NA +Ella,1978,9,1,18,31.1,-72.3,hurricane,3,110,960,NA,NA +Ella,1978,9,2,0,31.2,-72.7,hurricane,3,105,960,NA,NA +Ella,1978,9,2,6,31.4,-73.1,hurricane,3,100,977,NA,NA +Ella,1978,9,2,12,31.6,-73.3,hurricane,1,80,981,NA,NA +Ella,1978,9,2,18,31.9,-73,hurricane,1,70,983,NA,NA +Ella,1978,9,3,0,32.3,-72.8,hurricane,1,70,983,NA,NA +Ella,1978,9,3,6,33,-72.4,hurricane,1,80,981,NA,NA +Ella,1978,9,3,12,33.8,-71.7,hurricane,2,85,976,NA,NA +Ella,1978,9,3,18,35,-70.2,hurricane,2,95,970,NA,NA +Ella,1978,9,4,0,36.2,-68.3,hurricane,3,110,962,NA,NA +Ella,1978,9,4,6,38,-66,hurricane,4,115,958,NA,NA +Ella,1978,9,4,12,40,-63,hurricane,4,120,956,NA,NA +Ella,1978,9,4,18,42.5,-59.5,hurricane,4,115,956,NA,NA +Ella,1978,9,5,0,45,-55,hurricane,3,105,960,NA,NA +Ella,1978,9,5,6,47.2,-50.2,hurricane,1,80,975,NA,NA +Ella,1978,9,5,12,49,-45,hurricane,1,65,980,NA,NA +Flossie,1978,9,4,0,12,-39,tropical depression,NA,25,1006,NA,NA +Flossie,1978,9,6,18,21.8,-56.8,tropical storm,NA,40,1003,NA,NA +Flossie,1978,9,7,12,22.2,-60,tropical storm,NA,40,1001,NA,NA +Flossie,1978,9,8,6,23.5,-62,tropical storm,NA,35,1005,NA,NA +Flossie,1978,9,8,18,25,-60.5,tropical depression,NA,30,1008,NA,NA +Flossie,1978,9,9,6,26.4,-59.2,tropical depression,NA,25,1010,NA,NA +Flossie,1978,9,10,6,28.6,-54.8,tropical depression,NA,30,1008,NA,NA +Flossie,1978,9,11,0,29.2,-50.5,tropical storm,NA,35,1005,NA,NA +Flossie,1978,9,11,6,29.9,-49.1,tropical storm,NA,45,1001,NA,NA +Flossie,1978,9,11,12,30.7,-47.5,tropical storm,NA,55,998,NA,NA +Flossie,1978,9,12,0,31.3,-44.7,tropical storm,NA,60,995,NA,NA +Flossie,1978,9,12,6,31.4,-44,hurricane,1,65,992,NA,NA +Flossie,1978,9,12,12,31.6,-43.5,hurricane,1,75,985,NA,NA +Flossie,1978,9,12,18,31.7,-43,hurricane,1,80,980,NA,NA +Flossie,1978,9,13,0,31.8,-42.9,hurricane,2,85,976,NA,NA +Flossie,1978,9,13,18,33.6,-43.1,hurricane,1,75,985,NA,NA +Flossie,1978,9,15,6,43.1,-35.9,hurricane,1,65,992,NA,NA +Flossie,1978,9,15,12,45.7,-32.8,tropical storm,NA,55,998,NA,NA +Flossie,1978,9,16,0,49.8,-24.3,extratropical,NA,45,1000,NA,NA +Hope,1978,9,12,0,29.8,-80,subtropical depression,NA,25,1012,NA,NA +Hope,1978,9,12,12,30.9,-78.6,subtropical depression,NA,25,1010,NA,NA +Hope,1978,9,13,0,31.1,-76.5,subtropical depression,NA,25,1010,NA,NA +Hope,1978,9,13,12,31.8,-74.2,subtropical depression,NA,25,1009,NA,NA +Hope,1978,9,14,0,32.8,-72.1,subtropical depression,NA,25,1008,NA,NA +Hope,1978,9,14,12,33.2,-68.7,subtropical depression,NA,30,1009,NA,NA +Hope,1978,9,15,0,32.9,-64.8,subtropical storm,NA,35,1008,NA,NA +Hope,1978,9,15,12,31.6,-62.1,subtropical storm,NA,35,1005,NA,NA +Hope,1978,9,16,0,31,-60.3,subtropical storm,NA,35,1002,NA,NA +Hope,1978,9,17,6,33,-54.8,tropical storm,NA,40,1000,NA,NA +Hope,1978,9,17,18,35,-51.8,tropical storm,NA,45,998,NA,NA +Hope,1978,9,18,6,37,-47.8,tropical storm,NA,50,995,NA,NA +Hope,1978,9,18,18,39.1,-43,tropical storm,NA,55,990,NA,NA +Hope,1978,9,19,12,42.5,-36.5,tropical storm,NA,55,987,NA,NA +Hope,1978,9,20,0,45.5,-33,tropical storm,NA,55,990,NA,NA +Hope,1978,9,21,0,57,-30,tropical storm,NA,50,995,NA,NA +Greta,1978,9,14,18,13,-69,tropical storm,NA,35,1004,NA,NA +Greta,1978,9,15,18,13.7,-74.2,tropical storm,NA,50,1000,NA,NA +Greta,1978,9,16,0,13.8,-75.3,tropical storm,NA,55,995,NA,NA +Greta,1978,9,16,12,14,-77.7,hurricane,1,70,989,NA,NA +Greta,1978,9,17,0,14.6,-79.6,hurricane,1,80,982,NA,NA +Greta,1978,9,17,12,15.2,-81.6,hurricane,2,90,974,NA,NA +Greta,1978,9,17,18,15.5,-82.6,hurricane,2,95,968,NA,NA +Greta,1978,9,18,0,15.6,-83.4,hurricane,3,110,952,NA,NA +Greta,1978,9,18,6,15.8,-84.3,hurricane,4,115,947,NA,NA +Greta,1978,9,18,12,16.4,-85.6,hurricane,3,105,957,NA,NA +Greta,1978,9,18,18,16.6,-86.9,hurricane,3,100,964,NA,NA +Greta,1978,9,19,0,17,-88.2,hurricane,2,95,964,NA,NA +Irma,1978,10,2,12,31.7,-31.5,subtropical depression,NA,30,1010,NA,NA +Irma,1978,10,2,18,32,-31.5,subtropical depression,NA,30,1006,NA,NA +Irma,1978,10,4,12,35.1,-31.5,tropical storm,NA,40,1004,NA,NA +Irma,1978,10,4,18,35.8,-31.4,tropical storm,NA,45,1002,NA,NA +Irma,1978,10,5,0,36.7,-31.2,tropical storm,NA,45,1001,NA,NA +Irma,1978,10,5,6,38.2,-30.4,tropical storm,NA,40,1002,NA,NA +Juliet,1978,10,7,18,18,-55.6,tropical depression,NA,25,1011,NA,NA +Juliet,1978,10,8,0,18.3,-56.6,tropical depression,NA,30,1010,NA,NA +Juliet,1978,10,8,6,18.6,-57.7,tropical depression,NA,30,1009,NA,NA +Juliet,1978,10,8,12,18.8,-58.7,tropical storm,NA,35,1008,NA,NA +Juliet,1978,10,8,18,19,-59.8,tropical storm,NA,40,1007,NA,NA +Juliet,1978,10,9,0,19.3,-60.9,tropical storm,NA,45,1006,NA,NA +Juliet,1978,10,9,6,19.7,-62,tropical storm,NA,45,1006,NA,NA +Juliet,1978,10,9,12,19.9,-63,tropical storm,NA,45,1006,NA,NA +Juliet,1978,10,9,18,20.3,-64.2,tropical storm,NA,45,1006,NA,NA +Juliet,1978,10,10,0,20.9,-65.4,tropical storm,NA,45,1006,NA,NA +Juliet,1978,10,10,6,21.7,-67,tropical storm,NA,45,1006,NA,NA +Juliet,1978,10,10,12,22.8,-68.8,tropical storm,NA,45,1006,NA,NA +Juliet,1978,10,10,18,24.3,-70.1,tropical storm,NA,45,1006,NA,NA +Juliet,1978,10,11,0,26.2,-70.9,tropical storm,NA,45,1006,NA,NA +Juliet,1978,10,11,6,28.3,-71,tropical storm,NA,40,1006,NA,NA +Juliet,1978,10,11,12,30.2,-69.9,tropical storm,NA,35,1006,NA,NA +Kendra,1978,10,28,18,23.5,-72.7,tropical depression,NA,30,1008,NA,NA +Kendra,1978,10,29,0,24.2,-73.2,tropical storm,NA,40,1002,NA,NA +Kendra,1978,10,29,12,25.7,-73.7,tropical storm,NA,55,998,NA,NA +Kendra,1978,10,29,18,26.2,-74.1,hurricane,1,65,995,NA,NA +Kendra,1978,10,30,12,28.9,-72.6,hurricane,1,70,990,NA,NA +Kendra,1978,10,30,18,29.3,-72.3,hurricane,1,65,998,NA,NA +Kendra,1978,10,31,0,30,-72,tropical storm,NA,45,1006,NA,NA +Kendra,1978,11,1,6,33.7,-68.2,extratropical,NA,30,1008,NA,NA +Kendra,1978,11,1,12,35.2,-65.5,extratropical,NA,30,1006,NA,NA +Kendra,1978,11,1,18,38,-60.5,extratropical,NA,40,1002,NA,NA +Kendra,1978,11,3,0,46,-35,extratropical,NA,30,1004,NA,NA +Ana,1979,6,19,12,10,-45,tropical depression,NA,25,1011,NA,NA +Ana,1979,6,19,18,10.2,-46,tropical depression,NA,25,1011,NA,NA +Ana,1979,6,20,0,10.5,-47,tropical depression,NA,25,1010,NA,NA +Ana,1979,6,20,6,10.9,-48.1,tropical depression,NA,25,1010,NA,NA +Ana,1979,6,20,12,11.3,-49.2,tropical depression,NA,25,1010,NA,NA +Ana,1979,6,20,18,11.8,-50.2,tropical depression,NA,25,1009,NA,NA +Ana,1979,6,21,0,12.3,-51.1,tropical depression,NA,30,1009,NA,NA +Ana,1979,6,21,6,12.9,-51.9,tropical depression,NA,30,1008,NA,NA +Ana,1979,6,21,12,13.5,-52.7,tropical depression,NA,30,1008,NA,NA +Ana,1979,6,21,18,13.9,-53.5,tropical depression,NA,30,1007,NA,NA +Ana,1979,6,22,0,14.2,-54.7,tropical storm,NA,35,1007,NA,NA +Ana,1979,6,22,6,14.2,-55.8,tropical storm,NA,40,1005,NA,NA +Ana,1979,6,22,12,14.2,-56.9,tropical storm,NA,50,1006,NA,NA +Ana,1979,6,22,18,14.1,-58.3,tropical storm,NA,40,1008,NA,NA +Ana,1979,6,23,0,14.1,-59.8,tropical storm,NA,35,1010,NA,NA +Ana,1979,6,23,6,14,-61.3,tropical depression,NA,30,1012,NA,NA +Ana,1979,6,23,12,14,-62.8,tropical depression,NA,25,1012,NA,NA +Ana,1979,6,23,18,14,-64.5,tropical depression,NA,25,1012,NA,NA +Ana,1979,6,24,0,14,-66.2,tropical depression,NA,25,1012,NA,NA +Bob,1979,7,9,12,22,-96,tropical depression,NA,20,1012,NA,NA +Bob,1979,7,9,18,22.5,-95.3,tropical depression,NA,25,1010,NA,NA +Bob,1979,7,10,0,23,-94.6,tropical depression,NA,30,1007,NA,NA +Bob,1979,7,10,6,23.5,-93.8,tropical storm,NA,35,1004,NA,NA +Bob,1979,7,10,12,24,-93,tropical storm,NA,50,998,NA,NA +Bob,1979,7,10,18,25,-92.3,tropical storm,NA,55,996,NA,NA +Bob,1979,7,11,0,26.2,-91.6,hurricane,1,65,988,NA,NA +Bob,1979,7,11,6,27.8,-91.1,hurricane,1,65,991,NA,NA +Bob,1979,7,11,12,29.1,-90.6,hurricane,1,65,986,NA,NA +Bob,1979,7,11,18,31,-90.2,tropical storm,NA,40,992,NA,NA +Bob,1979,7,12,0,32.5,-89.9,tropical depression,NA,30,998,NA,NA +Bob,1979,7,12,6,34,-89.7,tropical depression,NA,25,1002,NA,NA +Bob,1979,7,12,12,35.9,-89.1,tropical depression,NA,25,1004,NA,NA +Bob,1979,7,12,18,37.2,-87.8,tropical depression,NA,25,1006,NA,NA +Bob,1979,7,13,0,38.5,-86.5,tropical depression,NA,25,1006,NA,NA +Bob,1979,7,13,6,38.8,-85.3,tropical depression,NA,25,1006,NA,NA +Bob,1979,7,13,12,39,-84,tropical depression,NA,25,1007,NA,NA +Bob,1979,7,13,18,39,-82.7,tropical depression,NA,25,1008,NA,NA +Bob,1979,7,14,0,39,-81.3,tropical depression,NA,20,1009,NA,NA +Bob,1979,7,14,6,38.7,-80.1,tropical depression,NA,20,1009,NA,NA +Bob,1979,7,14,12,38.3,-78.8,tropical depression,NA,20,1010,NA,NA +Bob,1979,7,14,18,37.9,-77.7,tropical depression,NA,20,1010,NA,NA +Bob,1979,7,15,0,37.5,-76.5,tropical depression,NA,20,1011,NA,NA +Bob,1979,7,15,6,36.8,-76.3,tropical depression,NA,20,1011,NA,NA +Bob,1979,7,15,12,36,-76,tropical depression,NA,20,1012,NA,NA +Bob,1979,7,15,18,35,-76.3,tropical depression,NA,20,1012,NA,NA +Bob,1979,7,16,0,34,-76.5,tropical depression,NA,20,1013,NA,NA +Bob,1979,7,16,6,33.5,-75.8,tropical depression,NA,20,1013,NA,NA +Bob,1979,7,16,12,33,-75,tropical depression,NA,20,1014,NA,NA +Claudette,1979,7,15,12,12.5,-46.3,tropical depression,NA,20,1014,NA,NA +Claudette,1979,7,15,18,12.8,-48.4,tropical depression,NA,20,1014,NA,NA +Claudette,1979,7,16,0,13.4,-50.4,tropical depression,NA,25,1012,NA,NA +Claudette,1979,7,16,6,14.6,-52.1,tropical depression,NA,25,1012,NA,NA +Claudette,1979,7,16,12,15.7,-53.8,tropical depression,NA,30,1011,NA,NA +Claudette,1979,7,16,18,16.5,-55.5,tropical depression,NA,30,1011,NA,NA +Claudette,1979,7,17,0,17,-57.2,tropical depression,NA,30,1011,NA,NA +Claudette,1979,7,17,6,17.5,-58.8,tropical depression,NA,30,1011,NA,NA +Claudette,1979,7,17,12,17.8,-60.3,tropical storm,NA,35,1011,NA,NA +Claudette,1979,7,17,18,18,-62.1,tropical storm,NA,40,1010,NA,NA +Claudette,1979,7,18,0,18.2,-63.8,tropical storm,NA,35,1010,NA,NA +Claudette,1979,7,18,6,18.3,-65.4,tropical depression,NA,30,1011,NA,NA +Claudette,1979,7,18,12,18.4,-67,tropical depression,NA,30,1011,NA,NA +Claudette,1979,7,18,18,18.5,-68.5,tropical depression,NA,25,1012,NA,NA +Claudette,1979,7,19,0,18.7,-69.5,tropical depression,NA,20,1012,NA,NA +Claudette,1979,7,19,6,18.8,-70.5,tropical depression,NA,20,1012,NA,NA +Claudette,1979,7,19,12,18.8,-71.4,tropical depression,NA,20,1012,NA,NA +Claudette,1979,7,19,18,19,-72.4,tropical depression,NA,20,1012,NA,NA +Claudette,1979,7,20,0,19,-73.3,tropical depression,NA,20,1013,NA,NA +Claudette,1979,7,20,6,19.2,-74.7,tropical depression,NA,20,1013,NA,NA +Claudette,1979,7,20,12,19.5,-76.7,tropical depression,NA,20,1013,NA,NA +Claudette,1979,7,20,18,20,-78.7,tropical depression,NA,20,1013,NA,NA +Claudette,1979,7,21,0,20.6,-80.4,tropical depression,NA,20,1013,NA,NA +Claudette,1979,7,21,6,21.4,-82.2,tropical depression,NA,25,1013,NA,NA +Claudette,1979,7,21,12,22.1,-83.5,tropical depression,NA,30,1012,NA,NA +Claudette,1979,7,21,18,22.8,-85,tropical depression,NA,30,1010,NA,NA +Claudette,1979,7,22,0,23.5,-86.5,tropical depression,NA,30,1007,NA,NA +Claudette,1979,7,22,6,24,-87.4,tropical depression,NA,30,1007,NA,NA +Claudette,1979,7,22,12,24.5,-88.5,tropical depression,NA,30,1007,NA,NA +Claudette,1979,7,22,18,25,-89.5,tropical depression,NA,30,1006,NA,NA +Claudette,1979,7,23,0,25.4,-90.5,tropical depression,NA,30,1005,NA,NA +Claudette,1979,7,23,6,25.9,-91.4,tropical depression,NA,30,1004,NA,NA +Claudette,1979,7,23,12,26.4,-92.4,tropical storm,NA,35,1003,NA,NA +Claudette,1979,7,23,18,26.9,-92.9,tropical storm,NA,35,1003,NA,NA +Claudette,1979,7,24,0,27.5,-93.4,tropical storm,NA,35,1003,NA,NA +Claudette,1979,7,24,6,28.3,-93.5,tropical storm,NA,40,1003,NA,NA +Claudette,1979,7,24,12,28.8,-93.7,tropical storm,NA,45,1002,NA,NA +Claudette,1979,7,24,18,29.6,-93.9,tropical storm,NA,45,1000,NA,NA +Claudette,1979,7,25,0,30.3,-93.9,tropical storm,NA,40,997,NA,NA +Claudette,1979,7,25,6,30.3,-94.3,tropical storm,NA,35,998,NA,NA +Claudette,1979,7,25,12,30.5,-94.8,tropical depression,NA,30,1000,NA,NA +Claudette,1979,7,25,18,30.5,-95.2,tropical depression,NA,30,1001,NA,NA +Claudette,1979,7,26,0,30.2,-95.3,tropical depression,NA,30,1001,NA,NA +Claudette,1979,7,26,6,30.6,-95.1,tropical depression,NA,30,1002,NA,NA +Claudette,1979,7,26,12,30.8,-95.4,tropical depression,NA,25,1003,NA,NA +Claudette,1979,7,26,18,31.3,-96.3,tropical depression,NA,25,1004,NA,NA +Claudette,1979,7,27,0,31.8,-96.6,tropical depression,NA,20,1004,NA,NA +Claudette,1979,7,27,6,32.7,-96.4,tropical depression,NA,20,1006,NA,NA +Claudette,1979,7,27,12,34,-95.9,tropical depression,NA,15,1007,NA,NA +Claudette,1979,7,27,18,35.3,-95.3,tropical depression,NA,15,1007,NA,NA +Claudette,1979,7,28,0,36.4,-94.6,tropical depression,NA,15,1007,NA,NA +Claudette,1979,7,28,6,37.8,-93.4,tropical depression,NA,15,1008,NA,NA +Claudette,1979,7,28,12,38.6,-91,tropical depression,NA,15,1009,NA,NA +Claudette,1979,7,28,18,38.8,-88,tropical depression,NA,15,1009,NA,NA +Claudette,1979,7,29,0,39,-85.2,tropical depression,NA,15,1010,NA,NA +Claudette,1979,7,29,6,39,-82.8,tropical depression,NA,15,1011,NA,NA +Claudette,1979,7,29,12,39,-80.2,tropical depression,NA,15,1011,NA,NA +David,1979,8,25,12,11.7,-36.1,tropical depression,NA,25,1008,NA,NA +David,1979,8,25,18,11.7,-38.2,tropical depression,NA,25,1007,NA,NA +David,1979,8,26,0,11.7,-40.3,tropical depression,NA,30,1006,NA,NA +David,1979,8,26,6,11.6,-42.2,tropical storm,NA,35,1005,NA,NA +David,1979,8,26,12,11.6,-44,tropical storm,NA,40,1003,NA,NA +David,1979,8,26,18,11.6,-45.5,tropical storm,NA,45,998,NA,NA +David,1979,8,27,0,11.7,-47,tropical storm,NA,55,990,NA,NA +David,1979,8,27,6,11.8,-48.5,hurricane,1,65,980,NA,NA +David,1979,8,27,12,11.8,-50,hurricane,1,80,966,NA,NA +David,1979,8,27,18,11.9,-51.5,hurricane,2,95,954,NA,NA +David,1979,8,28,0,12.2,-52.9,hurricane,4,115,947,NA,NA +David,1979,8,28,6,12.5,-54.4,hurricane,4,125,941,NA,NA +David,1979,8,28,12,12.8,-55.7,hurricane,4,130,938,NA,NA +David,1979,8,28,18,13.2,-56.9,hurricane,4,125,941,NA,NA +David,1979,8,29,0,13.7,-58,hurricane,4,120,944,NA,NA +David,1979,8,29,6,14.2,-59.2,hurricane,4,120,942,NA,NA +David,1979,8,29,12,14.8,-60.3,hurricane,4,125,938,NA,NA +David,1979,8,29,18,15.3,-61.6,hurricane,4,125,933,NA,NA +David,1979,8,30,0,15.6,-62.8,hurricane,4,130,929,NA,NA +David,1979,8,30,6,16,-64.2,hurricane,5,140,925,NA,NA +David,1979,8,30,12,16.3,-65.2,hurricane,5,145,924,NA,NA +David,1979,8,30,18,16.6,-66.2,hurricane,5,150,924,NA,NA +David,1979,8,31,0,16.8,-67.3,hurricane,5,145,927,NA,NA +David,1979,8,31,6,17,-68.3,hurricane,5,145,928,NA,NA +David,1979,8,31,12,17.2,-69.1,hurricane,5,145,927,NA,NA +David,1979,8,31,18,17.9,-69.7,hurricane,5,150,926,NA,NA +David,1979,9,1,0,18.8,-70.4,hurricane,4,130,953,NA,NA +David,1979,9,1,6,19.3,-72,hurricane,3,100,978,NA,NA +David,1979,9,1,12,19.7,-73.7,hurricane,1,65,1002,NA,NA +David,1979,9,1,18,20.6,-74.6,tropical storm,NA,60,1002,NA,NA +David,1979,9,2,0,21.3,-75.2,hurricane,1,65,997,NA,NA +David,1979,9,2,6,21.9,-75.5,hurricane,1,70,990,NA,NA +David,1979,9,2,12,23,-76.3,hurricane,1,70,984,NA,NA +David,1979,9,2,18,23.9,-77.4,hurricane,1,75,979,NA,NA +David,1979,9,3,0,24.6,-78.2,hurricane,1,80,976,NA,NA +David,1979,9,3,6,25.3,-79.1,hurricane,1,80,974,NA,NA +David,1979,9,3,12,26.3,-79.6,hurricane,2,85,973,NA,NA +David,1979,9,3,18,27.2,-80.2,hurricane,2,85,972,NA,NA +David,1979,9,4,0,28,-80.5,hurricane,2,85,971,NA,NA +David,1979,9,4,6,29.1,-80.8,hurricane,2,85,970,NA,NA +David,1979,9,4,12,30.2,-80.9,hurricane,2,85,970,NA,NA +David,1979,9,4,18,31.5,-81.2,hurricane,1,80,970,NA,NA +David,1979,9,5,0,32.5,-81.1,hurricane,1,65,972,NA,NA +David,1979,9,5,6,33.5,-80.9,tropical storm,NA,55,976,NA,NA +David,1979,9,5,12,34.9,-80.6,tropical storm,NA,45,980,NA,NA +David,1979,9,5,18,36.2,-80.1,tropical storm,NA,40,984,NA,NA +David,1979,9,6,0,37.6,-79.5,tropical storm,NA,40,987,NA,NA +David,1979,9,6,6,39.2,-78.5,tropical storm,NA,40,989,NA,NA +David,1979,9,6,12,41.5,-76.3,tropical storm,NA,40,991,NA,NA +David,1979,9,6,18,43.3,-73.7,extratropical,NA,40,992,NA,NA +David,1979,9,7,0,45,-70,extratropical,NA,45,991,NA,NA +David,1979,9,7,6,46.5,-66,extratropical,NA,50,988,NA,NA +David,1979,9,7,12,47.5,-61.5,extratropical,NA,50,987,NA,NA +David,1979,9,7,18,50,-57,extratropical,NA,55,986,NA,NA +David,1979,9,8,0,52.5,-52.5,extratropical,NA,60,985,NA,NA +Frederic,1979,8,29,6,11,-25.5,tropical depression,NA,25,1009,NA,NA +Frederic,1979,8,29,12,11.1,-28,tropical depression,NA,30,1009,NA,NA +Frederic,1979,8,29,18,11.2,-30.5,tropical depression,NA,30,1008,NA,NA +Frederic,1979,8,30,0,11.3,-32.5,tropical depression,NA,30,1007,NA,NA +Frederic,1979,8,30,6,11.4,-34.2,tropical depression,NA,30,1006,NA,NA +Frederic,1979,8,30,12,11.5,-36,tropical storm,NA,35,1005,NA,NA +Frederic,1979,8,30,18,11.6,-37.8,tropical storm,NA,40,1003,NA,NA +Frederic,1979,8,31,0,11.7,-39.7,tropical storm,NA,45,1000,NA,NA +Frederic,1979,8,31,6,11.8,-41.6,tropical storm,NA,50,997,NA,NA +Frederic,1979,8,31,12,11.9,-43.5,tropical storm,NA,55,994,NA,NA +Frederic,1979,8,31,18,12,-45.1,tropical storm,NA,55,991,NA,NA +Frederic,1979,9,1,0,12.5,-47,tropical storm,NA,60,988,NA,NA +Frederic,1979,9,1,6,12.9,-48.7,hurricane,1,65,987,NA,NA +Frederic,1979,9,1,12,13.3,-50.4,hurricane,1,65,988,NA,NA +Frederic,1979,9,1,18,13.8,-52.3,hurricane,1,65,990,NA,NA +Frederic,1979,9,2,0,14.3,-54.1,tropical storm,NA,60,992,NA,NA +Frederic,1979,9,2,6,14.9,-55.5,tropical storm,NA,60,994,NA,NA +Frederic,1979,9,2,12,15.5,-57.2,tropical storm,NA,60,996,NA,NA +Frederic,1979,9,2,18,16.3,-58.8,tropical storm,NA,55,999,NA,NA +Frederic,1979,9,3,0,16.7,-59.8,tropical storm,NA,55,1002,NA,NA +Frederic,1979,9,3,6,17.1,-60.8,tropical storm,NA,55,1000,NA,NA +Frederic,1979,9,3,12,17.5,-61.8,tropical storm,NA,50,999,NA,NA +Frederic,1979,9,3,18,17.8,-62.8,tropical storm,NA,50,1000,NA,NA +Frederic,1979,9,4,0,18,-63.8,tropical storm,NA,50,1002,NA,NA +Frederic,1979,9,4,6,18.1,-64.8,tropical storm,NA,45,1003,NA,NA +Frederic,1979,9,4,12,18.1,-65.8,tropical storm,NA,45,1004,NA,NA +Frederic,1979,9,4,18,18.1,-66.8,tropical storm,NA,45,1005,NA,NA +Frederic,1979,9,5,0,18,-67.8,tropical storm,NA,45,1006,NA,NA +Frederic,1979,9,5,6,17.5,-68.7,tropical storm,NA,45,1007,NA,NA +Frederic,1979,9,5,12,17.4,-69.2,tropical storm,NA,40,1008,NA,NA +Frederic,1979,9,5,18,17.8,-69.6,tropical storm,NA,40,1007,NA,NA +Frederic,1979,9,6,0,18.5,-69.9,tropical storm,NA,40,1005,NA,NA +Frederic,1979,9,6,6,19.4,-70.7,tropical storm,NA,35,1005,NA,NA +Frederic,1979,9,6,12,19.9,-71.8,tropical storm,NA,35,1006,NA,NA +Frederic,1979,9,6,18,20,-73,tropical depression,NA,30,1006,NA,NA +Frederic,1979,9,7,0,20.1,-74.5,tropical depression,NA,30,1006,NA,NA +Frederic,1979,9,7,6,20.3,-75.8,tropical depression,NA,25,1006,NA,NA +Frederic,1979,9,7,12,20.6,-77,tropical depression,NA,25,1005,NA,NA +Frederic,1979,9,7,18,20.9,-78,tropical depression,NA,25,1004,NA,NA +Frederic,1979,9,8,0,21.1,-78.7,tropical depression,NA,30,1003,NA,NA +Frederic,1979,9,8,6,21.3,-79.3,tropical depression,NA,30,1003,NA,NA +Frederic,1979,9,8,12,21.5,-79.8,tropical depression,NA,30,1002,NA,NA +Frederic,1979,9,8,18,21.6,-80.5,tropical depression,NA,30,1002,NA,NA +Frederic,1979,9,9,0,21.7,-81,tropical storm,NA,35,1001,NA,NA +Frederic,1979,9,9,6,21.8,-81.5,tropical storm,NA,40,1000,NA,NA +Frederic,1979,9,9,12,21.9,-82,tropical storm,NA,45,999,NA,NA +Frederic,1979,9,9,18,22,-82.5,tropical storm,NA,50,997,NA,NA +Frederic,1979,9,10,0,22.4,-83,tropical storm,NA,55,995,NA,NA +Frederic,1979,9,10,6,22.7,-83.3,tropical storm,NA,60,992,NA,NA +Frederic,1979,9,10,12,22.8,-83.6,hurricane,1,65,990,NA,NA +Frederic,1979,9,10,18,23,-83.8,hurricane,1,70,987,NA,NA +Frederic,1979,9,11,0,23.3,-84,hurricane,1,75,985,NA,NA +Frederic,1979,9,11,6,23.8,-84.4,hurricane,1,80,983,NA,NA +Frederic,1979,9,11,12,24.4,-84.8,hurricane,2,85,980,NA,NA +Frederic,1979,9,11,18,25,-85.2,hurricane,2,95,968,NA,NA +Frederic,1979,9,12,0,25.7,-85.8,hurricane,3,100,960,NA,NA +Frederic,1979,9,12,6,26.5,-86.4,hurricane,3,110,952,NA,NA +Frederic,1979,9,12,12,27.4,-87,hurricane,4,115,943,NA,NA +Frederic,1979,9,12,18,28.4,-87.7,hurricane,4,115,950,NA,NA +Frederic,1979,9,13,0,29.7,-88,hurricane,4,115,946,NA,NA +Frederic,1979,9,13,6,30.8,-88.5,hurricane,2,95,955,NA,NA +Frederic,1979,9,13,12,32.2,-88.7,hurricane,1,65,975,NA,NA +Frederic,1979,9,13,18,34,-88,tropical storm,NA,45,985,NA,NA +Frederic,1979,9,14,0,35.2,-87,tropical storm,NA,40,990,NA,NA +Frederic,1979,9,14,6,37,-84.5,tropical storm,NA,35,996,NA,NA +Frederic,1979,9,14,12,39.5,-81,tropical storm,NA,35,997,NA,NA +Frederic,1979,9,14,18,42.5,-76,extratropical,NA,30,998,NA,NA +Frederic,1979,9,15,0,48,-68,extratropical,NA,30,988,NA,NA +Elena,1979,8,30,0,25.5,-89.1,tropical depression,NA,25,1008,NA,NA +Elena,1979,8,30,6,26,-89.9,tropical depression,NA,25,1008,NA,NA +Elena,1979,8,30,12,26.4,-90.7,tropical depression,NA,30,1007,NA,NA +Elena,1979,8,30,18,26.8,-91.8,tropical storm,NA,35,1006,NA,NA +Elena,1979,8,31,0,26.5,-93,tropical storm,NA,35,1004,NA,NA +Elena,1979,8,31,6,26.8,-93.8,tropical storm,NA,35,1006,NA,NA +Elena,1979,8,31,12,27,-94.2,tropical storm,NA,35,1008,NA,NA +Elena,1979,8,31,18,27.3,-94.7,tropical storm,NA,35,1008,NA,NA +Elena,1979,9,1,0,27.6,-95.1,tropical storm,NA,35,1008,NA,NA +Elena,1979,9,1,6,27.9,-95.5,tropical storm,NA,35,1008,NA,NA +Elena,1979,9,1,12,28.5,-95.8,tropical storm,NA,35,1008,NA,NA +Elena,1979,9,1,18,29,-95.8,tropical depression,NA,30,1008,NA,NA +Elena,1979,9,2,0,29.6,-95.8,tropical depression,NA,25,1008,NA,NA +Gloria,1979,9,4,12,15.5,-21,tropical depression,NA,25,1005,NA,NA +Gloria,1979,9,4,18,16.5,-22.5,tropical depression,NA,25,1004,NA,NA +Gloria,1979,9,5,0,17.5,-24,tropical depression,NA,25,1003,NA,NA +Gloria,1979,9,5,6,18.5,-25.5,tropical depression,NA,25,1002,NA,NA +Gloria,1979,9,5,12,19,-27,tropical depression,NA,30,1002,NA,NA +Gloria,1979,9,5,18,19.8,-28.8,tropical depression,NA,30,1002,NA,NA +Gloria,1979,9,6,0,20.5,-30.3,tropical depression,NA,30,1001,NA,NA +Gloria,1979,9,6,6,21.2,-32,tropical depression,NA,30,1001,NA,NA +Gloria,1979,9,6,12,22,-33.8,tropical storm,NA,35,1000,NA,NA +Gloria,1979,9,6,18,22.5,-35.5,tropical storm,NA,45,998,NA,NA +Gloria,1979,9,7,0,23.2,-36.8,tropical storm,NA,55,995,NA,NA +Gloria,1979,9,7,6,24.4,-37.2,hurricane,1,65,992,NA,NA +Gloria,1979,9,7,12,25.6,-38,hurricane,1,65,990,NA,NA +Gloria,1979,9,7,18,26.4,-38.7,hurricane,1,70,988,NA,NA +Gloria,1979,9,8,0,27,-39.2,hurricane,1,75,985,NA,NA +Gloria,1979,9,8,6,27.5,-40,hurricane,1,75,985,NA,NA +Gloria,1979,9,8,12,28,-40.3,hurricane,1,75,985,NA,NA +Gloria,1979,9,8,18,28.6,-41,hurricane,1,75,985,NA,NA +Gloria,1979,9,9,0,29.3,-41.7,hurricane,1,75,985,NA,NA +Gloria,1979,9,9,6,29.9,-42.5,hurricane,1,75,985,NA,NA +Gloria,1979,9,9,12,30.4,-43.2,hurricane,1,75,985,NA,NA +Gloria,1979,9,9,18,31,-44,hurricane,1,70,987,NA,NA +Gloria,1979,9,10,0,31.5,-45,hurricane,1,70,989,NA,NA +Gloria,1979,9,10,6,31.2,-45.8,hurricane,1,65,991,NA,NA +Gloria,1979,9,10,12,31,-46.8,hurricane,1,65,993,NA,NA +Gloria,1979,9,10,18,31.1,-47,tropical storm,NA,60,994,NA,NA +Gloria,1979,9,11,0,31.3,-47.4,tropical storm,NA,55,995,NA,NA +Gloria,1979,9,11,6,31.4,-47.9,tropical storm,NA,55,995,NA,NA +Gloria,1979,9,11,12,31.6,-48.1,tropical storm,NA,60,994,NA,NA +Gloria,1979,9,11,18,31.8,-48.4,hurricane,1,65,992,NA,NA +Gloria,1979,9,12,0,32.2,-48.6,hurricane,1,70,988,NA,NA +Gloria,1979,9,12,6,32.4,-48.6,hurricane,1,75,985,NA,NA +Gloria,1979,9,12,12,32.8,-48.3,hurricane,1,80,980,NA,NA +Gloria,1979,9,12,18,33.2,-47.8,hurricane,2,85,975,NA,NA +Gloria,1979,9,13,0,33.9,-47,hurricane,2,85,975,NA,NA +Gloria,1979,9,13,6,34.5,-46,hurricane,2,85,976,NA,NA +Gloria,1979,9,13,12,35,-45,hurricane,2,85,977,NA,NA +Gloria,1979,9,13,18,36,-43.8,hurricane,1,80,978,NA,NA +Gloria,1979,9,14,0,37,-41.5,hurricane,1,80,979,NA,NA +Gloria,1979,9,14,6,38.5,-39.5,hurricane,1,75,980,NA,NA +Gloria,1979,9,14,12,40.2,-37.8,hurricane,1,75,985,NA,NA +Gloria,1979,9,14,18,42,-35.8,hurricane,1,70,988,NA,NA +Gloria,1979,9,15,0,43.4,-34,hurricane,1,65,992,NA,NA +Gloria,1979,9,15,6,45,-32,extratropical,NA,60,994,NA,NA +Henri,1979,9,15,0,20.3,-86.8,tropical depression,NA,25,1003,NA,NA +Henri,1979,9,15,6,21.5,-86.9,tropical depression,NA,25,1003,NA,NA +Henri,1979,9,15,12,22.5,-87.4,tropical depression,NA,30,1003,NA,NA +Henri,1979,9,15,18,22.5,-88.5,tropical depression,NA,30,1003,NA,NA +Henri,1979,9,16,0,22.5,-89.7,tropical depression,NA,30,1003,NA,NA +Henri,1979,9,16,6,22.5,-91,tropical depression,NA,30,1002,NA,NA +Henri,1979,9,16,12,22.1,-92.2,tropical storm,NA,35,1001,NA,NA +Henri,1979,9,16,18,21.3,-93.1,tropical storm,NA,45,999,NA,NA +Henri,1979,9,17,0,20.2,-93.6,tropical storm,NA,55,995,NA,NA +Henri,1979,9,17,6,20.2,-94,hurricane,1,65,990,NA,NA +Henri,1979,9,17,12,20.4,-94.3,hurricane,1,75,983,NA,NA +Henri,1979,9,17,18,20.8,-94.6,hurricane,1,70,984,NA,NA +Henri,1979,9,18,0,20.9,-95,hurricane,1,65,992,NA,NA +Henri,1979,9,18,6,21,-95.4,tropical storm,NA,60,997,NA,NA +Henri,1979,9,18,12,21.2,-95.7,tropical storm,NA,50,1000,NA,NA +Henri,1979,9,18,18,21.6,-95.7,tropical storm,NA,40,1000,NA,NA +Henri,1979,9,19,0,21.5,-95.7,tropical storm,NA,40,1000,NA,NA +Henri,1979,9,19,6,21.3,-95.6,tropical storm,NA,35,1001,NA,NA +Henri,1979,9,19,12,21.1,-95.5,tropical storm,NA,35,1003,NA,NA +Henri,1979,9,19,18,21.1,-95.3,tropical depression,NA,30,1005,NA,NA +Henri,1979,9,20,0,21.1,-94.9,tropical depression,NA,30,1005,NA,NA +Henri,1979,9,20,6,21.1,-94.5,tropical depression,NA,30,1005,NA,NA +Henri,1979,9,20,12,21.2,-94.2,tropical depression,NA,30,1006,NA,NA +Henri,1979,9,20,18,21.2,-93.7,tropical depression,NA,30,1006,NA,NA +Henri,1979,9,21,0,21.4,-93.4,tropical depression,NA,30,1006,NA,NA +Henri,1979,9,21,6,21.7,-93.1,tropical depression,NA,30,1007,NA,NA +Henri,1979,9,21,12,22,-92.7,tropical depression,NA,30,1008,NA,NA +Henri,1979,9,21,18,22.3,-92.3,tropical depression,NA,30,1009,NA,NA +Henri,1979,9,22,0,22.6,-92.1,tropical depression,NA,25,1010,NA,NA +Henri,1979,9,22,6,23,-91.7,tropical depression,NA,20,1011,NA,NA +Henri,1979,9,22,12,23.3,-91.5,tropical depression,NA,20,1011,NA,NA +Henri,1979,9,22,18,23.8,-91,tropical depression,NA,20,1011,NA,NA +Henri,1979,9,23,0,24.3,-90.5,tropical depression,NA,20,1011,NA,NA +Henri,1979,9,23,6,24.8,-90.1,tropical depression,NA,20,1011,NA,NA +Henri,1979,9,23,12,25.3,-89.6,tropical depression,NA,20,1011,NA,NA +Henri,1979,9,23,18,25.4,-88.8,tropical depression,NA,20,1011,NA,NA +Henri,1979,9,24,0,25.6,-88,tropical depression,NA,20,1011,NA,NA +Henri,1979,9,24,6,26,-87.3,tropical depression,NA,20,1011,NA,NA +Henri,1979,9,24,12,26.4,-86.7,extratropical,NA,20,1011,NA,NA +Allen,1980,8,1,0,10.8,-34.3,tropical depression,NA,30,1010,NA,NA +Allen,1980,8,1,6,10.7,-36.4,tropical depression,NA,30,1009,NA,NA +Allen,1980,8,1,12,10.7,-38.6,tropical depression,NA,30,1008,NA,NA +Allen,1980,8,1,18,10.7,-40.7,tropical depression,NA,30,1006,NA,NA +Allen,1980,8,2,0,11,-42.8,tropical storm,NA,35,1005,NA,NA +Allen,1980,8,2,6,11.4,-44.8,tropical storm,NA,45,1000,NA,NA +Allen,1980,8,2,12,11.9,-46.9,tropical storm,NA,55,995,NA,NA +Allen,1980,8,2,18,12.3,-49.1,tropical storm,NA,60,990,NA,NA +Allen,1980,8,3,0,12.4,-51.4,hurricane,1,65,985,NA,NA +Allen,1980,8,3,6,12.6,-53.6,hurricane,1,70,980,NA,NA +Allen,1980,8,3,12,12.8,-55.6,hurricane,1,80,975,NA,NA +Allen,1980,8,3,18,12.9,-57.5,hurricane,2,95,965,NA,NA +Allen,1980,8,4,0,13.3,-59.1,hurricane,3,110,950,NA,NA +Allen,1980,8,4,6,13.6,-61,hurricane,4,115,948,NA,NA +Allen,1980,8,4,12,14,-63,hurricane,4,125,945,NA,NA +Allen,1980,8,4,18,14.4,-64.9,hurricane,4,130,930,NA,NA +Allen,1980,8,5,0,14.8,-66.7,hurricane,5,140,911,NA,NA +Allen,1980,8,5,6,15.4,-68.6,hurricane,5,145,916,NA,NA +Allen,1980,8,5,12,15.9,-70.5,hurricane,5,155,932,NA,NA +Allen,1980,8,5,18,16.5,-72.3,hurricane,5,150,940,NA,NA +Allen,1980,8,6,0,17.8,-73.8,hurricane,5,140,945,NA,NA +Allen,1980,8,6,6,18.3,-75.9,hurricane,4,115,955,NA,NA +Allen,1980,8,6,12,19.2,-78,hurricane,4,115,955,NA,NA +Allen,1980,8,6,18,20,-80.1,hurricane,4,125,955,NA,NA +Allen,1980,8,7,0,20.1,-81.9,hurricane,4,135,945,NA,NA +Allen,1980,8,7,6,20.4,-83.6,hurricane,5,145,935,NA,NA +Allen,1980,8,7,12,21,-84.8,hurricane,5,155,910,NA,NA +Allen,1980,8,7,18,21.8,-86.4,hurricane,5,165,899,NA,NA +Allen,1980,8,8,0,22.2,-87.9,hurricane,5,155,920,NA,NA +Allen,1980,8,8,6,22.8,-89.2,hurricane,4,130,945,NA,NA +Allen,1980,8,8,12,23.4,-90.5,hurricane,4,115,960,NA,NA +Allen,1980,8,8,18,23.9,-91.8,hurricane,4,130,940,NA,NA +Allen,1980,8,9,0,24.5,-93,hurricane,5,145,912,NA,NA +Allen,1980,8,9,6,25,-94.2,hurricane,5,155,909,NA,NA +Allen,1980,8,9,12,25.2,-95.4,hurricane,5,140,916,NA,NA +Allen,1980,8,9,18,25.4,-96.1,hurricane,4,125,925,NA,NA +Allen,1980,8,10,0,25.8,-96.8,hurricane,3,110,935,NA,NA +Allen,1980,8,10,6,26.1,-97.2,hurricane,3,100,945,NA,NA +Allen,1980,8,10,12,26.7,-98.1,hurricane,2,85,960,NA,NA +Allen,1980,8,10,18,27.3,-99,hurricane,1,70,970,NA,NA +Allen,1980,8,11,0,27.7,-99.8,tropical storm,NA,60,990,NA,NA +Allen,1980,8,11,6,28,-100.9,tropical storm,NA,45,1000,NA,NA +Allen,1980,8,11,12,28.5,-101.9,tropical depression,NA,30,1005,NA,NA +Allen,1980,8,11,18,28.9,-102.9,tropical depression,NA,30,1008,NA,NA +Bonnie,1980,8,14,0,12.7,-35.5,tropical depression,NA,25,1010,NA,NA +Bonnie,1980,8,14,6,13.5,-36.6,tropical depression,NA,30,1008,NA,NA +Bonnie,1980,8,14,12,14.7,-37.3,tropical storm,NA,35,1005,NA,NA +Bonnie,1980,8,14,18,15.7,-37.5,tropical storm,NA,45,1000,NA,NA +Bonnie,1980,8,15,0,16.7,-37.8,tropical storm,NA,45,1000,NA,NA +Bonnie,1980,8,15,6,17.7,-37.9,tropical storm,NA,45,1000,NA,NA +Bonnie,1980,8,15,12,18.8,-38.1,tropical storm,NA,45,1000,NA,NA +Bonnie,1980,8,15,18,20.4,-38.5,tropical storm,NA,55,995,NA,NA +Bonnie,1980,8,16,0,22,-38.7,hurricane,1,75,985,NA,NA +Bonnie,1980,8,16,6,23.7,-38.9,hurricane,2,85,975,NA,NA +Bonnie,1980,8,16,12,24.8,-39.1,hurricane,2,85,975,NA,NA +Bonnie,1980,8,16,18,25.8,-39.4,hurricane,2,85,975,NA,NA +Bonnie,1980,8,17,0,27,-39.7,hurricane,1,75,985,NA,NA +Bonnie,1980,8,17,6,28,-40,hurricane,1,65,990,NA,NA +Bonnie,1980,8,17,12,29,-40.3,hurricane,1,65,990,NA,NA +Bonnie,1980,8,17,18,30,-40.5,hurricane,1,65,990,NA,NA +Bonnie,1980,8,18,0,31.1,-40.5,hurricane,1,65,990,NA,NA +Bonnie,1980,8,18,6,32.4,-40.5,hurricane,1,65,990,NA,NA +Bonnie,1980,8,18,12,34,-40.5,hurricane,1,65,990,NA,NA +Bonnie,1980,8,18,18,35.9,-40.5,hurricane,1,65,990,NA,NA +Bonnie,1980,8,19,0,38.2,-40.2,hurricane,1,65,990,NA,NA +Bonnie,1980,8,19,6,41.9,-39.8,hurricane,1,65,990,NA,NA +Bonnie,1980,8,19,12,46.5,-38.4,hurricane,1,65,995,NA,NA +Bonnie,1980,8,19,18,51,-36,extratropical,NA,45,1000,NA,NA +Charley,1980,8,20,12,36,-73,subtropical depression,NA,25,1010,NA,NA +Charley,1980,8,20,18,35,-72,subtropical depression,NA,25,1008,NA,NA +Charley,1980,8,21,0,34,-71,subtropical depression,NA,30,1006,NA,NA +Charley,1980,8,21,6,33.4,-69.5,subtropical depression,NA,30,1005,NA,NA +Charley,1980,8,21,12,34,-68,subtropical storm,NA,35,1003,NA,NA +Charley,1980,8,21,18,34.8,-66.8,subtropical storm,NA,40,1002,NA,NA +Charley,1980,8,22,0,35.8,-65.7,subtropical storm,NA,45,1000,NA,NA +Charley,1980,8,22,6,37,-64.8,subtropical storm,NA,50,998,NA,NA +Charley,1980,8,22,12,38.3,-64.7,subtropical storm,NA,55,996,NA,NA +Charley,1980,8,22,18,39.1,-64.9,subtropical storm,NA,60,994,NA,NA +Charley,1980,8,23,0,39.6,-65.9,hurricane,1,65,992,NA,NA +Charley,1980,8,23,6,38.9,-66.7,hurricane,1,70,990,NA,NA +Charley,1980,8,23,12,38.2,-66,hurricane,1,70,989,NA,NA +Charley,1980,8,23,18,38,-64.7,hurricane,1,70,990,NA,NA +Charley,1980,8,24,0,38,-63.1,hurricane,1,65,991,NA,NA +Charley,1980,8,24,6,37.9,-61.7,tropical storm,NA,60,994,NA,NA +Charley,1980,8,24,12,37.9,-60.2,tropical storm,NA,55,998,NA,NA +Charley,1980,8,24,18,37.9,-58.2,tropical storm,NA,45,1000,NA,NA +Charley,1980,8,25,0,38,-55,tropical storm,NA,35,1001,NA,NA +Charley,1980,8,25,6,38.1,-51.3,tropical storm,NA,35,1002,NA,NA +Charley,1980,8,25,12,38.2,-47,tropical storm,NA,35,1004,NA,NA +Charley,1980,8,25,18,38.5,-42.2,tropical storm,NA,35,1005,NA,NA +Georges,1980,9,1,0,15.6,-38,tropical depression,NA,30,1010,NA,NA +Georges,1980,9,1,6,15.9,-39.4,tropical depression,NA,30,1010,NA,NA +Georges,1980,9,1,12,16.3,-40.8,tropical depression,NA,30,1010,NA,NA +Georges,1980,9,1,18,16.8,-42.1,tropical depression,NA,30,1010,NA,NA +Georges,1980,9,2,0,17.3,-43.7,tropical depression,NA,30,1010,NA,NA +Georges,1980,9,2,6,17.5,-45.7,tropical depression,NA,30,1010,NA,NA +Georges,1980,9,2,12,17.7,-48.1,tropical depression,NA,30,1010,NA,NA +Georges,1980,9,2,18,17.8,-50.3,tropical depression,NA,30,1010,NA,NA +Georges,1980,9,3,0,17.9,-52.4,tropical depression,NA,30,1010,NA,NA +Georges,1980,9,3,6,18,-54.5,tropical depression,NA,30,1010,NA,NA +Georges,1980,9,3,12,18.6,-56.9,tropical depression,NA,30,1010,NA,NA +Georges,1980,9,3,18,19.7,-59,tropical depression,NA,25,1011,NA,NA +Georges,1980,9,4,0,21,-61,tropical depression,NA,20,1012,NA,NA +Georges,1980,9,4,6,22.1,-62.3,disturbance,NA,20,1012,NA,NA +Georges,1980,9,4,12,23.4,-63.6,disturbance,NA,20,1013,NA,NA +Georges,1980,9,4,18,24.8,-64.8,disturbance,NA,20,1013,NA,NA +Georges,1980,9,5,0,26.1,-65.8,disturbance,NA,20,1014,NA,NA +Georges,1980,9,5,6,27.5,-67,disturbance,NA,20,1014,NA,NA +Georges,1980,9,5,12,28.5,-68.6,subtropical depression,NA,25,1014,NA,NA +Georges,1980,9,5,18,29,-69.4,subtropical depression,NA,30,1013,NA,NA +Georges,1980,9,6,0,29.7,-70,subtropical depression,NA,30,1013,NA,NA +Georges,1980,9,6,6,30.6,-70,subtropical depression,NA,30,1010,NA,NA +Georges,1980,9,6,12,31.7,-69.6,subtropical depression,NA,30,1008,NA,NA +Georges,1980,9,6,18,32.9,-69.1,subtropical depression,NA,30,1007,NA,NA +Georges,1980,9,7,0,34.4,-67.9,tropical storm,NA,40,1004,NA,NA +Georges,1980,9,7,6,35.9,-65.9,tropical storm,NA,45,1002,NA,NA +Georges,1980,9,7,12,37.3,-63.7,tropical storm,NA,50,1000,NA,NA +Georges,1980,9,7,18,38.6,-61.5,tropical storm,NA,55,997,NA,NA +Georges,1980,9,8,0,40.2,-59,hurricane,1,70,993,NA,NA +Georges,1980,9,8,6,42.9,-55.1,hurricane,1,70,993,NA,NA +Georges,1980,9,8,12,45.6,-51.1,hurricane,1,70,993,NA,NA +Georges,1980,9,8,18,48,-46.9,hurricane,1,65,993,NA,NA +Earl,1980,9,4,12,17.7,-24,tropical depression,NA,25,1008,NA,NA +Earl,1980,9,4,18,17.4,-25.3,tropical depression,NA,30,1006,NA,NA +Earl,1980,9,5,0,17.8,-26.7,tropical storm,NA,35,1003,NA,NA +Earl,1980,9,5,6,18.2,-28,tropical storm,NA,40,1000,NA,NA +Earl,1980,9,5,12,18.8,-29.5,tropical storm,NA,40,999,NA,NA +Earl,1980,9,5,18,19.2,-31,tropical storm,NA,40,999,NA,NA +Earl,1980,9,6,0,19.7,-32,tropical storm,NA,40,999,NA,NA +Earl,1980,9,6,6,20.3,-33.8,tropical storm,NA,40,999,NA,NA +Earl,1980,9,6,12,21,-35.5,tropical storm,NA,45,998,NA,NA +Earl,1980,9,6,18,21.5,-36.5,tropical storm,NA,45,997,NA,NA +Earl,1980,9,7,0,22.2,-37.8,tropical storm,NA,45,996,NA,NA +Earl,1980,9,7,6,23.2,-38.8,tropical storm,NA,45,996,NA,NA +Earl,1980,9,7,12,25,-39.7,tropical storm,NA,45,995,NA,NA +Earl,1980,9,7,18,27,-40.3,tropical storm,NA,50,993,NA,NA +Earl,1980,9,8,0,29,-41.2,tropical storm,NA,60,992,NA,NA +Earl,1980,9,8,6,30.4,-42.5,hurricane,1,65,988,NA,NA +Earl,1980,9,8,12,32,-43.5,hurricane,1,65,985,NA,NA +Earl,1980,9,8,18,33.3,-44.1,hurricane,1,65,986,NA,NA +Earl,1980,9,9,0,34.7,-44.3,hurricane,1,65,988,NA,NA +Earl,1980,9,9,6,36.3,-43.8,hurricane,1,65,990,NA,NA +Earl,1980,9,9,12,38,-43.1,hurricane,1,65,991,NA,NA +Earl,1980,9,9,18,40.5,-41.5,hurricane,1,65,992,NA,NA +Earl,1980,9,10,0,43,-39,hurricane,1,65,994,NA,NA +Earl,1980,9,10,6,45.2,-36,hurricane,1,65,995,NA,NA +Danielle,1980,9,4,18,28.3,-90.6,tropical depression,NA,25,1010,NA,NA +Danielle,1980,9,5,0,28.3,-91.3,tropical depression,NA,25,1010,NA,NA +Danielle,1980,9,5,6,28.4,-91.8,tropical depression,NA,25,1009,NA,NA +Danielle,1980,9,5,12,28.8,-92.4,tropical depression,NA,30,1008,NA,NA +Danielle,1980,9,5,18,29.4,-93.4,tropical storm,NA,50,1004,NA,NA +Danielle,1980,9,6,0,29.4,-94.9,tropical storm,NA,40,1004,NA,NA +Danielle,1980,9,6,6,29.3,-96.3,tropical storm,NA,35,1008,NA,NA +Danielle,1980,9,6,12,29.1,-97,tropical depression,NA,30,1008,NA,NA +Danielle,1980,9,6,18,29,-97.8,tropical depression,NA,25,1008,NA,NA +Danielle,1980,9,7,0,29,-98.3,tropical depression,NA,20,1010,NA,NA +Danielle,1980,9,7,6,29,-99,tropical depression,NA,20,1010,NA,NA +Danielle,1980,9,7,12,29,-100,tropical depression,NA,20,1010,NA,NA +Frances,1980,9,6,0,12.5,-19,tropical depression,NA,25,1010,NA,NA +Frances,1980,9,6,6,12.5,-20,tropical depression,NA,25,1009,NA,NA +Frances,1980,9,6,12,12.6,-21,tropical depression,NA,30,1008,NA,NA +Frances,1980,9,6,18,12.7,-21.8,tropical storm,NA,35,1005,NA,NA +Frances,1980,9,7,0,12.8,-22.5,tropical storm,NA,40,1002,NA,NA +Frances,1980,9,7,6,12.9,-23.2,tropical storm,NA,45,998,NA,NA +Frances,1980,9,7,12,13,-24,tropical storm,NA,55,994,NA,NA +Frances,1980,9,7,18,13,-24.8,tropical storm,NA,60,990,NA,NA +Frances,1980,9,8,0,13,-25.6,hurricane,1,65,986,NA,NA +Frances,1980,9,8,6,13,-26.8,hurricane,1,70,978,NA,NA +Frances,1980,9,8,12,12.9,-28,hurricane,1,80,970,NA,NA +Frances,1980,9,8,18,12.8,-29,hurricane,2,90,965,NA,NA +Frances,1980,9,9,0,12.8,-29.8,hurricane,3,100,960,NA,NA +Frances,1980,9,9,6,12.9,-30.5,hurricane,3,100,958,NA,NA +Frances,1980,9,9,12,13,-31.3,hurricane,3,100,960,NA,NA +Frances,1980,9,9,18,13.2,-32.1,hurricane,2,90,965,NA,NA +Frances,1980,9,10,0,13.4,-32.9,hurricane,2,90,966,NA,NA +Frances,1980,9,10,6,13.8,-33.5,hurricane,2,90,967,NA,NA +Frances,1980,9,10,12,14.2,-34.1,hurricane,2,85,968,NA,NA +Frances,1980,9,10,18,14.9,-34.6,hurricane,1,80,970,NA,NA +Frances,1980,9,11,0,15.4,-34.9,hurricane,2,85,968,NA,NA +Frances,1980,9,11,6,16,-35,hurricane,2,90,965,NA,NA +Frances,1980,9,11,12,16.3,-35.3,hurricane,2,90,967,NA,NA +Frances,1980,9,11,18,16.6,-35.9,hurricane,2,85,968,NA,NA +Frances,1980,9,12,0,17,-36.1,hurricane,1,80,970,NA,NA +Frances,1980,9,12,6,17.2,-36.9,hurricane,1,80,970,NA,NA +Frances,1980,9,12,12,17.8,-37.8,hurricane,1,80,970,NA,NA +Frances,1980,9,12,18,18.3,-38.5,hurricane,1,80,970,NA,NA +Frances,1980,9,13,0,18.6,-39.6,hurricane,1,80,970,NA,NA +Frances,1980,9,13,6,18.8,-40.6,hurricane,2,85,968,NA,NA +Frances,1980,9,13,12,18.9,-42,hurricane,2,90,965,NA,NA +Frances,1980,9,13,18,19.3,-43.4,hurricane,2,90,965,NA,NA +Frances,1980,9,14,0,19.8,-44.7,hurricane,2,90,965,NA,NA +Frances,1980,9,14,6,20.2,-45.9,hurricane,2,90,965,NA,NA +Frances,1980,9,14,12,20.8,-46.9,hurricane,2,90,965,NA,NA +Frances,1980,9,14,18,21.6,-48,hurricane,2,90,965,NA,NA +Frances,1980,9,15,0,22.5,-48.8,hurricane,2,90,965,NA,NA +Frances,1980,9,15,6,23.3,-49.6,hurricane,2,90,965,NA,NA +Frances,1980,9,15,12,24.6,-50.2,hurricane,2,90,965,NA,NA +Frances,1980,9,15,18,25.8,-50.8,hurricane,2,90,965,NA,NA +Frances,1980,9,16,0,27.4,-50.8,hurricane,2,90,965,NA,NA +Frances,1980,9,16,6,28.8,-50.6,hurricane,2,90,965,NA,NA +Frances,1980,9,16,12,30.2,-50,hurricane,2,90,965,NA,NA +Frances,1980,9,16,18,31.8,-49.2,hurricane,2,90,965,NA,NA +Frances,1980,9,17,0,33,-48,hurricane,2,90,965,NA,NA +Frances,1980,9,17,6,33.9,-47.2,hurricane,2,85,968,NA,NA +Frances,1980,9,17,12,34.7,-46.4,hurricane,1,80,970,NA,NA +Frances,1980,9,17,18,35.7,-45.9,hurricane,1,80,970,NA,NA +Frances,1980,9,18,0,36.7,-45.8,hurricane,1,80,970,NA,NA +Frances,1980,9,18,6,37.8,-45.8,hurricane,1,80,970,NA,NA +Frances,1980,9,18,12,39,-46.2,hurricane,1,80,970,NA,NA +Frances,1980,9,18,18,40,-46.5,hurricane,1,80,972,NA,NA +Frances,1980,9,19,0,41.2,-46.4,hurricane,1,75,974,NA,NA +Frances,1980,9,19,6,42.4,-45.8,hurricane,1,70,978,NA,NA +Frances,1980,9,19,12,43.6,-44.9,hurricane,1,65,986,NA,NA +Frances,1980,9,19,18,44.5,-43.2,hurricane,1,65,986,NA,NA +Frances,1980,9,20,0,45.7,-41,hurricane,1,65,988,NA,NA +Frances,1980,9,20,6,47,-39,tropical storm,NA,60,990,NA,NA +Frances,1980,9,20,12,49.4,-35.5,tropical storm,NA,55,994,NA,NA +Frances,1980,9,20,18,51.2,-32,tropical storm,NA,50,998,NA,NA +Frances,1980,9,21,0,54,-29,extratropical,NA,45,1000,NA,NA +Hermine,1980,9,20,12,14.6,-77.2,tropical depression,NA,25,1008,NA,NA +Hermine,1980,9,20,18,14.8,-78.7,tropical depression,NA,25,1007,NA,NA +Hermine,1980,9,21,0,15,-80.2,tropical depression,NA,30,1006,NA,NA +Hermine,1980,9,21,6,15.1,-81.6,tropical storm,NA,35,1003,NA,NA +Hermine,1980,9,21,12,15.3,-83,tropical storm,NA,40,1000,NA,NA +Hermine,1980,9,21,18,15.8,-84.2,tropical storm,NA,45,998,NA,NA +Hermine,1980,9,22,0,16.5,-85.5,tropical storm,NA,50,996,NA,NA +Hermine,1980,9,22,6,17.1,-86.7,tropical storm,NA,55,995,NA,NA +Hermine,1980,9,22,12,17.8,-87.8,tropical storm,NA,60,994,NA,NA +Hermine,1980,9,22,18,18.4,-88.9,tropical storm,NA,55,994,NA,NA +Hermine,1980,9,23,0,18.8,-90.2,tropical storm,NA,50,995,NA,NA +Hermine,1980,9,23,6,19.1,-91.3,tropical storm,NA,45,995,NA,NA +Hermine,1980,9,23,12,19.3,-92.6,tropical storm,NA,50,995,NA,NA +Hermine,1980,9,23,18,19.3,-93.2,tropical storm,NA,55,994,NA,NA +Hermine,1980,9,24,0,19.2,-93.8,tropical storm,NA,60,993,NA,NA +Hermine,1980,9,24,6,18.8,-94.4,tropical storm,NA,60,993,NA,NA +Hermine,1980,9,24,12,18.5,-94.8,tropical storm,NA,55,994,NA,NA +Hermine,1980,9,24,18,18.1,-95.1,tropical storm,NA,50,997,NA,NA +Hermine,1980,9,25,0,17.7,-95.5,tropical storm,NA,45,1000,NA,NA +Hermine,1980,9,25,6,17.3,-95.8,tropical storm,NA,40,1003,NA,NA +Hermine,1980,9,25,12,17,-96,tropical storm,NA,35,1005,NA,NA +Hermine,1980,9,25,18,17,-96,tropical depression,NA,30,1007,NA,NA +Hermine,1980,9,26,0,17,-96,tropical depression,NA,25,1008,NA,NA +Ivan,1980,10,1,0,33.6,-20,extratropical,NA,25,1010,NA,NA +Ivan,1980,10,1,6,33.7,-20.7,extratropical,NA,25,1010,NA,NA +Ivan,1980,10,1,12,33.8,-21.5,extratropical,NA,25,1010,NA,NA +Ivan,1980,10,1,18,34.1,-22.2,extratropical,NA,25,1010,NA,NA +Ivan,1980,10,2,0,34.5,-22.8,extratropical,NA,25,1010,NA,NA +Ivan,1980,10,2,6,35,-23.3,extratropical,NA,25,1009,NA,NA +Ivan,1980,10,2,12,35.7,-23.7,extratropical,NA,25,1009,NA,NA +Ivan,1980,10,2,18,36.5,-23.8,extratropical,NA,25,1009,NA,NA +Ivan,1980,10,3,0,37.2,-23.5,extratropical,NA,25,1009,NA,NA +Ivan,1980,10,3,6,37.8,-23.1,extratropical,NA,25,1009,NA,NA +Ivan,1980,10,3,12,38.7,-22.5,extratropical,NA,25,1008,NA,NA +Ivan,1980,10,3,18,38.5,-21.4,extratropical,NA,25,1007,NA,NA +Ivan,1980,10,4,0,37.7,-21.8,extratropical,NA,25,1006,NA,NA +Ivan,1980,10,4,6,37,-22.7,extratropical,NA,25,1005,NA,NA +Ivan,1980,10,4,12,36.5,-23.5,tropical depression,NA,30,1000,NA,NA +Ivan,1980,10,4,18,35.6,-24.6,tropical storm,NA,40,998,NA,NA +Ivan,1980,10,5,0,34.4,-25.7,tropical storm,NA,50,996,NA,NA +Ivan,1980,10,5,6,33.4,-26.8,tropical storm,NA,55,995,NA,NA +Ivan,1980,10,5,12,32.4,-28.3,tropical storm,NA,60,994,NA,NA +Ivan,1980,10,5,18,31.3,-29.6,tropical storm,NA,60,993,NA,NA +Ivan,1980,10,6,0,30.1,-30.5,hurricane,1,65,992,NA,NA +Ivan,1980,10,6,6,29.1,-31.1,hurricane,1,75,985,NA,NA +Ivan,1980,10,6,12,28.4,-31.3,hurricane,2,85,976,NA,NA +Ivan,1980,10,6,18,28.1,-31.1,hurricane,2,90,970,NA,NA +Ivan,1980,10,7,0,28,-30.7,hurricane,2,90,970,NA,NA +Ivan,1980,10,7,6,28.5,-30.6,hurricane,2,90,970,NA,NA +Ivan,1980,10,7,12,29.5,-31.7,hurricane,2,90,970,NA,NA +Ivan,1980,10,7,18,29.8,-32.7,hurricane,2,90,970,NA,NA +Ivan,1980,10,8,0,30,-34.4,hurricane,2,90,970,NA,NA +Ivan,1980,10,8,6,30.6,-36.2,hurricane,2,90,970,NA,NA +Ivan,1980,10,8,12,31.3,-37.4,hurricane,2,90,970,NA,NA +Ivan,1980,10,8,18,31.5,-39,hurricane,2,90,970,NA,NA +Ivan,1980,10,9,0,31.7,-40.5,hurricane,2,90,970,NA,NA +Ivan,1980,10,9,6,32.3,-41,hurricane,2,90,971,NA,NA +Ivan,1980,10,9,12,33.2,-41.1,hurricane,2,90,973,NA,NA +Ivan,1980,10,9,18,33.8,-41.2,hurricane,2,90,975,NA,NA +Ivan,1980,10,10,0,34.9,-40.7,hurricane,2,90,977,NA,NA +Ivan,1980,10,10,6,36.2,-40,hurricane,2,90,978,NA,NA +Ivan,1980,10,10,12,37.8,-39.1,hurricane,2,90,978,NA,NA +Ivan,1980,10,10,18,39.7,-37.9,hurricane,1,80,980,NA,NA +Ivan,1980,10,11,0,42,-36.1,hurricane,1,75,985,NA,NA +Ivan,1980,10,11,6,44.4,-34.1,hurricane,1,70,988,NA,NA +Ivan,1980,10,11,12,46.8,-31.5,hurricane,1,65,990,NA,NA +Ivan,1980,10,11,18,49.7,-27.5,hurricane,1,65,990,NA,NA +Ivan,1980,10,12,0,52.5,-24.5,extratropical,NA,60,990,NA,NA +Jeanne,1980,11,7,18,13.6,-82.6,disturbance,NA,20,1008,NA,NA +Jeanne,1980,11,8,0,14.7,-83,disturbance,NA,20,1006,NA,NA +Jeanne,1980,11,8,6,16,-83.4,disturbance,NA,20,1006,NA,NA +Jeanne,1980,11,8,12,17.3,-83.9,disturbance,NA,25,1006,NA,NA +Jeanne,1980,11,8,18,18.6,-84.3,tropical depression,NA,30,1005,NA,NA +Jeanne,1980,11,9,0,19.3,-84.6,tropical depression,NA,30,1005,NA,NA +Jeanne,1980,11,9,6,20,-84.8,tropical depression,NA,30,1004,NA,NA +Jeanne,1980,11,9,12,20.8,-85.1,tropical storm,NA,40,1000,NA,NA +Jeanne,1980,11,9,18,21.3,-85.2,tropical storm,NA,45,999,NA,NA +Jeanne,1980,11,10,0,21.6,-85.3,tropical storm,NA,50,999,NA,NA +Jeanne,1980,11,10,6,22,-85.4,tropical storm,NA,50,999,NA,NA +Jeanne,1980,11,10,12,22.5,-85.5,tropical storm,NA,50,999,NA,NA +Jeanne,1980,11,10,18,23.2,-85.7,tropical storm,NA,50,999,NA,NA +Jeanne,1980,11,11,0,23.7,-86.1,tropical storm,NA,55,998,NA,NA +Jeanne,1980,11,11,6,24.1,-86.5,tropical storm,NA,60,997,NA,NA +Jeanne,1980,11,11,12,24.1,-87,hurricane,1,65,992,NA,NA +Jeanne,1980,11,11,18,24.1,-87.2,hurricane,1,75,986,NA,NA +Jeanne,1980,11,12,0,24.1,-87.4,hurricane,2,85,988,NA,NA +Jeanne,1980,11,12,6,23.9,-88.3,hurricane,1,70,992,NA,NA +Jeanne,1980,11,12,12,23.8,-89,hurricane,1,65,994,NA,NA +Jeanne,1980,11,12,18,23.8,-89.8,hurricane,1,65,995,NA,NA +Jeanne,1980,11,13,0,24,-90.3,tropical storm,NA,55,999,NA,NA +Jeanne,1980,11,13,6,24.9,-91.6,tropical storm,NA,55,997,NA,NA +Jeanne,1980,11,13,12,25.6,-92.8,tropical storm,NA,60,993,NA,NA +Jeanne,1980,11,13,18,25.6,-94,tropical storm,NA,60,994,NA,NA +Jeanne,1980,11,14,0,25.5,-95,tropical storm,NA,55,996,NA,NA +Jeanne,1980,11,14,6,25.6,-95.2,tropical storm,NA,50,998,NA,NA +Jeanne,1980,11,14,12,25.8,-95.2,tropical storm,NA,50,1002,NA,NA +Jeanne,1980,11,14,18,26,-94.8,tropical storm,NA,40,1002,NA,NA +Jeanne,1980,11,15,0,26.2,-94.4,tropical depression,NA,30,1004,NA,NA +Jeanne,1980,11,15,6,26.3,-93.7,tropical depression,NA,30,1004,NA,NA +Jeanne,1980,11,15,12,26.2,-93.2,tropical depression,NA,25,1005,NA,NA +Jeanne,1980,11,15,18,25.9,-92.9,tropical depression,NA,20,1006,NA,NA +Jeanne,1980,11,16,0,25.4,-93,tropical depression,NA,20,1007,NA,NA +Jeanne,1980,11,16,6,25.2,-93.1,tropical depression,NA,20,1007,NA,NA +Karl,1980,11,25,0,36,-46,subtropical storm,NA,50,988,NA,NA +Karl,1980,11,25,6,36.8,-44.8,subtropical storm,NA,50,988,NA,NA +Karl,1980,11,25,12,37.2,-44.5,subtropical storm,NA,55,988,NA,NA +Karl,1980,11,25,18,37.7,-44.7,hurricane,1,65,988,NA,NA +Karl,1980,11,26,0,37.4,-44.8,hurricane,1,70,988,NA,NA +Karl,1980,11,26,6,37,-44.2,hurricane,1,75,985,NA,NA +Karl,1980,11,26,12,36.8,-42.5,hurricane,1,75,985,NA,NA +Karl,1980,11,26,18,37.1,-40.5,hurricane,1,75,985,NA,NA +Karl,1980,11,27,0,37.8,-38.3,hurricane,1,70,988,NA,NA +Karl,1980,11,27,6,38.9,-36.5,hurricane,1,65,990,NA,NA +Karl,1980,11,27,12,40.4,-34.9,hurricane,1,65,990,NA,NA +Karl,1980,11,27,18,42.3,-33.1,hurricane,1,65,990,NA,NA +Karl,1980,11,28,0,45,-32,extratropical,NA,65,990,NA,NA +Arlene,1981,5,6,18,18.4,-83.6,tropical depression,NA,30,1006,NA,NA +Arlene,1981,5,7,0,18.4,-82.7,tropical depression,NA,30,1006,NA,NA +Arlene,1981,5,7,6,18.6,-81.7,tropical depression,NA,30,1005,NA,NA +Arlene,1981,5,7,12,19,-80.6,tropical storm,NA,35,1003,NA,NA +Arlene,1981,5,7,18,19.6,-79.7,tropical storm,NA,40,1000,NA,NA +Arlene,1981,5,8,0,20.3,-78.7,tropical storm,NA,45,999,NA,NA +Arlene,1981,5,8,6,21.1,-77.4,tropical depression,NA,30,1003,NA,NA +Arlene,1981,5,8,12,22.4,-76.4,tropical depression,NA,30,1006,NA,NA +Arlene,1981,5,8,18,23,-74.5,tropical storm,NA,50,1004,NA,NA +Arlene,1981,5,9,0,23.4,-72.8,tropical depression,NA,30,1006,NA,NA +Arlene,1981,5,9,6,24,-71,tropical depression,NA,25,1010,NA,NA +Bret,1981,6,29,12,36,-65,subtropical storm,NA,35,1012,NA,NA +Bret,1981,6,29,18,36,-67,subtropical storm,NA,45,1007,NA,NA +Bret,1981,6,30,0,36,-69,subtropical storm,NA,55,1003,NA,NA +Bret,1981,6,30,6,36,-71,tropical storm,NA,60,999,NA,NA +Bret,1981,6,30,12,36,-72.5,tropical storm,NA,60,996,NA,NA +Bret,1981,6,30,18,36.2,-73.8,tropical storm,NA,60,996,NA,NA +Bret,1981,7,1,0,36.6,-74.7,tropical storm,NA,50,1000,NA,NA +Bret,1981,7,1,6,37.4,-76,tropical depression,NA,30,1006,NA,NA +Cindy,1981,8,2,18,36.1,-67.8,subtropical depression,NA,30,1010,NA,NA +Cindy,1981,8,3,0,36.7,-67.1,subtropical depression,NA,30,1008,NA,NA +Cindy,1981,8,3,6,37.4,-66.2,subtropical depression,NA,30,1006,NA,NA +Cindy,1981,8,3,12,38.3,-65.7,tropical depression,NA,30,1003,NA,NA +Cindy,1981,8,3,18,38.7,-64.9,tropical storm,NA,40,1003,NA,NA +Cindy,1981,8,4,0,39,-63.8,tropical storm,NA,50,1002,NA,NA +Cindy,1981,8,4,6,39.4,-62.2,tropical storm,NA,50,1002,NA,NA +Cindy,1981,8,4,12,40.4,-60.7,tropical storm,NA,50,1003,NA,NA +Cindy,1981,8,4,18,41.3,-58.4,tropical storm,NA,50,1004,NA,NA +Cindy,1981,8,5,0,42.2,-55.7,tropical storm,NA,45,1005,NA,NA +Cindy,1981,8,5,6,43.3,-52.7,tropical storm,NA,40,1006,NA,NA +Cindy,1981,8,5,12,44.1,-50.4,extratropical,NA,30,1008,NA,NA +Dennis,1981,8,7,6,10.5,-25.7,tropical depression,NA,30,1009,NA,NA +Dennis,1981,8,7,12,10.8,-28.1,tropical depression,NA,30,1008,NA,NA +Dennis,1981,8,7,18,11,-29.6,tropical depression,NA,30,1007,NA,NA +Dennis,1981,8,8,0,11.3,-31.3,tropical storm,NA,35,1006,NA,NA +Dennis,1981,8,8,6,11.7,-33.1,tropical storm,NA,35,1005,NA,NA +Dennis,1981,8,8,12,12,-35,tropical storm,NA,35,1004,NA,NA +Dennis,1981,8,8,18,12.5,-36.7,tropical storm,NA,40,1003,NA,NA +Dennis,1981,8,9,0,12.8,-38.7,tropical storm,NA,40,1002,NA,NA +Dennis,1981,8,9,6,13.1,-40.8,tropical storm,NA,40,1001,NA,NA +Dennis,1981,8,9,12,13.3,-43,tropical storm,NA,40,1001,NA,NA +Dennis,1981,8,9,18,13.5,-45,tropical storm,NA,40,1001,NA,NA +Dennis,1981,8,10,0,13.5,-47,tropical storm,NA,40,1001,NA,NA +Dennis,1981,8,10,6,13.5,-49,tropical storm,NA,40,1002,NA,NA +Dennis,1981,8,10,12,13.5,-51,tropical storm,NA,40,1004,NA,NA +Dennis,1981,8,10,18,13.6,-52.9,tropical storm,NA,35,1006,NA,NA +Dennis,1981,8,11,0,13.8,-54.9,tropical depression,NA,30,1007,NA,NA +Dennis,1981,8,11,6,14,-56.5,tropical depression,NA,30,1008,NA,NA +Dennis,1981,8,11,12,14.3,-58.3,tropical depression,NA,30,1009,NA,NA +Dennis,1981,8,11,18,14.6,-60.1,tropical depression,NA,30,1010,NA,NA +Dennis,1981,8,12,0,14.9,-61.9,tropical depression,NA,25,1010,NA,NA +Dennis,1981,8,12,6,15.2,-63.8,tropical depression,NA,25,1011,NA,NA +Dennis,1981,8,12,12,15.4,-65.7,tropical depression,NA,25,1011,NA,NA +Dennis,1981,8,12,18,15.6,-67.6,tropical depression,NA,25,1011,NA,NA +Dennis,1981,8,15,18,21.7,-80.8,tropical depression,NA,30,1007,NA,NA +Dennis,1981,8,16,0,22.4,-81,tropical storm,NA,35,1005,NA,NA +Dennis,1981,8,16,6,23,-81.2,tropical storm,NA,35,1003,NA,NA +Dennis,1981,8,16,12,23.8,-81.4,tropical storm,NA,35,1001,NA,NA +Dennis,1981,8,16,18,24.5,-81.3,tropical storm,NA,35,1000,NA,NA +Dennis,1981,8,17,0,24.9,-81.3,tropical storm,NA,35,998,NA,NA +Dennis,1981,8,17,6,25.2,-81.2,tropical storm,NA,35,999,NA,NA +Dennis,1981,8,17,12,25.8,-81.2,tropical storm,NA,35,999,NA,NA +Dennis,1981,8,17,18,26.2,-81.2,tropical storm,NA,35,1001,NA,NA +Dennis,1981,8,18,0,26.5,-81.2,tropical storm,NA,35,1003,NA,NA +Dennis,1981,8,18,6,26.8,-81.1,tropical storm,NA,35,1004,NA,NA +Dennis,1981,8,18,12,27.2,-81,tropical storm,NA,35,1005,NA,NA +Dennis,1981,8,18,18,27.6,-81,tropical storm,NA,35,1005,NA,NA +Dennis,1981,8,19,0,28.7,-80.8,tropical storm,NA,35,1004,NA,NA +Dennis,1981,8,19,6,29.7,-80.8,tropical storm,NA,40,1003,NA,NA +Dennis,1981,8,19,12,31,-80.8,tropical storm,NA,40,1002,NA,NA +Dennis,1981,8,19,18,32.2,-79.9,tropical storm,NA,45,1001,NA,NA +Dennis,1981,8,20,0,33.4,-78.8,tropical storm,NA,50,999,NA,NA +Dennis,1981,8,20,6,34.7,-77,tropical storm,NA,55,998,NA,NA +Dennis,1981,8,20,12,35.5,-75.2,tropical storm,NA,60,997,NA,NA +Dennis,1981,8,20,18,36.3,-73,hurricane,1,65,995,NA,NA +Dennis,1981,8,21,0,37.1,-70.4,hurricane,1,70,995,NA,NA +Dennis,1981,8,21,6,37.8,-68,tropical storm,NA,55,998,NA,NA +Dennis,1981,8,21,12,38.1,-65.4,tropical storm,NA,45,1000,NA,NA +Dennis,1981,8,21,18,38.4,-62.8,tropical storm,NA,40,1003,NA,NA +Dennis,1981,8,22,0,37.8,-59.7,extratropical,NA,35,1005,NA,NA +Emily,1981,8,31,12,29.8,-72.7,subtropical depression,NA,30,1008,NA,NA +Emily,1981,8,31,18,29.9,-71.2,subtropical depression,NA,30,1006,NA,NA +Emily,1981,9,1,0,29.9,-69.7,subtropical storm,NA,35,1004,NA,NA +Emily,1981,9,1,6,30.1,-68.4,subtropical storm,NA,40,1000,NA,NA +Emily,1981,9,1,12,30.4,-67.3,tropical storm,NA,40,996,NA,NA +Emily,1981,9,1,18,31.3,-66.6,tropical storm,NA,45,994,NA,NA +Emily,1981,9,2,0,31.9,-65.9,tropical storm,NA,50,992,NA,NA +Emily,1981,9,2,6,32.6,-65.1,tropical storm,NA,50,990,NA,NA +Emily,1981,9,2,12,33.3,-64.4,tropical storm,NA,50,988,NA,NA +Emily,1981,9,2,18,34.1,-64.1,tropical storm,NA,55,986,NA,NA +Emily,1981,9,3,0,35,-64,tropical storm,NA,55,984,NA,NA +Emily,1981,9,3,6,36,-65,tropical storm,NA,60,982,NA,NA +Emily,1981,9,3,12,35,-65.8,tropical storm,NA,60,980,NA,NA +Emily,1981,9,3,18,34.2,-65,tropical storm,NA,60,978,NA,NA +Emily,1981,9,4,0,34.6,-63.6,hurricane,1,65,976,NA,NA +Emily,1981,9,4,6,35.3,-62.7,hurricane,1,70,974,NA,NA +Emily,1981,9,4,12,36.2,-61.9,hurricane,1,70,972,NA,NA +Emily,1981,9,4,18,37.1,-61.2,hurricane,1,70,971,NA,NA +Emily,1981,9,5,0,38.2,-60.9,hurricane,1,75,970,NA,NA +Emily,1981,9,5,6,38.6,-60.8,hurricane,1,75,968,NA,NA +Emily,1981,9,5,12,39,-60.8,hurricane,1,75,967,NA,NA +Emily,1981,9,5,18,39.4,-59.9,hurricane,1,80,966,NA,NA +Emily,1981,9,6,0,39.9,-59,hurricane,1,80,967,NA,NA +Emily,1981,9,6,6,40.3,-58.4,hurricane,1,80,968,NA,NA +Emily,1981,9,6,12,40.8,-58,hurricane,1,80,970,NA,NA +Emily,1981,9,6,18,41.2,-57.4,hurricane,1,75,971,NA,NA +Emily,1981,9,7,0,41.6,-56.8,hurricane,1,75,972,NA,NA +Emily,1981,9,7,6,41.9,-55.9,hurricane,1,70,974,NA,NA +Emily,1981,9,7,12,42,-55,hurricane,1,70,976,NA,NA +Emily,1981,9,7,18,42.3,-54.1,hurricane,1,65,978,NA,NA +Emily,1981,9,8,0,42.7,-53.4,tropical storm,NA,60,982,NA,NA +Emily,1981,9,8,6,42.9,-52.5,tropical storm,NA,60,984,NA,NA +Emily,1981,9,8,12,42.2,-51.9,tropical storm,NA,55,986,NA,NA +Emily,1981,9,8,18,41.7,-51.2,tropical storm,NA,55,988,NA,NA +Emily,1981,9,9,0,41,-50.2,tropical storm,NA,55,990,NA,NA +Emily,1981,9,9,6,40.9,-49.1,tropical storm,NA,50,991,NA,NA +Emily,1981,9,9,12,40.9,-47.9,tropical storm,NA,50,992,NA,NA +Emily,1981,9,9,18,41,-46.9,tropical storm,NA,50,993,NA,NA +Emily,1981,9,10,0,41.2,-45.9,tropical storm,NA,45,995,NA,NA +Emily,1981,9,10,6,41.9,-45.1,tropical storm,NA,40,998,NA,NA +Emily,1981,9,10,12,42.5,-44.8,tropical storm,NA,40,1000,NA,NA +Emily,1981,9,10,18,42.7,-44,tropical storm,NA,40,1001,NA,NA +Emily,1981,9,11,0,42.2,-43.3,tropical storm,NA,40,1002,NA,NA +Emily,1981,9,11,6,42.1,-42.7,tropical storm,NA,35,1004,NA,NA +Emily,1981,9,11,12,42.2,-42,tropical storm,NA,35,1005,NA,NA +Emily,1981,9,11,18,42.3,-41.5,extratropical,NA,30,1007,NA,NA +Emily,1981,9,12,0,42.7,-41,extratropical,NA,30,1008,NA,NA +Floyd,1981,9,3,12,16.2,-60.3,tropical depression,NA,20,1010,NA,NA +Floyd,1981,9,3,18,16.7,-61.1,tropical depression,NA,20,1010,NA,NA +Floyd,1981,9,4,0,17.3,-61.9,tropical depression,NA,20,1009,NA,NA +Floyd,1981,9,4,6,18,-62.6,tropical depression,NA,20,1008,NA,NA +Floyd,1981,9,4,12,18.6,-63.3,tropical depression,NA,30,1006,NA,NA +Floyd,1981,9,4,18,19,-64,tropical storm,NA,35,1004,NA,NA +Floyd,1981,9,5,0,19.5,-64.7,tropical storm,NA,45,1002,NA,NA +Floyd,1981,9,5,6,20.1,-65.5,tropical storm,NA,50,1000,NA,NA +Floyd,1981,9,5,12,20.9,-66.2,tropical storm,NA,60,999,NA,NA +Floyd,1981,9,5,18,21.7,-67.1,hurricane,1,70,997,NA,NA +Floyd,1981,9,6,0,22.6,-67.7,hurricane,1,80,994,NA,NA +Floyd,1981,9,6,6,23.6,-68.6,hurricane,2,85,991,NA,NA +Floyd,1981,9,6,12,24.5,-69.1,hurricane,2,90,988,NA,NA +Floyd,1981,9,6,18,25.5,-69.1,hurricane,2,95,985,NA,NA +Floyd,1981,9,7,0,26.4,-69.1,hurricane,3,100,981,NA,NA +Floyd,1981,9,7,6,27.5,-68.9,hurricane,3,100,978,NA,NA +Floyd,1981,9,7,12,28.4,-68.5,hurricane,3,100,975,NA,NA +Floyd,1981,9,7,18,29.3,-67.8,hurricane,3,100,975,NA,NA +Floyd,1981,9,8,0,29.9,-67.2,hurricane,2,95,989,NA,NA +Floyd,1981,9,8,6,30.6,-66.5,hurricane,2,90,995,NA,NA +Floyd,1981,9,8,12,31.4,-65.6,hurricane,2,85,998,NA,NA +Floyd,1981,9,8,18,32,-64.7,tropical storm,NA,60,1003,NA,NA +Floyd,1981,9,9,0,32.9,-63,tropical storm,NA,50,1005,NA,NA +Floyd,1981,9,9,6,33.7,-60.7,tropical storm,NA,45,1007,NA,NA +Floyd,1981,9,9,12,34.2,-58.5,tropical storm,NA,45,1007,NA,NA +Floyd,1981,9,9,18,33.8,-56.3,tropical storm,NA,40,1007,NA,NA +Floyd,1981,9,10,0,33.5,-54,tropical storm,NA,40,1007,NA,NA +Floyd,1981,9,10,6,33.6,-51.3,tropical storm,NA,40,1007,NA,NA +Floyd,1981,9,10,12,34,-48.7,tropical storm,NA,40,1008,NA,NA +Floyd,1981,9,10,18,34,-46.4,tropical storm,NA,40,1008,NA,NA +Floyd,1981,9,11,0,33.8,-44.1,tropical storm,NA,40,1008,NA,NA +Floyd,1981,9,11,6,34.5,-41.7,tropical storm,NA,40,1008,NA,NA +Floyd,1981,9,11,12,35.5,-39.7,tropical storm,NA,40,1008,NA,NA +Floyd,1981,9,11,18,36.6,-38.3,tropical storm,NA,40,1008,NA,NA +Floyd,1981,9,12,0,37.6,-36.9,tropical storm,NA,40,1009,NA,NA +Floyd,1981,9,12,6,39,-35.2,tropical storm,NA,40,1009,NA,NA +Floyd,1981,9,12,12,40.6,-33.4,tropical storm,NA,35,1009,NA,NA +Gert,1981,9,7,0,14.8,-54,tropical depression,NA,25,1013,NA,NA +Gert,1981,9,7,6,14.9,-55.7,tropical depression,NA,30,1012,NA,NA +Gert,1981,9,7,12,15.1,-57.4,tropical depression,NA,30,1012,NA,NA +Gert,1981,9,7,18,15.3,-59,tropical depression,NA,30,1010,NA,NA +Gert,1981,9,8,0,15.6,-60.6,tropical storm,NA,40,1008,NA,NA +Gert,1981,9,8,6,16.1,-62.3,tropical storm,NA,45,1005,NA,NA +Gert,1981,9,8,12,16.8,-64,tropical storm,NA,50,1002,NA,NA +Gert,1981,9,8,18,17.8,-65.4,tropical storm,NA,50,1004,NA,NA +Gert,1981,9,9,0,18.9,-66.9,tropical storm,NA,45,1006,NA,NA +Gert,1981,9,9,6,19.6,-68.3,tropical storm,NA,40,1009,NA,NA +Gert,1981,9,9,12,20.3,-70,tropical storm,NA,35,1011,NA,NA +Gert,1981,9,9,18,21.3,-71.7,tropical storm,NA,35,1012,NA,NA +Gert,1981,9,10,0,22.1,-72.8,tropical storm,NA,40,1010,NA,NA +Gert,1981,9,10,6,22.7,-73.7,tropical storm,NA,50,1008,NA,NA +Gert,1981,9,10,12,23.7,-74.5,tropical storm,NA,60,1001,NA,NA +Gert,1981,9,10,18,24.8,-74.4,hurricane,1,70,996,NA,NA +Gert,1981,9,11,0,26.3,-73.9,hurricane,1,80,993,NA,NA +Gert,1981,9,11,6,27.7,-73,hurricane,2,85,990,NA,NA +Gert,1981,9,11,12,29,-72,hurricane,2,90,988,NA,NA +Gert,1981,9,11,18,30.2,-70.9,hurricane,2,90,988,NA,NA +Gert,1981,9,12,0,31.5,-69.6,hurricane,2,90,989,NA,NA +Gert,1981,9,12,6,32.5,-68.5,hurricane,2,90,990,NA,NA +Gert,1981,9,12,12,33.4,-67.1,hurricane,2,85,992,NA,NA +Gert,1981,9,12,18,34.1,-65.6,hurricane,1,70,997,NA,NA +Gert,1981,9,13,0,34.9,-63.5,tropical storm,NA,60,1002,NA,NA +Gert,1981,9,13,6,35.8,-60.7,tropical storm,NA,55,1006,NA,NA +Gert,1981,9,13,12,36.8,-57,tropical storm,NA,50,1008,NA,NA +Gert,1981,9,13,18,37.7,-53.2,tropical storm,NA,45,1010,NA,NA +Gert,1981,9,14,0,38.3,-49.4,tropical storm,NA,40,1010,NA,NA +Gert,1981,9,14,6,38.8,-45.6,tropical storm,NA,40,1011,NA,NA +Gert,1981,9,14,12,39.2,-41.9,tropical storm,NA,35,1012,NA,NA +Gert,1981,9,14,18,39.6,-38.6,tropical depression,NA,30,1012,NA,NA +Gert,1981,9,15,0,39.9,-35.3,tropical depression,NA,30,1012,NA,NA +Gert,1981,9,15,6,40.1,-33,tropical depression,NA,25,1012,NA,NA +Gert,1981,9,15,12,40.3,-30.7,tropical depression,NA,25,1012,NA,NA +Gert,1981,9,15,18,40.5,-28.2,tropical depression,NA,20,1012,NA,NA +Harvey,1981,9,11,18,14,-49,tropical depression,NA,25,1009,NA,NA +Harvey,1981,9,12,0,15.4,-50.7,tropical depression,NA,25,1006,NA,NA +Harvey,1981,9,12,6,17.1,-52.7,tropical depression,NA,25,1003,NA,NA +Harvey,1981,9,12,12,18.4,-54.7,tropical depression,NA,30,1001,NA,NA +Harvey,1981,9,12,18,19.4,-56.3,tropical storm,NA,40,995,NA,NA +Harvey,1981,9,13,0,20.2,-57.8,hurricane,1,70,990,NA,NA +Harvey,1981,9,13,6,21.2,-59.3,hurricane,1,70,985,NA,NA +Harvey,1981,9,13,12,22.2,-60.6,hurricane,1,75,983,NA,NA +Harvey,1981,9,13,18,23.1,-61.4,hurricane,1,80,980,NA,NA +Harvey,1981,9,14,0,24.1,-62,hurricane,2,85,978,NA,NA +Harvey,1981,9,14,6,25.2,-62.5,hurricane,2,90,976,NA,NA +Harvey,1981,9,14,12,26.4,-62.7,hurricane,2,95,960,NA,NA +Harvey,1981,9,14,18,27.6,-62.8,hurricane,3,110,952,NA,NA +Harvey,1981,9,15,0,28.4,-62.6,hurricane,4,115,946,NA,NA +Harvey,1981,9,15,6,29.5,-62.3,hurricane,3,110,952,NA,NA +Harvey,1981,9,15,12,30.8,-61.2,hurricane,3,105,958,NA,NA +Harvey,1981,9,15,18,32.1,-60.3,hurricane,3,100,963,NA,NA +Harvey,1981,9,16,0,33.2,-59.2,hurricane,2,90,970,NA,NA +Harvey,1981,9,16,6,34.2,-58,hurricane,2,85,975,NA,NA +Harvey,1981,9,16,12,34.9,-56.8,hurricane,1,80,980,NA,NA +Harvey,1981,9,16,18,35.3,-55.7,hurricane,1,65,990,NA,NA +Harvey,1981,9,17,0,35.7,-54.8,hurricane,1,65,991,NA,NA +Harvey,1981,9,17,6,35.9,-53.8,hurricane,1,65,992,NA,NA +Harvey,1981,9,17,12,36.2,-52.7,hurricane,1,65,993,NA,NA +Harvey,1981,9,17,18,36.5,-51.3,hurricane,1,65,995,NA,NA +Harvey,1981,9,18,0,37.1,-49.9,hurricane,1,65,996,NA,NA +Harvey,1981,9,18,6,37.5,-48.2,hurricane,1,65,997,NA,NA +Harvey,1981,9,18,12,37.9,-46.8,tropical storm,NA,55,998,NA,NA +Harvey,1981,9,18,18,38.3,-45.2,tropical storm,NA,45,1002,NA,NA +Harvey,1981,9,19,0,38.5,-43,tropical storm,NA,35,1005,NA,NA +Harvey,1981,9,19,6,38.3,-40.6,extratropical,NA,25,1006,NA,NA +Harvey,1981,9,19,12,38.1,-38,extratropical,NA,25,1007,NA,NA +Harvey,1981,9,19,18,37.7,-35.3,extratropical,NA,25,1008,NA,NA +Harvey,1981,9,20,0,36.7,-32.8,extratropical,NA,25,1009,NA,NA +Irene,1981,9,21,12,13.5,-32.5,tropical depression,NA,25,1015,NA,NA +Irene,1981,9,21,18,13.3,-33.6,tropical depression,NA,25,1013,NA,NA +Irene,1981,9,22,0,13.1,-34.9,tropical depression,NA,25,1012,NA,NA +Irene,1981,9,22,6,12.8,-36,tropical depression,NA,30,1011,NA,NA +Irene,1981,9,22,12,12.6,-37.2,tropical depression,NA,30,1010,NA,NA +Irene,1981,9,22,18,12.5,-38.4,tropical depression,NA,30,1009,NA,NA +Irene,1981,9,23,0,12.4,-39.6,tropical depression,NA,30,1007,NA,NA +Irene,1981,9,23,6,12.5,-40.8,tropical storm,NA,35,1005,NA,NA +Irene,1981,9,23,12,12.7,-42.2,tropical storm,NA,40,1003,NA,NA +Irene,1981,9,23,18,13,-43.8,tropical storm,NA,45,1001,NA,NA +Irene,1981,9,24,0,13.3,-45.3,tropical storm,NA,45,999,NA,NA +Irene,1981,9,24,6,13.8,-46.7,tropical storm,NA,50,996,NA,NA +Irene,1981,9,24,12,14.3,-47.8,tropical storm,NA,55,994,NA,NA +Irene,1981,9,24,18,15,-48.9,tropical storm,NA,60,991,NA,NA +Irene,1981,9,25,0,15.6,-50.1,hurricane,1,65,987,NA,NA +Irene,1981,9,25,6,16.6,-51.2,hurricane,1,70,983,NA,NA +Irene,1981,9,25,12,17.4,-52,hurricane,1,80,980,NA,NA +Irene,1981,9,25,18,18.2,-52.8,hurricane,2,90,977,NA,NA +Irene,1981,9,26,0,19.1,-53.5,hurricane,2,85,976,NA,NA +Irene,1981,9,26,6,19.7,-54.3,hurricane,1,80,976,NA,NA +Irene,1981,9,26,12,20.3,-55.1,hurricane,1,80,980,NA,NA +Irene,1981,9,26,18,21,-55.7,hurricane,2,85,982,NA,NA +Irene,1981,9,27,0,21.8,-56.4,hurricane,2,95,968,NA,NA +Irene,1981,9,27,6,22.4,-56.8,hurricane,2,90,966,NA,NA +Irene,1981,9,27,12,23,-57.2,hurricane,2,90,970,NA,NA +Irene,1981,9,27,18,23.8,-57.2,hurricane,2,95,966,NA,NA +Irene,1981,9,28,0,24.7,-56.9,hurricane,3,100,962,NA,NA +Irene,1981,9,28,6,25.8,-56.8,hurricane,3,105,966,NA,NA +Irene,1981,9,28,12,27,-56.7,hurricane,3,105,959,NA,NA +Irene,1981,9,28,18,28.4,-56.2,hurricane,3,105,960,NA,NA +Irene,1981,9,29,0,29.8,-55.3,hurricane,3,100,962,NA,NA +Irene,1981,9,29,6,31.3,-54,hurricane,3,100,965,NA,NA +Irene,1981,9,29,12,32.6,-52.6,hurricane,2,95,968,NA,NA +Irene,1981,9,29,18,34.1,-50.4,hurricane,2,90,972,NA,NA +Irene,1981,9,30,0,35.9,-47.5,hurricane,2,85,976,NA,NA +Irene,1981,9,30,6,37.5,-45.1,hurricane,1,80,980,NA,NA +Irene,1981,9,30,12,38.9,-42.4,hurricane,1,75,983,NA,NA +Irene,1981,9,30,18,40,-39.5,hurricane,1,70,986,NA,NA +Irene,1981,10,1,0,41.3,-36.1,hurricane,1,65,989,NA,NA +Irene,1981,10,1,6,42.5,-33.7,tropical storm,NA,60,991,NA,NA +Irene,1981,10,1,12,43.7,-32,tropical storm,NA,60,994,NA,NA +Irene,1981,10,1,18,44.8,-30.3,tropical storm,NA,55,996,NA,NA +Irene,1981,10,2,0,45.1,-28.5,tropical storm,NA,50,999,NA,NA +Jose,1981,10,29,12,25,-47.5,tropical depression,NA,25,1010,NA,NA +Jose,1981,10,29,18,26.4,-47.1,tropical depression,NA,30,1008,NA,NA +Jose,1981,10,30,0,27.7,-46.6,tropical storm,NA,35,1006,NA,NA +Jose,1981,10,30,6,28.7,-45.9,tropical storm,NA,35,1004,NA,NA +Jose,1981,10,30,12,29.6,-45.2,tropical storm,NA,35,1004,NA,NA +Jose,1981,10,30,18,30.2,-44.5,tropical storm,NA,35,1002,NA,NA +Jose,1981,10,31,0,30.7,-43.9,tropical storm,NA,35,1002,NA,NA +Jose,1981,10,31,6,31.1,-43.1,tropical storm,NA,40,1000,NA,NA +Jose,1981,10,31,12,31.5,-42.2,tropical storm,NA,45,998,NA,NA +Jose,1981,10,31,18,31.9,-40.8,tropical storm,NA,45,998,NA,NA +Jose,1981,11,1,0,32.5,-39,tropical storm,NA,40,998,NA,NA +Jose,1981,11,1,6,33.7,-37,tropical storm,NA,40,998,NA,NA +Jose,1981,11,1,12,35.3,-34.9,tropical storm,NA,35,998,NA,NA +Jose,1981,11,1,18,37.8,-32.1,subtropical depression,NA,30,998,NA,NA +Katrina,1981,11,3,0,16.9,-81.2,tropical depression,NA,25,1005,NA,NA +Katrina,1981,11,3,6,17.2,-81.3,tropical depression,NA,25,1005,NA,NA +Katrina,1981,11,3,12,17.5,-81.4,tropical depression,NA,25,1004,NA,NA +Katrina,1981,11,3,18,17.8,-81.4,tropical depression,NA,30,1002,NA,NA +Katrina,1981,11,4,0,18.1,-81.4,tropical depression,NA,30,1001,NA,NA +Katrina,1981,11,4,6,18.3,-81.4,tropical storm,NA,35,1000,NA,NA +Katrina,1981,11,4,12,18.6,-81.3,tropical storm,NA,40,998,NA,NA +Katrina,1981,11,4,18,18.9,-81.2,tropical storm,NA,50,996,NA,NA +Katrina,1981,11,5,0,19.2,-81.1,tropical storm,NA,60,993,NA,NA +Katrina,1981,11,5,6,19.6,-80.8,hurricane,1,65,988,NA,NA +Katrina,1981,11,5,12,20,-80.5,hurricane,1,75,980,NA,NA +Katrina,1981,11,5,18,20.4,-80.1,hurricane,1,70,988,NA,NA +Katrina,1981,11,6,0,20.9,-79.5,hurricane,1,65,996,NA,NA +Katrina,1981,11,6,6,21.6,-78.3,tropical storm,NA,55,999,NA,NA +Katrina,1981,11,6,12,22.4,-77,tropical storm,NA,50,1001,NA,NA +Katrina,1981,11,6,18,23.2,-75.5,tropical storm,NA,45,1001,NA,NA +Katrina,1981,11,7,0,24,-73.3,tropical storm,NA,40,1001,NA,NA +Katrina,1981,11,7,6,25,-70.6,tropical storm,NA,40,1002,NA,NA +Katrina,1981,11,7,12,25.9,-67.5,tropical storm,NA,40,1002,NA,NA +Katrina,1981,11,7,18,26.8,-64.5,tropical storm,NA,40,1002,NA,NA +Alberto,1982,6,2,12,21.7,-87.1,tropical depression,NA,20,1005,NA,NA +Alberto,1982,6,2,18,22.2,-86.5,tropical depression,NA,25,1004,NA,NA +Alberto,1982,6,3,0,22.6,-85.8,tropical depression,NA,30,1003,NA,NA +Alberto,1982,6,3,6,22.8,-85,tropical storm,NA,40,1001,NA,NA +Alberto,1982,6,3,12,23.2,-84.2,tropical storm,NA,50,995,NA,NA +Alberto,1982,6,3,18,24,-83.6,hurricane,1,75,985,NA,NA +Alberto,1982,6,4,0,24.8,-83.4,hurricane,1,65,992,NA,NA +Alberto,1982,6,4,6,24.9,-84.1,tropical storm,NA,55,998,NA,NA +Alberto,1982,6,4,12,24.9,-84.8,tropical storm,NA,45,1002,NA,NA +Alberto,1982,6,4,18,25,-84.2,tropical storm,NA,40,1005,NA,NA +Alberto,1982,6,5,0,25.1,-84.1,tropical depression,NA,30,1007,NA,NA +Alberto,1982,6,5,6,25.2,-84,tropical depression,NA,25,1008,NA,NA +Alberto,1982,6,5,12,25.3,-83.9,tropical depression,NA,25,1009,NA,NA +Alberto,1982,6,5,18,25.4,-83.6,tropical depression,NA,25,1010,NA,NA +Alberto,1982,6,6,0,25.5,-83.3,tropical depression,NA,25,1010,NA,NA +Alberto,1982,6,6,6,25.5,-83,tropical depression,NA,25,1010,NA,NA +Alberto,1982,6,6,12,25.5,-82.6,tropical depression,NA,20,1010,NA,NA +Beryl,1982,8,28,12,13.7,-22.2,tropical depression,NA,30,1008,NA,NA +Beryl,1982,8,28,18,13.9,-22.7,tropical storm,NA,35,1006,NA,NA +Beryl,1982,8,29,0,14.1,-23.6,tropical storm,NA,35,1005,NA,NA +Beryl,1982,8,29,6,14.5,-24.9,tropical storm,NA,40,1003,NA,NA +Beryl,1982,8,29,12,14.9,-26.3,tropical storm,NA,45,1002,NA,NA +Beryl,1982,8,29,18,15.3,-27.7,tropical storm,NA,45,1000,NA,NA +Beryl,1982,8,30,0,15.7,-29.1,tropical storm,NA,50,999,NA,NA +Beryl,1982,8,30,6,16,-30.6,tropical storm,NA,50,998,NA,NA +Beryl,1982,8,30,12,16.3,-32.1,tropical storm,NA,50,996,NA,NA +Beryl,1982,8,30,18,16.7,-33.6,tropical storm,NA,55,995,NA,NA +Beryl,1982,8,31,0,17,-35,tropical storm,NA,55,993,NA,NA +Beryl,1982,8,31,6,17.2,-36.4,tropical storm,NA,60,992,NA,NA +Beryl,1982,8,31,12,17.7,-37.8,tropical storm,NA,60,991,NA,NA +Beryl,1982,8,31,18,18,-39,tropical storm,NA,60,990,NA,NA +Beryl,1982,9,1,0,18.3,-40,tropical storm,NA,60,989,NA,NA +Beryl,1982,9,1,6,18.6,-40.9,tropical storm,NA,60,998,NA,NA +Beryl,1982,9,1,12,18.8,-41.7,tropical storm,NA,60,998,NA,NA +Beryl,1982,9,1,18,19,-42.4,tropical storm,NA,60,990,NA,NA +Beryl,1982,9,2,0,19.2,-43.2,tropical storm,NA,55,994,NA,NA +Beryl,1982,9,2,6,19.4,-44.1,tropical storm,NA,45,1000,NA,NA +Beryl,1982,9,2,12,19.7,-45.1,tropical storm,NA,35,1005,NA,NA +Beryl,1982,9,2,18,19.9,-46.2,tropical depression,NA,30,1008,NA,NA +Beryl,1982,9,3,0,20.1,-47.4,tropical depression,NA,30,1009,NA,NA +Beryl,1982,9,3,6,20.1,-48.6,tropical depression,NA,30,1009,NA,NA +Beryl,1982,9,3,12,20,-49.8,tropical depression,NA,30,1006,NA,NA +Beryl,1982,9,3,18,20,-51,tropical depression,NA,30,1006,NA,NA +Beryl,1982,9,4,0,19.9,-51.9,tropical depression,NA,30,1008,NA,NA +Beryl,1982,9,4,6,19.9,-52.9,tropical depression,NA,30,1009,NA,NA +Beryl,1982,9,4,12,19.8,-53.8,tropical depression,NA,30,1009,NA,NA +Beryl,1982,9,4,18,19.7,-54.9,tropical depression,NA,30,1009,NA,NA +Beryl,1982,9,5,0,19.6,-55.9,tropical depression,NA,30,1009,NA,NA +Beryl,1982,9,5,6,19.4,-57,tropical depression,NA,25,1009,NA,NA +Beryl,1982,9,5,12,19.4,-58.3,tropical depression,NA,25,1010,NA,NA +Beryl,1982,9,5,18,19.5,-59.7,tropical depression,NA,30,1010,NA,NA +Beryl,1982,9,6,0,19.7,-61,tropical depression,NA,30,1010,NA,NA +Beryl,1982,9,6,6,19.8,-62.3,tropical depression,NA,30,1010,NA,NA +Beryl,1982,9,6,12,20,-63.6,tropical depression,NA,25,1010,NA,NA +Chris,1982,9,9,0,26.2,-91,subtropical depression,NA,25,1010,NA,NA +Chris,1982,9,9,6,26.3,-91.7,subtropical depression,NA,25,1010,NA,NA +Chris,1982,9,9,12,26.4,-92.3,subtropical depression,NA,25,1009,NA,NA +Chris,1982,9,9,18,26.6,-93,subtropical depression,NA,30,1009,NA,NA +Chris,1982,9,10,0,26.8,-93.1,tropical depression,NA,30,1008,NA,NA +Chris,1982,9,10,6,26.9,-94,tropical depression,NA,30,1007,NA,NA +Chris,1982,9,10,12,27.3,-94.2,tropical storm,NA,35,1005,NA,NA +Chris,1982,9,10,18,27.9,-94.1,tropical storm,NA,45,1001,NA,NA +Chris,1982,9,11,0,28.4,-94.1,tropical storm,NA,50,1000,NA,NA +Chris,1982,9,11,6,29,-94,tropical storm,NA,50,997,NA,NA +Chris,1982,9,11,12,29.8,-93.8,tropical storm,NA,55,994,NA,NA +Chris,1982,9,11,18,30.8,-93.4,tropical storm,NA,40,999,NA,NA +Chris,1982,9,12,0,31.8,-93.2,tropical depression,NA,30,1004,NA,NA +Chris,1982,9,12,6,32.8,-92.8,tropical depression,NA,30,1006,NA,NA +Chris,1982,9,12,12,33.8,-92.4,tropical depression,NA,30,1008,NA,NA +Chris,1982,9,12,18,34.8,-91.8,tropical depression,NA,25,1010,NA,NA +Debby,1982,9,13,12,19.8,-69.5,tropical depression,NA,30,1010,NA,NA +Debby,1982,9,13,18,20.8,-70.2,tropical depression,NA,30,1009,NA,NA +Debby,1982,9,14,0,21.5,-71,tropical depression,NA,30,1009,NA,NA +Debby,1982,9,14,6,22.4,-71.8,tropical depression,NA,30,1008,NA,NA +Debby,1982,9,14,12,23.5,-71.9,tropical storm,NA,35,1006,NA,NA +Debby,1982,9,14,18,24.6,-71.8,tropical storm,NA,55,1000,NA,NA +Debby,1982,9,15,0,25.6,-71,hurricane,1,65,993,NA,NA +Debby,1982,9,15,6,26.7,-70.3,hurricane,1,65,990,NA,NA +Debby,1982,9,15,12,27.8,-69.6,hurricane,1,75,980,NA,NA +Debby,1982,9,15,18,29,-68.5,hurricane,2,90,969,NA,NA +Debby,1982,9,16,0,30.5,-67.5,hurricane,2,95,966,NA,NA +Debby,1982,9,16,6,32.1,-66.7,hurricane,2,95,966,NA,NA +Debby,1982,9,16,12,33.6,-65.8,hurricane,2,95,966,NA,NA +Debby,1982,9,16,18,35.1,-65.6,hurricane,2,95,966,NA,NA +Debby,1982,9,17,0,36.4,-65.6,hurricane,2,95,966,NA,NA +Debby,1982,9,17,6,36.8,-65.6,hurricane,2,95,966,NA,NA +Debby,1982,9,17,12,37.1,-65,hurricane,2,95,966,NA,NA +Debby,1982,9,17,18,37.6,-63.5,hurricane,3,100,960,NA,NA +Debby,1982,9,18,0,38.8,-62.3,hurricane,4,115,950,NA,NA +Debby,1982,9,18,6,40.1,-60.7,hurricane,3,110,952,NA,NA +Debby,1982,9,18,12,41.6,-58.5,hurricane,3,110,954,NA,NA +Debby,1982,9,18,18,43.5,-56.1,hurricane,3,100,960,NA,NA +Debby,1982,9,19,0,45.3,-53.5,hurricane,2,90,970,NA,NA +Debby,1982,9,19,6,47,-50.5,hurricane,1,75,979,NA,NA +Debby,1982,9,19,12,48.5,-47.1,hurricane,1,70,987,NA,NA +Debby,1982,9,19,18,50,-43.5,hurricane,1,70,987,NA,NA +Debby,1982,9,20,0,50.8,-39,hurricane,1,70,987,NA,NA +Debby,1982,9,20,6,51.5,-33.5,tropical storm,NA,60,993,NA,NA +Debby,1982,9,20,12,51.8,-26.6,tropical storm,NA,50,996,NA,NA +Debby,1982,9,20,18,51.5,-19,extratropical,NA,50,996,NA,NA +Ernesto,1982,9,30,12,24.8,-65.4,tropical depression,NA,30,1006,NA,NA +Ernesto,1982,9,30,18,25.3,-66.8,tropical depression,NA,30,1005,NA,NA +Ernesto,1982,10,1,0,25.9,-67.4,tropical depression,NA,30,1005,NA,NA +Ernesto,1982,10,1,6,26.5,-67.8,tropical storm,NA,35,1004,NA,NA +Ernesto,1982,10,1,12,27.3,-67.7,tropical storm,NA,40,1003,NA,NA +Ernesto,1982,10,1,18,27.9,-67.1,tropical storm,NA,50,1000,NA,NA +Ernesto,1982,10,2,0,28.5,-66.2,tropical storm,NA,60,997,NA,NA +Ernesto,1982,10,2,6,29.1,-65.1,tropical storm,NA,55,997,NA,NA +Ernesto,1982,10,2,12,29.8,-63,tropical storm,NA,50,998,NA,NA +Ernesto,1982,10,2,18,30.5,-60.5,tropical storm,NA,45,1001,NA,NA +Ernesto,1982,10,3,0,32,-58,extratropical,NA,40,1003,NA,NA +Alicia,1983,8,15,12,27.3,-90.5,tropical depression,NA,30,1009,NA,NA +Alicia,1983,8,15,18,27.2,-91,tropical storm,NA,40,1006,NA,NA +Alicia,1983,8,16,0,27.1,-91.5,tropical storm,NA,45,1005,NA,NA +Alicia,1983,8,16,6,27,-92,tropical storm,NA,50,1004,NA,NA +Alicia,1983,8,16,12,27.1,-92.4,tropical storm,NA,55,1002,NA,NA +Alicia,1983,8,16,18,27.3,-92.8,tropical storm,NA,60,998,NA,NA +Alicia,1983,8,17,0,27.4,-93.3,hurricane,1,65,991,NA,NA +Alicia,1983,8,17,6,27.7,-93.7,hurricane,1,70,987,NA,NA +Alicia,1983,8,17,12,27.9,-94.2,hurricane,1,75,983,NA,NA +Alicia,1983,8,17,18,28.1,-94.5,hurricane,2,90,974,NA,NA +Alicia,1983,8,18,0,28.4,-94.8,hurricane,2,95,969,NA,NA +Alicia,1983,8,18,6,28.9,-95,hurricane,3,100,963,NA,NA +Alicia,1983,8,18,7,29.1,-95.1,hurricane,3,100,962,NA,NA +Alicia,1983,8,18,12,29.7,-95.5,hurricane,1,80,965,NA,NA +Alicia,1983,8,18,18,30.5,-96,tropical storm,NA,40,990,NA,NA +Alicia,1983,8,19,0,31.5,-96.7,tropical storm,NA,35,998,NA,NA +Alicia,1983,8,19,6,32.4,-97.4,tropical depression,NA,30,1003,NA,NA +Alicia,1983,8,19,12,33.3,-98,tropical depression,NA,25,1006,NA,NA +Alicia,1983,8,19,18,34.4,-98.5,tropical depression,NA,25,1009,NA,NA +Alicia,1983,8,20,0,35.4,-99,tropical depression,NA,20,1010,NA,NA +Alicia,1983,8,20,6,36.5,-99.4,extratropical,NA,20,1011,NA,NA +Alicia,1983,8,20,12,37.6,-99.2,extratropical,NA,20,1011,NA,NA +Alicia,1983,8,20,18,38.9,-99,extratropical,NA,20,1011,NA,NA +Alicia,1983,8,21,0,40,-98,extratropical,NA,20,1010,NA,NA +Alicia,1983,8,21,6,41.2,-97,extratropical,NA,20,1010,NA,NA +Barry,1983,8,23,18,26,-76,tropical depression,NA,25,1012,NA,NA +Barry,1983,8,24,0,26.8,-76.2,tropical depression,NA,30,1011,NA,NA +Barry,1983,8,24,6,27.4,-76.3,tropical storm,NA,40,1010,NA,NA +Barry,1983,8,24,12,28.1,-76.8,tropical storm,NA,50,1011,NA,NA +Barry,1983,8,24,18,28.1,-77.6,tropical storm,NA,50,1011,NA,NA +Barry,1983,8,25,0,28.1,-78.9,tropical storm,NA,45,1011,NA,NA +Barry,1983,8,25,6,28,-79.8,tropical storm,NA,40,1012,NA,NA +Barry,1983,8,25,11,27.9,-80.6,tropical depression,NA,30,1013,NA,NA +Barry,1983,8,25,12,27.9,-80.8,tropical depression,NA,30,1013,NA,NA +Barry,1983,8,25,18,27.5,-82,tropical depression,NA,25,1014,NA,NA +Barry,1983,8,26,0,27,-83.8,tropical depression,NA,20,1013,NA,NA +Barry,1983,8,26,6,26.3,-85,tropical depression,NA,25,1013,NA,NA +Barry,1983,8,26,12,25.7,-86.3,tropical depression,NA,30,1012,NA,NA +Barry,1983,8,26,18,25.2,-87.6,tropical depression,NA,30,1011,NA,NA +Barry,1983,8,27,0,25.1,-88.9,tropical depression,NA,30,1010,NA,NA +Barry,1983,8,27,6,25.2,-90.2,tropical depression,NA,30,1009,NA,NA +Barry,1983,8,27,12,25.8,-91.6,tropical storm,NA,35,1008,NA,NA +Barry,1983,8,27,18,25.8,-93,tropical storm,NA,45,1002,NA,NA +Barry,1983,8,28,0,25.7,-94.5,tropical storm,NA,60,999,NA,NA +Barry,1983,8,28,6,25.5,-95.5,tropical storm,NA,60,998,NA,NA +Barry,1983,8,28,12,25.5,-96.4,hurricane,1,65,993,NA,NA +Barry,1983,8,28,17,25.4,-97.4,hurricane,1,70,986,NA,NA +Barry,1983,8,28,18,25.4,-97.5,hurricane,1,70,986,NA,NA +Barry,1983,8,29,0,25.5,-98.5,tropical storm,NA,40,995,NA,NA +Barry,1983,8,29,6,25.5,-99.5,tropical depression,NA,30,1005,NA,NA +Barry,1983,8,29,12,25.5,-100.5,tropical depression,NA,25,1010,NA,NA +Chantal,1983,9,10,12,30.2,-64.4,tropical depression,NA,25,1010,NA,NA +Chantal,1983,9,10,18,30.9,-64,tropical depression,NA,30,1008,NA,NA +Chantal,1983,9,11,0,31.6,-63.3,tropical storm,NA,35,1005,NA,NA +Chantal,1983,9,11,6,32,-62.4,tropical storm,NA,45,1000,NA,NA +Chantal,1983,9,11,12,32.4,-61.2,tropical storm,NA,55,996,NA,NA +Chantal,1983,9,11,18,32.8,-60,hurricane,1,65,994,NA,NA +Chantal,1983,9,12,0,33.1,-58.9,hurricane,1,65,994,NA,NA +Chantal,1983,9,12,6,33.6,-57.6,hurricane,1,65,994,NA,NA +Chantal,1983,9,12,12,34,-56.3,hurricane,1,65,994,NA,NA +Chantal,1983,9,12,18,34.4,-55.5,hurricane,1,65,994,NA,NA +Chantal,1983,9,13,0,34.8,-54.9,tropical storm,NA,55,1000,NA,NA +Chantal,1983,9,13,6,35.3,-54.5,tropical storm,NA,55,1000,NA,NA +Chantal,1983,9,13,12,35.9,-54.2,tropical storm,NA,45,1005,NA,NA +Chantal,1983,9,13,18,36.3,-53.9,tropical storm,NA,40,1005,NA,NA +Chantal,1983,9,14,0,36.8,-53.8,tropical storm,NA,40,1005,NA,NA +Chantal,1983,9,14,6,37.4,-53.8,tropical storm,NA,40,1006,NA,NA +Chantal,1983,9,14,12,38.7,-53.8,tropical storm,NA,35,1008,NA,NA +Chantal,1983,9,14,18,39.5,-52.5,tropical storm,NA,35,1008,NA,NA +Chantal,1983,9,15,0,40.4,-50.7,tropical depression,NA,30,1009,NA,NA +Chantal,1983,9,15,6,41.7,-48.8,tropical depression,NA,30,1009,NA,NA +Dean,1983,9,26,18,28,-73,subtropical storm,NA,35,1010,NA,NA +Dean,1983,9,27,0,28.5,-72.9,subtropical storm,NA,35,1009,NA,NA +Dean,1983,9,27,6,29,-72.8,subtropical storm,NA,40,1006,NA,NA +Dean,1983,9,27,12,29.5,-72.6,subtropical storm,NA,40,1003,NA,NA +Dean,1983,9,27,18,30.3,-72.1,tropical storm,NA,40,1000,NA,NA +Dean,1983,9,28,0,31.2,-71.7,tropical storm,NA,45,999,NA,NA +Dean,1983,9,28,6,32.2,-71.1,tropical storm,NA,45,999,NA,NA +Dean,1983,9,28,12,33.1,-70.7,tropical storm,NA,50,1000,NA,NA +Dean,1983,9,28,18,34,-70.7,tropical storm,NA,50,1001,NA,NA +Dean,1983,9,29,0,34.5,-70.8,tropical storm,NA,55,1003,NA,NA +Dean,1983,9,29,6,34.8,-71,tropical storm,NA,55,1005,NA,NA +Dean,1983,9,29,12,35.1,-71.5,tropical storm,NA,55,1006,NA,NA +Dean,1983,9,29,18,35.8,-73,tropical storm,NA,55,1007,NA,NA +Dean,1983,9,30,0,36.4,-74,tropical storm,NA,55,1008,NA,NA +Dean,1983,9,30,6,37,-74.9,tropical storm,NA,55,1009,NA,NA +Dean,1983,9,30,12,37.5,-75.8,tropical storm,NA,40,1010,NA,NA +Dean,1983,9,30,18,37.9,-76.9,tropical depression,NA,30,1015,NA,NA +Arthur,1984,8,28,18,10.5,-51,tropical depression,NA,25,1010,NA,NA +Arthur,1984,8,29,0,10.5,-52.5,tropical depression,NA,25,1009,NA,NA +Arthur,1984,8,29,6,10.6,-54,tropical depression,NA,25,1008,NA,NA +Arthur,1984,8,29,12,11.2,-55,tropical storm,NA,35,1006,NA,NA +Arthur,1984,8,29,18,11.8,-55.8,tropical storm,NA,45,1004,NA,NA +Arthur,1984,8,30,0,12.4,-56.3,tropical storm,NA,45,1004,NA,NA +Arthur,1984,8,30,6,13,-57,tropical storm,NA,40,1005,NA,NA +Arthur,1984,8,30,12,13.4,-57.4,tropical storm,NA,35,1006,NA,NA +Arthur,1984,8,30,18,14,-57.8,tropical storm,NA,35,1007,NA,NA +Arthur,1984,8,31,0,14.4,-58,tropical storm,NA,35,1009,NA,NA +Arthur,1984,8,31,6,14.8,-58.1,tropical storm,NA,35,1009,NA,NA +Arthur,1984,8,31,12,15.3,-58.2,tropical storm,NA,35,1010,NA,NA +Arthur,1984,8,31,18,16,-58.4,tropical depression,NA,30,1011,NA,NA +Arthur,1984,9,1,0,16.7,-58.6,tropical depression,NA,30,1011,NA,NA +Arthur,1984,9,1,6,16.9,-59.1,tropical depression,NA,30,1012,NA,NA +Arthur,1984,9,1,12,17,-59.8,tropical depression,NA,30,1011,NA,NA +Arthur,1984,9,1,18,17.2,-60.2,tropical depression,NA,25,1010,NA,NA +Arthur,1984,9,2,0,17.6,-60.6,tropical depression,NA,25,1010,NA,NA +Arthur,1984,9,2,6,17.9,-61,tropical depression,NA,25,1010,NA,NA +Arthur,1984,9,2,12,18.2,-61.2,tropical depression,NA,25,1010,NA,NA +Arthur,1984,9,2,18,18.7,-61.4,tropical depression,NA,30,1009,NA,NA +Arthur,1984,9,3,0,18.9,-61.8,tropical depression,NA,30,1008,NA,NA +Arthur,1984,9,3,6,19.2,-62,tropical depression,NA,30,1008,NA,NA +Arthur,1984,9,3,12,19.5,-62.2,tropical depression,NA,30,1010,NA,NA +Arthur,1984,9,3,18,19.8,-62.6,tropical depression,NA,30,1011,NA,NA +Arthur,1984,9,4,0,20.2,-62.9,tropical depression,NA,25,1012,NA,NA +Arthur,1984,9,4,6,21,-63.3,tropical depression,NA,25,1012,NA,NA +Arthur,1984,9,4,12,21.8,-64,tropical depression,NA,25,1013,NA,NA +Arthur,1984,9,4,18,22.3,-65,tropical depression,NA,25,1013,NA,NA +Arthur,1984,9,5,0,22.8,-66,tropical depression,NA,25,1014,NA,NA +Arthur,1984,9,5,6,23.1,-66.9,tropical depression,NA,25,1014,NA,NA +Arthur,1984,9,5,12,24,-67.9,tropical depression,NA,25,1014,NA,NA +Arthur,1984,9,5,18,25,-68.5,tropical depression,NA,25,1014,NA,NA +Bertha,1984,8,30,12,13.1,-41,tropical depression,NA,25,1009,NA,NA +Bertha,1984,8,30,18,13.3,-42.2,tropical depression,NA,25,1009,NA,NA +Bertha,1984,8,31,0,13.7,-43.4,tropical depression,NA,30,1008,NA,NA +Bertha,1984,8,31,6,14.4,-44.5,tropical depression,NA,30,1008,NA,NA +Bertha,1984,8,31,12,14.9,-45.3,tropical storm,NA,35,1007,NA,NA +Bertha,1984,8,31,18,15.7,-46.6,tropical storm,NA,35,1007,NA,NA +Bertha,1984,9,1,0,16.3,-47.7,tropical storm,NA,35,1007,NA,NA +Bertha,1984,9,1,6,17,-48.7,tropical storm,NA,35,1007,NA,NA +Bertha,1984,9,1,12,17.5,-49.5,tropical depression,NA,30,1008,NA,NA +Bertha,1984,9,1,18,18.2,-50.5,tropical depression,NA,30,1008,NA,NA +Bertha,1984,9,2,0,19.2,-51.3,tropical depression,NA,30,1008,NA,NA +Bertha,1984,9,2,6,20,-52.1,tropical depression,NA,30,1009,NA,NA +Bertha,1984,9,2,12,20.8,-53.1,tropical depression,NA,25,1010,NA,NA +Bertha,1984,9,2,18,22.6,-52.8,tropical depression,NA,25,1010,NA,NA +Bertha,1984,9,3,0,23.8,-52.5,tropical depression,NA,25,1010,NA,NA +Bertha,1984,9,3,6,25.1,-51.9,tropical depression,NA,25,1010,NA,NA +Bertha,1984,9,3,12,26.1,-50.5,tropical depression,NA,20,1012,NA,NA +Bertha,1984,9,3,18,27.1,-49.1,tropical depression,NA,20,1012,NA,NA +Bertha,1984,9,4,0,28.3,-47.8,tropical depression,NA,20,1013,NA,NA +Bertha,1984,9,4,6,29.6,-46,tropical depression,NA,20,1013,NA,NA +Bertha,1984,9,4,12,30.5,-44.5,tropical depression,NA,20,1013,NA,NA +Bertha,1984,9,4,18,32,-42,tropical depression,NA,20,1013,NA,NA +Cesar,1984,8,31,0,36.6,-66.9,subtropical depression,NA,25,1008,NA,NA +Cesar,1984,8,31,6,37.8,-66,subtropical depression,NA,30,1005,NA,NA +Cesar,1984,8,31,12,38.9,-65,tropical storm,NA,35,1001,NA,NA +Cesar,1984,8,31,18,39.8,-63.1,tropical storm,NA,35,999,NA,NA +Cesar,1984,9,1,0,40.6,-61.1,tropical storm,NA,40,999,NA,NA +Cesar,1984,9,1,6,41.7,-59,tropical storm,NA,40,998,NA,NA +Cesar,1984,9,1,12,42.9,-56.9,tropical storm,NA,40,998,NA,NA +Cesar,1984,9,1,18,44,-54.9,tropical storm,NA,40,998,NA,NA +Cesar,1984,9,2,0,44.9,-53.3,tropical storm,NA,45,998,NA,NA +Cesar,1984,9,2,6,45.5,-51.8,tropical storm,NA,45,997,NA,NA +Cesar,1984,9,2,12,46,-50.4,tropical storm,NA,50,994,NA,NA +Cesar,1984,9,2,18,46.2,-48.9,extratropical,NA,50,989,NA,NA +Diana,1984,9,8,12,28.5,-77.4,tropical storm,NA,35,1008,NA,NA +Diana,1984,9,8,18,28.6,-78.3,tropical storm,NA,40,1006,NA,NA +Diana,1984,9,9,0,28.5,-79.2,tropical storm,NA,45,1004,NA,NA +Diana,1984,9,9,6,28.6,-79.7,tropical storm,NA,50,1002,NA,NA +Diana,1984,9,9,12,29,-79.9,tropical storm,NA,55,1000,NA,NA +Diana,1984,9,9,18,29.4,-80.1,tropical storm,NA,60,995,NA,NA +Diana,1984,9,10,0,29.7,-80.4,tropical storm,NA,60,994,NA,NA +Diana,1984,9,10,6,30.1,-80.3,tropical storm,NA,60,995,NA,NA +Diana,1984,9,10,12,30.5,-80,hurricane,1,65,991,NA,NA +Diana,1984,9,10,18,30.8,-79.6,hurricane,1,70,986,NA,NA +Diana,1984,9,11,0,31.3,-79.1,hurricane,1,80,980,NA,NA +Diana,1984,9,11,6,31.8,-78.7,hurricane,2,85,973,NA,NA +Diana,1984,9,11,12,32.6,-78.4,hurricane,3,100,960,NA,NA +Diana,1984,9,11,18,33.4,-78,hurricane,3,110,952,NA,NA +Diana,1984,9,12,0,33.9,-77.7,hurricane,4,115,949,NA,NA +Diana,1984,9,12,6,34,-77.4,hurricane,2,95,963,NA,NA +Diana,1984,9,12,12,34,-77.2,hurricane,2,95,967,NA,NA +Diana,1984,9,12,18,33.9,-77.1,hurricane,2,90,970,NA,NA +Diana,1984,9,13,0,33.8,-77.4,hurricane,2,85,972,NA,NA +Diana,1984,9,13,6,33.9,-77.9,hurricane,1,80,978,NA,NA +Diana,1984,9,13,7,33.9,-78,hurricane,1,80,979,NA,NA +Diana,1984,9,13,12,34,-78.3,hurricane,1,65,990,NA,NA +Diana,1984,9,13,18,34.3,-78.5,tropical storm,NA,55,999,NA,NA +Diana,1984,9,14,0,34.6,-78.5,tropical storm,NA,45,1003,NA,NA +Diana,1984,9,14,6,35,-78,tropical storm,NA,40,1005,NA,NA +Diana,1984,9,14,12,35.3,-77.1,tropical storm,NA,45,1003,NA,NA +Diana,1984,9,14,18,35.6,-76,tropical storm,NA,50,1000,NA,NA +Diana,1984,9,15,0,36.2,-74.4,tropical storm,NA,55,997,NA,NA +Diana,1984,9,15,6,37.2,-72.7,tropical storm,NA,60,994,NA,NA +Diana,1984,9,15,12,38.5,-70.3,tropical storm,NA,60,992,NA,NA +Diana,1984,9,15,18,41,-66,tropical storm,NA,60,992,NA,NA +Diana,1984,9,16,0,43.5,-61.9,tropical storm,NA,60,994,NA,NA +Diana,1984,9,16,6,46,-57.8,extratropical,NA,60,995,NA,NA +Edouard,1984,9,14,0,20.3,-96.1,tropical depression,NA,30,1000,NA,NA +Edouard,1984,9,14,6,20.5,-96.2,tropical storm,NA,35,1000,NA,NA +Edouard,1984,9,14,12,20.7,-96.1,tropical storm,NA,40,1000,NA,NA +Edouard,1984,9,14,18,20.5,-96,tropical storm,NA,45,1001,NA,NA +Edouard,1984,9,15,0,20.3,-95.8,tropical storm,NA,55,998,NA,NA +Edouard,1984,9,15,6,20,-95.7,tropical depression,NA,25,1002,NA,NA +Edouard,1984,9,15,12,20,-95.7,tropical depression,NA,25,1001,NA,NA +Fran,1984,9,15,12,13.7,-21.3,tropical depression,NA,25,1010,NA,NA +Fran,1984,9,15,18,13.8,-22,tropical depression,NA,25,1010,NA,NA +Fran,1984,9,16,0,13.9,-22.7,tropical depression,NA,30,1010,NA,NA +Fran,1984,9,16,6,14,-23.4,tropical depression,NA,30,1009,NA,NA +Fran,1984,9,16,12,14.3,-24.1,tropical depression,NA,30,1008,NA,NA +Fran,1984,9,16,18,14.8,-24.8,tropical storm,NA,35,1006,NA,NA +Fran,1984,9,17,0,15.3,-25.3,tropical storm,NA,45,1000,NA,NA +Fran,1984,9,17,6,16.3,-26,tropical storm,NA,50,998,NA,NA +Fran,1984,9,17,12,17.3,-26.5,tropical storm,NA,50,996,NA,NA +Fran,1984,9,17,18,18.4,-27.1,tropical storm,NA,55,995,NA,NA +Fran,1984,9,18,0,19.5,-28,tropical storm,NA,55,994,NA,NA +Fran,1984,9,18,6,20.2,-29.6,tropical storm,NA,55,994,NA,NA +Fran,1984,9,18,12,20.9,-31,tropical storm,NA,55,994,NA,NA +Fran,1984,9,18,18,21.1,-32.8,tropical storm,NA,50,995,NA,NA +Fran,1984,9,19,0,21.1,-34.3,tropical storm,NA,50,996,NA,NA +Fran,1984,9,19,6,21,-36,tropical storm,NA,50,1000,NA,NA +Fran,1984,9,19,12,20.9,-37.9,tropical storm,NA,45,1005,NA,NA +Fran,1984,9,19,18,20.8,-39.5,tropical storm,NA,40,1005,NA,NA +Fran,1984,9,20,0,20.5,-40.7,tropical storm,NA,35,1006,NA,NA +Fran,1984,9,20,6,20.2,-42,tropical depression,NA,30,1008,NA,NA +Fran,1984,9,20,12,20,-43,tropical depression,NA,25,1009,NA,NA +Gustav,1984,9,16,18,28.6,-65.5,tropical depression,NA,30,1009,NA,NA +Gustav,1984,9,17,0,29.6,-65.5,tropical depression,NA,30,1009,NA,NA +Gustav,1984,9,17,6,30.3,-65.5,tropical depression,NA,30,1009,NA,NA +Gustav,1984,9,17,12,31.3,-65.2,tropical depression,NA,30,1009,NA,NA +Gustav,1984,9,17,18,32.1,-64.7,tropical depression,NA,30,1009,NA,NA +Gustav,1984,9,18,0,32.1,-64.7,tropical depression,NA,30,1009,NA,NA +Gustav,1984,9,18,6,32.1,-64.7,tropical depression,NA,30,1009,NA,NA +Gustav,1984,9,18,12,32.1,-64.7,tropical depression,NA,30,1009,NA,NA +Gustav,1984,9,18,18,32.1,-64.7,tropical storm,NA,45,1006,NA,NA +Gustav,1984,9,19,0,33.2,-63.6,tropical storm,NA,45,1006,NA,NA +Gustav,1984,9,19,6,34.6,-62.6,tropical storm,NA,45,1006,NA,NA +Hortense,1984,9,23,0,31.3,-58.3,subtropical depression,NA,30,1009,NA,NA +Hortense,1984,9,23,6,30.7,-58.7,subtropical depression,NA,30,1007,NA,NA +Hortense,1984,9,23,12,30,-59,subtropical depression,NA,30,1005,NA,NA +Hortense,1984,9,23,18,29.2,-59.1,subtropical storm,NA,35,1002,NA,NA +Hortense,1984,9,24,0,28.6,-59.2,subtropical storm,NA,35,1000,NA,NA +Hortense,1984,9,24,6,28.4,-59.4,subtropical storm,NA,35,999,NA,NA +Hortense,1984,9,24,12,28.4,-59.8,subtropical storm,NA,40,999,NA,NA +Hortense,1984,9,24,18,28.5,-60.1,tropical storm,NA,40,999,NA,NA +Hortense,1984,9,25,0,28.7,-60.3,tropical storm,NA,45,999,NA,NA +Hortense,1984,9,25,6,28.9,-60.4,tropical storm,NA,55,998,NA,NA +Hortense,1984,9,25,12,29.3,-60.6,tropical storm,NA,60,997,NA,NA +Hortense,1984,9,25,18,29.7,-60.8,hurricane,1,65,996,NA,NA +Hortense,1984,9,26,0,30.2,-61.1,hurricane,1,65,993,NA,NA +Hortense,1984,9,26,6,30.8,-61,tropical storm,NA,60,994,NA,NA +Hortense,1984,9,26,12,31.3,-60.7,tropical storm,NA,50,995,NA,NA +Hortense,1984,9,26,18,32,-60.9,tropical storm,NA,45,996,NA,NA +Hortense,1984,9,27,0,32.4,-60.8,tropical storm,NA,40,996,NA,NA +Hortense,1984,9,27,6,32.8,-60.5,tropical storm,NA,40,995,NA,NA +Hortense,1984,9,27,12,33,-60,tropical storm,NA,35,995,NA,NA +Hortense,1984,9,27,18,32.9,-59.8,tropical storm,NA,35,995,NA,NA +Hortense,1984,9,28,0,32.7,-59.9,tropical storm,NA,35,995,NA,NA +Hortense,1984,9,28,6,32.3,-60.2,tropical storm,NA,35,996,NA,NA +Hortense,1984,9,28,12,31.7,-61,tropical storm,NA,40,996,NA,NA +Hortense,1984,9,28,18,31.1,-61.7,tropical storm,NA,40,997,NA,NA +Hortense,1984,9,29,0,30.6,-62.4,tropical storm,NA,45,998,NA,NA +Hortense,1984,9,29,6,30.5,-63.2,tropical storm,NA,45,999,NA,NA +Hortense,1984,9,29,12,30.6,-64,tropical storm,NA,45,1001,NA,NA +Hortense,1984,9,29,18,30.9,-64.7,tropical storm,NA,40,1002,NA,NA +Hortense,1984,9,30,0,31.4,-65,tropical storm,NA,40,1004,NA,NA +Hortense,1984,9,30,6,32.3,-64.9,tropical storm,NA,35,1006,NA,NA +Hortense,1984,9,30,12,33.9,-64.2,tropical storm,NA,35,1007,NA,NA +Hortense,1984,9,30,18,35.8,-62.2,tropical storm,NA,35,1006,NA,NA +Hortense,1984,10,1,0,37.4,-59.8,tropical storm,NA,40,1004,NA,NA +Hortense,1984,10,1,6,38.8,-57,tropical storm,NA,45,1001,NA,NA +Hortense,1984,10,1,12,40,-54,tropical storm,NA,50,998,NA,NA +Hortense,1984,10,1,18,40.9,-50.4,tropical storm,NA,50,996,NA,NA +Hortense,1984,10,2,0,41.7,-46.8,tropical storm,NA,50,995,NA,NA +Hortense,1984,10,2,6,42.3,-43,tropical storm,NA,50,995,NA,NA +Hortense,1984,10,2,12,42.8,-39,tropical storm,NA,50,995,NA,NA +Hortense,1984,10,2,18,43.2,-35,tropical storm,NA,45,996,NA,NA +Isidore,1984,9,25,12,23.4,-73,tropical depression,NA,30,1003,NA,NA +Isidore,1984,9,25,18,23.9,-73.9,tropical depression,NA,30,1003,NA,NA +Isidore,1984,9,26,0,24.3,-74.9,tropical depression,NA,30,1002,NA,NA +Isidore,1984,9,26,6,24.5,-76,tropical depression,NA,30,1002,NA,NA +Isidore,1984,9,26,12,24.7,-77,tropical storm,NA,40,1001,NA,NA +Isidore,1984,9,26,18,25,-77.7,tropical storm,NA,45,1000,NA,NA +Isidore,1984,9,27,0,25.4,-78.4,tropical storm,NA,45,999,NA,NA +Isidore,1984,9,27,6,25.8,-79.1,tropical storm,NA,50,1000,NA,NA +Isidore,1984,9,27,12,26.4,-79.8,tropical storm,NA,50,1000,NA,NA +Isidore,1984,9,27,18,27.3,-80.5,tropical storm,NA,45,1001,NA,NA +Isidore,1984,9,28,0,27.8,-81.5,tropical storm,NA,45,1002,NA,NA +Isidore,1984,9,28,6,28.5,-82.3,tropical storm,NA,45,1002,NA,NA +Isidore,1984,9,28,12,29.5,-82.1,tropical storm,NA,45,1002,NA,NA +Isidore,1984,9,28,18,30.1,-81.9,tropical storm,NA,45,1001,NA,NA +Isidore,1984,9,29,0,30.7,-81.4,tropical storm,NA,45,1004,NA,NA +Isidore,1984,9,29,6,31.3,-80.5,tropical storm,NA,45,1005,NA,NA +Isidore,1984,9,29,12,32.2,-79.3,tropical storm,NA,45,1004,NA,NA +Isidore,1984,9,29,18,32.8,-77.8,tropical storm,NA,45,1002,NA,NA +Isidore,1984,9,30,0,33.6,-76.2,tropical storm,NA,50,1000,NA,NA +Isidore,1984,9,30,6,34.3,-74.4,tropical storm,NA,40,1005,NA,NA +Isidore,1984,9,30,12,34.8,-72.5,tropical storm,NA,40,1007,NA,NA +Isidore,1984,9,30,18,35.3,-70.4,tropical storm,NA,40,1007,NA,NA +Isidore,1984,10,1,0,35.8,-67.7,tropical depression,NA,30,1007,NA,NA +Isidore,1984,10,1,6,36.4,-65,tropical depression,NA,30,1008,NA,NA +Isidore,1984,10,1,12,36.8,-62.1,tropical depression,NA,25,1012,NA,NA +Josephine,1984,10,7,6,24.1,-68.9,subtropical depression,NA,25,1010,NA,NA +Josephine,1984,10,7,12,24,-69.4,subtropical depression,NA,25,1008,NA,NA +Josephine,1984,10,7,18,23.9,-69.9,subtropical depression,NA,25,1008,NA,NA +Josephine,1984,10,8,0,23.9,-70.4,subtropical depression,NA,30,1006,NA,NA +Josephine,1984,10,8,6,24,-70.9,subtropical depression,NA,30,1004,NA,NA +Josephine,1984,10,8,12,24.1,-71.4,tropical storm,NA,40,1002,NA,NA +Josephine,1984,10,8,18,24.3,-71.9,tropical storm,NA,50,998,NA,NA +Josephine,1984,10,9,0,24.6,-72.2,tropical storm,NA,55,995,NA,NA +Josephine,1984,10,9,6,25.2,-72.2,tropical storm,NA,60,994,NA,NA +Josephine,1984,10,9,12,25.8,-72.1,tropical storm,NA,60,995,NA,NA +Josephine,1984,10,9,18,26.4,-72.1,tropical storm,NA,60,993,NA,NA +Josephine,1984,10,10,0,26.9,-72.2,tropical storm,NA,60,990,NA,NA +Josephine,1984,10,10,6,27.2,-72.4,hurricane,1,65,987,NA,NA +Josephine,1984,10,10,12,27.5,-72.5,hurricane,1,70,987,NA,NA +Josephine,1984,10,10,18,28,-72.6,hurricane,1,70,985,NA,NA +Josephine,1984,10,11,0,28.6,-72.5,hurricane,1,75,983,NA,NA +Josephine,1984,10,11,6,29.3,-72.4,hurricane,1,80,979,NA,NA +Josephine,1984,10,11,12,30,-72.1,hurricane,2,85,974,NA,NA +Josephine,1984,10,11,18,30.7,-71.9,hurricane,2,85,971,NA,NA +Josephine,1984,10,12,0,31.4,-71.7,hurricane,2,90,970,NA,NA +Josephine,1984,10,12,6,32.2,-71.7,hurricane,2,90,973,NA,NA +Josephine,1984,10,12,12,33,-71.8,hurricane,2,90,977,NA,NA +Josephine,1984,10,12,18,33.7,-71.7,hurricane,2,90,976,NA,NA +Josephine,1984,10,13,0,34.3,-71.4,hurricane,2,85,971,NA,NA +Josephine,1984,10,13,6,34.8,-71.2,hurricane,2,85,973,NA,NA +Josephine,1984,10,13,12,35.4,-71.3,hurricane,1,80,975,NA,NA +Josephine,1984,10,13,18,36,-71.7,hurricane,1,70,973,NA,NA +Josephine,1984,10,14,0,36.6,-71.9,hurricane,1,65,977,NA,NA +Josephine,1984,10,14,6,36.8,-71.7,hurricane,1,65,975,NA,NA +Josephine,1984,10,14,12,36.6,-71.4,hurricane,1,70,971,NA,NA +Josephine,1984,10,14,18,36.3,-70.8,hurricane,1,70,968,NA,NA +Josephine,1984,10,15,0,35.9,-69.8,hurricane,1,70,965,NA,NA +Josephine,1984,10,15,6,36.2,-68.4,hurricane,1,65,966,NA,NA +Josephine,1984,10,15,12,36.8,-66.6,hurricane,1,65,973,NA,NA +Josephine,1984,10,15,18,37.6,-64.8,hurricane,1,65,971,NA,NA +Josephine,1984,10,16,0,38.3,-63,hurricane,1,65,973,NA,NA +Josephine,1984,10,16,6,39.2,-61.4,hurricane,1,65,977,NA,NA +Josephine,1984,10,16,12,39.9,-59.7,hurricane,1,65,982,NA,NA +Josephine,1984,10,16,18,40.6,-58.2,hurricane,1,65,986,NA,NA +Josephine,1984,10,17,0,41.3,-56.6,hurricane,1,65,988,NA,NA +Josephine,1984,10,17,6,42,-54.9,tropical storm,NA,60,990,NA,NA +Josephine,1984,10,17,12,43,-53.9,tropical storm,NA,60,992,NA,NA +Josephine,1984,10,17,18,43.6,-54.1,tropical storm,NA,55,993,NA,NA +Josephine,1984,10,18,0,44,-54.4,tropical storm,NA,50,994,NA,NA +Josephine,1984,10,18,6,44,-55.1,tropical storm,NA,50,994,NA,NA +Josephine,1984,10,18,12,44.1,-56,tropical storm,NA,50,995,NA,NA +Josephine,1984,10,18,18,44,-57.1,extratropical,NA,45,995,NA,NA +Josephine,1984,10,19,0,42.8,-57.7,extratropical,NA,45,995,NA,NA +Josephine,1984,10,19,6,41.2,-56.8,extratropical,NA,45,995,NA,NA +Josephine,1984,10,19,12,40.6,-55.1,extratropical,NA,40,995,NA,NA +Josephine,1984,10,19,18,40.7,-53.1,extratropical,NA,40,995,NA,NA +Josephine,1984,10,20,0,41.2,-50.9,extratropical,NA,35,995,NA,NA +Josephine,1984,10,20,6,41.8,-48.5,extratropical,NA,30,996,NA,NA +Josephine,1984,10,20,12,42.2,-45.7,extratropical,NA,30,997,NA,NA +Josephine,1984,10,20,18,42.8,-42.8,extratropical,NA,30,997,NA,NA +Josephine,1984,10,21,0,43.3,-39.5,extratropical,NA,30,998,NA,NA +Klaus,1984,11,5,18,14.7,-68.8,tropical depression,NA,15,1004,NA,NA +Klaus,1984,11,6,0,15.2,-68.1,tropical depression,NA,15,1003,NA,NA +Klaus,1984,11,6,6,15.8,-67.7,tropical depression,NA,20,1003,NA,NA +Klaus,1984,11,6,12,16.4,-67.1,tropical depression,NA,25,1002,NA,NA +Klaus,1984,11,6,18,17,-66.7,tropical storm,NA,35,1001,NA,NA +Klaus,1984,11,7,0,17.4,-66.2,tropical storm,NA,40,1000,NA,NA +Klaus,1984,11,7,6,18,-65.8,tropical storm,NA,45,998,NA,NA +Klaus,1984,11,7,12,18.5,-65.2,tropical storm,NA,50,997,NA,NA +Klaus,1984,11,7,18,19.1,-64.7,tropical storm,NA,60,995,NA,NA +Klaus,1984,11,8,0,19.4,-64,hurricane,1,65,992,NA,NA +Klaus,1984,11,8,6,19.6,-63.1,hurricane,1,70,989,NA,NA +Klaus,1984,11,8,12,19.7,-62.2,hurricane,1,75,986,NA,NA +Klaus,1984,11,8,18,19.9,-61.4,hurricane,1,80,984,NA,NA +Klaus,1984,11,9,0,20.4,-60.8,hurricane,1,80,982,NA,NA +Klaus,1984,11,9,6,21.1,-60.1,hurricane,1,80,981,NA,NA +Klaus,1984,11,9,12,21.8,-59.5,hurricane,1,80,980,NA,NA +Klaus,1984,11,9,18,22.7,-58.7,hurricane,1,80,980,NA,NA +Klaus,1984,11,10,0,23.8,-57.8,hurricane,1,80,979,NA,NA +Klaus,1984,11,10,6,24.8,-56.6,hurricane,1,75,978,NA,NA +Klaus,1984,11,10,12,26.2,-55.2,hurricane,1,75,977,NA,NA +Klaus,1984,11,10,18,28,-54,hurricane,1,75,975,NA,NA +Klaus,1984,11,11,0,29.5,-53,hurricane,1,75,971,NA,NA +Klaus,1984,11,11,6,31,-52.5,hurricane,1,70,975,NA,NA +Klaus,1984,11,11,12,32.2,-52.4,hurricane,1,70,977,NA,NA +Klaus,1984,11,11,18,33.4,-52.7,hurricane,1,70,980,NA,NA +Klaus,1984,11,12,0,34.6,-53.4,hurricane,1,70,982,NA,NA +Klaus,1984,11,12,6,34.8,-54.2,hurricane,1,70,983,NA,NA +Klaus,1984,11,12,12,35,-55,hurricane,1,65,984,NA,NA +Klaus,1984,11,12,18,35.5,-54.2,subtropical storm,NA,60,985,NA,NA +Klaus,1984,11,13,0,36.5,-52.8,subtropical storm,NA,60,986,NA,NA +Klaus,1984,11,13,6,38,-51,subtropical storm,NA,55,987,NA,NA +Klaus,1984,11,13,12,40,-49,subtropical storm,NA,55,988,NA,NA +Klaus,1984,11,13,18,42,-47,extratropical,NA,50,989,NA,NA +Lili,1984,12,12,12,34.5,-60.5,subtropical storm,NA,50,995,NA,NA +Lili,1984,12,12,18,35.5,-60,subtropical storm,NA,50,995,NA,NA +Lili,1984,12,13,0,35.5,-60,subtropical storm,NA,55,993,NA,NA +Lili,1984,12,13,6,35.5,-60,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,13,12,34.9,-59.8,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,13,18,33.8,-59.5,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,14,0,32.7,-59,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,14,6,32,-58,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,14,12,31.4,-57,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,14,18,30.5,-56.2,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,15,0,28.9,-55.9,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,15,6,27.2,-55.8,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,15,12,25.8,-56,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,15,18,24.5,-56.3,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,16,0,23.4,-56.2,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,16,6,22.4,-55.4,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,16,12,22.4,-54,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,16,18,23.2,-52.7,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,17,0,24.8,-50.8,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,17,6,28,-49.6,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,17,12,31.2,-49.9,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,17,18,33,-51,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,18,0,34.5,-53,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,18,6,34,-53.6,subtropical storm,NA,55,994,NA,NA +Lili,1984,12,18,12,33.1,-53.7,subtropical storm,NA,60,990,NA,NA +Lili,1984,12,18,18,32.8,-53.5,subtropical storm,NA,60,990,NA,NA +Lili,1984,12,19,0,32.5,-53.3,subtropical storm,NA,60,990,NA,NA +Lili,1984,12,19,6,32.4,-53.2,subtropical storm,NA,60,990,NA,NA +Lili,1984,12,19,12,32.3,-53.1,subtropical storm,NA,60,990,NA,NA +Lili,1984,12,19,18,32.2,-53,subtropical storm,NA,60,990,NA,NA +Lili,1984,12,20,0,32,-52.9,subtropical storm,NA,60,989,NA,NA +Lili,1984,12,20,6,31.6,-52.5,subtropical storm,NA,60,988,NA,NA +Lili,1984,12,20,12,31.1,-52.4,hurricane,1,70,980,NA,NA +Lili,1984,12,20,18,30.5,-52.3,hurricane,1,70,980,NA,NA +Lili,1984,12,21,0,30,-52.2,hurricane,1,70,980,NA,NA +Lili,1984,12,21,6,29.5,-52.1,hurricane,1,70,980,NA,NA +Lili,1984,12,21,12,29,-52,hurricane,1,70,980,NA,NA +Lili,1984,12,21,18,28.5,-52,hurricane,1,70,980,NA,NA +Lili,1984,12,22,0,27.8,-52.2,hurricane,1,70,980,NA,NA +Lili,1984,12,22,6,27,-52.9,hurricane,1,70,980,NA,NA +Lili,1984,12,22,12,26,-54,hurricane,1,70,980,NA,NA +Lili,1984,12,22,18,24.8,-55.6,hurricane,1,70,980,NA,NA +Lili,1984,12,23,0,23.6,-57.1,hurricane,1,65,987,NA,NA +Lili,1984,12,23,6,22.7,-58.9,tropical storm,NA,55,994,NA,NA +Lili,1984,12,23,12,22,-61,tropical storm,NA,50,1001,NA,NA +Lili,1984,12,23,18,21.2,-63.1,tropical storm,NA,45,1007,NA,NA +Lili,1984,12,24,0,20.5,-65.1,tropical storm,NA,35,1009,NA,NA +Lili,1984,12,24,6,19.9,-67.5,tropical depression,NA,30,1010,NA,NA +Lili,1984,12,24,12,19.2,-69.4,tropical depression,NA,25,1012,NA,NA +Ana,1985,7,15,18,29.4,-64.2,tropical depression,NA,30,1011,NA,NA +Ana,1985,7,16,0,29.7,-64.9,tropical depression,NA,30,1011,NA,NA +Ana,1985,7,16,6,30.1,-65.5,tropical depression,NA,30,1011,NA,NA +Ana,1985,7,16,12,30.6,-66.1,tropical depression,NA,30,1010,NA,NA +Ana,1985,7,16,18,31.3,-66.6,tropical storm,NA,35,1009,NA,NA +Ana,1985,7,17,0,32.2,-67,tropical storm,NA,35,1009,NA,NA +Ana,1985,7,17,6,33.3,-67.2,tropical storm,NA,40,1008,NA,NA +Ana,1985,7,17,12,34.4,-67.3,tropical storm,NA,40,1007,NA,NA +Ana,1985,7,17,18,35.6,-67.3,tropical storm,NA,45,1006,NA,NA +Ana,1985,7,18,0,37.2,-66.8,tropical storm,NA,45,1004,NA,NA +Ana,1985,7,18,6,39.1,-65.9,tropical storm,NA,45,1004,NA,NA +Ana,1985,7,18,12,40.8,-64.4,tropical storm,NA,50,1000,NA,NA +Ana,1985,7,18,18,42.5,-63.5,tropical storm,NA,55,996,NA,NA +Ana,1985,7,19,0,44.2,-60.3,tropical storm,NA,60,996,NA,NA +Ana,1985,7,19,6,46,-57.6,extratropical,NA,55,996,NA,NA +Ana,1985,7,19,12,48,-54.5,extratropical,NA,50,996,NA,NA +Bob,1985,7,21,6,26,-85,tropical depression,NA,25,1012,NA,NA +Bob,1985,7,21,12,25.8,-84.9,tropical depression,NA,25,1011,NA,NA +Bob,1985,7,21,18,25.6,-84.7,tropical depression,NA,25,1011,NA,NA +Bob,1985,7,22,0,25.6,-84.4,tropical depression,NA,25,1010,NA,NA +Bob,1985,7,22,6,25.8,-84.2,tropical depression,NA,30,1009,NA,NA +Bob,1985,7,22,12,26,-84,tropical depression,NA,30,1008,NA,NA +Bob,1985,7,22,18,26.2,-83.8,tropical storm,NA,35,1007,NA,NA +Bob,1985,7,23,0,26.5,-83.4,tropical storm,NA,35,1004,NA,NA +Bob,1985,7,23,6,26.6,-82.9,tropical storm,NA,40,1004,NA,NA +Bob,1985,7,23,12,26.4,-82.3,tropical storm,NA,40,1005,NA,NA +Bob,1985,7,23,18,26.4,-81.1,tropical storm,NA,40,1006,NA,NA +Bob,1985,7,24,0,27.2,-80.3,tropical storm,NA,40,1006,NA,NA +Bob,1985,7,24,6,28.3,-80.4,tropical storm,NA,50,1005,NA,NA +Bob,1985,7,24,12,29.4,-80.4,tropical storm,NA,60,1004,NA,NA +Bob,1985,7,24,18,30.5,-80.5,hurricane,1,65,1003,NA,NA +Bob,1985,7,25,0,31.6,-80.5,hurricane,1,65,1002,NA,NA +Bob,1985,7,25,3,32.2,-80.5,hurricane,1,65,1003,NA,NA +Bob,1985,7,25,6,32.9,-80.7,tropical storm,NA,55,1004,NA,NA +Bob,1985,7,25,12,34.8,-80.5,tropical storm,NA,45,1006,NA,NA +Bob,1985,7,25,18,36.6,-80.1,tropical depression,NA,30,1009,NA,NA +Bob,1985,7,26,0,38.3,-79.5,tropical depression,NA,25,1011,NA,NA +Claudette,1985,8,9,18,31.5,-80.5,subtropical depression,NA,25,1013,NA,NA +Claudette,1985,8,10,0,32,-79,subtropical depression,NA,25,1012,NA,NA +Claudette,1985,8,10,6,32.5,-77.5,subtropical depression,NA,25,1011,NA,NA +Claudette,1985,8,10,12,33,-76.5,subtropical depression,NA,30,1009,NA,NA +Claudette,1985,8,10,18,33.5,-75.3,subtropical depression,NA,30,1007,NA,NA +Claudette,1985,8,11,0,34,-74,tropical storm,NA,35,1005,NA,NA +Claudette,1985,8,11,6,34.3,-72.7,tropical storm,NA,35,1004,NA,NA +Claudette,1985,8,11,12,34.5,-71.5,tropical storm,NA,35,1003,NA,NA +Claudette,1985,8,11,18,34.7,-70.3,tropical storm,NA,40,1002,NA,NA +Claudette,1985,8,12,0,34.8,-69.1,tropical storm,NA,40,1001,NA,NA +Claudette,1985,8,12,6,34.7,-67.7,tropical storm,NA,45,1000,NA,NA +Claudette,1985,8,12,12,34.5,-66.4,tropical storm,NA,45,999,NA,NA +Claudette,1985,8,12,18,34.4,-64.9,tropical storm,NA,50,997,NA,NA +Claudette,1985,8,13,0,34.5,-63.2,tropical storm,NA,50,995,NA,NA +Claudette,1985,8,13,6,35.1,-61.5,tropical storm,NA,55,993,NA,NA +Claudette,1985,8,13,12,35.5,-59.5,tropical storm,NA,55,991,NA,NA +Claudette,1985,8,13,18,35.3,-57.5,tropical storm,NA,60,989,NA,NA +Claudette,1985,8,14,0,35.1,-55,tropical storm,NA,60,988,NA,NA +Claudette,1985,8,14,6,35.2,-52.5,hurricane,1,65,988,NA,NA +Claudette,1985,8,14,12,35.3,-50.1,hurricane,1,65,987,NA,NA +Claudette,1985,8,14,18,35.5,-47.8,hurricane,1,65,986,NA,NA +Claudette,1985,8,15,0,35.6,-45.2,hurricane,1,70,985,NA,NA +Claudette,1985,8,15,6,35.7,-42.6,hurricane,1,70,981,NA,NA +Claudette,1985,8,15,12,35.8,-40,hurricane,1,75,980,NA,NA +Claudette,1985,8,15,18,36.4,-37,hurricane,1,75,981,NA,NA +Claudette,1985,8,16,0,37.5,-34.5,tropical storm,NA,60,993,NA,NA +Claudette,1985,8,16,6,39.2,-31.6,tropical storm,NA,45,998,NA,NA +Claudette,1985,8,16,12,40.7,-28.7,tropical storm,NA,40,1001,NA,NA +Claudette,1985,8,16,18,42.6,-25.7,tropical storm,NA,40,1003,NA,NA +Claudette,1985,8,17,0,44.5,-22.5,extratropical,NA,40,1005,NA,NA +Danny,1985,8,12,0,18.5,-80.7,tropical depression,NA,25,1010,NA,NA +Danny,1985,8,12,6,19.2,-81.4,tropical depression,NA,25,1010,NA,NA +Danny,1985,8,12,12,19.9,-82.1,tropical depression,NA,25,1010,NA,NA +Danny,1985,8,12,18,20.5,-82.9,tropical depression,NA,25,1011,NA,NA +Danny,1985,8,13,0,21.1,-83.7,tropical depression,NA,25,1011,NA,NA +Danny,1985,8,13,6,21.7,-84.6,tropical depression,NA,25,1011,NA,NA +Danny,1985,8,13,12,22.3,-85.6,tropical depression,NA,30,1011,NA,NA +Danny,1985,8,13,18,23,-86.7,tropical depression,NA,30,1011,NA,NA +Danny,1985,8,14,0,23.7,-87.8,tropical storm,NA,35,1010,NA,NA +Danny,1985,8,14,6,24.4,-88.8,tropical storm,NA,45,1007,NA,NA +Danny,1985,8,14,12,25.1,-89.8,tropical storm,NA,50,1004,NA,NA +Danny,1985,8,14,18,25.9,-90.7,tropical storm,NA,60,1001,NA,NA +Danny,1985,8,15,0,26.8,-91.5,hurricane,1,70,997,NA,NA +Danny,1985,8,15,6,27.8,-92.2,hurricane,1,75,995,NA,NA +Danny,1985,8,15,12,28.9,-92.6,hurricane,1,80,988,NA,NA +Danny,1985,8,15,16,29.6,-92.7,hurricane,1,80,987,NA,NA +Danny,1985,8,15,18,30,-92.7,hurricane,1,70,988,NA,NA +Danny,1985,8,16,0,31,-92.4,tropical storm,NA,50,992,NA,NA +Danny,1985,8,16,6,32,-92,tropical storm,NA,40,997,NA,NA +Danny,1985,8,16,12,32.9,-91.4,tropical depression,NA,30,1000,NA,NA +Danny,1985,8,16,18,33.7,-90.4,tropical depression,NA,30,1002,NA,NA +Danny,1985,8,17,0,34.3,-89.2,tropical depression,NA,30,1004,NA,NA +Danny,1985,8,17,6,34.7,-87.8,tropical depression,NA,30,1006,NA,NA +Danny,1985,8,17,12,35,-86.3,tropical depression,NA,30,1008,NA,NA +Danny,1985,8,17,18,35.3,-84.8,tropical depression,NA,30,1010,NA,NA +Danny,1985,8,18,0,35.6,-83.4,tropical depression,NA,25,1011,NA,NA +Danny,1985,8,18,6,35.8,-82,tropical depression,NA,25,1011,NA,NA +Danny,1985,8,18,12,36,-80.6,tropical depression,NA,25,1012,NA,NA +Danny,1985,8,18,18,36.3,-79.2,tropical depression,NA,25,1012,NA,NA +Danny,1985,8,19,0,36.7,-77.9,extratropical,NA,25,1012,NA,NA +Danny,1985,8,19,6,37.1,-76.6,extratropical,NA,25,1012,NA,NA +Danny,1985,8,19,12,37.5,-75.3,extratropical,NA,25,1012,NA,NA +Danny,1985,8,19,18,38,-74,extratropical,NA,25,1013,NA,NA +Danny,1985,8,20,0,38.5,-72.7,extratropical,NA,20,1013,NA,NA +Danny,1985,8,20,6,39.1,-71.5,extratropical,NA,20,1014,NA,NA +Danny,1985,8,20,12,39.7,-70.4,extratropical,NA,20,1014,NA,NA +Danny,1985,8,20,18,40.4,-69.4,extratropical,NA,20,1014,NA,NA +Elena,1985,8,28,0,19.8,-74,tropical depression,NA,30,1012,NA,NA +Elena,1985,8,28,6,20.8,-76,tropical depression,NA,30,1010,NA,NA +Elena,1985,8,28,12,21.8,-78,tropical depression,NA,30,1008,NA,NA +Elena,1985,8,28,18,22.6,-80,tropical storm,NA,45,1006,NA,NA +Elena,1985,8,29,0,23.2,-81.8,tropical storm,NA,50,1004,NA,NA +Elena,1985,8,29,6,24,-83.5,tropical storm,NA,55,1000,NA,NA +Elena,1985,8,29,12,25,-85,hurricane,1,65,994,NA,NA +Elena,1985,8,29,18,25.9,-85.8,hurricane,1,70,990,NA,NA +Elena,1985,8,30,0,26.6,-86.6,hurricane,1,75,986,NA,NA +Elena,1985,8,30,6,27.3,-87.2,hurricane,1,80,980,NA,NA +Elena,1985,8,30,12,27.9,-87.3,hurricane,2,90,974,NA,NA +Elena,1985,8,30,18,28.3,-86.8,hurricane,2,90,978,NA,NA +Elena,1985,8,31,0,28.4,-86,hurricane,2,90,977,NA,NA +Elena,1985,8,31,6,28.6,-85.3,hurricane,2,90,976,NA,NA +Elena,1985,8,31,12,28.8,-84.4,hurricane,2,90,975,NA,NA +Elena,1985,8,31,18,28.8,-84,hurricane,2,90,974,NA,NA +Elena,1985,9,1,0,28.8,-83.8,hurricane,2,95,971,NA,NA +Elena,1985,9,1,6,28.6,-83.9,hurricane,3,100,965,NA,NA +Elena,1985,9,1,12,28.6,-84.2,hurricane,3,105,961,NA,NA +Elena,1985,9,1,18,28.9,-84.8,hurricane,3,110,954,NA,NA +Elena,1985,9,2,0,29.4,-85.9,hurricane,3,110,953,NA,NA +Elena,1985,9,2,6,29.7,-87.3,hurricane,3,105,957,NA,NA +Elena,1985,9,2,12,30.2,-88.8,hurricane,3,100,959,NA,NA +Elena,1985,9,2,13,30.4,-89.2,hurricane,3,100,959,NA,NA +Elena,1985,9,2,18,31,-90.4,tropical storm,NA,60,990,NA,NA +Elena,1985,9,3,0,31.9,-91.8,tropical storm,NA,45,1000,NA,NA +Elena,1985,9,3,6,32.4,-92.8,tropical depression,NA,30,1004,NA,NA +Elena,1985,9,3,12,33.2,-93.7,tropical depression,NA,25,1006,NA,NA +Elena,1985,9,3,18,34.5,-94,tropical depression,NA,25,1008,NA,NA +Elena,1985,9,4,0,35.9,-93.9,tropical depression,NA,20,1010,NA,NA +Elena,1985,9,4,6,37,-93.2,tropical depression,NA,20,1010,NA,NA +Elena,1985,9,4,12,38,-92.5,tropical depression,NA,20,1010,NA,NA +Elena,1985,9,4,18,38.8,-91.4,tropical depression,NA,20,1010,NA,NA +Fabian,1985,9,15,18,23.6,-70.8,tropical depression,NA,25,1008,NA,NA +Fabian,1985,9,16,0,24,-70.1,tropical depression,NA,25,1008,NA,NA +Fabian,1985,9,16,6,24.5,-69.4,tropical depression,NA,30,1006,NA,NA +Fabian,1985,9,16,12,25.1,-68,tropical depression,NA,30,1005,NA,NA +Fabian,1985,9,16,18,26,-66.5,tropical storm,NA,40,1003,NA,NA +Fabian,1985,9,17,0,26.7,-64.8,tropical storm,NA,45,1001,NA,NA +Fabian,1985,9,17,6,27.3,-63.1,tropical storm,NA,50,996,NA,NA +Fabian,1985,9,17,12,28.1,-61.2,tropical storm,NA,55,994,NA,NA +Fabian,1985,9,17,18,28.9,-59.8,tropical storm,NA,55,994,NA,NA +Fabian,1985,9,18,0,29.7,-58,tropical storm,NA,55,994,NA,NA +Fabian,1985,9,18,6,30.2,-56.1,tropical storm,NA,55,994,NA,NA +Fabian,1985,9,18,12,30.8,-54.4,tropical storm,NA,55,994,NA,NA +Fabian,1985,9,18,18,31.1,-52.4,tropical storm,NA,55,994,NA,NA +Fabian,1985,9,19,0,31.5,-50.4,tropical storm,NA,55,994,NA,NA +Fabian,1985,9,19,6,31.8,-47,tropical storm,NA,55,994,NA,NA +Fabian,1985,9,19,12,32.1,-42.5,tropical storm,NA,55,994,NA,NA +Gloria,1985,9,16,12,13.3,-23.6,tropical depression,NA,25,1009,NA,NA +Gloria,1985,9,16,18,13.8,-24.8,tropical depression,NA,25,1008,NA,NA +Gloria,1985,9,17,0,14.1,-25.9,tropical depression,NA,30,1008,NA,NA +Gloria,1985,9,17,6,14.3,-27.1,tropical depression,NA,30,1008,NA,NA +Gloria,1985,9,17,12,14.6,-28.3,tropical storm,NA,35,1007,NA,NA +Gloria,1985,9,17,18,14.7,-29.6,tropical storm,NA,35,1007,NA,NA +Gloria,1985,9,18,0,14.9,-31.7,tropical storm,NA,35,1006,NA,NA +Gloria,1985,9,18,6,15,-33.8,tropical storm,NA,35,1006,NA,NA +Gloria,1985,9,18,12,15.1,-35.9,tropical storm,NA,35,1006,NA,NA +Gloria,1985,9,18,18,15.4,-38.1,tropical depression,NA,30,1006,NA,NA +Gloria,1985,9,19,0,15.8,-39.5,tropical depression,NA,30,1006,NA,NA +Gloria,1985,9,19,6,16.2,-40.9,tropical depression,NA,30,1006,NA,NA +Gloria,1985,9,19,12,16.6,-42.2,tropical depression,NA,30,1006,NA,NA +Gloria,1985,9,19,18,17,-43.8,tropical depression,NA,30,1006,NA,NA +Gloria,1985,9,20,0,17.2,-45.1,tropical storm,NA,35,1005,NA,NA +Gloria,1985,9,20,6,17.4,-46.7,tropical storm,NA,40,1004,NA,NA +Gloria,1985,9,20,12,17.5,-48.1,tropical storm,NA,45,1003,NA,NA +Gloria,1985,9,20,18,17.6,-49.8,tropical storm,NA,45,1002,NA,NA +Gloria,1985,9,21,0,17.7,-51.2,tropical storm,NA,50,1001,NA,NA +Gloria,1985,9,21,6,17.7,-52.8,tropical storm,NA,55,1001,NA,NA +Gloria,1985,9,21,12,17.7,-54.2,tropical storm,NA,60,1000,NA,NA +Gloria,1985,9,21,18,17.7,-55.3,hurricane,1,65,1000,NA,NA +Gloria,1985,9,22,0,17.8,-56.3,hurricane,1,65,1000,NA,NA +Gloria,1985,9,22,6,17.8,-57.1,hurricane,1,70,996,NA,NA +Gloria,1985,9,22,12,17.8,-58.2,hurricane,1,70,992,NA,NA +Gloria,1985,9,22,18,18.4,-59,hurricane,1,65,990,NA,NA +Gloria,1985,9,23,0,19,-60.2,hurricane,1,65,990,NA,NA +Gloria,1985,9,23,6,19.7,-61.5,hurricane,1,65,989,NA,NA +Gloria,1985,9,23,12,20.4,-62.9,hurricane,1,65,987,NA,NA +Gloria,1985,9,23,18,21,-64.2,hurricane,1,75,980,NA,NA +Gloria,1985,9,24,0,21.5,-65.5,hurricane,2,95,956,NA,NA +Gloria,1985,9,24,6,21.9,-66.8,hurricane,3,100,952,NA,NA +Gloria,1985,9,24,12,22.5,-67.9,hurricane,3,100,950,NA,NA +Gloria,1985,9,24,18,23.2,-69,hurricane,3,105,935,NA,NA +Gloria,1985,9,25,0,24.2,-70,hurricane,4,120,920,NA,NA +Gloria,1985,9,25,6,25.1,-70.9,hurricane,4,125,920,NA,NA +Gloria,1985,9,25,12,26.1,-72,hurricane,4,115,926,NA,NA +Gloria,1985,9,25,18,26.9,-73,hurricane,2,95,933,NA,NA +Gloria,1985,9,26,0,27.8,-74,hurricane,2,85,940,NA,NA +Gloria,1985,9,26,6,28.9,-75,hurricane,1,80,944,NA,NA +Gloria,1985,9,26,12,30,-75.5,hurricane,1,80,946,NA,NA +Gloria,1985,9,26,18,31.4,-76.2,hurricane,2,85,944,NA,NA +Gloria,1985,9,27,0,33.2,-76,hurricane,2,90,942,NA,NA +Gloria,1985,9,27,5,35.2,-75.6,hurricane,2,90,942,NA,NA +Gloria,1985,9,27,6,35.5,-75.5,hurricane,2,90,942,NA,NA +Gloria,1985,9,27,12,38.4,-74.5,hurricane,2,85,951,NA,NA +Gloria,1985,9,27,16,40.6,-73.3,hurricane,1,75,961,NA,NA +Gloria,1985,9,27,18,41.9,-72.8,hurricane,1,75,964,NA,NA +Gloria,1985,9,28,0,45.5,-70,extratropical,NA,50,986,NA,NA +Gloria,1985,9,28,6,48.1,-67.8,extratropical,NA,50,987,NA,NA +Gloria,1985,9,28,12,49.5,-64.5,extratropical,NA,50,987,NA,NA +Gloria,1985,9,28,18,50.8,-61.2,extratropical,NA,50,987,NA,NA +Gloria,1985,9,29,0,51.5,-57.5,extratropical,NA,50,990,NA,NA +Gloria,1985,9,29,6,52.1,-53.8,extratropical,NA,50,990,NA,NA +Gloria,1985,9,29,12,52.4,-50,extratropical,NA,50,990,NA,NA +Gloria,1985,9,29,18,52.5,-47.5,extratropical,NA,50,990,NA,NA +Gloria,1985,9,30,0,52.5,-45,extratropical,NA,50,990,NA,NA +Gloria,1985,9,30,6,52.5,-42.5,extratropical,NA,50,990,NA,NA +Gloria,1985,9,30,12,52.5,-40,extratropical,NA,50,990,NA,NA +Gloria,1985,9,30,18,52.9,-37.9,extratropical,NA,50,990,NA,NA +Gloria,1985,10,1,0,53.3,-35.9,extratropical,NA,50,990,NA,NA +Gloria,1985,10,1,6,53.8,-34,extratropical,NA,50,990,NA,NA +Gloria,1985,10,1,12,54.5,-32,extratropical,NA,50,990,NA,NA +Gloria,1985,10,1,18,55.5,-30,extratropical,NA,50,990,NA,NA +Gloria,1985,10,2,0,56.6,-29,extratropical,NA,50,960,NA,NA +Henri,1985,9,21,18,29.6,-74.3,tropical depression,NA,25,1008,NA,NA +Henri,1985,9,22,0,30.5,-74.4,tropical depression,NA,25,1008,NA,NA +Henri,1985,9,22,6,31.5,-74.5,tropical depression,NA,25,1009,NA,NA +Henri,1985,9,22,12,32.4,-74.6,tropical depression,NA,25,1011,NA,NA +Henri,1985,9,22,18,33.3,-74.6,tropical depression,NA,30,1011,NA,NA +Henri,1985,9,23,0,34.3,-74.5,tropical depression,NA,30,1010,NA,NA +Henri,1985,9,23,6,35.3,-74.3,tropical storm,NA,35,1007,NA,NA +Henri,1985,9,23,12,36,-74.1,tropical storm,NA,50,996,NA,NA +Henri,1985,9,23,18,36.7,-74,tropical storm,NA,45,1000,NA,NA +Henri,1985,9,24,0,37.4,-74,tropical storm,NA,40,1004,NA,NA +Henri,1985,9,24,6,38.2,-74,tropical storm,NA,35,1005,NA,NA +Henri,1985,9,24,12,39.2,-73.7,tropical storm,NA,35,1006,NA,NA +Henri,1985,9,24,18,40.3,-73,tropical storm,NA,35,1006,NA,NA +Henri,1985,9,24,21,40.8,-72.5,tropical storm,NA,35,1007,NA,NA +Henri,1985,9,25,0,41.3,-71.8,tropical depression,NA,30,1007,NA,NA +Isabel,1985,10,7,0,17.8,-69.2,tropical depression,NA,30,1006,NA,NA +Isabel,1985,10,7,6,18.5,-70.5,tropical storm,NA,35,1006,NA,NA +Isabel,1985,10,7,12,19.8,-71.2,tropical storm,NA,40,1006,NA,NA +Isabel,1985,10,7,18,21.1,-71.5,tropical storm,NA,40,1005,NA,NA +Isabel,1985,10,8,0,22.4,-71.2,tropical storm,NA,45,1005,NA,NA +Isabel,1985,10,8,6,24.1,-71.1,tropical storm,NA,50,1005,NA,NA +Isabel,1985,10,8,12,25.2,-71.5,tropical storm,NA,55,1003,NA,NA +Isabel,1985,10,8,18,26.3,-72,tropical storm,NA,60,1002,NA,NA +Isabel,1985,10,9,0,27.3,-72.8,tropical storm,NA,60,997,NA,NA +Isabel,1985,10,9,6,27.9,-73.9,tropical storm,NA,60,1001,NA,NA +Isabel,1985,10,9,12,28.1,-75.2,tropical storm,NA,60,1003,NA,NA +Isabel,1985,10,9,18,28.2,-76.6,tropical storm,NA,60,1004,NA,NA +Isabel,1985,10,10,0,29,-77.8,tropical storm,NA,55,1005,NA,NA +Isabel,1985,10,10,6,29.1,-79.2,tropical storm,NA,45,1004,NA,NA +Isabel,1985,10,10,12,29.6,-80.3,tropical storm,NA,40,1006,NA,NA +Isabel,1985,10,10,18,30.3,-81,tropical storm,NA,35,1008,NA,NA +Isabel,1985,10,10,21,30.6,-81.4,tropical storm,NA,35,1008,NA,NA +Isabel,1985,10,11,0,30.8,-81.7,tropical depression,NA,30,1009,NA,NA +Isabel,1985,10,11,6,31.3,-81.8,tropical depression,NA,30,1011,NA,NA +Isabel,1985,10,11,12,31.7,-81.6,tropical depression,NA,25,1012,NA,NA +Isabel,1985,10,11,18,31.8,-80.9,tropical depression,NA,25,1013,NA,NA +Isabel,1985,10,12,0,31.7,-80.6,tropical depression,NA,25,1013,NA,NA +Isabel,1985,10,12,6,31.6,-80.3,tropical depression,NA,25,1013,NA,NA +Isabel,1985,10,12,12,31.5,-79.9,tropical depression,NA,25,1014,NA,NA +Isabel,1985,10,12,18,31.5,-79.5,tropical depression,NA,25,1013,NA,NA +Isabel,1985,10,13,0,31.7,-79.1,tropical depression,NA,25,1013,NA,NA +Isabel,1985,10,13,6,32,-78.8,tropical depression,NA,25,1013,NA,NA +Isabel,1985,10,13,12,32.3,-78.4,tropical depression,NA,25,1013,NA,NA +Isabel,1985,10,13,18,32.6,-78,tropical depression,NA,25,1012,NA,NA +Isabel,1985,10,14,0,32.9,-77.7,tropical depression,NA,25,1012,NA,NA +Isabel,1985,10,14,6,33.2,-77.1,tropical depression,NA,25,1011,NA,NA +Isabel,1985,10,14,12,33.5,-76.6,tropical depression,NA,25,1010,NA,NA +Isabel,1985,10,14,18,33.7,-76,tropical depression,NA,25,1010,NA,NA +Isabel,1985,10,15,0,33.9,-75.2,tropical depression,NA,25,1010,NA,NA +Isabel,1985,10,15,6,34.7,-74,tropical depression,NA,25,1010,NA,NA +Isabel,1985,10,15,12,35.8,-72.7,tropical depression,NA,25,1010,NA,NA +Juan,1985,10,26,0,24.5,-90.5,tropical depression,NA,30,1005,NA,NA +Juan,1985,10,26,6,24.2,-91.5,tropical depression,NA,30,1002,NA,NA +Juan,1985,10,26,12,23.8,-92.5,tropical storm,NA,35,999,NA,NA +Juan,1985,10,26,18,24.4,-92.8,tropical storm,NA,40,996,NA,NA +Juan,1985,10,27,0,24.6,-92,tropical storm,NA,45,993,NA,NA +Juan,1985,10,27,6,25.3,-92.2,tropical storm,NA,50,990,NA,NA +Juan,1985,10,27,12,25.7,-91.5,tropical storm,NA,55,986,NA,NA +Juan,1985,10,27,18,26.4,-91.1,tropical storm,NA,60,984,NA,NA +Juan,1985,10,28,0,27.8,-91.2,hurricane,1,65,982,NA,NA +Juan,1985,10,28,6,28.6,-91.5,hurricane,1,70,975,NA,NA +Juan,1985,10,28,12,29.4,-92,hurricane,1,75,972,NA,NA +Juan,1985,10,28,18,29.3,-93,hurricane,1,75,971,NA,NA +Juan,1985,10,29,0,28.9,-92.5,hurricane,1,75,973,NA,NA +Juan,1985,10,29,6,29,-91.9,hurricane,1,70,975,NA,NA +Juan,1985,10,29,11,29.5,-91.4,hurricane,1,65,974,NA,NA +Juan,1985,10,29,12,29.6,-91.3,hurricane,1,65,974,NA,NA +Juan,1985,10,29,18,30.3,-91.9,tropical storm,NA,60,978,NA,NA +Juan,1985,10,30,0,30.1,-92.3,tropical storm,NA,60,980,NA,NA +Juan,1985,10,30,6,29.8,-92.2,tropical storm,NA,55,982,NA,NA +Juan,1985,10,30,12,29.6,-92.1,tropical storm,NA,55,982,NA,NA +Juan,1985,10,30,18,29.3,-91.8,tropical storm,NA,55,982,NA,NA +Juan,1985,10,31,0,29.1,-91.3,tropical storm,NA,55,982,NA,NA +Juan,1985,10,31,6,28.9,-90.3,tropical storm,NA,55,980,NA,NA +Juan,1985,10,31,12,29.3,-89.1,tropical storm,NA,60,978,NA,NA +Juan,1985,10,31,18,30.3,-87.7,tropical storm,NA,55,982,NA,NA +Juan,1985,11,1,0,31.8,-87,tropical storm,NA,40,984,NA,NA +Juan,1985,11,1,6,33.5,-86.7,tropical storm,NA,35,986,NA,NA +Juan,1985,11,1,12,35.2,-86.6,extratropical,NA,30,989,NA,NA +Juan,1985,11,1,18,36.8,-87.1,extratropical,NA,25,992,NA,NA +Kate,1985,11,15,18,21.1,-63.8,tropical storm,NA,35,999,NA,NA +Kate,1985,11,16,0,21.6,-63.9,tropical storm,NA,45,998,NA,NA +Kate,1985,11,16,6,21.7,-64.2,tropical storm,NA,50,996,NA,NA +Kate,1985,11,16,12,21.5,-64.8,tropical storm,NA,55,993,NA,NA +Kate,1985,11,16,18,21.1,-65.3,hurricane,1,70,987,NA,NA +Kate,1985,11,17,0,20.7,-66,hurricane,1,75,981,NA,NA +Kate,1985,11,17,6,20.4,-66.4,hurricane,1,75,984,NA,NA +Kate,1985,11,17,12,20.7,-67.3,hurricane,1,75,982,NA,NA +Kate,1985,11,17,18,21.1,-68.8,hurricane,1,80,977,NA,NA +Kate,1985,11,18,0,21.4,-70,hurricane,1,80,976,NA,NA +Kate,1985,11,18,6,21.6,-71.8,hurricane,1,80,975,NA,NA +Kate,1985,11,18,12,21.6,-73.3,hurricane,1,80,975,NA,NA +Kate,1985,11,18,18,21.9,-75.1,hurricane,2,85,972,NA,NA +Kate,1985,11,19,0,22.1,-76.8,hurricane,2,95,967,NA,NA +Kate,1985,11,19,6,22.1,-78.4,hurricane,2,95,968,NA,NA +Kate,1985,11,19,12,22.7,-80.2,hurricane,2,90,971,NA,NA +Kate,1985,11,19,18,23.2,-81.9,hurricane,1,80,976,NA,NA +Kate,1985,11,20,0,23.9,-83.5,hurricane,2,85,972,NA,NA +Kate,1985,11,20,6,24.6,-84.5,hurricane,2,95,968,NA,NA +Kate,1985,11,20,12,25.2,-85.3,hurricane,3,105,956,NA,NA +Kate,1985,11,20,18,26,-86,hurricane,3,105,955,NA,NA +Kate,1985,11,21,0,26.8,-86.5,hurricane,3,105,954,NA,NA +Kate,1985,11,21,6,27.5,-86.6,hurricane,3,100,961,NA,NA +Kate,1985,11,21,12,28.3,-86.5,hurricane,2,95,965,NA,NA +Kate,1985,11,21,18,29.2,-86.1,hurricane,2,85,967,NA,NA +Kate,1985,11,21,22,30,-85.4,hurricane,2,85,967,NA,NA +Kate,1985,11,22,0,30.2,-85.1,hurricane,1,80,975,NA,NA +Kate,1985,11,22,6,31.5,-83.5,hurricane,1,65,983,NA,NA +Kate,1985,11,22,12,32.5,-81.5,tropical storm,NA,50,990,NA,NA +Kate,1985,11,22,18,33.7,-79.2,tropical storm,NA,45,996,NA,NA +Kate,1985,11,23,0,34.7,-76.2,tropical storm,NA,40,1003,NA,NA +Kate,1985,11,23,6,34.4,-73.5,tropical storm,NA,35,1005,NA,NA +Kate,1985,11,23,12,34,-72,tropical storm,NA,35,1006,NA,NA +Kate,1985,11,23,18,33.5,-70.5,extratropical,NA,35,1006,NA,NA +Andrew,1986,6,5,0,26.2,-75.8,subtropical depression,NA,30,1007,NA,NA +Andrew,1986,6,5,6,27.4,-76,subtropical depression,NA,30,1006,NA,NA +Andrew,1986,6,5,12,28.4,-76.4,subtropical depression,NA,30,1005,NA,NA +Andrew,1986,6,5,18,29.1,-77,subtropical depression,NA,30,1003,NA,NA +Andrew,1986,6,6,0,29.7,-77.5,tropical storm,NA,35,1002,NA,NA +Andrew,1986,6,6,6,30.2,-77.8,tropical storm,NA,40,1003,NA,NA +Andrew,1986,6,6,12,30.7,-78,tropical storm,NA,45,1005,NA,NA +Andrew,1986,6,6,18,31.4,-77.9,tropical storm,NA,45,1004,NA,NA +Andrew,1986,6,7,0,31.9,-77.8,tropical storm,NA,45,1003,NA,NA +Andrew,1986,6,7,6,32.8,-76.9,tropical storm,NA,45,1001,NA,NA +Andrew,1986,6,7,12,33.6,-76,tropical storm,NA,45,999,NA,NA +Andrew,1986,6,7,18,34.3,-75,tropical storm,NA,45,1000,NA,NA +Andrew,1986,6,8,0,35.2,-73.9,tropical storm,NA,45,1002,NA,NA +Andrew,1986,6,8,6,36.3,-72.7,tropical storm,NA,45,1002,NA,NA +Andrew,1986,6,8,12,37.9,-71,tropical storm,NA,40,1002,NA,NA +Andrew,1986,6,8,18,39.6,-68.9,tropical storm,NA,35,1001,NA,NA +Bonnie,1986,6,23,18,25.6,-87.2,tropical depression,NA,25,1014,NA,NA +Bonnie,1986,6,24,0,25.7,-87.8,tropical depression,NA,25,1013,NA,NA +Bonnie,1986,6,24,6,26,-88.4,tropical depression,NA,25,1014,NA,NA +Bonnie,1986,6,24,12,26.4,-88.9,tropical depression,NA,30,1011,NA,NA +Bonnie,1986,6,24,18,26.6,-89.5,tropical storm,NA,40,1006,NA,NA +Bonnie,1986,6,25,0,26.7,-90.3,tropical storm,NA,45,1001,NA,NA +Bonnie,1986,6,25,6,26.8,-91,tropical storm,NA,50,1002,NA,NA +Bonnie,1986,6,25,12,27.2,-91.7,tropical storm,NA,55,997,NA,NA +Bonnie,1986,6,25,18,27.7,-92.2,hurricane,1,65,1001,NA,NA +Bonnie,1986,6,26,0,28.2,-92.9,hurricane,1,70,999,NA,NA +Bonnie,1986,6,26,6,29,-93.7,hurricane,1,75,995,NA,NA +Bonnie,1986,6,26,10,29.6,-94.2,hurricane,1,75,990,NA,NA +Bonnie,1986,6,26,12,29.9,-94.3,hurricane,1,65,992,NA,NA +Bonnie,1986,6,26,18,30.9,-94.7,tropical storm,NA,35,1000,NA,NA +Bonnie,1986,6,27,0,31.8,-94.7,tropical depression,NA,30,1009,NA,NA +Bonnie,1986,6,27,6,32.8,-94.7,tropical depression,NA,25,1015,NA,NA +Bonnie,1986,6,27,12,33.9,-94.3,tropical depression,NA,20,1016,NA,NA +Bonnie,1986,6,27,18,34.8,-93.5,tropical depression,NA,20,1016,NA,NA +Bonnie,1986,6,28,0,35.6,-92.5,tropical depression,NA,15,1014,NA,NA +Bonnie,1986,6,28,6,36.5,-91.3,tropical depression,NA,10,1013,NA,NA +Bonnie,1986,6,28,12,37.2,-90,tropical depression,NA,10,1012,NA,NA +Charley,1986,8,13,12,30.1,-84,subtropical depression,NA,10,1009,NA,NA +Charley,1986,8,13,18,30.8,-84,subtropical depression,NA,10,1012,NA,NA +Charley,1986,8,14,0,31.4,-83.6,subtropical depression,NA,10,1013,NA,NA +Charley,1986,8,14,6,32,-83.1,subtropical depression,NA,10,1014,NA,NA +Charley,1986,8,14,12,32.5,-82.5,subtropical depression,NA,10,1015,NA,NA +Charley,1986,8,14,18,32.4,-82,subtropical depression,NA,10,1015,NA,NA +Charley,1986,8,15,0,32.3,-81.2,subtropical depression,NA,15,1013,NA,NA +Charley,1986,8,15,6,32.3,-80,subtropical depression,NA,15,1013,NA,NA +Charley,1986,8,15,12,32.2,-79,tropical depression,NA,30,1009,NA,NA +Charley,1986,8,15,18,32.2,-78.5,tropical storm,NA,35,1007,NA,NA +Charley,1986,8,16,0,32.3,-78.1,tropical storm,NA,40,1004,NA,NA +Charley,1986,8,16,6,32.4,-77.9,tropical storm,NA,40,1002,NA,NA +Charley,1986,8,16,12,32.6,-77.6,tropical storm,NA,45,999,NA,NA +Charley,1986,8,16,18,32.9,-77.4,tropical storm,NA,50,997,NA,NA +Charley,1986,8,17,0,33.2,-77.1,tropical storm,NA,55,995,NA,NA +Charley,1986,8,17,6,33.7,-76.9,tropical storm,NA,60,993,NA,NA +Charley,1986,8,17,12,34.4,-76.6,hurricane,1,65,991,NA,NA +Charley,1986,8,17,14,34.7,-76.5,hurricane,1,65,990,NA,NA +Charley,1986,8,17,18,35.4,-76.2,hurricane,1,65,988,NA,NA +Charley,1986,8,18,0,36.5,-75.8,hurricane,1,70,987,NA,NA +Charley,1986,8,18,6,37.4,-75.2,hurricane,1,65,990,NA,NA +Charley,1986,8,18,12,38.2,-74.1,tropical storm,NA,60,992,NA,NA +Charley,1986,8,18,18,39,-72.6,tropical storm,NA,60,994,NA,NA +Charley,1986,8,19,0,39.7,-70.9,tropical storm,NA,55,997,NA,NA +Charley,1986,8,19,6,40.4,-69.1,tropical storm,NA,50,999,NA,NA +Charley,1986,8,19,12,40.9,-67.5,tropical storm,NA,45,1000,NA,NA +Charley,1986,8,19,18,41.3,-65.8,tropical storm,NA,45,1002,NA,NA +Charley,1986,8,20,0,41.5,-64,tropical storm,NA,40,1003,NA,NA +Charley,1986,8,20,6,41.6,-62.5,tropical storm,NA,40,1004,NA,NA +Charley,1986,8,20,12,41.7,-60.2,tropical storm,NA,40,1005,NA,NA +Charley,1986,8,20,18,41.7,-58.4,tropical storm,NA,40,1005,NA,NA +Charley,1986,8,21,0,41.6,-56.6,extratropical,NA,40,1000,NA,NA +Charley,1986,8,21,6,41.5,-54.8,extratropical,NA,40,997,NA,NA +Charley,1986,8,21,12,41.4,-53.2,extratropical,NA,40,992,NA,NA +Charley,1986,8,21,18,41.3,-51.2,extratropical,NA,45,991,NA,NA +Charley,1986,8,22,0,41.3,-49.4,extratropical,NA,45,990,NA,NA +Charley,1986,8,22,6,41.3,-47.6,extratropical,NA,45,989,NA,NA +Charley,1986,8,22,12,41.4,-46.2,extratropical,NA,45,989,NA,NA +Charley,1986,8,22,18,41.5,-44.8,extratropical,NA,45,989,NA,NA +Charley,1986,8,23,0,41.8,-43.2,extratropical,NA,45,988,NA,NA +Charley,1986,8,23,6,42.3,-41.6,extratropical,NA,45,989,NA,NA +Charley,1986,8,23,12,43,-39.6,extratropical,NA,45,989,NA,NA +Charley,1986,8,23,18,43.9,-37.2,extratropical,NA,45,989,NA,NA +Charley,1986,8,24,0,44.9,-34.4,extratropical,NA,45,990,NA,NA +Charley,1986,8,24,6,46,-31.6,extratropical,NA,40,992,NA,NA +Charley,1986,8,24,12,47,-28.8,extratropical,NA,40,995,NA,NA +Charley,1986,8,24,18,48.2,-26,extratropical,NA,40,997,NA,NA +Charley,1986,8,25,0,49.2,-21.6,extratropical,NA,40,999,NA,NA +Charley,1986,8,25,6,50,-16.4,extratropical,NA,40,1000,NA,NA +Charley,1986,8,25,12,50.7,-11.4,extratropical,NA,40,994,NA,NA +Charley,1986,8,25,18,51.4,-7.2,extratropical,NA,50,988,NA,NA +Charley,1986,8,26,0,52.2,-4.4,extratropical,NA,45,981,NA,NA +Charley,1986,8,26,6,52.9,-2,extratropical,NA,45,980,NA,NA +Charley,1986,8,26,12,53.6,-0,extratropical,NA,45,982,NA,NA +Charley,1986,8,26,18,54.3,2,extratropical,NA,45,986,NA,NA +Charley,1986,8,27,0,55,3.7,extratropical,NA,45,984,NA,NA +Charley,1986,8,27,6,55.5,5,extratropical,NA,45,983,NA,NA +Charley,1986,8,27,12,56,5.8,extratropical,NA,35,985,NA,NA +Charley,1986,8,27,18,56.3,6,extratropical,NA,35,989,NA,NA +Charley,1986,8,28,0,56.6,6,extratropical,NA,35,989,NA,NA +Charley,1986,8,28,6,56.8,6,extratropical,NA,35,991,NA,NA +Charley,1986,8,28,12,57,6,extratropical,NA,30,998,NA,NA +Charley,1986,8,28,18,57,5.5,extratropical,NA,30,999,NA,NA +Charley,1986,8,29,0,57,5,extratropical,NA,25,1002,NA,NA +Charley,1986,8,29,6,56.8,5,extratropical,NA,20,1004,NA,NA +Charley,1986,8,29,12,56.5,5,extratropical,NA,20,1004,NA,NA +Charley,1986,8,29,18,56.2,6,extratropical,NA,15,1004,NA,NA +Charley,1986,8,30,0,56.2,8,extratropical,NA,15,1006,NA,NA +Danielle,1986,9,7,6,10.5,-52,tropical depression,NA,25,1008,NA,NA +Danielle,1986,9,7,12,11,-54,tropical depression,NA,30,1005,NA,NA +Danielle,1986,9,7,18,11.2,-55.8,tropical storm,NA,35,1003,NA,NA +Danielle,1986,9,8,0,11.8,-57.5,tropical storm,NA,45,1000,NA,NA +Danielle,1986,9,8,6,12.2,-59.4,tropical storm,NA,50,1000,NA,NA +Danielle,1986,9,8,12,12.5,-61.2,tropical storm,NA,50,1002,NA,NA +Danielle,1986,9,8,18,13,-63,tropical storm,NA,50,1002,NA,NA +Danielle,1986,9,9,0,13.4,-64.8,tropical storm,NA,45,1004,NA,NA +Danielle,1986,9,9,6,13.8,-66.5,tropical storm,NA,40,1006,NA,NA +Danielle,1986,9,9,12,14,-68.5,tropical storm,NA,35,1008,NA,NA +Danielle,1986,9,9,18,14.5,-70.5,tropical depression,NA,30,1010,NA,NA +Danielle,1986,9,10,0,14.8,-72.5,tropical depression,NA,30,1012,NA,NA +Danielle,1986,9,10,6,14.9,-75.5,tropical depression,NA,30,1012,NA,NA +Danielle,1986,9,10,12,14.8,-78.5,tropical depression,NA,30,1013,NA,NA +Earl,1986,9,10,18,21.8,-50.8,tropical depression,NA,30,1010,NA,NA +Earl,1986,9,11,0,22.4,-51.6,tropical storm,NA,35,1009,NA,NA +Earl,1986,9,11,6,23.2,-52.3,tropical storm,NA,45,1006,NA,NA +Earl,1986,9,11,12,24.1,-52.9,tropical storm,NA,55,1002,NA,NA +Earl,1986,9,11,18,25,-53.4,hurricane,1,70,999,NA,NA +Earl,1986,9,12,0,25.6,-53.8,hurricane,1,75,996,NA,NA +Earl,1986,9,12,6,26.3,-54.3,hurricane,1,80,993,NA,NA +Earl,1986,9,12,12,26.8,-54.8,hurricane,2,85,988,NA,NA +Earl,1986,9,12,18,27.2,-55.4,hurricane,2,90,985,NA,NA +Earl,1986,9,13,0,28.1,-55.5,hurricane,2,90,983,NA,NA +Earl,1986,9,13,6,28.8,-55.3,hurricane,2,90,983,NA,NA +Earl,1986,9,13,12,29.5,-54.9,hurricane,2,90,983,NA,NA +Earl,1986,9,13,18,30.1,-54.7,hurricane,2,90,983,NA,NA +Earl,1986,9,14,0,30.4,-53.8,hurricane,2,90,982,NA,NA +Earl,1986,9,14,6,30.5,-53.1,hurricane,2,90,980,NA,NA +Earl,1986,9,14,12,30.6,-52.4,hurricane,2,90,979,NA,NA +Earl,1986,9,14,18,30.6,-51.7,hurricane,2,90,979,NA,NA +Earl,1986,9,15,0,30.4,-51.1,hurricane,2,90,980,NA,NA +Earl,1986,9,15,6,30,-50.6,hurricane,2,90,980,NA,NA +Earl,1986,9,15,12,29.6,-50.1,hurricane,2,90,981,NA,NA +Earl,1986,9,15,18,29.2,-49.6,hurricane,2,85,982,NA,NA +Earl,1986,9,16,0,29,-49,hurricane,1,80,983,NA,NA +Earl,1986,9,16,6,28.7,-48.5,hurricane,1,80,983,NA,NA +Earl,1986,9,16,12,29.1,-48.9,hurricane,1,75,984,NA,NA +Earl,1986,9,16,18,29.5,-49.3,hurricane,1,75,984,NA,NA +Earl,1986,9,17,0,29.9,-49.9,hurricane,1,75,985,NA,NA +Earl,1986,9,17,6,30.6,-50.3,hurricane,1,70,985,NA,NA +Earl,1986,9,17,12,31.4,-50.9,hurricane,1,70,986,NA,NA +Earl,1986,9,17,18,32.6,-50.7,hurricane,1,70,986,NA,NA +Earl,1986,9,18,0,34,-50.4,hurricane,1,70,987,NA,NA +Earl,1986,9,18,6,36,-49.6,hurricane,1,65,988,NA,NA +Earl,1986,9,18,12,38.3,-48.4,hurricane,1,65,989,NA,NA +Earl,1986,9,18,18,41,-47.5,hurricane,1,65,990,NA,NA +Earl,1986,9,19,0,43.5,-46.3,extratropical,NA,60,992,NA,NA +Earl,1986,9,19,6,46.2,-44.8,extratropical,NA,60,993,NA,NA +Earl,1986,9,19,12,49,-42,extratropical,NA,55,995,NA,NA +Earl,1986,9,19,18,52,-39.5,extratropical,NA,55,996,NA,NA +Earl,1986,9,20,0,56,-34,extratropical,NA,55,997,NA,NA +Frances,1986,11,18,18,22.8,-62.8,tropical depression,NA,30,1009,NA,NA +Frances,1986,11,19,0,23.5,-62.9,tropical depression,NA,30,1008,NA,NA +Frances,1986,11,19,6,23.9,-62.9,tropical storm,NA,35,1007,NA,NA +Frances,1986,11,19,12,24.4,-62.8,tropical storm,NA,40,1006,NA,NA +Frances,1986,11,19,18,24.8,-62.7,tropical storm,NA,50,1004,NA,NA +Frances,1986,11,20,0,25.8,-62.1,tropical storm,NA,55,1002,NA,NA +Frances,1986,11,20,6,27,-61,hurricane,1,65,1001,NA,NA +Frances,1986,11,20,12,27.8,-59.6,hurricane,1,75,1000,NA,NA +Frances,1986,11,20,18,28.5,-58.7,hurricane,1,75,1000,NA,NA +Frances,1986,11,21,0,29.1,-58.2,hurricane,1,70,1001,NA,NA +Frances,1986,11,21,6,29.7,-58,hurricane,1,65,1002,NA,NA +Frances,1986,11,21,12,30.4,-57.9,tropical storm,NA,55,1003,NA,NA +Frances,1986,11,21,18,31.1,-57.9,tropical storm,NA,45,1005,NA,NA +AL031987,1987,8,9,12,26.3,-93.6,tropical depression,NA,30,1010,NA,NA +AL031987,1987,8,9,18,27.3,-94,tropical storm,NA,35,1008,NA,NA +AL031987,1987,8,10,0,28.4,-94.4,tropical storm,NA,40,1008,NA,NA +AL031987,1987,8,10,6,29.5,-94.5,tropical storm,NA,40,1009,NA,NA +AL031987,1987,8,10,12,30.5,-94.5,tropical storm,NA,40,1009,NA,NA +AL031987,1987,8,10,18,31.3,-94.1,tropical depression,NA,30,1009,NA,NA +AL031987,1987,8,11,0,31.8,-93.5,tropical depression,NA,25,1009,NA,NA +AL031987,1987,8,11,6,32.3,-92.7,tropical depression,NA,25,1009,NA,NA +AL031987,1987,8,11,12,32.3,-91.8,tropical depression,NA,25,1008,NA,NA +AL031987,1987,8,11,18,32.2,-91.2,tropical depression,NA,25,1008,NA,NA +AL031987,1987,8,12,0,32.1,-90.6,tropical depression,NA,25,1007,NA,NA +AL031987,1987,8,12,6,32,-90.2,tropical depression,NA,25,1007,NA,NA +AL031987,1987,8,12,12,32,-89.7,tropical depression,NA,25,1007,NA,NA +AL031987,1987,8,12,18,32,-89.3,tropical depression,NA,20,1007,NA,NA +AL031987,1987,8,13,0,31.9,-88.8,tropical depression,NA,20,1008,NA,NA +AL031987,1987,8,13,6,31.8,-88.4,tropical depression,NA,20,1008,NA,NA +AL031987,1987,8,13,12,31.7,-88,tropical depression,NA,20,1009,NA,NA +AL031987,1987,8,13,18,31.5,-87.7,tropical depression,NA,15,1009,NA,NA +AL031987,1987,8,14,0,31.3,-87.4,tropical depression,NA,15,1010,NA,NA +AL031987,1987,8,14,6,31.1,-87.1,tropical depression,NA,15,1010,NA,NA +AL031987,1987,8,14,12,30.8,-86.8,tropical depression,NA,15,1010,NA,NA +AL031987,1987,8,14,18,30.6,-86.6,tropical depression,NA,15,1011,NA,NA +AL031987,1987,8,15,0,30.3,-86.3,tropical depression,NA,15,1011,NA,NA +AL031987,1987,8,15,6,30,-86,tropical depression,NA,15,1011,NA,NA +AL031987,1987,8,15,12,29.8,-85.6,tropical depression,NA,15,1012,NA,NA +AL031987,1987,8,15,18,29.7,-85,tropical depression,NA,15,1012,NA,NA +AL031987,1987,8,16,0,29.8,-84.5,tropical depression,NA,15,1013,NA,NA +AL031987,1987,8,16,6,30.2,-84,tropical depression,NA,15,1014,NA,NA +AL031987,1987,8,16,12,30.5,-83.7,tropical depression,NA,15,1014,NA,NA +AL031987,1987,8,16,18,30.9,-83.2,tropical depression,NA,10,1014,NA,NA +AL031987,1987,8,17,0,31.4,-82.9,tropical depression,NA,10,1015,NA,NA +AL031987,1987,8,17,6,31.8,-82.3,tropical depression,NA,10,1015,NA,NA +Arlene,1987,8,8,0,34.3,-77.5,other low,NA,10,1016,NA,NA +Arlene,1987,8,8,6,33.8,-76.7,other low,NA,10,1016,NA,NA +Arlene,1987,8,8,12,33,-76,other low,NA,10,1015,NA,NA +Arlene,1987,8,8,18,32,-75.6,other low,NA,10,1015,NA,NA +Arlene,1987,8,9,0,31,-75.2,other low,NA,10,1014,NA,NA +Arlene,1987,8,9,6,30,-75,other low,NA,10,1014,NA,NA +Arlene,1987,8,9,12,29,-75.1,other low,NA,15,1013,NA,NA +Arlene,1987,8,9,18,28.1,-75.4,other low,NA,15,1012,NA,NA +Arlene,1987,8,10,0,27.2,-75.8,other low,NA,15,1011,NA,NA +Arlene,1987,8,10,6,26.3,-76.3,other low,NA,20,1010,NA,NA +Arlene,1987,8,10,12,25.5,-76.9,other low,NA,20,1009,NA,NA +Arlene,1987,8,10,18,25,-78,tropical depression,NA,25,1009,NA,NA +Arlene,1987,8,11,0,26.2,-78.2,tropical depression,NA,25,1009,NA,NA +Arlene,1987,8,11,6,27.2,-77.2,tropical depression,NA,25,1008,NA,NA +Arlene,1987,8,11,12,28.3,-75.7,tropical depression,NA,25,1008,NA,NA +Arlene,1987,8,11,18,29.4,-74.4,tropical storm,NA,35,1006,NA,NA +Arlene,1987,8,12,0,30.7,-73.2,tropical storm,NA,40,1002,NA,NA +Arlene,1987,8,12,6,31.4,-72.3,tropical storm,NA,40,1001,NA,NA +Arlene,1987,8,12,12,32,-71,tropical storm,NA,45,1000,NA,NA +Arlene,1987,8,12,18,32.4,-69.7,tropical storm,NA,45,999,NA,NA +Arlene,1987,8,13,0,32.6,-68.3,tropical storm,NA,55,997,NA,NA +Arlene,1987,8,13,6,32.9,-67,tropical storm,NA,55,997,NA,NA +Arlene,1987,8,13,12,33,-65.5,tropical storm,NA,55,998,NA,NA +Arlene,1987,8,13,18,33,-64.5,tropical storm,NA,55,999,NA,NA +Arlene,1987,8,14,0,33,-63.6,tropical storm,NA,50,1002,NA,NA +Arlene,1987,8,14,6,32.9,-62.8,tropical storm,NA,45,1003,NA,NA +Arlene,1987,8,14,12,32.8,-62.3,tropical storm,NA,50,996,NA,NA +Arlene,1987,8,14,18,32.6,-61.8,tropical storm,NA,55,994,NA,NA +Arlene,1987,8,15,0,32.4,-61.3,tropical storm,NA,55,994,NA,NA +Arlene,1987,8,15,6,32.2,-60.8,tropical storm,NA,55,995,NA,NA +Arlene,1987,8,15,12,31.7,-60.3,tropical storm,NA,50,996,NA,NA +Arlene,1987,8,15,18,31.3,-60,tropical storm,NA,45,998,NA,NA +Arlene,1987,8,16,0,30.9,-59.6,tropical storm,NA,45,999,NA,NA +Arlene,1987,8,16,6,30.5,-59.3,tropical storm,NA,45,1000,NA,NA +Arlene,1987,8,16,12,30.2,-59,tropical storm,NA,45,1000,NA,NA +Arlene,1987,8,16,18,29.9,-58.7,tropical storm,NA,45,1000,NA,NA +Arlene,1987,8,17,0,29.8,-58.2,tropical storm,NA,45,1000,NA,NA +Arlene,1987,8,17,6,29.8,-57.8,tropical storm,NA,45,1001,NA,NA +Arlene,1987,8,17,12,29.9,-57.3,tropical storm,NA,40,1002,NA,NA +Arlene,1987,8,17,18,30.2,-56.8,tropical storm,NA,40,1003,NA,NA +Arlene,1987,8,18,0,30.9,-56.2,tropical storm,NA,35,1004,NA,NA +Arlene,1987,8,18,6,31.5,-55.7,tropical storm,NA,35,1005,NA,NA +Arlene,1987,8,18,12,32.4,-54.7,tropical storm,NA,35,1005,NA,NA +Arlene,1987,8,18,18,33.3,-53.5,tropical storm,NA,35,1005,NA,NA +Arlene,1987,8,19,0,34,-52.2,tropical storm,NA,35,1005,NA,NA +Arlene,1987,8,19,6,34.8,-50.8,tropical storm,NA,35,1005,NA,NA +Arlene,1987,8,19,12,35.4,-49.5,tropical storm,NA,35,1005,NA,NA +Arlene,1987,8,19,18,35.5,-47.5,tropical storm,NA,35,1005,NA,NA +Arlene,1987,8,20,0,35,-46,tropical storm,NA,35,1004,NA,NA +Arlene,1987,8,20,6,34.5,-44.5,tropical storm,NA,40,1002,NA,NA +Arlene,1987,8,20,12,34,-43.5,tropical storm,NA,40,1000,NA,NA +Arlene,1987,8,20,18,33.8,-43,tropical storm,NA,50,997,NA,NA +Arlene,1987,8,21,0,33.7,-42.7,tropical storm,NA,55,995,NA,NA +Arlene,1987,8,21,6,33.6,-42.3,tropical storm,NA,55,994,NA,NA +Arlene,1987,8,21,12,33.5,-42,tropical storm,NA,55,993,NA,NA +Arlene,1987,8,21,18,34.5,-42.5,tropical storm,NA,60,991,NA,NA +Arlene,1987,8,22,0,35.5,-43,tropical storm,NA,60,989,NA,NA +Arlene,1987,8,22,6,36.5,-43,hurricane,1,65,988,NA,NA +Arlene,1987,8,22,12,38,-43,hurricane,1,65,987,NA,NA +Arlene,1987,8,22,18,39.5,-42.5,hurricane,1,65,987,NA,NA +Arlene,1987,8,23,0,41.5,-41,hurricane,1,65,987,NA,NA +Arlene,1987,8,23,6,44,-39,hurricane,1,65,987,NA,NA +Arlene,1987,8,23,12,46.5,-36.5,hurricane,1,65,988,NA,NA +Arlene,1987,8,23,18,48.5,-33,hurricane,1,65,988,NA,NA +Arlene,1987,8,24,0,50,-30,extratropical,NA,60,989,NA,NA +Arlene,1987,8,24,6,50.5,-27,extratropical,NA,60,991,NA,NA +Arlene,1987,8,24,12,50.5,-23.5,extratropical,NA,60,992,NA,NA +Arlene,1987,8,24,18,50,-20,extratropical,NA,55,995,NA,NA +Arlene,1987,8,25,0,48,-18,extratropical,NA,50,998,NA,NA +Arlene,1987,8,25,6,46,-17,extratropical,NA,45,1002,NA,NA +Arlene,1987,8,25,12,44,-16.5,extratropical,NA,35,1006,NA,NA +Arlene,1987,8,25,18,43,-15,extratropical,NA,25,1009,NA,NA +Arlene,1987,8,26,0,41.5,-14.5,extratropical,NA,20,1010,NA,NA +Arlene,1987,8,26,6,39.5,-14,extratropical,NA,15,1011,NA,NA +Arlene,1987,8,26,12,37.5,-11.5,extratropical,NA,10,1010,NA,NA +Arlene,1987,8,26,18,39,-8,extratropical,NA,10,1009,NA,NA +Arlene,1987,8,27,0,39,-6,extratropical,NA,15,1008,NA,NA +Arlene,1987,8,27,6,39,-5,extratropical,NA,15,1008,NA,NA +Arlene,1987,8,27,12,39,-4.5,extratropical,NA,15,1008,NA,NA +Arlene,1987,8,27,18,39,-4,extratropical,NA,10,1008,NA,NA +Arlene,1987,8,28,0,39,-4,extratropical,NA,10,1009,NA,NA +Bret,1987,8,18,0,14.8,-20,tropical depression,NA,25,1011,NA,NA +Bret,1987,8,18,6,14.9,-22,tropical depression,NA,25,1010,NA,NA +Bret,1987,8,18,12,15,-24,tropical depression,NA,30,1008,NA,NA +Bret,1987,8,18,18,15.1,-26,tropical storm,NA,35,1004,NA,NA +Bret,1987,8,19,0,15.2,-27.9,tropical storm,NA,35,1004,NA,NA +Bret,1987,8,19,6,15.3,-29.5,tropical storm,NA,35,1004,NA,NA +Bret,1987,8,19,12,15.4,-31,tropical storm,NA,35,1004,NA,NA +Bret,1987,8,19,18,15.5,-32.4,tropical storm,NA,40,1002,NA,NA +Bret,1987,8,20,0,15.6,-34,tropical storm,NA,40,1002,NA,NA +Bret,1987,8,20,6,15.7,-35.5,tropical storm,NA,45,1000,NA,NA +Bret,1987,8,20,12,15.8,-37,tropical storm,NA,45,1000,NA,NA +Bret,1987,8,20,18,15.9,-38.4,tropical storm,NA,45,1000,NA,NA +Bret,1987,8,21,0,16,-39.8,tropical storm,NA,40,1002,NA,NA +Bret,1987,8,21,6,16.4,-41,tropical storm,NA,40,1002,NA,NA +Bret,1987,8,21,12,16.9,-42.5,tropical storm,NA,35,1005,NA,NA +Bret,1987,8,21,18,17.1,-43.9,tropical storm,NA,35,1005,NA,NA +Bret,1987,8,22,0,17.5,-45,tropical storm,NA,35,1005,NA,NA +Bret,1987,8,22,6,17.8,-46.1,tropical storm,NA,35,1005,NA,NA +Bret,1987,8,22,12,18.1,-47.2,tropical storm,NA,35,1007,NA,NA +Bret,1987,8,22,18,18.4,-48.3,tropical depression,NA,30,1009,NA,NA +Bret,1987,8,23,0,19,-49.4,tropical depression,NA,30,1009,NA,NA +Bret,1987,8,23,6,19.8,-50.3,tropical depression,NA,30,1009,NA,NA +Bret,1987,8,23,12,20.5,-51.3,tropical depression,NA,25,1011,NA,NA +Bret,1987,8,23,18,21.4,-52.5,tropical depression,NA,25,1011,NA,NA +Bret,1987,8,24,0,22.2,-53.8,tropical depression,NA,25,1011,NA,NA +Bret,1987,8,24,6,23.8,-54.5,tropical depression,NA,25,1011,NA,NA +Cindy,1987,9,5,12,15.2,-31.3,tropical depression,NA,25,1011,NA,NA +Cindy,1987,9,5,18,16,-32.2,tropical depression,NA,30,1009,NA,NA +Cindy,1987,9,6,0,16.9,-33.1,tropical depression,NA,30,1009,NA,NA +Cindy,1987,9,6,6,18,-34.2,tropical depression,NA,30,1009,NA,NA +Cindy,1987,9,6,12,18.9,-35.3,tropical depression,NA,30,1009,NA,NA +Cindy,1987,9,6,18,20,-36.6,tropical depression,NA,30,1009,NA,NA +Cindy,1987,9,7,0,21.3,-37.8,tropical depression,NA,30,1009,NA,NA +Cindy,1987,9,7,6,22.9,-38.6,tropical depression,NA,30,1008,NA,NA +Cindy,1987,9,7,12,24.6,-39.3,tropical storm,NA,35,1007,NA,NA +Cindy,1987,9,7,18,26.4,-39.3,tropical storm,NA,40,1003,NA,NA +Cindy,1987,9,8,0,28.2,-39.4,tropical storm,NA,45,1000,NA,NA +Cindy,1987,9,8,6,30,-39.5,tropical storm,NA,45,1000,NA,NA +Cindy,1987,9,8,12,31.1,-39.5,tropical storm,NA,45,1000,NA,NA +Cindy,1987,9,8,18,32.2,-39.4,tropical storm,NA,40,1003,NA,NA +Cindy,1987,9,9,0,33.3,-39.3,tropical storm,NA,35,1005,NA,NA +Cindy,1987,9,9,6,34.4,-39,tropical storm,NA,35,1005,NA,NA +Cindy,1987,9,9,12,35.7,-37.9,tropical storm,NA,35,1007,NA,NA +Cindy,1987,9,9,18,37,-36.5,tropical storm,NA,35,1007,NA,NA +Cindy,1987,9,10,0,38.1,-34.9,tropical storm,NA,35,1007,NA,NA +Cindy,1987,9,10,6,39.7,-32.6,tropical storm,NA,35,1007,NA,NA +Cindy,1987,9,10,12,41,-30.5,tropical storm,NA,35,1007,NA,NA +Cindy,1987,9,10,18,42.5,-28,extratropical,NA,35,1005,NA,NA +Dennis,1987,9,8,18,10.8,-18.4,tropical depression,NA,25,1012,NA,NA +Dennis,1987,9,9,0,10.9,-19.5,tropical depression,NA,25,1011,NA,NA +Dennis,1987,9,9,6,10.9,-20.7,tropical depression,NA,25,1011,NA,NA +Dennis,1987,9,9,12,10.9,-21.9,tropical depression,NA,25,1011,NA,NA +Dennis,1987,9,9,18,10.8,-23,tropical depression,NA,30,1011,NA,NA +Dennis,1987,9,10,0,10.7,-23.6,tropical depression,NA,30,1011,NA,NA +Dennis,1987,9,10,6,10.7,-24.3,tropical depression,NA,30,1009,NA,NA +Dennis,1987,9,10,12,10.8,-25,tropical storm,NA,35,1008,NA,NA +Dennis,1987,9,10,18,10.9,-25.7,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,11,0,11.3,-26.3,tropical storm,NA,40,1003,NA,NA +Dennis,1987,9,11,6,11.8,-27,tropical storm,NA,40,1002,NA,NA +Dennis,1987,9,11,12,12.3,-27.7,tropical storm,NA,45,1001,NA,NA +Dennis,1987,9,11,18,12.8,-28.5,tropical storm,NA,45,1000,NA,NA +Dennis,1987,9,12,0,13.2,-29.5,tropical storm,NA,45,1000,NA,NA +Dennis,1987,9,12,6,13.5,-30.5,tropical storm,NA,40,1001,NA,NA +Dennis,1987,9,12,12,13.8,-31.5,tropical storm,NA,40,1002,NA,NA +Dennis,1987,9,12,18,14.2,-32.5,tropical storm,NA,35,1004,NA,NA +Dennis,1987,9,13,0,14.6,-33.2,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,13,6,15.1,-33.9,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,13,12,15.5,-34.6,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,13,18,15.9,-35.4,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,14,0,16.3,-36.7,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,14,6,16.8,-37.9,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,14,12,17.2,-39.2,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,14,18,17.7,-40.5,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,15,0,17.8,-41.5,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,15,6,17.8,-42.4,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,15,12,17.7,-43.4,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,15,18,17.6,-44.4,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,16,0,17.5,-45.1,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,16,6,17.5,-45.7,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,16,12,17.6,-46.3,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,16,18,17.6,-46.9,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,17,0,17.7,-47.7,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,17,6,17.8,-48.4,tropical storm,NA,35,1005,NA,NA +Dennis,1987,9,17,12,17.8,-49.1,tropical storm,NA,35,1006,NA,NA +Dennis,1987,9,17,18,17.9,-49.9,tropical storm,NA,35,1006,NA,NA +Dennis,1987,9,18,0,18.1,-51.1,tropical depression,NA,30,1007,NA,NA +Dennis,1987,9,18,6,18.5,-52.1,tropical depression,NA,30,1009,NA,NA +Dennis,1987,9,18,12,20.8,-53,tropical depression,NA,30,1010,NA,NA +Dennis,1987,9,18,18,23.2,-53.8,tropical depression,NA,30,1011,NA,NA +Dennis,1987,9,19,0,24.5,-54.8,tropical depression,NA,30,1012,NA,NA +Dennis,1987,9,19,6,25.7,-55.7,tropical depression,NA,30,1012,NA,NA +Dennis,1987,9,19,12,27,-56.8,tropical depression,NA,25,1012,NA,NA +Dennis,1987,9,19,18,28.5,-57.4,tropical depression,NA,25,1012,NA,NA +Dennis,1987,9,20,0,30.2,-56,tropical depression,NA,25,1012,NA,NA +Dennis,1987,9,20,6,31.3,-54,tropical depression,NA,25,1012,NA,NA +Dennis,1987,9,20,12,32.1,-51.7,tropical depression,NA,25,1012,NA,NA +Dennis,1987,9,20,18,32.8,-49.5,extratropical,NA,25,1012,NA,NA +Emily,1987,9,20,0,9.8,-51.3,tropical depression,NA,25,1008,NA,NA +Emily,1987,9,20,6,10.4,-53,tropical depression,NA,25,1007,NA,NA +Emily,1987,9,20,12,10.9,-54.7,tropical depression,NA,30,1006,NA,NA +Emily,1987,9,20,18,11.4,-56.4,tropical storm,NA,35,1005,NA,NA +Emily,1987,9,21,0,12,-58,tropical storm,NA,40,1004,NA,NA +Emily,1987,9,21,6,12.4,-59.7,tropical storm,NA,40,1004,NA,NA +Emily,1987,9,21,12,13.1,-61.3,tropical storm,NA,45,1004,NA,NA +Emily,1987,9,21,18,13.7,-63.1,tropical storm,NA,50,1002,NA,NA +Emily,1987,9,22,0,14.5,-64.7,tropical storm,NA,60,992,NA,NA +Emily,1987,9,22,6,15.1,-66.3,hurricane,1,80,978,NA,NA +Emily,1987,9,22,12,15.9,-67.7,hurricane,2,90,971,NA,NA +Emily,1987,9,22,18,16.7,-69.1,hurricane,3,110,958,NA,NA +Emily,1987,9,23,0,17.8,-70.4,hurricane,3,105,960,NA,NA +Emily,1987,9,23,3,18.3,-71,hurricane,2,95,965,NA,NA +Emily,1987,9,23,6,19,-71.5,hurricane,1,70,984,NA,NA +Emily,1987,9,23,12,20,-72.3,tropical storm,NA,55,1004,NA,NA +Emily,1987,9,23,18,20.9,-72.8,tropical storm,NA,40,1003,NA,NA +Emily,1987,9,24,0,22,-73,tropical storm,NA,40,1000,NA,NA +Emily,1987,9,24,6,23.2,-73,tropical storm,NA,45,1001,NA,NA +Emily,1987,9,24,12,24.4,-72.7,tropical storm,NA,45,1002,NA,NA +Emily,1987,9,24,18,26,-72,tropical storm,NA,45,1002,NA,NA +Emily,1987,9,25,0,28,-70.5,tropical storm,NA,45,999,NA,NA +Emily,1987,9,25,6,30.2,-68,hurricane,1,70,985,NA,NA +Emily,1987,9,25,11,32.3,-64.7,hurricane,1,75,974,NA,NA +Emily,1987,9,25,12,32.4,-64.6,hurricane,1,80,974,NA,NA +Emily,1987,9,25,18,35,-60,hurricane,1,80,974,NA,NA +Emily,1987,9,26,0,38,-55,hurricane,1,75,976,NA,NA +Emily,1987,9,26,6,41.2,-49,hurricane,1,70,979,NA,NA +Emily,1987,9,26,12,44.8,-42.5,hurricane,1,65,983,NA,NA +Emily,1987,9,26,18,49,-36,extratropical,NA,55,994,NA,NA +Floyd,1987,10,9,6,15,-82.6,tropical depression,NA,25,1004,NA,NA +Floyd,1987,10,9,12,14.5,-82.5,tropical depression,NA,25,1003,NA,NA +Floyd,1987,10,9,18,14.1,-82.1,tropical depression,NA,25,1001,NA,NA +Floyd,1987,10,10,0,14.4,-81.8,tropical depression,NA,25,999,NA,NA +Floyd,1987,10,10,6,15.3,-82.2,tropical depression,NA,30,999,NA,NA +Floyd,1987,10,10,12,16,-82.2,tropical storm,NA,35,999,NA,NA +Floyd,1987,10,10,18,16.8,-83.5,tropical storm,NA,35,999,NA,NA +Floyd,1987,10,11,0,17.6,-83.9,tropical storm,NA,40,999,NA,NA +Floyd,1987,10,11,6,18.4,-84.2,tropical storm,NA,40,998,NA,NA +Floyd,1987,10,11,12,19.4,-84.5,tropical storm,NA,45,997,NA,NA +Floyd,1987,10,11,18,20.5,-84.5,tropical storm,NA,50,996,NA,NA +Floyd,1987,10,12,0,21.7,-84.3,tropical storm,NA,55,995,NA,NA +Floyd,1987,10,12,6,23,-84,tropical storm,NA,60,994,NA,NA +Floyd,1987,10,12,12,24,-82.9,hurricane,1,65,993,NA,NA +Floyd,1987,10,12,18,24.7,-81.5,hurricane,1,65,993,NA,NA +Floyd,1987,10,12,21,25.1,-80.5,hurricane,1,65,993,NA,NA +Floyd,1987,10,13,0,25.3,-79.9,tropical storm,NA,60,993,NA,NA +Floyd,1987,10,13,6,26,-78.3,tropical storm,NA,50,994,NA,NA +Floyd,1987,10,13,12,27,-76.9,tropical storm,NA,45,996,NA,NA +Floyd,1987,10,13,18,28.1,-75.4,extratropical,NA,40,997,NA,NA +Floyd,1987,10,14,0,29.5,-74,extratropical,NA,40,998,NA,NA +Alberto,1988,8,5,18,32,-77.5,tropical depression,NA,20,1015,NA,NA +Alberto,1988,8,6,0,32.8,-76.2,tropical depression,NA,20,1014,NA,NA +Alberto,1988,8,6,6,34,-75.2,tropical depression,NA,20,1013,NA,NA +Alberto,1988,8,6,12,35.2,-74.6,tropical depression,NA,25,1012,NA,NA +Alberto,1988,8,6,18,37,-73.5,tropical depression,NA,25,1011,NA,NA +Alberto,1988,8,7,0,38.7,-72.4,tropical depression,NA,25,1009,NA,NA +Alberto,1988,8,7,6,40,-70.8,tropical depression,NA,30,1006,NA,NA +Alberto,1988,8,7,12,41.5,-69,tropical storm,NA,35,1002,NA,NA +Alberto,1988,8,7,18,43,-67.5,tropical storm,NA,35,1002,NA,NA +Alberto,1988,8,8,0,45,-65.5,tropical storm,NA,35,1004,NA,NA +Alberto,1988,8,8,6,47,-63,tropical storm,NA,35,1006,NA,NA +Alberto,1988,8,8,12,49,-60,extratropical,NA,30,1008,NA,NA +Alberto,1988,8,8,18,51,-56,extratropical,NA,25,1010,NA,NA +Beryl,1988,8,8,0,30.4,-90.3,tropical depression,NA,25,1010,NA,NA +Beryl,1988,8,8,6,29.7,-89.7,tropical depression,NA,30,1009,NA,NA +Beryl,1988,8,8,12,29.7,-89.4,tropical storm,NA,35,1007,NA,NA +Beryl,1988,8,8,18,29.4,-89.2,tropical storm,NA,40,1005,NA,NA +Beryl,1988,8,9,0,29.3,-89.1,tropical storm,NA,45,1002,NA,NA +Beryl,1988,8,9,6,29.6,-89.5,tropical storm,NA,45,1001,NA,NA +Beryl,1988,8,9,12,30.1,-90.4,tropical storm,NA,45,1002,NA,NA +Beryl,1988,8,9,18,30.1,-90.9,tropical storm,NA,40,1005,NA,NA +Beryl,1988,8,10,0,30.3,-91.6,tropical depression,NA,30,1006,NA,NA +Beryl,1988,8,10,6,30.7,-92.2,tropical depression,NA,30,1007,NA,NA +Beryl,1988,8,10,12,31.2,-92.6,tropical depression,NA,25,1008,NA,NA +Beryl,1988,8,10,18,31.7,-93.2,tropical depression,NA,20,1011,NA,NA +Chris,1988,8,21,12,14.9,-43.3,tropical depression,NA,25,1009,NA,NA +Chris,1988,8,21,18,14.6,-45.7,tropical depression,NA,25,1009,NA,NA +Chris,1988,8,22,0,14.6,-47.8,tropical depression,NA,25,1009,NA,NA +Chris,1988,8,22,6,14.7,-49.9,tropical depression,NA,25,1009,NA,NA +Chris,1988,8,22,12,14.8,-51.9,tropical depression,NA,30,1009,NA,NA +Chris,1988,8,22,18,15.1,-54,tropical depression,NA,30,1009,NA,NA +Chris,1988,8,23,0,15.3,-55.7,tropical depression,NA,30,1009,NA,NA +Chris,1988,8,23,6,15.6,-57.5,tropical depression,NA,30,1009,NA,NA +Chris,1988,8,23,12,16,-59.2,tropical depression,NA,30,1009,NA,NA +Chris,1988,8,23,18,16.3,-61,tropical depression,NA,30,1009,NA,NA +Chris,1988,8,24,0,16.7,-62.4,tropical depression,NA,30,1009,NA,NA +Chris,1988,8,24,6,16.9,-63.8,tropical depression,NA,30,1009,NA,NA +Chris,1988,8,24,12,17.2,-65.2,tropical depression,NA,30,1009,NA,NA +Chris,1988,8,24,18,17.5,-66.7,tropical depression,NA,30,1009,NA,NA +Chris,1988,8,25,0,17.8,-67.8,tropical depression,NA,30,1009,NA,NA +Chris,1988,8,25,6,18.2,-68.8,tropical depression,NA,30,1009,NA,NA +Chris,1988,8,25,12,18.5,-69.8,tropical depression,NA,30,1008,NA,NA +Chris,1988,8,25,18,19.1,-70.9,tropical depression,NA,30,1008,NA,NA +Chris,1988,8,26,0,19.8,-72.1,tropical depression,NA,30,1008,NA,NA +Chris,1988,8,26,6,20.5,-73.2,tropical depression,NA,30,1008,NA,NA +Chris,1988,8,26,12,21.5,-74.2,tropical depression,NA,30,1008,NA,NA +Chris,1988,8,26,18,22.5,-75.4,tropical depression,NA,30,1008,NA,NA +Chris,1988,8,27,0,23.3,-76.2,tropical depression,NA,30,1008,NA,NA +Chris,1988,8,27,6,24.1,-77.2,tropical depression,NA,30,1008,NA,NA +Chris,1988,8,27,12,24.9,-78.1,tropical depression,NA,30,1008,NA,NA +Chris,1988,8,27,18,25.8,-79,tropical depression,NA,30,1008,NA,NA +Chris,1988,8,28,0,26.8,-79.7,tropical depression,NA,30,1008,NA,NA +Chris,1988,8,28,6,28.2,-80,tropical storm,NA,40,1008,NA,NA +Chris,1988,8,28,12,30.8,-80.8,tropical storm,NA,45,1005,NA,NA +Chris,1988,8,28,15,32,-80.9,tropical storm,NA,40,1005,NA,NA +Chris,1988,8,28,18,32.8,-81.1,tropical storm,NA,35,1006,NA,NA +Chris,1988,8,29,0,34.1,-81.1,tropical depression,NA,25,1008,NA,NA +Chris,1988,8,29,6,35.8,-80.6,extratropical,NA,20,1009,NA,NA +Chris,1988,8,29,12,37.5,-79.5,extratropical,NA,20,1009,NA,NA +Chris,1988,8,29,18,39.2,-77.6,extratropical,NA,20,1010,NA,NA +Chris,1988,8,30,0,41.2,-73.6,extratropical,NA,20,1008,NA,NA +Chris,1988,8,30,6,43.5,-69.9,extratropical,NA,20,1008,NA,NA +Chris,1988,8,30,12,45,-65,extratropical,NA,25,1008,NA,NA +Chris,1988,8,30,18,46.5,-60,extratropical,NA,25,1008,NA,NA +Debby,1988,8,31,18,20.1,-91,tropical depression,NA,25,1006,NA,NA +Debby,1988,9,1,0,20.2,-91.7,tropical depression,NA,25,1005,NA,NA +Debby,1988,9,1,6,20.3,-92.4,tropical depression,NA,25,1005,NA,NA +Debby,1988,9,1,12,20.4,-93.1,tropical depression,NA,25,1004,NA,NA +Debby,1988,9,1,18,20.5,-93.8,tropical depression,NA,30,1003,NA,NA +Debby,1988,9,2,0,20.6,-94.5,tropical depression,NA,30,1003,NA,NA +Debby,1988,9,2,6,20.7,-95.2,tropical storm,NA,40,1001,NA,NA +Debby,1988,9,2,12,20.8,-95.9,tropical storm,NA,50,998,NA,NA +Debby,1988,9,2,18,20.8,-96.6,hurricane,1,65,992,NA,NA +Debby,1988,9,3,0,20.7,-97.3,hurricane,1,65,987,NA,NA +Debby,1988,9,3,6,20.5,-98.1,tropical storm,NA,50,995,NA,NA +Debby,1988,9,3,12,20.3,-98.9,tropical storm,NA,35,998,NA,NA +Debby,1988,9,3,18,20,-99.8,tropical depression,NA,30,999,NA,NA +Debby,1988,9,4,0,19.8,-100.7,tropical depression,NA,30,1000,NA,NA +Debby,1988,9,4,6,19.6,-101.6,tropical depression,NA,30,1000,NA,NA +Debby,1988,9,4,12,19.5,-102.5,tropical depression,NA,30,1000,NA,NA +Debby,1988,9,4,18,19.4,-103.4,tropical depression,NA,30,1001,NA,NA +Debby,1988,9,5,0,19.5,-104.3,tropical depression,NA,30,1001,NA,NA +Debby,1988,9,5,6,19.6,-105.1,tropical depression,NA,30,1002,NA,NA +Debby,1988,9,5,12,19.9,-105.9,tropical depression,NA,30,1003,NA,NA +Debby,1988,9,5,18,20.5,-106.4,tropical depression,NA,30,1004,NA,NA +Debby,1988,9,6,0,21,-106.8,tropical depression,NA,30,1004,NA,NA +Debby,1988,9,6,6,21.5,-107.1,tropical depression,NA,30,1005,NA,NA +Debby,1988,9,6,12,22,-107.4,tropical depression,NA,25,1005,NA,NA +Debby,1988,9,6,18,22.5,-107.7,tropical depression,NA,25,1006,NA,NA +Debby,1988,9,7,0,23,-108,tropical depression,NA,25,1006,NA,NA +Debby,1988,9,7,6,23.5,-108.3,tropical depression,NA,25,1007,NA,NA +Debby,1988,9,7,12,23.9,-108.5,tropical depression,NA,25,1007,NA,NA +Debby,1988,9,7,18,24.2,-108.7,tropical depression,NA,25,1007,NA,NA +Debby,1988,9,8,0,24.4,-108.9,tropical depression,NA,25,1008,NA,NA +Debby,1988,9,8,6,24.3,-109.1,tropical depression,NA,20,1008,NA,NA +Debby,1988,9,8,12,24.2,-109.3,tropical depression,NA,20,1008,NA,NA +Debby,1988,9,8,18,24,-109,tropical depression,NA,20,1008,NA,NA +Ernesto,1988,9,3,0,32.5,-60.5,tropical depression,NA,25,1016,NA,NA +Ernesto,1988,9,3,6,33.1,-59.2,tropical depression,NA,25,1012,NA,NA +Ernesto,1988,9,3,12,34.3,-56.5,tropical depression,NA,30,1008,NA,NA +Ernesto,1988,9,3,18,35.2,-53.1,tropical storm,NA,35,1004,NA,NA +Ernesto,1988,9,4,0,35.9,-49.5,tropical storm,NA,40,1001,NA,NA +Ernesto,1988,9,4,6,36.6,-44.4,tropical storm,NA,45,999,NA,NA +Ernesto,1988,9,4,12,38,-39.5,tropical storm,NA,50,997,NA,NA +Ernesto,1988,9,4,18,40.2,-35,tropical storm,NA,50,996,NA,NA +Ernesto,1988,9,5,0,43.1,-29.7,tropical storm,NA,55,994,NA,NA +AL061988,1988,9,7,0,12.5,-17.5,tropical depression,NA,25,1011,NA,NA +AL061988,1988,9,7,6,13.1,-18,tropical depression,NA,25,1011,NA,NA +AL061988,1988,9,7,12,13.8,-18.5,tropical storm,NA,35,1008,NA,NA +AL061988,1988,9,7,18,14.8,-19,tropical storm,NA,35,1007,NA,NA +AL061988,1988,9,8,0,15.3,-19.1,tropical storm,NA,40,1005,NA,NA +AL061988,1988,9,8,6,16.4,-19.8,tropical storm,NA,40,1003,NA,NA +AL061988,1988,9,8,12,17.5,-20.5,tropical storm,NA,50,1002,NA,NA +AL061988,1988,9,8,18,18.8,-21,tropical storm,NA,50,999,NA,NA +AL061988,1988,9,9,0,19.9,-21.6,tropical storm,NA,50,994,NA,NA +AL061988,1988,9,9,6,21.4,-22,tropical storm,NA,50,996,NA,NA +AL061988,1988,9,9,12,22.9,-22.5,tropical storm,NA,35,1005,NA,NA +AL061988,1988,9,9,18,24,-22.5,tropical depression,NA,25,1006,NA,NA +AL061988,1988,9,10,0,25,-23,tropical depression,NA,25,1009,NA,NA +Florence,1988,9,7,6,22.8,-92,tropical depression,NA,25,1000,NA,NA +Florence,1988,9,7,12,22.8,-91.2,tropical depression,NA,30,998,NA,NA +Florence,1988,9,7,18,22.7,-90.2,tropical storm,NA,40,996,NA,NA +Florence,1988,9,8,0,22.6,-89.6,tropical storm,NA,45,993,NA,NA +Florence,1988,9,8,6,22.7,-89.8,tropical storm,NA,45,990,NA,NA +Florence,1988,9,8,12,23.1,-89.7,tropical storm,NA,45,990,NA,NA +Florence,1988,9,8,18,23.4,-89.5,tropical storm,NA,45,992,NA,NA +Florence,1988,9,9,0,24.2,-89.2,tropical storm,NA,50,992,NA,NA +Florence,1988,9,9,6,25,-89.2,tropical storm,NA,50,991,NA,NA +Florence,1988,9,9,12,26.1,-89.2,tropical storm,NA,55,998,NA,NA +Florence,1988,9,9,18,27.4,-89.2,hurricane,1,65,985,NA,NA +Florence,1988,9,9,23,28.5,-89.3,hurricane,1,70,982,NA,NA +Florence,1988,9,10,0,28.7,-89.3,hurricane,1,70,983,NA,NA +Florence,1988,9,10,2,29.1,-89.3,hurricane,1,70,984,NA,NA +Florence,1988,9,10,6,29.7,-89.7,tropical storm,NA,60,988,NA,NA +Florence,1988,9,10,12,30.7,-90.7,tropical depression,NA,30,998,NA,NA +Florence,1988,9,10,18,31.8,-91.5,tropical depression,NA,20,1003,NA,NA +Florence,1988,9,11,0,32.4,-92.3,tropical depression,NA,15,1007,NA,NA +Florence,1988,9,11,6,32.7,-93.3,tropical depression,NA,15,1009,NA,NA +Florence,1988,9,11,12,33,-94.5,tropical depression,NA,15,1010,NA,NA +Gilbert,1988,9,8,18,12,-54,tropical depression,NA,25,1008,NA,NA +Gilbert,1988,9,9,0,12.7,-55.6,tropical depression,NA,25,1007,NA,NA +Gilbert,1988,9,9,6,13.3,-57.1,tropical depression,NA,30,1006,NA,NA +Gilbert,1988,9,9,12,14,-58.6,tropical depression,NA,30,1005,NA,NA +Gilbert,1988,9,9,18,14.5,-60.1,tropical storm,NA,35,1004,NA,NA +Gilbert,1988,9,10,0,14.8,-61.5,tropical storm,NA,40,1002,NA,NA +Gilbert,1988,9,10,6,15,-62.8,tropical storm,NA,45,998,NA,NA +Gilbert,1988,9,10,12,15.3,-64.1,tropical storm,NA,50,995,NA,NA +Gilbert,1988,9,10,18,15.7,-65.4,tropical storm,NA,55,992,NA,NA +Gilbert,1988,9,11,0,15.9,-66.8,hurricane,1,65,989,NA,NA +Gilbert,1988,9,11,6,16.2,-68,hurricane,1,80,982,NA,NA +Gilbert,1988,9,11,12,16.1,-69.5,hurricane,2,95,975,NA,NA +Gilbert,1988,9,11,18,16.2,-70.7,hurricane,3,100,970,NA,NA +Gilbert,1988,9,12,0,16.8,-72,hurricane,3,105,964,NA,NA +Gilbert,1988,9,12,6,17.3,-73.7,hurricane,3,110,962,NA,NA +Gilbert,1988,9,12,12,17.6,-75.3,hurricane,3,110,960,NA,NA +Gilbert,1988,9,12,17,17.8,-76.8,hurricane,4,115,960,NA,NA +Gilbert,1988,9,12,18,17.9,-76.9,hurricane,3,110,960,NA,NA +Gilbert,1988,9,13,0,18.2,-78.5,hurricane,3,110,960,NA,NA +Gilbert,1988,9,13,6,18.5,-79.7,hurricane,4,115,952,NA,NA +Gilbert,1988,9,13,12,18.8,-81.1,hurricane,4,125,934,NA,NA +Gilbert,1988,9,13,18,19.4,-82.5,hurricane,5,140,905,NA,NA +Gilbert,1988,9,14,0,19.7,-83.8,hurricane,5,160,888,NA,NA +Gilbert,1988,9,14,6,19.9,-85.3,hurricane,5,155,889,NA,NA +Gilbert,1988,9,14,12,20.4,-86.5,hurricane,5,145,892,NA,NA +Gilbert,1988,9,14,15,20.7,-87,hurricane,5,140,900,NA,NA +Gilbert,1988,9,14,18,20.9,-87.8,hurricane,4,130,925,NA,NA +Gilbert,1988,9,15,0,21.3,-89.5,hurricane,3,100,944,NA,NA +Gilbert,1988,9,15,6,21.6,-90.7,hurricane,2,90,949,NA,NA +Gilbert,1988,9,15,12,21.9,-91.7,hurricane,2,85,950,NA,NA +Gilbert,1988,9,15,18,22.1,-92.8,hurricane,2,90,950,NA,NA +Gilbert,1988,9,16,0,22.5,-93.8,hurricane,3,100,949,NA,NA +Gilbert,1988,9,16,6,22.9,-94.8,hurricane,3,110,946,NA,NA +Gilbert,1988,9,16,12,23.7,-95.9,hurricane,4,115,948,NA,NA +Gilbert,1988,9,16,18,23.9,-97,hurricane,4,115,950,NA,NA +Gilbert,1988,9,16,22,24.2,-97.8,hurricane,3,110,955,NA,NA +Gilbert,1988,9,17,0,24.4,-98.2,hurricane,1,80,964,NA,NA +Gilbert,1988,9,17,6,24.8,-99.3,tropical storm,NA,50,988,NA,NA +Gilbert,1988,9,17,12,25,-100.5,tropical storm,NA,35,996,NA,NA +Gilbert,1988,9,17,18,25.4,-101.9,tropical depression,NA,30,1000,NA,NA +Gilbert,1988,9,18,0,26,-103.2,tropical depression,NA,30,1002,NA,NA +Gilbert,1988,9,18,6,27.6,-103.7,tropical depression,NA,30,1004,NA,NA +Gilbert,1988,9,18,12,29.3,-102.6,tropical depression,NA,25,1003,NA,NA +Gilbert,1988,9,18,18,31.5,-101.3,tropical depression,NA,25,1003,NA,NA +Gilbert,1988,9,19,0,33.2,-99.7,tropical depression,NA,25,1002,NA,NA +Gilbert,1988,9,19,6,35.8,-97.7,tropical depression,NA,25,1001,NA,NA +Gilbert,1988,9,19,12,37.7,-93.2,tropical depression,NA,25,999,NA,NA +Gilbert,1988,9,19,18,40.2,-89.9,extratropical,NA,25,998,NA,NA +Gilbert,1988,9,20,0,43.4,-86.5,extratropical,NA,25,995,NA,NA +Helene,1988,9,19,18,13.4,-31.6,tropical depression,NA,30,1009,NA,NA +Helene,1988,9,20,0,13.3,-32.7,tropical depression,NA,32,1008,NA,NA +Helene,1988,9,20,6,13.2,-33.8,tropical storm,NA,35,1008,NA,NA +Helene,1988,9,20,12,13,-34.8,tropical storm,NA,40,1004,NA,NA +Helene,1988,9,20,18,12.4,-35.7,tropical storm,NA,45,1002,NA,NA +Helene,1988,9,21,0,12.2,-36.7,tropical storm,NA,50,998,NA,NA +Helene,1988,9,21,6,12,-37.7,tropical storm,NA,60,993,NA,NA +Helene,1988,9,21,12,12.1,-38.8,hurricane,1,70,998,NA,NA +Helene,1988,9,21,18,12.4,-39.9,hurricane,1,75,983,NA,NA +Helene,1988,9,22,0,12.7,-40.6,hurricane,1,80,978,NA,NA +Helene,1988,9,22,6,13,-41.5,hurricane,2,90,972,NA,NA +Helene,1988,9,22,12,13.2,-42.3,hurricane,2,95,965,NA,NA +Helene,1988,9,22,18,13.5,-43.1,hurricane,3,100,959,NA,NA +Helene,1988,9,23,0,13.9,-44,hurricane,3,110,953,NA,NA +Helene,1988,9,23,6,14.1,-44.9,hurricane,4,115,945,NA,NA +Helene,1988,9,23,12,14.7,-45.5,hurricane,4,120,939,NA,NA +Helene,1988,9,23,18,15.3,-46.1,hurricane,4,125,938,NA,NA +Helene,1988,9,24,0,15.9,-46.9,hurricane,4,120,940,NA,NA +Helene,1988,9,24,6,16.6,-47.5,hurricane,4,120,944,NA,NA +Helene,1988,9,24,12,17.4,-48,hurricane,4,115,948,NA,NA +Helene,1988,9,24,18,18.1,-48.5,hurricane,3,110,954,NA,NA +Helene,1988,9,25,0,18.7,-48.9,hurricane,3,100,959,NA,NA +Helene,1988,9,25,6,19.4,-49,hurricane,3,100,963,NA,NA +Helene,1988,9,25,12,20,-49.1,hurricane,2,95,966,NA,NA +Helene,1988,9,25,18,20.9,-49.3,hurricane,2,90,968,NA,NA +Helene,1988,9,26,0,22.2,-49.5,hurricane,2,85,971,NA,NA +Helene,1988,9,26,6,23.4,-49.7,hurricane,2,85,973,NA,NA +Helene,1988,9,26,12,24.5,-49.9,hurricane,1,80,975,NA,NA +Helene,1988,9,26,18,25.8,-50.3,hurricane,1,80,976,NA,NA +Helene,1988,9,27,0,27.1,-51.1,hurricane,1,75,977,NA,NA +Helene,1988,9,27,6,28.2,-51.9,hurricane,1,75,979,NA,NA +Helene,1988,9,27,12,29.8,-52,hurricane,1,75,979,NA,NA +Helene,1988,9,27,18,30.9,-51.9,hurricane,1,75,979,NA,NA +Helene,1988,9,28,0,31.9,-51.5,hurricane,1,75,979,NA,NA +Helene,1988,9,28,6,32.8,-51,hurricane,1,80,977,NA,NA +Helene,1988,9,28,12,33.5,-50.3,hurricane,1,80,975,NA,NA +Helene,1988,9,28,18,34.7,-49.5,hurricane,2,85,972,NA,NA +Helene,1988,9,29,0,36.1,-48.5,hurricane,2,90,970,NA,NA +Helene,1988,9,29,6,38,-46.5,hurricane,2,90,970,NA,NA +Helene,1988,9,29,12,40.2,-44.4,hurricane,2,85,973,NA,NA +Helene,1988,9,29,18,42.9,-42,hurricane,1,75,979,NA,NA +Helene,1988,9,30,0,46.2,-38.8,hurricane,1,65,985,NA,NA +Helene,1988,9,30,6,50.2,-34.5,hurricane,1,65,990,NA,NA +Helene,1988,9,30,12,55,-30,extratropical,NA,60,992,NA,NA +Isaac,1988,9,28,18,9,-45.5,tropical depression,NA,25,1009,NA,NA +Isaac,1988,9,29,0,9.1,-47,tropical depression,NA,25,1008,NA,NA +Isaac,1988,9,29,6,9.3,-48.7,tropical depression,NA,25,1007,NA,NA +Isaac,1988,9,29,12,9.5,-50,tropical depression,NA,25,1007,NA,NA +Isaac,1988,9,29,18,9.6,-51.3,tropical depression,NA,30,1006,NA,NA +Isaac,1988,9,30,0,9.8,-52.2,tropical depression,NA,30,1006,NA,NA +Isaac,1988,9,30,6,10.2,-53.1,tropical depression,NA,30,1006,NA,NA +Isaac,1988,9,30,12,10.8,-54.5,tropical depression,NA,30,1005,NA,NA +Isaac,1988,9,30,18,11.4,-56,tropical storm,NA,35,1005,NA,NA +Isaac,1988,10,1,0,11.8,-57.7,tropical storm,NA,40,1005,NA,NA +Isaac,1988,10,1,6,12,-59.5,tropical storm,NA,35,1005,NA,NA +Isaac,1988,10,1,12,12,-61.2,tropical depression,NA,30,1006,NA,NA +Joan,1988,10,10,18,8.9,-42.2,tropical depression,NA,25,1010,NA,NA +Joan,1988,10,11,0,9.5,-43.6,tropical depression,NA,30,1008,NA,NA +Joan,1988,10,11,6,10.1,-45,tropical storm,NA,35,1005,NA,NA +Joan,1988,10,11,12,10.7,-46.4,tropical storm,NA,40,1003,NA,NA +Joan,1988,10,11,18,11.2,-47.9,tropical storm,NA,45,1000,NA,NA +Joan,1988,10,12,0,11.5,-49,tropical storm,NA,50,999,NA,NA +Joan,1988,10,12,6,11.8,-50.1,tropical storm,NA,45,1000,NA,NA +Joan,1988,10,12,12,12.1,-51.3,tropical storm,NA,45,1003,NA,NA +Joan,1988,10,12,18,12.3,-52.5,tropical storm,NA,40,1006,NA,NA +Joan,1988,10,13,0,12.4,-53.8,tropical storm,NA,40,1007,NA,NA +Joan,1988,10,13,6,12.5,-54.9,tropical storm,NA,40,1007,NA,NA +Joan,1988,10,13,12,12.6,-56,tropical storm,NA,40,1006,NA,NA +Joan,1988,10,13,18,12.7,-57.1,tropical storm,NA,40,1005,NA,NA +Joan,1988,10,14,0,12.6,-58.3,tropical storm,NA,40,1003,NA,NA +Joan,1988,10,14,6,12.4,-59.4,tropical storm,NA,40,1002,NA,NA +Joan,1988,10,14,12,12.2,-60,tropical storm,NA,45,1001,NA,NA +Joan,1988,10,14,18,12,-60.8,tropical storm,NA,45,1001,NA,NA +Joan,1988,10,15,0,12.1,-61.5,tropical storm,NA,45,1003,NA,NA +Joan,1988,10,15,1,12.1,-61.8,tropical storm,NA,45,1003,NA,NA +Joan,1988,10,15,6,12.1,-62.8,tropical storm,NA,45,1004,NA,NA +Joan,1988,10,15,12,12,-63.8,tropical storm,NA,45,1004,NA,NA +Joan,1988,10,15,18,11.9,-64.9,tropical storm,NA,45,1003,NA,NA +Joan,1988,10,16,0,12,-66.1,tropical storm,NA,45,1002,NA,NA +Joan,1988,10,16,6,12,-67.2,tropical storm,NA,50,1001,NA,NA +Joan,1988,10,16,12,11.9,-68.2,tropical storm,NA,50,1000,NA,NA +Joan,1988,10,16,18,12,-69.2,tropical storm,NA,50,999,NA,NA +Joan,1988,10,17,0,12,-70.2,tropical storm,NA,55,998,NA,NA +Joan,1988,10,17,6,12,-71.2,tropical storm,NA,55,997,NA,NA +Joan,1988,10,17,12,11.9,-72.1,tropical storm,NA,60,995,NA,NA +Joan,1988,10,17,18,11.8,-73,tropical storm,NA,60,993,NA,NA +Joan,1988,10,18,0,11.8,-74,hurricane,1,65,990,NA,NA +Joan,1988,10,18,6,11.7,-75,hurricane,1,70,987,NA,NA +Joan,1988,10,18,12,11.5,-75.8,hurricane,1,75,984,NA,NA +Joan,1988,10,18,18,11.3,-76.5,hurricane,1,80,980,NA,NA +Joan,1988,10,19,0,11.2,-77.2,hurricane,2,90,976,NA,NA +Joan,1988,10,19,6,11.3,-77.8,hurricane,2,95,970,NA,NA +Joan,1988,10,19,12,11.4,-78.3,hurricane,3,105,960,NA,NA +Joan,1988,10,19,18,11.3,-78.9,hurricane,3,110,953,NA,NA +Joan,1988,10,20,0,11.3,-79.3,hurricane,3,105,956,NA,NA +Joan,1988,10,20,6,11.1,-79.8,hurricane,2,85,967,NA,NA +Joan,1988,10,20,12,11.1,-79.5,hurricane,1,70,971,NA,NA +Joan,1988,10,20,18,11.3,-79.9,hurricane,1,70,973,NA,NA +Joan,1988,10,21,0,11.5,-80.3,hurricane,1,75,972,NA,NA +Joan,1988,10,21,6,11.5,-80.7,hurricane,2,90,970,NA,NA +Joan,1988,10,21,12,11.6,-81.2,hurricane,3,100,964,NA,NA +Joan,1988,10,21,18,11.8,-81.8,hurricane,3,110,952,NA,NA +Joan,1988,10,22,0,11.9,-82.5,hurricane,4,120,937,NA,NA +Joan,1988,10,22,6,11.9,-83.2,hurricane,4,125,932,NA,NA +Joan,1988,10,22,10,11.9,-83.7,hurricane,4,125,932,NA,NA +Joan,1988,10,22,12,11.9,-83.9,hurricane,4,120,936,NA,NA +Joan,1988,10,22,18,12,-85,hurricane,1,70,983,NA,NA +Joan,1988,10,23,0,12.1,-85.9,tropical storm,NA,55,993,NA,NA +Joan,1988,10,23,6,12.2,-86.8,tropical storm,NA,45,1000,NA,NA +Keith,1988,11,17,18,14.9,-74.3,tropical depression,NA,30,1008,NA,NA +Keith,1988,11,18,0,15,-75.5,tropical depression,NA,30,1008,NA,NA +Keith,1988,11,18,6,15,-76.5,tropical depression,NA,30,1008,NA,NA +Keith,1988,11,18,12,15,-77.7,tropical depression,NA,30,1008,NA,NA +Keith,1988,11,18,18,15,-79,tropical depression,NA,30,1008,NA,NA +Keith,1988,11,19,0,15,-79.9,tropical depression,NA,30,1007,NA,NA +Keith,1988,11,19,6,15.1,-80.4,tropical depression,NA,30,1007,NA,NA +Keith,1988,11,19,12,15.2,-81.2,tropical depression,NA,30,1007,NA,NA +Keith,1988,11,19,18,15.5,-81.8,tropical depression,NA,30,1006,NA,NA +Keith,1988,11,20,0,15.8,-82.6,tropical depression,NA,30,1005,NA,NA +Keith,1988,11,20,6,16.3,-83.4,tropical storm,NA,35,1004,NA,NA +Keith,1988,11,20,12,17.8,-84.5,tropical storm,NA,40,1002,NA,NA +Keith,1988,11,20,18,19.1,-85.4,tropical storm,NA,45,997,NA,NA +Keith,1988,11,21,0,19.8,-86.1,tropical storm,NA,60,985,NA,NA +Keith,1988,11,21,6,20.7,-86.6,tropical storm,NA,60,993,NA,NA +Keith,1988,11,21,8,21.2,-86.8,tropical storm,NA,60,993,NA,NA +Keith,1988,11,21,12,21.8,-87,tropical storm,NA,60,993,NA,NA +Keith,1988,11,21,18,22.4,-87.2,tropical storm,NA,60,990,NA,NA +Keith,1988,11,22,0,23.1,-87,tropical storm,NA,60,993,NA,NA +Keith,1988,11,22,6,23.8,-86.8,tropical storm,NA,55,995,NA,NA +Keith,1988,11,22,12,24.4,-86.2,tropical storm,NA,55,995,NA,NA +Keith,1988,11,22,18,25.5,-85.1,tropical storm,NA,55,993,NA,NA +Keith,1988,11,23,0,26.5,-84.2,tropical storm,NA,55,994,NA,NA +Keith,1988,11,23,6,27.3,-82.8,tropical storm,NA,55,995,NA,NA +Keith,1988,11,23,7,27.3,-82.6,tropical storm,NA,55,995,NA,NA +Keith,1988,11,23,12,27.9,-81.3,tropical storm,NA,35,999,NA,NA +Keith,1988,11,23,18,28.9,-79.8,tropical storm,NA,40,998,NA,NA +Keith,1988,11,24,0,29.7,-77.7,tropical storm,NA,50,995,NA,NA +Keith,1988,11,24,6,31,-75.2,tropical storm,NA,55,992,NA,NA +Keith,1988,11,24,12,32.5,-70.5,tropical storm,NA,60,990,NA,NA +Keith,1988,11,24,18,34,-66,extratropical,NA,55,985,NA,NA +Keith,1988,11,25,0,36,-60,extratropical,NA,50,982,NA,NA +Keith,1988,11,25,6,39,-54,extratropical,NA,50,976,NA,NA +Keith,1988,11,25,12,40,-49,extratropical,NA,50,964,NA,NA +Keith,1988,11,25,18,44,-45,extratropical,NA,55,960,NA,NA +Keith,1988,11,26,0,48,-43,extratropical,NA,65,950,NA,NA +Keith,1988,11,26,6,52,-42,extratropical,NA,65,945,NA,NA +Keith,1988,11,26,12,52.5,-44,extratropical,NA,65,945,NA,NA +Keith,1988,11,26,18,52,-46,extratropical,NA,65,950,NA,NA +Allison,1989,6,24,18,27,-96,tropical depression,NA,30,1008,NA,NA +Allison,1989,6,25,0,27,-96,tropical depression,NA,30,1006,NA,NA +Allison,1989,6,25,6,27.2,-96,tropical depression,NA,30,1005,NA,NA +Allison,1989,6,25,12,27.4,-95.9,tropical depression,NA,30,1005,NA,NA +Allison,1989,6,25,18,27.6,-95.8,tropical depression,NA,30,1005,NA,NA +Allison,1989,6,26,0,27.8,-95.8,tropical storm,NA,35,1004,NA,NA +Allison,1989,6,26,6,28.1,-95.8,tropical storm,NA,35,1004,NA,NA +Allison,1989,6,26,12,28.6,-95.7,tropical storm,NA,40,1003,NA,NA +Allison,1989,6,26,13,28.7,-95.7,tropical storm,NA,40,1002,NA,NA +Allison,1989,6,26,18,29.1,-95.7,tropical storm,NA,45,1001,NA,NA +Allison,1989,6,27,0,29.7,-95.7,tropical storm,NA,45,999,NA,NA +Allison,1989,6,27,6,30.2,-95.3,tropical storm,NA,35,1000,NA,NA +Allison,1989,6,27,12,30.6,-94.9,tropical depression,NA,30,1002,NA,NA +Allison,1989,6,27,18,30.9,-94.6,tropical depression,NA,30,1004,NA,NA +Allison,1989,6,28,0,31.1,-94.2,extratropical,NA,30,1004,NA,NA +Allison,1989,6,28,6,31.1,-93.9,extratropical,NA,30,1005,NA,NA +Allison,1989,6,28,12,31,-93.7,extratropical,NA,30,1006,NA,NA +Allison,1989,6,28,18,30.6,-93.8,extratropical,NA,25,1007,NA,NA +Allison,1989,6,29,0,30.5,-94.2,extratropical,NA,25,1008,NA,NA +Allison,1989,6,29,6,30.3,-94.6,extratropical,NA,25,1008,NA,NA +Allison,1989,6,29,12,30.1,-95,extratropical,NA,25,1008,NA,NA +Allison,1989,6,29,18,29.8,-95.2,extratropical,NA,25,1008,NA,NA +Allison,1989,6,30,0,29.6,-95.3,extratropical,NA,20,1009,NA,NA +Allison,1989,6,30,6,29.7,-95.7,extratropical,NA,20,1010,NA,NA +Allison,1989,6,30,12,30.4,-95.7,extratropical,NA,20,1011,NA,NA +Allison,1989,6,30,18,31.1,-95.5,extratropical,NA,20,1010,NA,NA +Allison,1989,7,1,0,31.8,-95.1,extratropical,NA,20,1010,NA,NA +Allison,1989,7,1,6,32.3,-94.5,extratropical,NA,20,1010,NA,NA +Allison,1989,7,1,12,32.8,-93.8,extratropical,NA,20,1010,NA,NA +Barry,1989,7,9,18,12.8,-37.8,tropical depression,NA,25,1015,NA,NA +Barry,1989,7,10,0,13,-39.9,tropical depression,NA,25,1015,NA,NA +Barry,1989,7,10,6,13.9,-42.1,tropical depression,NA,25,1014,NA,NA +Barry,1989,7,10,12,15,-44.6,tropical depression,NA,30,1013,NA,NA +Barry,1989,7,10,18,16.3,-46.9,tropical depression,NA,30,1013,NA,NA +Barry,1989,7,11,0,17.7,-48.2,tropical storm,NA,35,1012,NA,NA +Barry,1989,7,11,6,18.8,-49.2,tropical storm,NA,40,1011,NA,NA +Barry,1989,7,11,12,19.8,-50.4,tropical storm,NA,40,1010,NA,NA +Barry,1989,7,11,18,20.7,-51.8,tropical storm,NA,40,1007,NA,NA +Barry,1989,7,12,0,21.4,-53.1,tropical storm,NA,45,1005,NA,NA +Barry,1989,7,12,6,22.1,-53.9,tropical storm,NA,45,1005,NA,NA +Barry,1989,7,12,12,22.8,-54.4,tropical storm,NA,45,1005,NA,NA +Barry,1989,7,12,18,23.5,-54.9,tropical storm,NA,40,1008,NA,NA +Barry,1989,7,13,0,23.8,-55.4,tropical storm,NA,40,1012,NA,NA +Barry,1989,7,13,6,24,-56,tropical storm,NA,35,1014,NA,NA +Barry,1989,7,13,12,23.9,-56.6,tropical storm,NA,35,1016,NA,NA +Barry,1989,7,13,18,23.7,-57.4,tropical depression,NA,30,1017,NA,NA +Barry,1989,7,14,0,23.3,-58.1,tropical depression,NA,30,1018,NA,NA +Chantal,1989,7,30,12,22.5,-90,tropical depression,NA,20,1011,NA,NA +Chantal,1989,7,30,18,23.5,-90.2,tropical depression,NA,25,1010,NA,NA +Chantal,1989,7,31,0,24.4,-90.5,tropical depression,NA,30,1009,NA,NA +Chantal,1989,7,31,6,25.4,-91,tropical storm,NA,35,1004,NA,NA +Chantal,1989,7,31,12,26.2,-91.7,tropical storm,NA,50,995,NA,NA +Chantal,1989,7,31,18,27.1,-92.2,tropical storm,NA,55,993,NA,NA +Chantal,1989,8,1,0,27.9,-92.8,hurricane,1,65,991,NA,NA +Chantal,1989,8,1,6,28.7,-93.5,hurricane,1,70,987,NA,NA +Chantal,1989,8,1,12,29.5,-94.3,hurricane,1,70,984,NA,NA +Chantal,1989,8,1,13,29.6,-94.4,hurricane,1,70,986,NA,NA +Chantal,1989,8,1,18,30.2,-95.2,tropical storm,NA,50,993,NA,NA +Chantal,1989,8,2,0,30.8,-96.1,tropical storm,NA,35,1000,NA,NA +Chantal,1989,8,2,6,31.5,-96.9,tropical depression,NA,25,1004,NA,NA +Chantal,1989,8,2,12,32.3,-97.5,tropical depression,NA,20,1007,NA,NA +Chantal,1989,8,2,18,33.3,-98,tropical depression,NA,20,1008,NA,NA +Chantal,1989,8,3,0,34.5,-98.5,tropical depression,NA,20,1009,NA,NA +Dean,1989,7,31,6,14.8,-41.8,tropical depression,NA,25,1010,NA,NA +Dean,1989,7,31,12,15,-44.1,tropical depression,NA,25,1009,NA,NA +Dean,1989,7,31,18,15.1,-46,tropical depression,NA,30,1008,NA,NA +Dean,1989,8,1,0,15.4,-47.6,tropical depression,NA,30,1006,NA,NA +Dean,1989,8,1,6,15.8,-49.3,tropical storm,NA,35,1004,NA,NA +Dean,1989,8,1,12,16.1,-51.1,tropical storm,NA,40,1002,NA,NA +Dean,1989,8,1,18,16.4,-52.9,tropical storm,NA,45,1000,NA,NA +Dean,1989,8,2,0,16.6,-54.6,tropical storm,NA,50,998,NA,NA +Dean,1989,8,2,6,16.9,-56.4,tropical storm,NA,60,996,NA,NA +Dean,1989,8,2,12,17.3,-58.1,hurricane,1,65,994,NA,NA +Dean,1989,8,2,18,17.9,-59.5,hurricane,1,70,992,NA,NA +Dean,1989,8,3,0,18.5,-60.7,hurricane,1,70,990,NA,NA +Dean,1989,8,3,6,18.9,-61.7,hurricane,1,70,987,NA,NA +Dean,1989,8,3,12,19.3,-62.7,hurricane,1,75,985,NA,NA +Dean,1989,8,3,18,19.7,-63.4,hurricane,1,75,985,NA,NA +Dean,1989,8,4,0,20.1,-63.8,hurricane,1,75,986,NA,NA +Dean,1989,8,4,6,20.4,-63.9,hurricane,1,75,986,NA,NA +Dean,1989,8,4,12,20.9,-63.9,hurricane,1,75,985,NA,NA +Dean,1989,8,4,18,21.6,-63.8,hurricane,1,75,984,NA,NA +Dean,1989,8,5,0,22.5,-63.8,hurricane,1,75,983,NA,NA +Dean,1989,8,5,6,23.5,-63.8,hurricane,1,75,983,NA,NA +Dean,1989,8,5,12,24.7,-63.9,hurricane,1,75,980,NA,NA +Dean,1989,8,5,18,26,-64,hurricane,1,75,980,NA,NA +Dean,1989,8,6,0,27.6,-64.3,hurricane,1,75,979,NA,NA +Dean,1989,8,6,6,29.2,-64.6,hurricane,1,80,978,NA,NA +Dean,1989,8,6,12,30.8,-65,hurricane,1,80,975,NA,NA +Dean,1989,8,6,18,32.4,-65.1,hurricane,2,85,971,NA,NA +Dean,1989,8,7,0,34,-64.9,hurricane,2,90,968,NA,NA +Dean,1989,8,7,6,35.6,-64.5,hurricane,2,90,969,NA,NA +Dean,1989,8,7,12,37.5,-64,hurricane,2,85,979,NA,NA +Dean,1989,8,7,18,39.4,-63.4,hurricane,1,80,972,NA,NA +Dean,1989,8,8,0,41.7,-62.1,hurricane,1,75,975,NA,NA +Dean,1989,8,8,6,44.1,-59.7,hurricane,1,65,978,NA,NA +Dean,1989,8,8,12,46.5,-56.5,tropical storm,NA,55,991,NA,NA +Dean,1989,8,8,13,46.9,-55.9,tropical storm,NA,55,991,NA,NA +Dean,1989,8,8,18,48.8,-53.2,tropical storm,NA,45,995,NA,NA +Dean,1989,8,9,0,50.8,-48.1,extratropical,NA,40,1000,NA,NA +Dean,1989,8,9,6,51.8,-41.9,extratropical,NA,35,1003,NA,NA +Erin,1989,8,18,0,14.3,-22.4,tropical depression,NA,25,1012,NA,NA +Erin,1989,8,18,6,15.2,-23.8,tropical depression,NA,25,1012,NA,NA +Erin,1989,8,18,12,16.2,-25.2,tropical depression,NA,25,1011,NA,NA +Erin,1989,8,18,18,17,-26.5,tropical depression,NA,30,1010,NA,NA +Erin,1989,8,19,0,17.4,-27.8,tropical depression,NA,30,1009,NA,NA +Erin,1989,8,19,6,17.7,-29.4,tropical depression,NA,30,1008,NA,NA +Erin,1989,8,19,12,18.1,-31.1,tropical depression,NA,30,1007,NA,NA +Erin,1989,8,19,18,18.5,-32.7,tropical storm,NA,35,1005,NA,NA +Erin,1989,8,20,0,19.1,-34.3,tropical storm,NA,35,1004,NA,NA +Erin,1989,8,20,6,19.6,-35.6,tropical storm,NA,40,1003,NA,NA +Erin,1989,8,20,12,20.1,-36.9,tropical storm,NA,40,1002,NA,NA +Erin,1989,8,20,18,20.6,-38.3,tropical storm,NA,40,1001,NA,NA +Erin,1989,8,21,0,21.1,-39.7,tropical storm,NA,45,1000,NA,NA +Erin,1989,8,21,6,22,-41.1,tropical storm,NA,45,998,NA,NA +Erin,1989,8,21,12,23.3,-42.1,tropical storm,NA,45,997,NA,NA +Erin,1989,8,21,18,24.7,-42.8,tropical storm,NA,50,994,NA,NA +Erin,1989,8,22,0,26.2,-43.3,tropical storm,NA,55,992,NA,NA +Erin,1989,8,22,6,27.6,-43.8,tropical storm,NA,60,989,NA,NA +Erin,1989,8,22,12,28.8,-44.5,hurricane,1,65,986,NA,NA +Erin,1989,8,22,18,29.7,-45.2,hurricane,1,70,983,NA,NA +Erin,1989,8,23,0,30.3,-45.9,hurricane,1,70,981,NA,NA +Erin,1989,8,23,6,30.9,-46.3,hurricane,1,75,979,NA,NA +Erin,1989,8,23,12,31.5,-46.2,hurricane,1,80,977,NA,NA +Erin,1989,8,23,18,32,-46,hurricane,1,80,975,NA,NA +Erin,1989,8,24,0,32.6,-45.6,hurricane,2,85,973,NA,NA +Erin,1989,8,24,6,33.3,-45.2,hurricane,2,85,971,NA,NA +Erin,1989,8,24,12,34.1,-44.5,hurricane,2,90,970,NA,NA +Erin,1989,8,24,18,35.1,-43.6,hurricane,2,90,969,NA,NA +Erin,1989,8,25,0,36.3,-42.4,hurricane,2,90,968,NA,NA +Erin,1989,8,25,6,37.6,-41.1,hurricane,2,90,969,NA,NA +Erin,1989,8,25,12,39,-39.7,hurricane,2,90,971,NA,NA +Erin,1989,8,25,18,40.6,-38.3,hurricane,2,85,973,NA,NA +Erin,1989,8,26,0,42.3,-37.2,hurricane,1,80,976,NA,NA +Erin,1989,8,26,6,44.4,-36.2,hurricane,1,75,980,NA,NA +Erin,1989,8,26,12,47,-35.1,hurricane,1,70,983,NA,NA +Erin,1989,8,26,18,49.5,-33.5,hurricane,1,65,986,NA,NA +Erin,1989,8,27,0,51.9,-31.8,tropical storm,NA,60,991,NA,NA +Felix,1989,8,26,0,16.8,-21,tropical depression,NA,25,1009,NA,NA +Felix,1989,8,26,6,16.9,-21.7,tropical depression,NA,30,1008,NA,NA +Felix,1989,8,26,12,17,-22.2,tropical depression,NA,30,1007,NA,NA +Felix,1989,8,26,18,17.2,-22.9,tropical storm,NA,35,1005,NA,NA +Felix,1989,8,27,0,17.4,-23.5,tropical storm,NA,35,1003,NA,NA +Felix,1989,8,27,6,17.8,-23.9,tropical storm,NA,40,1001,NA,NA +Felix,1989,8,27,12,18.2,-24,tropical storm,NA,45,1000,NA,NA +Felix,1989,8,27,18,18.7,-24.3,tropical storm,NA,50,998,NA,NA +Felix,1989,8,28,0,19.1,-24.6,tropical storm,NA,50,996,NA,NA +Felix,1989,8,28,6,19.7,-24.8,tropical storm,NA,55,995,NA,NA +Felix,1989,8,28,12,20,-24.9,tropical storm,NA,50,995,NA,NA +Felix,1989,8,28,18,20.5,-24.9,tropical storm,NA,50,995,NA,NA +Felix,1989,8,29,0,20.8,-25.3,tropical storm,NA,45,1000,NA,NA +Felix,1989,8,29,6,21.1,-26,tropical storm,NA,35,1001,NA,NA +Felix,1989,8,29,12,21.4,-26.9,tropical storm,NA,35,1005,NA,NA +Felix,1989,8,29,18,21.9,-27.8,tropical depression,NA,30,1006,NA,NA +Felix,1989,8,30,0,22.5,-28.7,tropical depression,NA,30,1008,NA,NA +Felix,1989,8,30,6,23.4,-29.7,tropical depression,NA,30,1009,NA,NA +Felix,1989,8,30,12,24.2,-31,tropical depression,NA,30,1009,NA,NA +Felix,1989,8,30,18,25.1,-32.4,tropical depression,NA,30,1010,NA,NA +Felix,1989,8,31,0,26.3,-34,tropical depression,NA,30,1010,NA,NA +Felix,1989,8,31,6,27.6,-35.6,tropical depression,NA,30,1010,NA,NA +Felix,1989,8,31,12,28.9,-37.1,tropical depression,NA,30,1010,NA,NA +Felix,1989,8,31,18,29.7,-38.6,tropical depression,NA,30,1010,NA,NA +Felix,1989,9,1,0,30.5,-39.7,tropical depression,NA,30,1009,NA,NA +Felix,1989,9,1,6,31.1,-41.1,tropical depression,NA,30,1009,NA,NA +Felix,1989,9,1,12,31.8,-40.8,tropical depression,NA,30,1009,NA,NA +Felix,1989,9,1,18,32.2,-40.9,tropical depression,NA,30,1009,NA,NA +Felix,1989,9,2,0,32.7,-40.9,tropical depression,NA,30,1008,NA,NA +Felix,1989,9,2,6,33,-40.9,tropical depression,NA,30,1008,NA,NA +Felix,1989,9,2,12,33.1,-41,tropical depression,NA,30,1008,NA,NA +Felix,1989,9,2,18,33.2,-41.3,tropical depression,NA,30,1008,NA,NA +Felix,1989,9,3,0,33.2,-41.8,tropical storm,NA,35,1005,NA,NA +Felix,1989,9,3,6,33.4,-42.3,tropical storm,NA,35,1005,NA,NA +Felix,1989,9,3,12,33.5,-42.9,tropical storm,NA,35,1005,NA,NA +Felix,1989,9,3,18,33.8,-43.9,tropical storm,NA,35,1005,NA,NA +Felix,1989,9,4,0,34,-45.2,tropical storm,NA,40,1004,NA,NA +Felix,1989,9,4,6,34.3,-46.3,tropical storm,NA,40,1003,NA,NA +Felix,1989,9,4,12,34.9,-47.5,tropical storm,NA,45,1002,NA,NA +Felix,1989,9,4,18,35.3,-48.1,tropical storm,NA,45,1000,NA,NA +Felix,1989,9,5,0,35.7,-48.8,tropical storm,NA,55,995,NA,NA +Felix,1989,9,5,6,36,-48.7,hurricane,1,65,988,NA,NA +Felix,1989,9,5,12,36.3,-48.6,hurricane,1,70,982,NA,NA +Felix,1989,9,5,18,36.7,-48.3,hurricane,1,75,979,NA,NA +Felix,1989,9,6,0,36.9,-48.2,hurricane,1,75,979,NA,NA +Felix,1989,9,6,6,37.2,-48.1,hurricane,1,75,979,NA,NA +Felix,1989,9,6,12,37.4,-48,hurricane,1,70,982,NA,NA +Felix,1989,9,6,18,37.6,-47.9,hurricane,1,70,984,NA,NA +Felix,1989,9,7,0,38,-47.8,hurricane,1,65,988,NA,NA +Felix,1989,9,7,6,38.5,-47.7,tropical storm,NA,60,990,NA,NA +Felix,1989,9,7,12,39.3,-47.6,tropical storm,NA,55,992,NA,NA +Felix,1989,9,7,18,40.4,-47,tropical storm,NA,50,994,NA,NA +Felix,1989,9,8,0,41.3,-46.7,tropical storm,NA,50,995,NA,NA +Felix,1989,9,8,6,42.4,-45.8,tropical storm,NA,45,998,NA,NA +Felix,1989,9,8,12,43.6,-44.8,tropical storm,NA,45,1000,NA,NA +Felix,1989,9,8,18,45,-42.8,tropical storm,NA,40,1002,NA,NA +Felix,1989,9,9,0,46.5,-40.5,tropical storm,NA,35,1005,NA,NA +Felix,1989,9,9,6,46.5,-38,extratropical,NA,40,1002,NA,NA +Felix,1989,9,9,12,46.5,-35.5,extratropical,NA,40,1000,NA,NA +Felix,1989,9,9,18,45.5,-33.5,extratropical,NA,45,997,NA,NA +Felix,1989,9,10,0,44.5,-31.5,extratropical,NA,50,995,NA,NA +Felix,1989,9,10,6,43.5,-30.2,extratropical,NA,50,995,NA,NA +Felix,1989,9,10,12,42.5,-29,extratropical,NA,50,995,NA,NA +Gabrielle,1989,8,30,12,11.6,-21,tropical depression,NA,25,1011,NA,NA +Gabrielle,1989,8,30,18,11.3,-23,tropical depression,NA,30,1009,NA,NA +Gabrielle,1989,8,31,0,11.3,-24.8,tropical storm,NA,35,1005,NA,NA +Gabrielle,1989,8,31,6,11.4,-26.5,tropical storm,NA,35,1005,NA,NA +Gabrielle,1989,8,31,12,11.5,-28.3,tropical storm,NA,45,1000,NA,NA +Gabrielle,1989,8,31,18,11.5,-30,tropical storm,NA,55,994,NA,NA +Gabrielle,1989,9,1,0,11.5,-31.7,hurricane,1,65,987,NA,NA +Gabrielle,1989,9,1,6,11.8,-33.4,hurricane,1,65,987,NA,NA +Gabrielle,1989,9,1,12,12.3,-35.1,hurricane,1,65,987,NA,NA +Gabrielle,1989,9,1,18,12.8,-36.8,hurricane,1,65,987,NA,NA +Gabrielle,1989,9,2,0,13.4,-38.6,hurricane,1,75,980,NA,NA +Gabrielle,1989,9,2,6,13.9,-40.3,hurricane,1,80,977,NA,NA +Gabrielle,1989,9,2,12,14.4,-42,hurricane,2,85,974,NA,NA +Gabrielle,1989,9,2,18,14.8,-43.8,hurricane,2,90,970,NA,NA +Gabrielle,1989,9,3,0,15.2,-45.5,hurricane,2,95,966,NA,NA +Gabrielle,1989,9,3,6,15.6,-47.2,hurricane,3,100,960,NA,NA +Gabrielle,1989,9,3,12,16.1,-48.8,hurricane,3,105,948,NA,NA +Gabrielle,1989,9,3,18,16.5,-50.3,hurricane,3,105,937,NA,NA +Gabrielle,1989,9,3,20,16.8,-50.9,hurricane,3,105,935,NA,NA +Gabrielle,1989,9,4,0,17,-51.5,hurricane,3,105,937,NA,NA +Gabrielle,1989,9,4,6,17.4,-52.7,hurricane,3,110,940,NA,NA +Gabrielle,1989,9,4,12,18,-53.8,hurricane,4,115,942,NA,NA +Gabrielle,1989,9,4,18,18.6,-54.8,hurricane,4,120,942,NA,NA +Gabrielle,1989,9,5,0,19.3,-55.7,hurricane,4,125,944,NA,NA +Gabrielle,1989,9,5,6,19.9,-56.5,hurricane,4,125,941,NA,NA +Gabrielle,1989,9,5,12,20.6,-57.2,hurricane,4,125,941,NA,NA +Gabrielle,1989,9,5,18,21.4,-57.8,hurricane,4,125,941,NA,NA +Gabrielle,1989,9,6,0,22.2,-58.3,hurricane,4,125,944,NA,NA +Gabrielle,1989,9,6,6,23.1,-58.8,hurricane,4,120,942,NA,NA +Gabrielle,1989,9,6,12,24,-59.3,hurricane,4,120,944,NA,NA +Gabrielle,1989,9,6,18,25.1,-59.8,hurricane,4,120,944,NA,NA +Gabrielle,1989,9,7,0,26.4,-60,hurricane,4,120,943,NA,NA +Gabrielle,1989,9,7,6,27.7,-60,hurricane,3,105,948,NA,NA +Gabrielle,1989,9,7,12,29,-59.9,hurricane,2,95,950,NA,NA +Gabrielle,1989,9,7,18,30.5,-59.8,hurricane,2,95,951,NA,NA +Gabrielle,1989,9,8,0,32.1,-59.6,hurricane,2,95,951,NA,NA +Gabrielle,1989,9,8,6,33.7,-59.6,hurricane,2,90,955,NA,NA +Gabrielle,1989,9,8,12,35.1,-59.6,hurricane,2,85,961,NA,NA +Gabrielle,1989,9,8,18,36.4,-59.7,hurricane,1,80,970,NA,NA +Gabrielle,1989,9,9,0,37.2,-59.8,hurricane,1,75,979,NA,NA +Gabrielle,1989,9,9,6,38,-59.9,hurricane,1,70,987,NA,NA +Gabrielle,1989,9,9,12,38.5,-60,hurricane,1,65,988,NA,NA +Gabrielle,1989,9,9,18,38.9,-60.1,hurricane,1,65,990,NA,NA +Gabrielle,1989,9,10,0,39.1,-60.3,hurricane,1,65,990,NA,NA +Gabrielle,1989,9,10,6,39.1,-60.4,tropical storm,NA,60,994,NA,NA +Gabrielle,1989,9,10,12,39.1,-60.6,tropical storm,NA,60,996,NA,NA +Gabrielle,1989,9,10,18,39.1,-61.1,tropical storm,NA,55,998,NA,NA +Gabrielle,1989,9,11,0,39.1,-61.6,tropical storm,NA,50,1000,NA,NA +Gabrielle,1989,9,11,6,39,-62,tropical storm,NA,45,1002,NA,NA +Gabrielle,1989,9,11,12,39.4,-62,tropical storm,NA,40,1003,NA,NA +Gabrielle,1989,9,11,18,39.9,-61.3,tropical storm,NA,35,1005,NA,NA +Gabrielle,1989,9,12,0,40.2,-60.6,tropical storm,NA,35,1005,NA,NA +Gabrielle,1989,9,12,6,40.3,-59.7,tropical storm,NA,35,1006,NA,NA +Gabrielle,1989,9,12,12,40.5,-58.7,tropical depression,NA,30,1007,NA,NA +Gabrielle,1989,9,12,18,41,-57.1,tropical depression,NA,30,1008,NA,NA +Gabrielle,1989,9,13,0,41.8,-55.3,tropical depression,NA,30,1009,NA,NA +Gabrielle,1989,9,13,6,42.7,-53.5,tropical depression,NA,30,1010,NA,NA +Gabrielle,1989,9,13,12,43.8,-51.5,tropical depression,NA,30,1010,NA,NA +Hugo,1989,9,10,12,13.2,-20,tropical depression,NA,25,1010,NA,NA +Hugo,1989,9,10,18,13.3,-21.8,tropical depression,NA,25,1010,NA,NA +Hugo,1989,9,11,0,13.2,-23.7,tropical depression,NA,30,1009,NA,NA +Hugo,1989,9,11,6,13,-25.5,tropical depression,NA,30,1007,NA,NA +Hugo,1989,9,11,12,12.8,-27.3,tropical depression,NA,30,1005,NA,NA +Hugo,1989,9,11,18,12.5,-29.2,tropical storm,NA,35,1003,NA,NA +Hugo,1989,9,12,0,12.5,-31,tropical storm,NA,40,1002,NA,NA +Hugo,1989,9,12,6,12.5,-32.9,tropical storm,NA,45,1000,NA,NA +Hugo,1989,9,12,12,12.5,-34.8,tropical storm,NA,45,998,NA,NA +Hugo,1989,9,12,18,12.6,-36.7,tropical storm,NA,50,996,NA,NA +Hugo,1989,9,13,0,12.6,-38.2,tropical storm,NA,55,994,NA,NA +Hugo,1989,9,13,6,12.7,-40,tropical storm,NA,55,992,NA,NA +Hugo,1989,9,13,12,12.8,-41.8,tropical storm,NA,60,990,NA,NA +Hugo,1989,9,13,18,12.8,-43.5,hurricane,1,65,987,NA,NA +Hugo,1989,9,14,0,12.9,-44.9,hurricane,1,70,984,NA,NA +Hugo,1989,9,14,6,13,-46.3,hurricane,1,80,980,NA,NA +Hugo,1989,9,14,12,13.2,-47.8,hurricane,2,85,975,NA,NA +Hugo,1989,9,14,18,13.6,-49.1,hurricane,2,90,970,NA,NA +Hugo,1989,9,15,0,13.8,-50.5,hurricane,3,100,962,NA,NA +Hugo,1989,9,15,6,14,-51.9,hurricane,3,110,957,NA,NA +Hugo,1989,9,15,12,14.2,-53.3,hurricane,4,125,940,NA,NA +Hugo,1989,9,15,18,14.6,-54.6,hurricane,5,140,918,NA,NA +Hugo,1989,9,16,0,14.8,-56.1,hurricane,4,135,923,NA,NA +Hugo,1989,9,16,6,15.1,-57.3,hurricane,4,130,927,NA,NA +Hugo,1989,9,16,12,15.4,-58.4,hurricane,4,120,940,NA,NA +Hugo,1989,9,16,18,15.8,-59.4,hurricane,4,120,941,NA,NA +Hugo,1989,9,17,0,16.1,-60.4,hurricane,4,120,941,NA,NA +Hugo,1989,9,17,5,16.3,-61.3,hurricane,4,120,941,NA,NA +Hugo,1989,9,17,6,16.4,-61.5,hurricane,4,120,943,NA,NA +Hugo,1989,9,17,12,16.6,-62.5,hurricane,4,125,949,NA,NA +Hugo,1989,9,17,18,16.9,-63.5,hurricane,4,125,945,NA,NA +Hugo,1989,9,18,0,17.2,-64.1,hurricane,4,130,934,NA,NA +Hugo,1989,9,18,6,17.7,-64.8,hurricane,4,120,940,NA,NA +Hugo,1989,9,18,12,18.2,-65.5,hurricane,3,110,945,NA,NA +Hugo,1989,9,18,13,18.3,-65.6,hurricane,3,110,946,NA,NA +Hugo,1989,9,18,18,19.1,-66.4,hurricane,3,105,958,NA,NA +Hugo,1989,9,19,0,19.7,-66.8,hurricane,3,100,959,NA,NA +Hugo,1989,9,19,6,20.7,-67.3,hurricane,2,90,962,NA,NA +Hugo,1989,9,19,12,21.6,-68,hurricane,2,90,964,NA,NA +Hugo,1989,9,19,18,22.6,-68.6,hurricane,2,90,966,NA,NA +Hugo,1989,9,20,0,23.5,-69.3,hurricane,2,90,957,NA,NA +Hugo,1989,9,20,6,24.4,-70.1,hurricane,2,90,957,NA,NA +Hugo,1989,9,20,12,25.2,-71,hurricane,2,95,958,NA,NA +Hugo,1989,9,20,18,26.3,-72.2,hurricane,2,95,953,NA,NA +Hugo,1989,9,21,0,27.2,-73.4,hurricane,3,100,950,NA,NA +Hugo,1989,9,21,6,28,-74.9,hurricane,3,100,950,NA,NA +Hugo,1989,9,21,12,29,-76.1,hurricane,3,110,948,NA,NA +Hugo,1989,9,21,18,30.2,-77.5,hurricane,4,120,944,NA,NA +Hugo,1989,9,22,0,31.7,-78.8,hurricane,4,120,935,NA,NA +Hugo,1989,9,22,4,32.8,-79.8,hurricane,4,120,934,NA,NA +Hugo,1989,9,22,6,33.5,-80.3,hurricane,2,85,952,NA,NA +Hugo,1989,9,22,12,35.9,-81.7,tropical storm,NA,55,975,NA,NA +Hugo,1989,9,22,18,38.5,-81.8,tropical storm,NA,40,987,NA,NA +Hugo,1989,9,23,0,42.2,-80.2,extratropical,NA,35,988,NA,NA +Hugo,1989,9,23,6,46,-74.5,extratropical,NA,40,990,NA,NA +Hugo,1989,9,23,12,49,-69,extratropical,NA,40,992,NA,NA +Hugo,1989,9,23,18,51,-65,extratropical,NA,40,993,NA,NA +Hugo,1989,9,24,0,52,-62,extratropical,NA,40,994,NA,NA +Hugo,1989,9,24,6,52.5,-60.5,extratropical,NA,40,993,NA,NA +Hugo,1989,9,24,12,53,-59.5,extratropical,NA,40,991,NA,NA +Hugo,1989,9,24,18,53.5,-58.5,extratropical,NA,40,989,NA,NA +Hugo,1989,9,25,0,54,-57,extratropical,NA,40,983,NA,NA +Hugo,1989,9,25,6,56,-52,extratropical,NA,40,979,NA,NA +Hugo,1989,9,25,12,58,-46,extratropical,NA,40,974,NA,NA +Iris,1989,9,16,18,11.3,-44,tropical depression,NA,25,1017,NA,NA +Iris,1989,9,17,0,11.2,-46,tropical depression,NA,30,1010,NA,NA +Iris,1989,9,17,6,11.2,-48,tropical depression,NA,30,1009,NA,NA +Iris,1989,9,17,12,11.3,-50,tropical depression,NA,30,1008,NA,NA +Iris,1989,9,17,18,11.5,-51.7,tropical depression,NA,30,1007,NA,NA +Iris,1989,9,18,0,11.9,-53.2,tropical storm,NA,35,1005,NA,NA +Iris,1989,9,18,6,12.6,-54.6,tropical storm,NA,35,1004,NA,NA +Iris,1989,9,18,12,14,-55.5,tropical storm,NA,40,1003,NA,NA +Iris,1989,9,18,18,15.6,-56.1,tropical storm,NA,45,1002,NA,NA +Iris,1989,9,19,0,17,-56.8,tropical storm,NA,50,1001,NA,NA +Iris,1989,9,19,6,18.1,-57.5,tropical storm,NA,55,1001,NA,NA +Iris,1989,9,19,12,19.2,-58.2,tropical storm,NA,60,1001,NA,NA +Iris,1989,9,19,18,20,-59.2,tropical storm,NA,60,1001,NA,NA +Iris,1989,9,20,0,20.5,-60.3,tropical storm,NA,50,1002,NA,NA +Iris,1989,9,20,6,20.9,-61.3,tropical storm,NA,40,1003,NA,NA +Iris,1989,9,20,12,21.3,-62.2,tropical storm,NA,35,1005,NA,NA +Iris,1989,9,20,18,21.7,-63.1,tropical storm,NA,35,1007,NA,NA +Iris,1989,9,21,0,21.9,-64.1,tropical depression,NA,30,1008,NA,NA +Iris,1989,9,21,6,22.2,-65.1,tropical depression,NA,30,1010,NA,NA +Iris,1989,9,21,12,22.4,-66,tropical depression,NA,25,1011,NA,NA +Iris,1989,9,21,18,22.5,-67,tropical depression,NA,25,1012,NA,NA +Jerry,1989,10,12,12,19.4,-92.4,tropical depression,NA,25,1009,NA,NA +Jerry,1989,10,12,18,19.8,-92.7,tropical depression,NA,30,1006,NA,NA +Jerry,1989,10,13,0,20.4,-93,tropical storm,NA,35,1004,NA,NA +Jerry,1989,10,13,6,21,-93.2,tropical storm,NA,40,1001,NA,NA +Jerry,1989,10,13,12,21.7,-93.3,tropical storm,NA,45,997,NA,NA +Jerry,1989,10,13,18,22.6,-93.4,tropical storm,NA,50,995,NA,NA +Jerry,1989,10,14,0,23.5,-93.5,tropical storm,NA,55,991,NA,NA +Jerry,1989,10,14,6,24.2,-93.3,tropical storm,NA,55,992,NA,NA +Jerry,1989,10,14,12,24.6,-93.1,tropical storm,NA,55,992,NA,NA +Jerry,1989,10,14,18,25,-92.8,tropical storm,NA,55,994,NA,NA +Jerry,1989,10,15,0,25.8,-93.1,tropical storm,NA,55,994,NA,NA +Jerry,1989,10,15,6,26.5,-93.4,tropical storm,NA,55,994,NA,NA +Jerry,1989,10,15,12,27.3,-94,tropical storm,NA,60,991,NA,NA +Jerry,1989,10,15,18,28.1,-94.6,hurricane,1,65,986,NA,NA +Jerry,1989,10,15,21,28.6,-94.8,hurricane,1,70,982,NA,NA +Jerry,1989,10,16,0,29.1,-95,hurricane,1,75,983,NA,NA +Jerry,1989,10,16,0,29.2,-95,hurricane,1,75,983,NA,NA +Jerry,1989,10,16,6,30.4,-94.9,tropical storm,NA,35,991,NA,NA +Jerry,1989,10,16,12,32,-94.5,tropical depression,NA,20,1000,NA,NA +Jerry,1989,10,16,18,33.8,-93.8,tropical depression,NA,15,1009,NA,NA +Karen,1989,11,28,12,17.1,-84,tropical depression,NA,25,1005,NA,NA +Karen,1989,11,28,18,18,-84.8,tropical depression,NA,30,1004,NA,NA +Karen,1989,11,29,0,19,-85.1,tropical depression,NA,30,1004,NA,NA +Karen,1989,11,29,6,19.5,-85.1,tropical depression,NA,30,1005,NA,NA +Karen,1989,11,29,12,20,-85,tropical depression,NA,30,1005,NA,NA +Karen,1989,11,29,18,20.4,-84.6,tropical depression,NA,30,1005,NA,NA +Karen,1989,11,30,0,20.8,-84.2,tropical storm,NA,35,1004,NA,NA +Karen,1989,11,30,6,20.8,-83.6,tropical storm,NA,45,1003,NA,NA +Karen,1989,11,30,12,20.8,-83.4,tropical storm,NA,50,1001,NA,NA +Karen,1989,11,30,18,20.5,-83.1,tropical storm,NA,50,1000,NA,NA +Karen,1989,12,1,0,19.9,-83.1,tropical storm,NA,45,1001,NA,NA +Karen,1989,12,1,6,19.3,-83.2,tropical storm,NA,40,1002,NA,NA +Karen,1989,12,1,12,19,-83.3,tropical storm,NA,35,1003,NA,NA +Karen,1989,12,1,18,18.5,-84,tropical storm,NA,35,1005,NA,NA +Karen,1989,12,2,0,18,-84.5,tropical storm,NA,35,1005,NA,NA +Karen,1989,12,2,6,17.8,-84.9,tropical storm,NA,35,1005,NA,NA +Karen,1989,12,2,12,17.5,-85.5,tropical storm,NA,35,1006,NA,NA +Karen,1989,12,2,18,17.5,-85.5,tropical storm,NA,35,1007,NA,NA +Karen,1989,12,3,0,17.5,-85.5,tropical storm,NA,35,1007,NA,NA +Karen,1989,12,3,6,17.4,-85.3,tropical storm,NA,40,1005,NA,NA +Karen,1989,12,3,12,17.2,-85,tropical storm,NA,40,1004,NA,NA +Karen,1989,12,3,18,17,-84.5,tropical storm,NA,40,1001,NA,NA +Karen,1989,12,4,0,16.5,-83.9,tropical storm,NA,35,1002,NA,NA +Karen,1989,12,4,6,16.5,-83.9,tropical depression,NA,30,1005,NA,NA +Arthur,1990,7,22,6,8.8,-41.9,tropical depression,NA,25,1010,NA,NA +Arthur,1990,7,22,12,8.9,-43.2,tropical depression,NA,25,1010,NA,NA +Arthur,1990,7,22,18,9.3,-44.6,tropical depression,NA,25,1010,NA,NA +Arthur,1990,7,23,0,9.3,-46.4,tropical depression,NA,25,1010,NA,NA +Arthur,1990,7,23,6,9.2,-48.4,tropical depression,NA,25,1010,NA,NA +Arthur,1990,7,23,12,9.2,-50.3,tropical depression,NA,25,1010,NA,NA +Arthur,1990,7,23,18,9.4,-52.1,tropical depression,NA,25,1009,NA,NA +Arthur,1990,7,24,0,9.7,-53.7,tropical depression,NA,30,1008,NA,NA +Arthur,1990,7,24,6,10.1,-55.3,tropical depression,NA,30,1007,NA,NA +Arthur,1990,7,24,12,10.5,-56.8,tropical storm,NA,35,1006,NA,NA +Arthur,1990,7,24,18,10.8,-58.5,tropical storm,NA,35,1005,NA,NA +Arthur,1990,7,25,0,11.1,-60,tropical storm,NA,40,1004,NA,NA +Arthur,1990,7,25,6,11.7,-61.3,tropical storm,NA,45,1003,NA,NA +Arthur,1990,7,25,12,12.4,-62.5,tropical storm,NA,50,1001,NA,NA +Arthur,1990,7,25,18,13.1,-63.7,tropical storm,NA,60,995,NA,NA +Arthur,1990,7,26,0,13.7,-65,tropical storm,NA,60,997,NA,NA +Arthur,1990,7,26,6,14.2,-66.4,tropical storm,NA,50,1000,NA,NA +Arthur,1990,7,26,12,14.8,-67.9,tropical storm,NA,45,1002,NA,NA +Arthur,1990,7,26,18,15.6,-69.8,tropical storm,NA,40,1007,NA,NA +Arthur,1990,7,27,0,16.2,-71.8,tropical storm,NA,35,1009,NA,NA +Arthur,1990,7,27,6,16.6,-73.8,tropical depression,NA,30,1010,NA,NA +Arthur,1990,7,27,12,16.5,-75.6,tropical depression,NA,30,1010,NA,NA +Bertha,1990,7,24,12,34,-75,subtropical depression,NA,20,1012,NA,NA +Bertha,1990,7,24,18,33.6,-73.8,subtropical depression,NA,20,1013,NA,NA +Bertha,1990,7,25,0,33,-72.7,subtropical depression,NA,20,1013,NA,NA +Bertha,1990,7,25,6,32.1,-71.9,subtropical depression,NA,20,1013,NA,NA +Bertha,1990,7,25,12,31.2,-71.8,subtropical depression,NA,20,1012,NA,NA +Bertha,1990,7,25,18,30.7,-72.2,subtropical depression,NA,25,1011,NA,NA +Bertha,1990,7,26,0,30.5,-72.8,subtropical depression,NA,25,1010,NA,NA +Bertha,1990,7,26,6,30.3,-73.4,subtropical depression,NA,25,1010,NA,NA +Bertha,1990,7,26,12,30.1,-74,subtropical depression,NA,25,1010,NA,NA +Bertha,1990,7,26,18,29.8,-74.6,subtropical depression,NA,25,1010,NA,NA +Bertha,1990,7,27,0,29.6,-75.2,subtropical depression,NA,25,1009,NA,NA +Bertha,1990,7,27,6,29.3,-75.6,tropical depression,NA,30,1008,NA,NA +Bertha,1990,7,27,12,29.1,-75.8,tropical depression,NA,30,1008,NA,NA +Bertha,1990,7,27,18,28.8,-76,tropical depression,NA,30,1007,NA,NA +Bertha,1990,7,28,0,28.6,-75.8,tropical storm,NA,35,1005,NA,NA +Bertha,1990,7,28,6,28.8,-75.4,tropical storm,NA,40,1003,NA,NA +Bertha,1990,7,28,12,29.1,-74.8,tropical storm,NA,45,1000,NA,NA +Bertha,1990,7,28,18,29.6,-74.2,tropical storm,NA,55,995,NA,NA +Bertha,1990,7,29,0,30.2,-73.6,hurricane,1,65,990,NA,NA +Bertha,1990,7,29,6,30.8,-73,hurricane,1,65,988,NA,NA +Bertha,1990,7,29,12,31.3,-72.2,hurricane,1,65,989,NA,NA +Bertha,1990,7,29,18,31.9,-71.2,tropical storm,NA,60,990,NA,NA +Bertha,1990,7,30,0,32.7,-70.2,tropical storm,NA,60,989,NA,NA +Bertha,1990,7,30,6,33.7,-69.2,tropical storm,NA,60,987,NA,NA +Bertha,1990,7,30,12,34.7,-68.3,hurricane,1,65,985,NA,NA +Bertha,1990,7,30,18,35.7,-67.5,hurricane,1,65,979,NA,NA +Bertha,1990,7,31,0,36.6,-67,hurricane,1,70,974,NA,NA +Bertha,1990,7,31,6,37.5,-66.5,hurricane,1,65,975,NA,NA +Bertha,1990,7,31,12,38.3,-65.9,hurricane,1,65,976,NA,NA +Bertha,1990,7,31,18,39,-65.3,hurricane,1,65,977,NA,NA +Bertha,1990,8,1,0,39.6,-64.5,hurricane,1,65,977,NA,NA +Bertha,1990,8,1,6,40.3,-63.7,hurricane,1,65,977,NA,NA +Bertha,1990,8,1,12,41.1,-62.7,hurricane,1,65,977,NA,NA +Bertha,1990,8,1,18,42.4,-61.5,hurricane,1,65,975,NA,NA +Bertha,1990,8,2,0,44.2,-60.5,hurricane,1,70,973,NA,NA +Bertha,1990,8,2,6,46,-60,extratropical,NA,60,978,NA,NA +Bertha,1990,8,2,12,48.4,-60,extratropical,NA,55,982,NA,NA +Cesar,1990,7,31,0,10.1,-22.2,tropical depression,NA,25,1014,NA,NA +Cesar,1990,7,31,6,10.4,-23.3,tropical depression,NA,25,1013,NA,NA +Cesar,1990,7,31,12,10.8,-24.5,tropical depression,NA,25,1013,NA,NA +Cesar,1990,7,31,18,11.1,-25.6,tropical depression,NA,25,1013,NA,NA +Cesar,1990,8,1,0,11.5,-26.9,tropical depression,NA,25,1013,NA,NA +Cesar,1990,8,1,6,12.2,-28.3,tropical depression,NA,25,1012,NA,NA +Cesar,1990,8,1,12,13.4,-29.7,tropical depression,NA,30,1012,NA,NA +Cesar,1990,8,1,18,14.6,-31.2,tropical depression,NA,30,1009,NA,NA +Cesar,1990,8,2,0,15.4,-32.3,tropical storm,NA,35,1005,NA,NA +Cesar,1990,8,2,6,16.1,-33.5,tropical storm,NA,45,1002,NA,NA +Cesar,1990,8,2,12,16.7,-34.7,tropical storm,NA,45,1000,NA,NA +Cesar,1990,8,2,18,17.4,-35.9,tropical storm,NA,45,1000,NA,NA +Cesar,1990,8,3,0,18.1,-37.1,tropical storm,NA,45,1000,NA,NA +Cesar,1990,8,3,6,18.8,-38.4,tropical storm,NA,45,1000,NA,NA +Cesar,1990,8,3,12,19.3,-39.7,tropical storm,NA,45,1000,NA,NA +Cesar,1990,8,3,18,19.8,-40.8,tropical storm,NA,45,1000,NA,NA +Cesar,1990,8,4,0,20.4,-41.9,tropical storm,NA,45,1000,NA,NA +Cesar,1990,8,4,6,21.2,-42.8,tropical storm,NA,45,1000,NA,NA +Cesar,1990,8,4,12,22,-43.5,tropical storm,NA,45,1000,NA,NA +Cesar,1990,8,4,18,22.8,-44,tropical storm,NA,45,1000,NA,NA +Cesar,1990,8,5,0,23.6,-44.5,tropical storm,NA,45,1000,NA,NA +Cesar,1990,8,5,6,24.4,-45.1,tropical storm,NA,45,1000,NA,NA +Cesar,1990,8,5,12,25.3,-45.7,tropical storm,NA,45,1000,NA,NA +Cesar,1990,8,5,18,26.1,-46.3,tropical storm,NA,40,1002,NA,NA +Cesar,1990,8,6,0,26.6,-46.7,tropical storm,NA,40,1004,NA,NA +Cesar,1990,8,6,6,26.8,-46.8,tropical storm,NA,35,1006,NA,NA +Cesar,1990,8,6,12,26.9,-46.8,tropical depression,NA,30,1009,NA,NA +Cesar,1990,8,6,18,26.9,-46.6,tropical depression,NA,30,1011,NA,NA +Cesar,1990,8,7,0,26.9,-46.4,tropical depression,NA,25,1013,NA,NA +Cesar,1990,8,7,6,26.9,-46.3,tropical depression,NA,25,1014,NA,NA +Cesar,1990,8,7,12,26.8,-46.3,tropical depression,NA,25,1016,NA,NA +Edouard,1990,8,2,18,38,-23,subtropical depression,NA,30,1015,NA,NA +Edouard,1990,8,3,0,38.3,-23,subtropical depression,NA,30,1013,NA,NA +Edouard,1990,8,3,6,38.8,-23.1,subtropical depression,NA,30,1010,NA,NA +Edouard,1990,8,3,12,39.2,-23.3,subtropical storm,NA,35,1009,NA,NA +Edouard,1990,8,3,18,39.5,-23.9,subtropical storm,NA,40,1006,NA,NA +Edouard,1990,8,4,0,39.7,-25.3,subtropical storm,NA,40,1005,NA,NA +Edouard,1990,8,4,6,39.4,-27.3,subtropical storm,NA,35,1006,NA,NA +Edouard,1990,8,4,12,38.8,-29,subtropical storm,NA,35,1006,NA,NA +Edouard,1990,8,4,18,38.1,-30.1,subtropical depression,NA,30,1007,NA,NA +Edouard,1990,8,5,0,37.6,-30.8,subtropical depression,NA,30,1007,NA,NA +Edouard,1990,8,5,6,37.3,-31.6,subtropical depression,NA,30,1007,NA,NA +Edouard,1990,8,5,12,37.1,-32.5,subtropical depression,NA,30,1007,NA,NA +Edouard,1990,8,5,18,37,-33.1,subtropical depression,NA,25,1009,NA,NA +Edouard,1990,8,6,0,37,-33.4,subtropical depression,NA,25,1010,NA,NA +Edouard,1990,8,6,6,37.1,-33.5,subtropical depression,NA,25,1010,NA,NA +Edouard,1990,8,6,12,37.2,-33.5,subtropical depression,NA,25,1010,NA,NA +Edouard,1990,8,6,18,37.5,-33.5,tropical depression,NA,25,1010,NA,NA +Edouard,1990,8,7,0,37.5,-33.7,tropical depression,NA,25,1010,NA,NA +Edouard,1990,8,7,6,37.4,-33.9,tropical depression,NA,25,1008,NA,NA +Edouard,1990,8,7,12,37.1,-34.2,tropical depression,NA,25,1008,NA,NA +Edouard,1990,8,7,18,36.9,-34.2,tropical depression,NA,25,1008,NA,NA +Edouard,1990,8,8,0,36.9,-34,tropical depression,NA,30,1007,NA,NA +Edouard,1990,8,8,6,37,-33.6,tropical depression,NA,30,1007,NA,NA +Edouard,1990,8,8,12,37.1,-33,tropical depression,NA,30,1007,NA,NA +Edouard,1990,8,8,18,37.4,-32,tropical storm,NA,35,1005,NA,NA +Edouard,1990,8,9,0,37.8,-30.8,tropical storm,NA,35,1004,NA,NA +Edouard,1990,8,9,6,38.5,-29.6,tropical storm,NA,40,1003,NA,NA +Edouard,1990,8,9,12,39.2,-28.6,tropical storm,NA,35,1005,NA,NA +Edouard,1990,8,9,18,39.6,-28.1,tropical storm,NA,35,1006,NA,NA +Edouard,1990,8,10,0,39.7,-27.7,tropical storm,NA,35,1006,NA,NA +Edouard,1990,8,10,6,39.6,-27.1,tropical storm,NA,35,1007,NA,NA +Edouard,1990,8,10,12,39.3,-26.1,tropical depression,NA,30,1009,NA,NA +Edouard,1990,8,10,18,39.1,-25,tropical depression,NA,30,1010,NA,NA +Edouard,1990,8,11,0,39,-23.8,tropical depression,NA,30,1010,NA,NA +Edouard,1990,8,11,6,39,-22.9,tropical depression,NA,30,1010,NA,NA +Edouard,1990,8,11,12,39.1,-22,extratropical,NA,30,1010,NA,NA +Edouard,1990,8,11,18,39,-21.2,extratropical,NA,30,1010,NA,NA +Edouard,1990,8,12,0,38.9,-20.5,extratropical,NA,30,1010,NA,NA +Edouard,1990,8,12,6,38.8,-19.9,extratropical,NA,30,1010,NA,NA +Edouard,1990,8,12,12,38.5,-19.3,extratropical,NA,30,1010,NA,NA +Edouard,1990,8,12,18,38.1,-18.5,extratropical,NA,25,1011,NA,NA +Edouard,1990,8,13,0,37.7,-17.8,extratropical,NA,20,1012,NA,NA +Edouard,1990,8,13,6,37.6,-17.1,extratropical,NA,20,1012,NA,NA +Edouard,1990,8,13,12,38,-16.6,extratropical,NA,20,1014,NA,NA +Diana,1990,8,4,0,13.2,-79.5,tropical depression,NA,25,1009,NA,NA +Diana,1990,8,4,6,13.9,-80.8,tropical depression,NA,25,1008,NA,NA +Diana,1990,8,4,12,14.8,-81.8,tropical depression,NA,25,1007,NA,NA +Diana,1990,8,4,18,15.7,-82.6,tropical depression,NA,30,1006,NA,NA +Diana,1990,8,5,0,16.6,-83.6,tropical storm,NA,35,1005,NA,NA +Diana,1990,8,5,6,17.4,-84.8,tropical storm,NA,40,1003,NA,NA +Diana,1990,8,5,12,18.3,-86.3,tropical storm,NA,45,1000,NA,NA +Diana,1990,8,5,18,19.1,-87.6,tropical storm,NA,55,994,NA,NA +Diana,1990,8,5,20,19,-87.6,tropical storm,NA,55,994,NA,NA +Diana,1990,8,6,0,19.7,-88.7,tropical storm,NA,45,1000,NA,NA +Diana,1990,8,6,6,20.2,-90,tropical storm,NA,45,1000,NA,NA +Diana,1990,8,6,12,20.5,-91.1,tropical storm,NA,45,1000,NA,NA +Diana,1990,8,6,18,20.6,-92.3,tropical storm,NA,50,1000,NA,NA +Diana,1990,8,7,0,20.6,-93.6,tropical storm,NA,60,998,NA,NA +Diana,1990,8,7,6,20.7,-94.7,hurricane,1,65,990,NA,NA +Diana,1990,8,7,12,20.8,-95.8,hurricane,1,75,986,NA,NA +Diana,1990,8,7,18,20.9,-96.8,hurricane,2,85,980,NA,NA +Diana,1990,8,7,19,20.9,-97,hurricane,2,85,980,NA,NA +Diana,1990,8,8,0,20.8,-98.1,tropical storm,NA,55,1000,NA,NA +Diana,1990,8,8,6,20.7,-99.4,tropical storm,NA,50,1005,NA,NA +Diana,1990,8,8,12,20.8,-100.8,tropical depression,NA,30,1009,NA,NA +Diana,1990,8,8,18,21.1,-102.2,tropical depression,NA,25,1010,NA,NA +Diana,1990,8,9,0,21.6,-103.4,tropical depression,NA,25,1010,NA,NA +Diana,1990,8,9,6,22,-104.9,tropical depression,NA,20,1010,NA,NA +Diana,1990,8,9,12,22.5,-107,tropical depression,NA,20,1010,NA,NA +Fran,1990,8,11,12,9,-32.1,tropical depression,NA,25,1010,NA,NA +Fran,1990,8,11,18,8.5,-34,tropical depression,NA,25,1009,NA,NA +Fran,1990,8,12,0,8.3,-36.2,tropical depression,NA,30,1009,NA,NA +Fran,1990,8,12,6,8.2,-39,tropical depression,NA,30,1009,NA,NA +Fran,1990,8,12,12,8,-42,tropical depression,NA,30,1009,NA,NA +Fran,1990,8,12,18,7.9,-44.6,tropical depression,NA,25,1010,NA,NA +Fran,1990,8,13,12,8.7,-51.1,tropical depression,NA,30,1010,NA,NA +Fran,1990,8,13,18,9,-53.6,tropical storm,NA,35,1010,NA,NA +Fran,1990,8,14,0,9.2,-56,tropical storm,NA,35,1009,NA,NA +Fran,1990,8,14,6,9.7,-59,tropical storm,NA,35,1008,NA,NA +Fran,1990,8,14,12,10.2,-61.3,tropical storm,NA,35,1007,NA,NA +Gustav,1990,8,24,6,12.6,-45.9,tropical depression,NA,25,1010,NA,NA +Gustav,1990,8,24,12,12.9,-46.9,tropical depression,NA,30,1009,NA,NA +Gustav,1990,8,24,18,13.2,-48,tropical depression,NA,30,1007,NA,NA +Gustav,1990,8,25,0,13.3,-49,tropical storm,NA,35,1005,NA,NA +Gustav,1990,8,25,6,13.5,-50.1,tropical storm,NA,40,1004,NA,NA +Gustav,1990,8,25,12,13.7,-51.2,tropical storm,NA,45,1002,NA,NA +Gustav,1990,8,25,18,13.8,-52.3,tropical storm,NA,50,1000,NA,NA +Gustav,1990,8,26,0,14,-53.3,tropical storm,NA,55,997,NA,NA +Gustav,1990,8,26,6,14.2,-54.4,tropical storm,NA,60,993,NA,NA +Gustav,1990,8,26,12,14.5,-55.5,hurricane,1,65,990,NA,NA +Gustav,1990,8,26,18,15,-56.4,hurricane,1,70,984,NA,NA +Gustav,1990,8,27,0,15.3,-57,hurricane,1,75,980,NA,NA +Gustav,1990,8,27,6,15.9,-57.7,hurricane,2,85,973,NA,NA +Gustav,1990,8,27,12,16.6,-58,hurricane,2,90,967,NA,NA +Gustav,1990,8,27,18,17.3,-58.2,hurricane,2,95,965,NA,NA +Gustav,1990,8,28,0,18.1,-58.2,hurricane,2,95,966,NA,NA +Gustav,1990,8,28,6,19,-58.1,hurricane,2,90,969,NA,NA +Gustav,1990,8,28,12,20,-58,hurricane,2,85,973,NA,NA +Gustav,1990,8,28,18,21.1,-58,hurricane,1,80,978,NA,NA +Gustav,1990,8,29,0,22.2,-57.8,hurricane,1,75,981,NA,NA +Gustav,1990,8,29,6,22.9,-57.8,hurricane,1,70,984,NA,NA +Gustav,1990,8,29,12,23.7,-57.8,hurricane,1,75,982,NA,NA +Gustav,1990,8,29,18,24.4,-57.8,hurricane,1,75,979,NA,NA +Gustav,1990,8,30,0,25.2,-57.8,hurricane,1,80,975,NA,NA +Gustav,1990,8,30,6,26,-57.8,hurricane,2,85,972,NA,NA +Gustav,1990,8,30,12,27,-57.8,hurricane,2,90,968,NA,NA +Gustav,1990,8,30,18,27.8,-57.8,hurricane,2,95,963,NA,NA +Gustav,1990,8,31,0,28.9,-57.7,hurricane,3,100,958,NA,NA +Gustav,1990,8,31,6,30.3,-57.5,hurricane,3,105,956,NA,NA +Gustav,1990,8,31,12,31.7,-57.2,hurricane,3,100,959,NA,NA +Gustav,1990,8,31,18,33,-56.5,hurricane,3,100,961,NA,NA +Gustav,1990,9,1,0,34.4,-55.6,hurricane,2,95,964,NA,NA +Gustav,1990,9,1,6,35.6,-54.5,hurricane,2,90,967,NA,NA +Gustav,1990,9,1,12,36.8,-53.2,hurricane,2,85,970,NA,NA +Gustav,1990,9,1,18,38,-52,hurricane,1,80,974,NA,NA +Gustav,1990,9,2,0,39.4,-50.9,hurricane,1,75,978,NA,NA +Gustav,1990,9,2,6,40.7,-49.8,hurricane,1,70,982,NA,NA +Gustav,1990,9,2,12,42.1,-48.6,hurricane,1,65,985,NA,NA +Gustav,1990,9,2,18,43.8,-48,tropical storm,NA,60,988,NA,NA +Gustav,1990,9,3,0,46,-46.5,tropical storm,NA,55,993,NA,NA +Gustav,1990,9,3,6,48.5,-44.5,extratropical,NA,55,997,NA,NA +Hortense,1990,8,25,0,12.5,-35,tropical depression,NA,25,1010,NA,NA +Hortense,1990,8,25,6,12.9,-36.1,tropical depression,NA,30,1009,NA,NA +Hortense,1990,8,25,12,13.3,-37.3,tropical depression,NA,30,1008,NA,NA +Hortense,1990,8,25,18,13.7,-38.5,tropical depression,NA,30,1008,NA,NA +Hortense,1990,8,26,0,13.9,-39.4,tropical depression,NA,30,1007,NA,NA +Hortense,1990,8,26,6,14.4,-40,tropical storm,NA,35,1005,NA,NA +Hortense,1990,8,26,12,15.4,-40.2,tropical storm,NA,35,1004,NA,NA +Hortense,1990,8,26,18,16.5,-40.3,tropical storm,NA,40,1003,NA,NA +Hortense,1990,8,27,0,17.4,-40.5,tropical storm,NA,40,1002,NA,NA +Hortense,1990,8,27,6,18.1,-41,tropical storm,NA,45,1001,NA,NA +Hortense,1990,8,27,12,18.9,-41.7,tropical storm,NA,45,999,NA,NA +Hortense,1990,8,27,18,20,-42.5,tropical storm,NA,50,997,NA,NA +Hortense,1990,8,28,0,21,-43.2,tropical storm,NA,50,996,NA,NA +Hortense,1990,8,28,6,21.7,-43.6,tropical storm,NA,55,994,NA,NA +Hortense,1990,8,28,12,22.3,-44.1,tropical storm,NA,55,993,NA,NA +Hortense,1990,8,28,18,22.8,-44.9,tropical storm,NA,55,994,NA,NA +Hortense,1990,8,29,0,23.5,-45.7,tropical storm,NA,55,994,NA,NA +Hortense,1990,8,29,6,24.4,-46.6,tropical storm,NA,50,995,NA,NA +Hortense,1990,8,29,12,25.4,-47.6,tropical storm,NA,45,999,NA,NA +Hortense,1990,8,29,18,26.6,-48.6,tropical storm,NA,35,1003,NA,NA +Hortense,1990,8,30,0,27.9,-49.5,tropical depression,NA,30,1005,NA,NA +Hortense,1990,8,30,6,29.3,-50.2,tropical depression,NA,30,1006,NA,NA +Hortense,1990,8,30,12,31,-50.9,tropical depression,NA,30,1008,NA,NA +Hortense,1990,8,30,18,32.8,-51.6,tropical depression,NA,25,1010,NA,NA +Hortense,1990,8,31,0,34.4,-51.7,tropical depression,NA,25,1012,NA,NA +Hortense,1990,8,31,6,36.2,-51.2,tropical depression,NA,20,1014,NA,NA +Isidore,1990,9,4,0,7.2,-23.4,tropical depression,NA,25,1010,NA,NA +Isidore,1990,9,4,6,7.4,-25.1,tropical depression,NA,25,1010,NA,NA +Isidore,1990,9,4,12,8.4,-26.7,tropical depression,NA,25,1009,NA,NA +Isidore,1990,9,4,18,9.2,-28.4,tropical depression,NA,30,1009,NA,NA +Isidore,1990,9,5,0,9.7,-29.9,tropical depression,NA,30,1009,NA,NA +Isidore,1990,9,5,6,9.9,-31.4,tropical depression,NA,30,1008,NA,NA +Isidore,1990,9,5,12,10,-32.7,tropical storm,NA,35,1007,NA,NA +Isidore,1990,9,5,18,10.4,-33.8,tropical storm,NA,40,1005,NA,NA +Isidore,1990,9,6,0,11.3,-34.7,tropical storm,NA,45,1004,NA,NA +Isidore,1990,9,6,6,12.4,-35.4,tropical storm,NA,50,1003,NA,NA +Isidore,1990,9,6,12,13.5,-36,tropical storm,NA,55,1000,NA,NA +Isidore,1990,9,6,18,14.7,-36.4,tropical storm,NA,60,997,NA,NA +Isidore,1990,9,7,0,15.9,-36.8,hurricane,1,65,994,NA,NA +Isidore,1990,9,7,6,17.2,-37.3,hurricane,1,75,983,NA,NA +Isidore,1990,9,7,12,18.5,-37.6,hurricane,2,85,978,NA,NA +Isidore,1990,9,7,18,19.9,-37.9,hurricane,1,80,979,NA,NA +Isidore,1990,9,8,0,21.1,-38.2,hurricane,1,75,979,NA,NA +Isidore,1990,9,8,6,22.2,-38.7,hurricane,1,70,985,NA,NA +Isidore,1990,9,8,12,23.2,-39.3,hurricane,1,65,994,NA,NA +Isidore,1990,9,8,18,24.3,-40,tropical storm,NA,60,996,NA,NA +Isidore,1990,9,9,0,25.6,-40.7,tropical storm,NA,55,999,NA,NA +Isidore,1990,9,9,6,26.8,-41.7,tropical storm,NA,50,1000,NA,NA +Isidore,1990,9,9,12,27.9,-43,tropical storm,NA,55,995,NA,NA +Isidore,1990,9,9,18,28.6,-44.2,hurricane,1,65,990,NA,NA +Isidore,1990,9,10,0,29,-45.1,hurricane,1,65,987,NA,NA +Isidore,1990,9,10,6,29.4,-45.6,hurricane,1,65,987,NA,NA +Isidore,1990,9,10,12,29.8,-46.1,hurricane,1,65,987,NA,NA +Isidore,1990,9,10,18,30.1,-46.6,hurricane,1,65,987,NA,NA +Isidore,1990,9,11,0,30.6,-47,hurricane,1,65,987,NA,NA +Isidore,1990,9,11,6,31.2,-47.4,hurricane,1,75,984,NA,NA +Isidore,1990,9,11,12,31.9,-48,hurricane,1,80,980,NA,NA +Isidore,1990,9,11,18,32.6,-48.7,hurricane,1,80,979,NA,NA +Isidore,1990,9,12,0,33.1,-49.5,hurricane,1,75,979,NA,NA +Isidore,1990,9,12,6,33.4,-50.1,hurricane,1,75,980,NA,NA +Isidore,1990,9,12,12,33.6,-50.4,hurricane,1,70,986,NA,NA +Isidore,1990,9,12,18,33.8,-50.6,hurricane,1,65,987,NA,NA +Isidore,1990,9,13,0,34.1,-50.7,hurricane,1,65,987,NA,NA +Isidore,1990,9,13,6,34.4,-50.8,hurricane,1,65,987,NA,NA +Isidore,1990,9,13,12,34.9,-50.8,hurricane,1,65,987,NA,NA +Isidore,1990,9,13,18,35.4,-50.6,hurricane,1,65,987,NA,NA +Isidore,1990,9,14,0,35.8,-50.1,hurricane,1,65,987,NA,NA +Isidore,1990,9,14,6,36.2,-49.4,hurricane,1,65,987,NA,NA +Isidore,1990,9,14,12,36.6,-48.7,hurricane,1,65,987,NA,NA +Isidore,1990,9,14,18,37.1,-47.9,hurricane,1,65,987,NA,NA +Isidore,1990,9,15,0,37.8,-47.4,hurricane,1,65,987,NA,NA +Isidore,1990,9,15,6,38.7,-47.2,hurricane,1,65,987,NA,NA +Isidore,1990,9,15,12,39.6,-47.5,hurricane,1,65,987,NA,NA +Isidore,1990,9,15,18,40.3,-48,hurricane,1,65,987,NA,NA +Isidore,1990,9,16,0,40.5,-48.5,hurricane,1,65,987,NA,NA +Isidore,1990,9,16,6,41.8,-47.9,tropical storm,NA,60,990,NA,NA +Isidore,1990,9,16,12,43.5,-47,tropical storm,NA,55,995,NA,NA +Isidore,1990,9,16,18,45,-45.5,tropical storm,NA,45,997,NA,NA +Isidore,1990,9,17,0,46.5,-43.5,tropical storm,NA,45,1000,NA,NA +Isidore,1990,9,17,6,48.2,-41.5,tropical storm,NA,35,1005,NA,NA +Isidore,1990,9,17,12,50,-39.5,extratropical,NA,35,1006,NA,NA +Josephine,1990,9,21,6,14,-32,tropical depression,NA,30,1009,NA,NA +Josephine,1990,9,21,12,14.5,-32.4,tropical depression,NA,30,1009,NA,NA +Josephine,1990,9,21,18,15,-32.7,tropical depression,NA,30,1008,NA,NA +Josephine,1990,9,22,0,15.6,-33,tropical depression,NA,30,1007,NA,NA +Josephine,1990,9,22,6,16.1,-33.2,tropical depression,NA,30,1007,NA,NA +Josephine,1990,9,22,12,16.7,-33.4,tropical depression,NA,30,1007,NA,NA +Josephine,1990,9,22,18,17.4,-33.4,tropical depression,NA,30,1007,NA,NA +Josephine,1990,9,23,0,17.9,-33.5,tropical depression,NA,30,1009,NA,NA +Josephine,1990,9,23,6,18.2,-33.6,tropical depression,NA,30,1009,NA,NA +Josephine,1990,9,23,12,18.5,-33.8,tropical depression,NA,30,1009,NA,NA +Josephine,1990,9,23,18,18.7,-34,tropical depression,NA,30,1009,NA,NA +Josephine,1990,9,24,0,19,-34.1,tropical depression,NA,30,1008,NA,NA +Josephine,1990,9,24,6,19.1,-34.1,tropical depression,NA,30,1007,NA,NA +Josephine,1990,9,24,12,19.3,-34.2,tropical storm,NA,35,1005,NA,NA +Josephine,1990,9,24,18,19.4,-34.4,tropical storm,NA,35,1005,NA,NA +Josephine,1990,9,25,0,19.5,-34.6,tropical storm,NA,40,1003,NA,NA +Josephine,1990,9,25,6,19.7,-34.8,tropical storm,NA,40,1002,NA,NA +Josephine,1990,9,25,12,19.9,-35.2,tropical storm,NA,40,1003,NA,NA +Josephine,1990,9,25,18,20.1,-35.9,tropical storm,NA,35,1005,NA,NA +Josephine,1990,9,26,0,20.3,-36.8,tropical storm,NA,35,1006,NA,NA +Josephine,1990,9,26,6,20.4,-37.6,tropical depression,NA,30,1008,NA,NA +Josephine,1990,9,26,12,20.3,-38.4,tropical depression,NA,30,1009,NA,NA +Josephine,1990,9,26,18,20.2,-38.9,tropical depression,NA,30,1009,NA,NA +Josephine,1990,9,27,0,20.2,-39.3,tropical depression,NA,30,1009,NA,NA +Josephine,1990,9,27,6,20.2,-39.6,tropical depression,NA,30,1010,NA,NA +Josephine,1990,9,27,12,20.3,-40,tropical depression,NA,25,1012,NA,NA +Josephine,1990,9,27,18,20.4,-40.4,tropical depression,NA,25,1012,NA,NA +Josephine,1990,9,28,0,20.6,-40.6,tropical depression,NA,25,1012,NA,NA +Josephine,1990,9,28,6,20.9,-40.9,tropical depression,NA,25,1012,NA,NA +Josephine,1990,9,28,12,21.2,-41.2,tropical depression,NA,25,1012,NA,NA +Josephine,1990,9,28,18,21.6,-41.6,tropical depression,NA,25,1012,NA,NA +Josephine,1990,9,29,0,22,-42.1,tropical depression,NA,25,1012,NA,NA +Josephine,1990,9,29,6,22.5,-42.8,tropical depression,NA,25,1012,NA,NA +Josephine,1990,9,29,12,23.1,-43.6,tropical depression,NA,25,1010,NA,NA +Josephine,1990,9,29,18,23.8,-44.3,tropical depression,NA,30,1009,NA,NA +Josephine,1990,9,30,0,24.5,-45,tropical depression,NA,30,1009,NA,NA +Josephine,1990,9,30,6,25.5,-45.4,tropical depression,NA,30,1009,NA,NA +Josephine,1990,9,30,12,26.7,-45.5,tropical depression,NA,30,1009,NA,NA +Josephine,1990,9,30,18,27.8,-45.3,tropical depression,NA,30,1009,NA,NA +Josephine,1990,10,1,0,28.5,-44.8,tropical depression,NA,30,1009,NA,NA +Josephine,1990,10,1,6,29.1,-43.8,tropical depression,NA,30,1007,NA,NA +Josephine,1990,10,1,12,29.6,-42.4,tropical storm,NA,35,1005,NA,NA +Josephine,1990,10,1,18,29.9,-41.1,tropical storm,NA,35,1005,NA,NA +Josephine,1990,10,2,0,30,-40,tropical storm,NA,35,1005,NA,NA +Josephine,1990,10,2,6,30,-39.4,tropical storm,NA,35,1004,NA,NA +Josephine,1990,10,2,12,29.8,-39.2,tropical storm,NA,40,1003,NA,NA +Josephine,1990,10,2,18,29.6,-39.2,tropical storm,NA,35,1005,NA,NA +Josephine,1990,10,3,0,29.4,-39.4,tropical storm,NA,35,1005,NA,NA +Josephine,1990,10,3,6,29.1,-40,tropical storm,NA,35,1005,NA,NA +Josephine,1990,10,3,12,28.6,-40.7,tropical storm,NA,35,1005,NA,NA +Josephine,1990,10,3,18,28.3,-41.4,tropical storm,NA,40,1003,NA,NA +Josephine,1990,10,4,0,28.2,-42.1,tropical storm,NA,45,1000,NA,NA +Josephine,1990,10,4,6,28.5,-42.5,tropical storm,NA,50,997,NA,NA +Josephine,1990,10,4,12,29,-42.6,tropical storm,NA,55,994,NA,NA +Josephine,1990,10,4,18,29.5,-42.3,tropical storm,NA,60,990,NA,NA +Josephine,1990,10,5,0,30,-41.5,hurricane,1,65,987,NA,NA +Josephine,1990,10,5,6,30.7,-40.5,hurricane,1,65,986,NA,NA +Josephine,1990,10,5,12,32.1,-39.3,hurricane,1,70,984,NA,NA +Josephine,1990,10,5,18,34.1,-38.4,hurricane,1,75,980,NA,NA +Josephine,1990,10,6,0,36.5,-38.5,hurricane,1,70,984,NA,NA +Josephine,1990,10,6,6,38.9,-40,hurricane,1,70,985,NA,NA +Josephine,1990,10,6,12,41,-42.9,tropical storm,NA,60,990,NA,NA +Klaus,1990,10,3,12,15.6,-59.3,tropical depression,NA,30,1008,NA,NA +Klaus,1990,10,3,18,16.2,-59.6,tropical storm,NA,35,1007,NA,NA +Klaus,1990,10,4,0,16.4,-59.8,tropical storm,NA,45,1005,NA,NA +Klaus,1990,10,4,6,16.5,-60.1,tropical storm,NA,50,997,NA,NA +Klaus,1990,10,4,12,16.6,-60.4,tropical storm,NA,50,997,NA,NA +Klaus,1990,10,4,18,16.8,-60.7,tropical storm,NA,55,997,NA,NA +Klaus,1990,10,5,0,16.9,-60.9,tropical storm,NA,55,996,NA,NA +Klaus,1990,10,5,6,17,-61.1,tropical storm,NA,60,993,NA,NA +Klaus,1990,10,5,12,17.2,-61.2,hurricane,1,70,985,NA,NA +Klaus,1990,10,5,18,17.4,-61.4,hurricane,1,70,991,NA,NA +Klaus,1990,10,6,0,17.7,-61.6,hurricane,1,65,992,NA,NA +Klaus,1990,10,6,6,18.1,-61.8,tropical storm,NA,60,994,NA,NA +Klaus,1990,10,6,12,18.3,-62.1,tropical storm,NA,60,995,NA,NA +Klaus,1990,10,6,18,18.6,-62.3,tropical storm,NA,55,996,NA,NA +Klaus,1990,10,7,0,18.7,-62.7,tropical storm,NA,55,998,NA,NA +Klaus,1990,10,7,6,18.8,-63.1,tropical storm,NA,55,1000,NA,NA +Klaus,1990,10,7,12,18.9,-63.8,tropical storm,NA,50,1001,NA,NA +Klaus,1990,10,7,18,19.2,-64.9,tropical storm,NA,40,1004,NA,NA +Klaus,1990,10,8,0,19.7,-66.1,tropical depression,NA,30,1005,NA,NA +Klaus,1990,10,8,6,20.4,-67.5,tropical depression,NA,30,1005,NA,NA +Klaus,1990,10,8,12,21.1,-68.9,tropical storm,NA,40,1005,NA,NA +Klaus,1990,10,8,18,21.9,-70.1,tropical storm,NA,45,1004,NA,NA +Klaus,1990,10,9,0,22.6,-71.2,tropical storm,NA,45,1004,NA,NA +Klaus,1990,10,9,6,23.4,-72.3,tropical storm,NA,45,1006,NA,NA +Klaus,1990,10,9,12,24.5,-73.4,tropical storm,NA,35,1007,NA,NA +Lili,1990,10,6,6,36,-44,subtropical storm,NA,45,1000,NA,NA +Lili,1990,10,6,12,35.7,-44.1,subtropical storm,NA,50,999,NA,NA +Lili,1990,10,6,18,35.3,-44.2,subtropical storm,NA,50,998,NA,NA +Lili,1990,10,7,0,35,-44.4,subtropical storm,NA,50,998,NA,NA +Lili,1990,10,7,6,34.7,-44.5,subtropical storm,NA,45,999,NA,NA +Lili,1990,10,7,12,34.4,-44.6,subtropical storm,NA,45,1000,NA,NA +Lili,1990,10,7,18,34.1,-44.8,subtropical storm,NA,45,1000,NA,NA +Lili,1990,10,8,0,33.8,-45,subtropical storm,NA,45,1000,NA,NA +Lili,1990,10,8,6,33.5,-45.3,subtropical storm,NA,50,998,NA,NA +Lili,1990,10,8,12,32.8,-46,subtropical storm,NA,50,996,NA,NA +Lili,1990,10,8,18,32.2,-46.8,subtropical storm,NA,55,994,NA,NA +Lili,1990,10,9,0,31.6,-47.6,subtropical storm,NA,60,992,NA,NA +Lili,1990,10,9,6,31.3,-48.3,subtropical storm,NA,60,995,NA,NA +Lili,1990,10,9,12,31.1,-48.8,subtropical storm,NA,50,997,NA,NA +Lili,1990,10,9,18,31,-49.2,subtropical storm,NA,50,998,NA,NA +Lili,1990,10,10,0,31,-49.5,subtropical storm,NA,50,998,NA,NA +Lili,1990,10,10,6,30.9,-50.1,subtropical storm,NA,50,996,NA,NA +Lili,1990,10,10,12,31,-51.3,subtropical storm,NA,55,992,NA,NA +Lili,1990,10,10,18,31.3,-53.4,subtropical storm,NA,60,989,NA,NA +Lili,1990,10,11,0,31.2,-55.9,hurricane,1,65,987,NA,NA +Lili,1990,10,11,6,31,-58.7,hurricane,1,65,987,NA,NA +Lili,1990,10,11,12,30.7,-61.3,hurricane,1,65,988,NA,NA +Lili,1990,10,11,18,30.3,-64.1,hurricane,1,65,990,NA,NA +Lili,1990,10,12,0,29.9,-66.4,hurricane,1,65,995,NA,NA +Lili,1990,10,12,6,29.8,-68.5,hurricane,1,65,995,NA,NA +Lili,1990,10,12,12,30.2,-70.3,hurricane,1,65,994,NA,NA +Lili,1990,10,12,18,30.9,-71.4,hurricane,1,65,993,NA,NA +Lili,1990,10,13,0,32.1,-72.1,hurricane,1,65,992,NA,NA +Lili,1990,10,13,6,33.2,-72.5,hurricane,1,65,992,NA,NA +Lili,1990,10,13,12,34.3,-72.4,tropical storm,NA,60,995,NA,NA +Lili,1990,10,13,18,35.5,-72,tropical storm,NA,50,997,NA,NA +Lili,1990,10,14,0,36.6,-71.3,tropical storm,NA,50,996,NA,NA +Lili,1990,10,14,6,38,-69.7,tropical storm,NA,50,995,NA,NA +Lili,1990,10,14,12,40,-67.5,tropical storm,NA,50,995,NA,NA +Lili,1990,10,14,18,42.4,-65,tropical storm,NA,45,995,NA,NA +Lili,1990,10,15,0,44.9,-61,extratropical,NA,40,995,NA,NA +Lili,1990,10,15,6,46.6,-56.4,extratropical,NA,40,994,NA,NA +Lili,1990,10,15,12,47.5,-51,extratropical,NA,40,994,NA,NA +Marco,1990,10,9,12,22.5,-79.5,tropical depression,NA,25,1004,NA,NA +Marco,1990,10,9,18,22.7,-80.7,tropical depression,NA,30,1002,NA,NA +Marco,1990,10,10,0,23.5,-81.4,tropical depression,NA,30,1000,NA,NA +Marco,1990,10,10,6,24.1,-82,tropical storm,NA,35,996,NA,NA +Marco,1990,10,10,12,24.6,-82.4,tropical storm,NA,40,998,NA,NA +Marco,1990,10,10,18,25.2,-82.5,tropical storm,NA,45,994,NA,NA +Marco,1990,10,11,0,26,-82.6,tropical storm,NA,50,993,NA,NA +Marco,1990,10,11,6,26.7,-82.6,tropical storm,NA,55,989,NA,NA +Marco,1990,10,11,12,27.5,-82.8,tropical storm,NA,50,994,NA,NA +Marco,1990,10,11,18,28.3,-83,tropical storm,NA,40,998,NA,NA +Marco,1990,10,12,0,29.1,-83.1,tropical depression,NA,30,999,NA,NA +Marco,1990,10,12,6,30.7,-83,tropical depression,NA,20,1004,NA,NA +Marco,1990,10,12,12,32,-83,extratropical,NA,20,1005,NA,NA +Marco,1990,10,12,18,33.2,-82.6,extratropical,NA,15,1005,NA,NA +Marco,1990,10,13,0,33.7,-81.9,extratropical,NA,15,1006,NA,NA +Marco,1990,10,13,6,33.8,-81.5,extratropical,NA,15,1007,NA,NA +Marco,1990,10,13,12,34,-81,extratropical,NA,15,1007,NA,NA +Nana,1990,10,16,0,22.2,-60.4,tropical depression,NA,25,1009,NA,NA +Nana,1990,10,16,6,22.3,-60.8,tropical depression,NA,30,1008,NA,NA +Nana,1990,10,16,12,22.3,-61.4,tropical depression,NA,30,1006,NA,NA +Nana,1990,10,16,18,22.1,-62.1,tropical storm,NA,35,1005,NA,NA +Nana,1990,10,17,0,22.1,-62.5,tropical storm,NA,40,1004,NA,NA +Nana,1990,10,17,6,22.1,-62.8,tropical storm,NA,45,1003,NA,NA +Nana,1990,10,17,12,22.4,-63.2,tropical storm,NA,55,1000,NA,NA +Nana,1990,10,17,18,22.8,-63.5,hurricane,1,65,995,NA,NA +Nana,1990,10,18,0,23.4,-63.6,hurricane,1,70,990,NA,NA +Nana,1990,10,18,6,24.1,-63.8,hurricane,1,75,990,NA,NA +Nana,1990,10,18,12,25,-64.2,hurricane,1,75,994,NA,NA +Nana,1990,10,18,18,26.1,-64.9,hurricane,1,70,994,NA,NA +Nana,1990,10,19,0,27.1,-65.7,hurricane,1,65,993,NA,NA +Nana,1990,10,19,6,27.9,-66.3,hurricane,1,70,992,NA,NA +Nana,1990,10,19,12,28.5,-66.9,hurricane,1,75,989,NA,NA +Nana,1990,10,19,18,28.9,-66.5,hurricane,1,70,991,NA,NA +Nana,1990,10,20,0,29.2,-66.2,tropical storm,NA,60,998,NA,NA +Nana,1990,10,20,6,29.5,-65.8,tropical storm,NA,50,1000,NA,NA +Nana,1990,10,20,12,29.6,-65.5,tropical storm,NA,40,1003,NA,NA +Nana,1990,10,20,18,29.3,-65.4,tropical storm,NA,35,1005,NA,NA +Nana,1990,10,21,0,28.8,-64.8,tropical depression,NA,30,1008,NA,NA +Nana,1990,10,21,6,28.8,-64.5,tropical depression,NA,25,1010,NA,NA +Nana,1990,10,21,12,27.7,-64.9,tropical depression,NA,20,1010,NA,NA +Ana,1991,6,29,12,25.9,-78,other low,NA,20,1012,NA,NA +Ana,1991,6,29,18,25.9,-79,other low,NA,20,1012,NA,NA +Ana,1991,6,30,0,25.9,-80,other low,NA,20,1012,NA,NA +Ana,1991,6,30,6,26,-80.9,other low,NA,20,1012,NA,NA +Ana,1991,6,30,12,26.2,-81.8,other low,NA,20,1012,NA,NA +Ana,1991,6,30,18,26.7,-82.4,other low,NA,20,1012,NA,NA +Ana,1991,7,1,0,27.3,-82.7,other low,NA,20,1012,NA,NA +Ana,1991,7,1,6,28,-82.7,other low,NA,20,1012,NA,NA +Ana,1991,7,1,12,28.7,-82.5,other low,NA,20,1012,NA,NA +Ana,1991,7,1,18,29.3,-82.2,other low,NA,20,1012,NA,NA +Ana,1991,7,2,0,29.9,-81.6,other low,NA,20,1012,NA,NA +Ana,1991,7,2,6,30.4,-81,other low,NA,20,1012,NA,NA +Ana,1991,7,2,12,30.9,-80.3,other low,NA,20,1012,NA,NA +Ana,1991,7,2,18,31.3,-79.7,tropical depression,NA,25,1012,NA,NA +Ana,1991,7,3,0,31.5,-79,tropical depression,NA,25,1011,NA,NA +Ana,1991,7,3,6,32.5,-77.4,tropical depression,NA,25,1010,NA,NA +Ana,1991,7,3,12,33.9,-75.4,tropical depression,NA,30,1008,NA,NA +Ana,1991,7,3,18,35.2,-73.4,tropical depression,NA,30,1006,NA,NA +Ana,1991,7,4,0,36.2,-70.7,tropical storm,NA,40,1003,NA,NA +Ana,1991,7,4,6,37.1,-67.8,tropical storm,NA,45,1002,NA,NA +Ana,1991,7,4,12,37.6,-64.7,tropical storm,NA,45,1001,NA,NA +Ana,1991,7,4,18,37.9,-61.1,tropical storm,NA,45,1000,NA,NA +Ana,1991,7,5,0,38,-57.5,tropical storm,NA,45,1001,NA,NA +Ana,1991,7,5,6,37.5,-54.2,tropical storm,NA,40,1003,NA,NA +Ana,1991,7,5,12,37,-50.7,tropical storm,NA,35,1005,NA,NA +Bob,1991,8,16,0,25.6,-74.3,tropical depression,NA,25,1014,NA,NA +Bob,1991,8,16,6,25.7,-74.9,tropical depression,NA,25,1012,NA,NA +Bob,1991,8,16,12,25.9,-75.4,tropical depression,NA,30,1010,NA,NA +Bob,1991,8,16,18,26.4,-75.8,tropical storm,NA,35,1005,NA,NA +Bob,1991,8,17,0,27.1,-76.2,tropical storm,NA,40,1003,NA,NA +Bob,1991,8,17,6,27.8,-76.5,tropical storm,NA,45,998,NA,NA +Bob,1991,8,17,12,28.4,-76.9,tropical storm,NA,55,996,NA,NA +Bob,1991,8,17,18,29,-77.1,hurricane,1,65,986,NA,NA +Bob,1991,8,18,0,29.7,-77,hurricane,1,70,980,NA,NA +Bob,1991,8,18,6,30.5,-76.9,hurricane,1,75,979,NA,NA +Bob,1991,8,18,12,31.5,-76.6,hurricane,1,80,974,NA,NA +Bob,1991,8,18,18,33,-76.1,hurricane,2,85,965,NA,NA +Bob,1991,8,19,0,34.6,-75.3,hurricane,2,95,957,NA,NA +Bob,1991,8,19,6,36.5,-74.5,hurricane,3,100,950,NA,NA +Bob,1991,8,19,12,38.9,-73,hurricane,2,95,953,NA,NA +Bob,1991,8,19,17,41.2,-71.6,hurricane,2,90,962,NA,NA +Bob,1991,8,19,18,41.4,-71.4,hurricane,2,85,964,NA,NA +Bob,1991,8,20,0,43.8,-69.6,tropical storm,NA,60,977,NA,NA +Bob,1991,8,20,1,44.1,-69.1,tropical storm,NA,60,981,NA,NA +Bob,1991,8,20,6,45.6,-67.6,tropical storm,NA,50,987,NA,NA +Bob,1991,8,20,12,47,-65.5,tropical storm,NA,45,998,NA,NA +Bob,1991,8,20,18,48.4,-61.9,extratropical,NA,40,1003,NA,NA +Bob,1991,8,21,0,49.8,-58.3,extratropical,NA,40,1008,NA,NA +Bob,1991,8,21,6,50.9,-54.9,extratropical,NA,40,1008,NA,NA +Bob,1991,8,21,12,51.6,-51.4,extratropical,NA,35,1009,NA,NA +Bob,1991,8,21,18,51.9,-47.3,extratropical,NA,30,1009,NA,NA +Bob,1991,8,22,0,51.9,-42.8,extratropical,NA,30,1004,NA,NA +Bob,1991,8,22,6,51.5,-38.3,extratropical,NA,35,1002,NA,NA +Bob,1991,8,22,12,50.7,-34.1,extratropical,NA,40,994,NA,NA +Bob,1991,8,22,18,49.3,-30.3,extratropical,NA,40,992,NA,NA +Bob,1991,8,23,0,47.7,-26.9,extratropical,NA,40,992,NA,NA +Bob,1991,8,23,6,46.3,-23.9,extratropical,NA,40,996,NA,NA +Bob,1991,8,23,12,45.3,-21.4,extratropical,NA,35,1000,NA,NA +Bob,1991,8,23,18,44.2,-19.9,extratropical,NA,30,1004,NA,NA +Bob,1991,8,24,0,43.1,-19.4,extratropical,NA,25,1006,NA,NA +Bob,1991,8,24,6,42.4,-19.1,extratropical,NA,25,1008,NA,NA +Bob,1991,8,24,12,42.2,-18.6,extratropical,NA,25,1009,NA,NA +Bob,1991,8,24,18,42.1,-18.1,extratropical,NA,25,1009,NA,NA +Bob,1991,8,25,0,41.9,-17.9,extratropical,NA,25,1009,NA,NA +Bob,1991,8,25,6,41.7,-17.8,extratropical,NA,25,1010,NA,NA +Bob,1991,8,25,12,41.3,-17.6,extratropical,NA,25,1010,NA,NA +Bob,1991,8,25,18,40.9,-17.3,extratropical,NA,25,1010,NA,NA +Bob,1991,8,26,0,40.5,-16.8,extratropical,NA,25,1010,NA,NA +Bob,1991,8,26,6,40.2,-16,extratropical,NA,25,1010,NA,NA +Bob,1991,8,26,12,40,-15.2,extratropical,NA,20,1012,NA,NA +Bob,1991,8,26,18,39.9,-14.4,extratropical,NA,20,1012,NA,NA +Bob,1991,8,27,0,39.9,-13.8,extratropical,NA,20,1014,NA,NA +Bob,1991,8,27,6,40,-13.1,extratropical,NA,20,1014,NA,NA +Bob,1991,8,27,12,40,-12.4,extratropical,NA,20,1014,NA,NA +Bob,1991,8,27,18,40,-11.8,extratropical,NA,20,1014,NA,NA +Bob,1991,8,28,0,40,-11.3,extratropical,NA,15,1015,NA,NA +Bob,1991,8,28,6,40,-10.9,extratropical,NA,15,1015,NA,NA +Bob,1991,8,28,12,40,-10.5,extratropical,NA,15,1014,NA,NA +Bob,1991,8,28,18,40,-10.1,extratropical,NA,10,1014,NA,NA +Bob,1991,8,29,0,40,-9.9,extratropical,NA,10,1015,NA,NA +AL041991,1991,8,24,12,14.5,-23.1,tropical depression,NA,25,1011,NA,NA +AL041991,1991,8,24,18,14.9,-23.9,tropical depression,NA,30,1009,NA,NA +AL041991,1991,8,25,0,15.2,-25.1,tropical depression,NA,30,1009,NA,NA +AL041991,1991,8,25,6,15.1,-26.4,tropical depression,NA,30,1010,NA,NA +AL041991,1991,8,25,12,14.9,-27.6,tropical depression,NA,30,1010,NA,NA +AL041991,1991,8,25,18,14.8,-28.6,tropical depression,NA,30,1010,NA,NA +AL041991,1991,8,26,0,14.7,-29.6,tropical depression,NA,25,1011,NA,NA +Claudette,1991,9,4,12,26.7,-55.9,tropical depression,NA,25,1014,NA,NA +Claudette,1991,9,4,18,26.8,-55.7,tropical depression,NA,30,1012,NA,NA +Claudette,1991,9,5,0,26.7,-55.6,tropical depression,NA,30,1010,NA,NA +Claudette,1991,9,5,6,26.5,-55.7,tropical depression,NA,30,1008,NA,NA +Claudette,1991,9,5,12,26.2,-56,tropical storm,NA,35,1004,NA,NA +Claudette,1991,9,5,18,26,-56.5,tropical storm,NA,40,1000,NA,NA +Claudette,1991,9,6,0,25.9,-57.1,tropical storm,NA,50,994,NA,NA +Claudette,1991,9,6,6,26,-57.9,tropical storm,NA,60,987,NA,NA +Claudette,1991,9,6,12,26.2,-58.8,hurricane,1,75,979,NA,NA +Claudette,1991,9,6,18,26.4,-59.7,hurricane,2,95,965,NA,NA +Claudette,1991,9,7,0,26.6,-60.3,hurricane,3,105,953,NA,NA +Claudette,1991,9,7,6,26.8,-61,hurricane,3,110,946,NA,NA +Claudette,1991,9,7,10,27,-61.5,hurricane,4,115,944,NA,NA +Claudette,1991,9,7,12,27.2,-61.7,hurricane,4,115,946,NA,NA +Claudette,1991,9,7,18,27.7,-62.4,hurricane,3,100,960,NA,NA +Claudette,1991,9,8,0,28.4,-62.8,hurricane,2,90,962,NA,NA +Claudette,1991,9,8,6,29.2,-63.1,hurricane,2,85,964,NA,NA +Claudette,1991,9,8,12,30,-63.3,hurricane,2,85,966,NA,NA +Claudette,1991,9,8,18,31,-63.2,hurricane,1,80,967,NA,NA +Claudette,1991,9,9,0,31.9,-62.5,hurricane,1,80,972,NA,NA +Claudette,1991,9,9,6,32.9,-61.4,hurricane,1,75,976,NA,NA +Claudette,1991,9,9,12,33.8,-60.5,hurricane,1,75,980,NA,NA +Claudette,1991,9,9,18,34.2,-59,hurricane,1,75,984,NA,NA +Claudette,1991,9,10,0,34.3,-57.4,hurricane,1,70,988,NA,NA +Claudette,1991,9,10,6,33.9,-56,tropical storm,NA,60,991,NA,NA +Claudette,1991,9,10,12,33.5,-54,tropical storm,NA,55,995,NA,NA +Claudette,1991,9,10,18,33.4,-51.8,tropical storm,NA,45,998,NA,NA +Claudette,1991,9,11,0,33.6,-48.8,tropical storm,NA,40,1001,NA,NA +Claudette,1991,9,11,6,33.9,-46.1,tropical storm,NA,40,1004,NA,NA +Claudette,1991,9,11,12,34.3,-43.4,tropical storm,NA,35,1006,NA,NA +Claudette,1991,9,11,18,34.5,-40.5,tropical depression,NA,30,1009,NA,NA +Claudette,1991,9,12,0,34.5,-38.3,tropical depression,NA,30,1010,NA,NA +Claudette,1991,9,12,6,34.2,-36.5,tropical depression,NA,30,1011,NA,NA +Claudette,1991,9,12,12,33.9,-34.7,tropical depression,NA,30,1012,NA,NA +Claudette,1991,9,12,18,34.3,-33.1,extratropical,NA,30,1013,NA,NA +Claudette,1991,9,13,0,34.7,-31.9,extratropical,NA,25,1014,NA,NA +Claudette,1991,9,13,6,35.2,-30.7,extratropical,NA,25,1015,NA,NA +Claudette,1991,9,13,12,35.6,-29.6,extratropical,NA,20,1016,NA,NA +Claudette,1991,9,13,18,36,-28.4,extratropical,NA,20,1017,NA,NA +Claudette,1991,9,14,0,36.2,-27.3,extratropical,NA,20,1017,NA,NA +Claudette,1991,9,14,6,36.3,-26.5,extratropical,NA,15,1017,NA,NA +Claudette,1991,9,14,12,36.8,-26.1,extratropical,NA,15,1018,NA,NA +Claudette,1991,9,14,18,37,-25.9,extratropical,NA,15,1018,NA,NA +Danny,1991,9,7,0,10.4,-25.8,tropical depression,NA,25,1010,NA,NA +Danny,1991,9,7,6,10.2,-27.5,tropical depression,NA,25,1009,NA,NA +Danny,1991,9,7,12,10,-29.2,tropical depression,NA,25,1008,NA,NA +Danny,1991,9,7,18,9.8,-30.6,tropical depression,NA,30,1008,NA,NA +Danny,1991,9,8,0,9.7,-32,tropical depression,NA,30,1007,NA,NA +Danny,1991,9,8,6,9.8,-33.4,tropical depression,NA,30,1006,NA,NA +Danny,1991,9,8,12,10.3,-35,tropical storm,NA,35,1005,NA,NA +Danny,1991,9,8,18,10.8,-36.5,tropical storm,NA,40,1004,NA,NA +Danny,1991,9,9,0,11.3,-37.9,tropical storm,NA,40,1002,NA,NA +Danny,1991,9,9,6,11.8,-39.6,tropical storm,NA,45,1000,NA,NA +Danny,1991,9,9,12,12.5,-41.5,tropical storm,NA,45,999,NA,NA +Danny,1991,9,9,18,13.4,-43.4,tropical storm,NA,45,999,NA,NA +Danny,1991,9,10,0,14.2,-45.2,tropical storm,NA,45,998,NA,NA +Danny,1991,9,10,6,14.9,-47.3,tropical storm,NA,45,999,NA,NA +Danny,1991,9,10,12,15.3,-49.7,tropical storm,NA,45,999,NA,NA +Danny,1991,9,10,18,15.7,-52.1,tropical storm,NA,40,1000,NA,NA +Danny,1991,9,11,0,15.8,-54.1,tropical storm,NA,35,1002,NA,NA +Danny,1991,9,11,6,15.9,-56.1,tropical storm,NA,35,1005,NA,NA +Danny,1991,9,11,12,16,-58.1,tropical depression,NA,30,1010,NA,NA +Erika,1991,9,8,18,24.2,-49.1,tropical depression,NA,25,1011,NA,NA +Erika,1991,9,9,0,25.4,-50,tropical depression,NA,25,1010,NA,NA +Erika,1991,9,9,6,26.8,-50.9,tropical depression,NA,30,1009,NA,NA +Erika,1991,9,9,12,27.8,-52.3,tropical depression,NA,30,1007,NA,NA +Erika,1991,9,9,18,29.3,-53.1,tropical storm,NA,35,1005,NA,NA +Erika,1991,9,10,0,31.2,-51.7,tropical storm,NA,40,1002,NA,NA +Erika,1991,9,10,6,33,-49.3,tropical storm,NA,45,1000,NA,NA +Erika,1991,9,10,12,34.7,-46.1,tropical storm,NA,50,998,NA,NA +Erika,1991,9,10,18,35.8,-42.5,tropical storm,NA,50,997,NA,NA +Erika,1991,9,11,0,36.5,-38.7,tropical storm,NA,50,997,NA,NA +Erika,1991,9,11,6,36.8,-35,tropical storm,NA,50,998,NA,NA +Erika,1991,9,11,12,37,-31.9,tropical storm,NA,45,1000,NA,NA +Erika,1991,9,11,18,37.1,-29.3,tropical storm,NA,40,1003,NA,NA +Erika,1991,9,12,0,37.3,-27.2,tropical storm,NA,35,1007,NA,NA +Erika,1991,9,12,3,37.7,-25.9,tropical storm,NA,35,1009,NA,NA +Erika,1991,9,12,6,37.9,-25.2,tropical depression,NA,30,1009,NA,NA +Erika,1991,9,12,12,38.8,-23.3,extratropical,NA,30,1011,NA,NA +Erika,1991,9,12,18,39.5,-21.5,extratropical,NA,25,1013,NA,NA +Fabian,1991,10,15,0,18.9,-85.7,tropical depression,NA,25,1010,NA,NA +Fabian,1991,10,15,6,19.5,-85.1,tropical depression,NA,30,1008,NA,NA +Fabian,1991,10,15,12,20.3,-84.1,tropical storm,NA,35,1007,NA,NA +Fabian,1991,10,15,18,21.2,-83.1,tropical storm,NA,40,1006,NA,NA +Fabian,1991,10,15,21,21.5,-82.8,tropical storm,NA,40,1004,NA,NA +Fabian,1991,10,16,0,22.4,-81.8,tropical storm,NA,40,1004,NA,NA +Fabian,1991,10,16,6,23.9,-80.8,tropical storm,NA,40,1002,NA,NA +Fabian,1991,10,16,8,24.5,-80.5,tropical storm,NA,40,1002,NA,NA +Fabian,1991,10,16,12,25.2,-79.8,tropical storm,NA,40,1007,NA,NA +Fabian,1991,10,16,18,26.5,-78.5,extratropical,NA,40,1009,NA,NA +Fabian,1991,10,17,0,30,-75.5,extratropical,NA,40,1009,NA,NA +AL101991,1991,10,24,12,13.4,-42.3,tropical depression,NA,25,1009,NA,NA +AL101991,1991,10,24,18,13.7,-43.6,tropical depression,NA,25,1009,NA,NA +AL101991,1991,10,25,0,13.8,-44.9,tropical depression,NA,25,1009,NA,NA +AL101991,1991,10,25,6,14,-46.4,tropical depression,NA,25,1009,NA,NA +AL101991,1991,10,25,12,14.1,-47.7,tropical depression,NA,25,1009,NA,NA +Grace,1991,10,25,18,27.1,-64.9,subtropical depression,NA,25,1008,NA,NA +Grace,1991,10,26,0,27.1,-65.2,subtropical depression,NA,30,1007,NA,NA +Grace,1991,10,26,6,27.2,-65.5,subtropical storm,NA,35,1005,NA,NA +Grace,1991,10,26,12,27.3,-66,subtropical storm,NA,35,1002,NA,NA +Grace,1991,10,26,18,27.5,-66.5,subtropical storm,NA,40,997,NA,NA +Grace,1991,10,27,0,28.1,-67.1,subtropical storm,NA,45,993,NA,NA +Grace,1991,10,27,6,28.9,-66.9,subtropical storm,NA,50,990,NA,NA +Grace,1991,10,27,12,29.8,-66.4,subtropical storm,NA,55,988,NA,NA +Grace,1991,10,27,18,30.8,-67.2,tropical storm,NA,60,987,NA,NA +Grace,1991,10,28,0,31.6,-68.1,hurricane,1,65,985,NA,NA +Grace,1991,10,28,6,32.2,-68.5,hurricane,1,65,983,NA,NA +Grace,1991,10,28,12,32.3,-68.5,hurricane,1,65,983,NA,NA +Grace,1991,10,28,18,32.4,-67.8,hurricane,1,65,982,NA,NA +Grace,1991,10,29,0,31.8,-66.8,hurricane,1,70,980,NA,NA +Grace,1991,10,29,6,31.6,-65.3,hurricane,1,75,981,NA,NA +Grace,1991,10,29,12,31.5,-63.2,hurricane,2,85,982,NA,NA +Grace,1991,10,29,14,31.5,-61.8,hurricane,2,90,982,NA,NA +AL121991,1991,10,28,18,44,-59,extratropical,NA,30,1006,NA,NA +AL121991,1991,10,29,0,43,-57.5,extratropical,NA,40,999,NA,NA +AL121991,1991,10,29,6,42.5,-55.5,extratropical,NA,45,992,NA,NA +AL121991,1991,10,29,12,41,-56,extratropical,NA,50,990,NA,NA +AL121991,1991,10,29,18,39.5,-57.5,extratropical,NA,50,986,NA,NA +AL121991,1991,10,30,0,39,-59.5,extratropical,NA,55,981,NA,NA +AL121991,1991,10,30,6,39,-61.5,extratropical,NA,60,977,NA,NA +AL121991,1991,10,30,12,39,-63.5,extratropical,NA,60,972,NA,NA +AL121991,1991,10,30,18,39.6,-65.8,extratropical,NA,60,978,NA,NA +AL121991,1991,10,31,0,40,-68.5,extratropical,NA,55,982,NA,NA +AL121991,1991,10,31,6,39,-71,extratropical,NA,55,988,NA,NA +AL121991,1991,10,31,12,37.7,-71.5,extratropical,NA,50,992,NA,NA +AL121991,1991,10,31,18,36.7,-71.5,subtropical storm,NA,40,996,NA,NA +AL121991,1991,11,1,0,36,-70,subtropical storm,NA,50,995,NA,NA +AL121991,1991,11,1,6,36.2,-68.5,tropical storm,NA,55,993,NA,NA +AL121991,1991,11,1,12,37,-67,tropical storm,NA,60,988,NA,NA +AL121991,1991,11,1,18,38.2,-66.5,hurricane,1,65,980,NA,NA +AL121991,1991,11,2,0,39.5,-65.7,hurricane,1,65,981,NA,NA +AL121991,1991,11,2,6,41.6,-64.7,tropical storm,NA,60,988,NA,NA +AL121991,1991,11,2,12,44,-63.6,tropical storm,NA,50,996,NA,NA +AL121991,1991,11,2,14,44.6,-63.5,tropical storm,NA,45,998,NA,NA +AL121991,1991,11,2,18,46.3,-62.6,tropical depression,NA,30,1005,NA,NA +AL021992,1992,6,25,12,24.5,-85.5,tropical depression,NA,25,1009,NA,NA +AL021992,1992,6,25,18,25.7,-85.5,tropical depression,NA,30,1007,NA,NA +AL021992,1992,6,26,0,27,-84.5,tropical depression,NA,30,1007,NA,NA +AL021992,1992,6,26,6,27.6,-84,tropical depression,NA,30,1007,NA,NA +AL021992,1992,6,26,12,28.5,-82.9,tropical depression,NA,30,1007,NA,NA +AL031992,1992,7,24,18,28.6,-62.1,tropical depression,NA,25,1016,NA,NA +AL031992,1992,7,25,0,28.8,-62.7,tropical depression,NA,30,1016,NA,NA +AL031992,1992,7,25,6,29.1,-62.8,tropical depression,NA,30,1016,NA,NA +AL031992,1992,7,25,12,29.5,-62.7,tropical depression,NA,30,1015,NA,NA +AL031992,1992,7,25,18,29.8,-62.2,tropical depression,NA,30,1016,NA,NA +AL031992,1992,7,26,0,30.2,-61.3,tropical depression,NA,25,1016,NA,NA +AL031992,1992,7,26,6,30.8,-59.9,tropical depression,NA,25,1016,NA,NA +AL031992,1992,7,26,12,31.2,-58,tropical depression,NA,20,1016,NA,NA +Andrew,1992,8,16,18,10.8,-35.5,tropical depression,NA,25,1010,NA,NA +Andrew,1992,8,17,0,11.2,-37.4,tropical depression,NA,30,1009,NA,NA +Andrew,1992,8,17,6,11.7,-39.6,tropical depression,NA,30,1008,NA,NA +Andrew,1992,8,17,12,12.3,-42,tropical storm,NA,35,1006,NA,NA +Andrew,1992,8,17,18,13.1,-44.2,tropical storm,NA,35,1003,NA,NA +Andrew,1992,8,18,0,13.6,-46.2,tropical storm,NA,40,1002,NA,NA +Andrew,1992,8,18,6,14.1,-48,tropical storm,NA,45,1001,NA,NA +Andrew,1992,8,18,12,14.6,-49.9,tropical storm,NA,45,1000,NA,NA +Andrew,1992,8,18,18,15.4,-51.8,tropical storm,NA,45,1000,NA,NA +Andrew,1992,8,19,0,16.3,-53.5,tropical storm,NA,45,1001,NA,NA +Andrew,1992,8,19,6,17.2,-55.3,tropical storm,NA,45,1002,NA,NA +Andrew,1992,8,19,12,18,-56.9,tropical storm,NA,45,1005,NA,NA +Andrew,1992,8,19,18,18.8,-58.3,tropical storm,NA,45,1007,NA,NA +Andrew,1992,8,20,0,19.8,-59.3,tropical storm,NA,40,1011,NA,NA +Andrew,1992,8,20,6,20.7,-60,tropical storm,NA,40,1013,NA,NA +Andrew,1992,8,20,12,21.7,-60.7,tropical storm,NA,40,1015,NA,NA +Andrew,1992,8,20,18,22.5,-61.5,tropical storm,NA,40,1014,NA,NA +Andrew,1992,8,21,0,23.2,-62.4,tropical storm,NA,45,1014,NA,NA +Andrew,1992,8,21,6,23.9,-63.3,tropical storm,NA,45,1010,NA,NA +Andrew,1992,8,21,12,24.4,-64.2,tropical storm,NA,50,1007,NA,NA +Andrew,1992,8,21,18,24.8,-64.9,tropical storm,NA,50,1004,NA,NA +Andrew,1992,8,22,0,25.3,-65.9,tropical storm,NA,55,1000,NA,NA +Andrew,1992,8,22,6,25.6,-67,hurricane,1,65,994,NA,NA +Andrew,1992,8,22,12,25.8,-68.3,hurricane,1,80,981,NA,NA +Andrew,1992,8,22,18,25.7,-69.7,hurricane,2,95,969,NA,NA +Andrew,1992,8,23,0,25.6,-71.1,hurricane,3,110,961,NA,NA +Andrew,1992,8,23,6,25.5,-72.5,hurricane,4,130,947,NA,NA +Andrew,1992,8,23,12,25.4,-74.2,hurricane,5,145,933,NA,NA +Andrew,1992,8,23,18,25.4,-75.8,hurricane,5,150,922,NA,NA +Andrew,1992,8,23,21,25.4,-76.6,hurricane,5,140,923,NA,NA +Andrew,1992,8,24,0,25.4,-77.5,hurricane,4,125,930,NA,NA +Andrew,1992,8,24,1,25.4,-77.8,hurricane,4,130,931,NA,NA +Andrew,1992,8,24,6,25.4,-79.3,hurricane,4,130,937,NA,NA +Andrew,1992,8,24,8,25.5,-80.2,hurricane,5,145,926,NA,NA +Andrew,1992,8,24,9,25.5,-80.3,hurricane,5,145,922,NA,NA +Andrew,1992,8,24,12,25.6,-81.2,hurricane,4,115,951,NA,NA +Andrew,1992,8,24,18,25.8,-83.1,hurricane,4,115,947,NA,NA +Andrew,1992,8,25,0,26.2,-85,hurricane,4,115,943,NA,NA +Andrew,1992,8,25,6,26.6,-86.7,hurricane,4,115,948,NA,NA +Andrew,1992,8,25,12,27.2,-88.2,hurricane,4,120,946,NA,NA +Andrew,1992,8,25,18,27.8,-89.6,hurricane,4,125,941,NA,NA +Andrew,1992,8,26,0,28.5,-90.5,hurricane,4,125,937,NA,NA +Andrew,1992,8,26,6,29.2,-91.3,hurricane,4,120,955,NA,NA +Andrew,1992,8,26,8,29.6,-91.5,hurricane,3,100,956,NA,NA +Andrew,1992,8,26,12,30.1,-91.7,hurricane,1,80,973,NA,NA +Andrew,1992,8,26,18,30.9,-91.6,tropical storm,NA,50,991,NA,NA +Andrew,1992,8,27,0,31.5,-91.1,tropical storm,NA,35,995,NA,NA +Andrew,1992,8,27,6,32.1,-90.5,tropical depression,NA,30,997,NA,NA +Andrew,1992,8,27,12,32.8,-89.6,tropical depression,NA,30,998,NA,NA +Andrew,1992,8,27,18,33.6,-88.4,tropical depression,NA,25,999,NA,NA +Andrew,1992,8,28,0,34.4,-86.7,tropical depression,NA,20,1000,NA,NA +Andrew,1992,8,28,6,35.4,-84,tropical depression,NA,20,1000,NA,NA +Bonnie,1992,9,17,18,33.8,-59,tropical depression,NA,30,1009,NA,NA +Bonnie,1992,9,18,0,33.5,-58.3,tropical depression,NA,30,1008,NA,NA +Bonnie,1992,9,18,6,33.7,-58,tropical storm,NA,35,1005,NA,NA +Bonnie,1992,9,18,12,34,-57.9,tropical storm,NA,45,1000,NA,NA +Bonnie,1992,9,18,18,34.3,-58.1,hurricane,1,65,988,NA,NA +Bonnie,1992,9,19,0,34.2,-57.8,hurricane,1,75,980,NA,NA +Bonnie,1992,9,19,6,34.4,-57.4,hurricane,1,80,976,NA,NA +Bonnie,1992,9,19,12,34.7,-57.1,hurricane,2,85,973,NA,NA +Bonnie,1992,9,19,18,35.2,-56.8,hurricane,2,90,970,NA,NA +Bonnie,1992,9,20,0,35.6,-56.6,hurricane,2,90,970,NA,NA +Bonnie,1992,9,20,6,36.1,-56.2,hurricane,2,85,973,NA,NA +Bonnie,1992,9,20,12,36.5,-56,hurricane,2,85,974,NA,NA +Bonnie,1992,9,20,18,36.8,-55.5,hurricane,2,85,973,NA,NA +Bonnie,1992,9,21,0,37,-54.6,hurricane,2,90,972,NA,NA +Bonnie,1992,9,21,6,37.2,-53.8,hurricane,2,90,970,NA,NA +Bonnie,1992,9,21,12,37.3,-53,hurricane,2,90,968,NA,NA +Bonnie,1992,9,21,18,37.5,-52.3,hurricane,2,95,965,NA,NA +Bonnie,1992,9,22,0,37.7,-51.5,hurricane,2,95,966,NA,NA +Bonnie,1992,9,22,6,37.7,-51.2,hurricane,2,95,967,NA,NA +Bonnie,1992,9,22,12,37.8,-51,hurricane,2,90,968,NA,NA +Bonnie,1992,9,22,18,37.8,-50.9,hurricane,2,90,969,NA,NA +Bonnie,1992,9,23,0,37.7,-50.7,hurricane,2,90,970,NA,NA +Bonnie,1992,9,23,6,37.6,-50.7,hurricane,2,85,972,NA,NA +Bonnie,1992,9,23,12,37.6,-50.8,hurricane,2,85,974,NA,NA +Bonnie,1992,9,23,18,37.5,-51,hurricane,1,80,977,NA,NA +Bonnie,1992,9,24,0,37.5,-51.1,hurricane,1,75,979,NA,NA +Bonnie,1992,9,24,6,37.5,-51.2,hurricane,1,70,983,NA,NA +Bonnie,1992,9,24,12,37.4,-51.4,hurricane,1,65,987,NA,NA +Bonnie,1992,9,24,18,37.2,-51.5,tropical storm,NA,60,995,NA,NA +Bonnie,1992,9,25,0,36.8,-51.8,tropical storm,NA,55,995,NA,NA +Bonnie,1992,9,25,6,36.3,-51.8,tropical storm,NA,45,1000,NA,NA +Bonnie,1992,9,25,12,35.7,-51.8,tropical storm,NA,40,1005,NA,NA +Bonnie,1992,9,25,18,35.1,-51.8,tropical storm,NA,35,1007,NA,NA +Bonnie,1992,9,26,0,34.6,-51.7,tropical depression,NA,30,1009,NA,NA +Bonnie,1992,9,26,6,34.1,-51.3,tropical depression,NA,30,1009,NA,NA +Bonnie,1992,9,26,12,33.8,-50.8,tropical depression,NA,30,1008,NA,NA +Bonnie,1992,9,26,18,33.3,-49.9,tropical storm,NA,35,1006,NA,NA +Bonnie,1992,9,27,0,33.2,-48.4,tropical storm,NA,35,1005,NA,NA +Bonnie,1992,9,27,6,33.1,-46.9,tropical storm,NA,40,1003,NA,NA +Bonnie,1992,9,27,12,33,-45.4,tropical storm,NA,40,1001,NA,NA +Bonnie,1992,9,27,18,33,-44,tropical storm,NA,45,999,NA,NA +Bonnie,1992,9,28,0,33.1,-43,tropical storm,NA,50,996,NA,NA +Bonnie,1992,9,28,6,33.4,-42,tropical storm,NA,55,994,NA,NA +Bonnie,1992,9,28,12,33.9,-41,tropical storm,NA,60,993,NA,NA +Bonnie,1992,9,28,18,34.5,-39.8,tropical storm,NA,60,992,NA,NA +Bonnie,1992,9,29,0,35,-38.5,tropical storm,NA,60,992,NA,NA +Bonnie,1992,9,29,6,35.2,-37.6,tropical storm,NA,60,993,NA,NA +Bonnie,1992,9,29,12,35.5,-36.6,tropical storm,NA,55,994,NA,NA +Bonnie,1992,9,29,18,36.1,-34.8,tropical storm,NA,55,995,NA,NA +Bonnie,1992,9,30,0,36.6,-32.1,tropical storm,NA,55,995,NA,NA +Bonnie,1992,9,30,6,37.3,-29.4,tropical storm,NA,55,995,NA,NA +Bonnie,1992,9,30,12,38.4,-26.4,tropical storm,NA,50,997,NA,NA +Bonnie,1992,9,30,18,39,-24.2,tropical storm,NA,40,1002,NA,NA +Bonnie,1992,10,1,0,39,-22.8,extratropical,NA,40,1004,NA,NA +Bonnie,1992,10,1,6,39,-21.6,extratropical,NA,35,1006,NA,NA +Bonnie,1992,10,1,12,38.5,-21.2,extratropical,NA,30,1008,NA,NA +Bonnie,1992,10,1,18,38.2,-21.5,extratropical,NA,25,1010,NA,NA +Bonnie,1992,10,2,0,38.1,-21.8,extratropical,NA,25,1012,NA,NA +Bonnie,1992,10,2,6,37.9,-22.2,extratropical,NA,25,1014,NA,NA +Bonnie,1992,10,2,12,37.8,-22.7,extratropical,NA,20,1015,NA,NA +Bonnie,1992,10,2,18,38,-24,extratropical,NA,20,1017,NA,NA +Charley,1992,9,21,18,30,-33,tropical depression,NA,25,1012,NA,NA +Charley,1992,9,22,0,30.3,-33.6,tropical depression,NA,30,1011,NA,NA +Charley,1992,9,22,6,30.9,-33.8,tropical depression,NA,30,1009,NA,NA +Charley,1992,9,22,12,31.6,-34,tropical storm,NA,35,1005,NA,NA +Charley,1992,9,22,18,32.5,-34,tropical storm,NA,45,1000,NA,NA +Charley,1992,9,23,0,33.4,-34.2,tropical storm,NA,55,995,NA,NA +Charley,1992,9,23,6,34.1,-34.4,tropical storm,NA,60,991,NA,NA +Charley,1992,9,23,12,34.7,-34.5,hurricane,1,65,987,NA,NA +Charley,1992,9,23,18,35.2,-34.6,hurricane,1,75,981,NA,NA +Charley,1992,9,24,0,35.6,-34.6,hurricane,2,85,975,NA,NA +Charley,1992,9,24,6,35.8,-34.5,hurricane,2,90,970,NA,NA +Charley,1992,9,24,12,36,-34.3,hurricane,2,90,967,NA,NA +Charley,1992,9,24,18,36.1,-34.1,hurricane,2,95,965,NA,NA +Charley,1992,9,25,0,36.1,-33.8,hurricane,2,95,967,NA,NA +Charley,1992,9,25,6,36,-33.6,hurricane,2,90,970,NA,NA +Charley,1992,9,25,12,35.9,-33.4,hurricane,2,85,973,NA,NA +Charley,1992,9,25,18,35.9,-33.2,hurricane,1,75,976,NA,NA +Charley,1992,9,26,0,35.9,-32.8,hurricane,1,70,979,NA,NA +Charley,1992,9,26,6,36.1,-32.3,hurricane,1,65,980,NA,NA +Charley,1992,9,26,12,36.3,-31.5,hurricane,1,65,980,NA,NA +Charley,1992,9,26,18,36.6,-30.6,hurricane,1,65,980,NA,NA +Charley,1992,9,27,0,37.2,-29.4,tropical storm,NA,60,980,NA,NA +Charley,1992,9,27,6,38,-28,tropical storm,NA,55,980,NA,NA +Charley,1992,9,27,12,39,-26.3,tropical storm,NA,55,981,NA,NA +Charley,1992,9,27,18,40.4,-24.4,extratropical,NA,50,983,NA,NA +Charley,1992,9,28,0,42,-22.3,extratropical,NA,45,985,NA,NA +Charley,1992,9,28,6,43.5,-20.2,extratropical,NA,40,988,NA,NA +Charley,1992,9,28,12,45.2,-18.3,extratropical,NA,40,990,NA,NA +Charley,1992,9,28,18,47.1,-15.9,extratropical,NA,40,985,NA,NA +Charley,1992,9,29,0,49.5,-13.5,extratropical,NA,45,980,NA,NA +Danielle,1992,9,22,12,32.5,-74.6,tropical depression,NA,30,1009,NA,NA +Danielle,1992,9,22,18,32.8,-74.2,tropical storm,NA,45,1006,NA,NA +Danielle,1992,9,23,0,33.6,-73.8,tropical storm,NA,45,1005,NA,NA +Danielle,1992,9,23,6,34.1,-73.5,tropical storm,NA,45,1005,NA,NA +Danielle,1992,9,23,12,34.3,-73.2,tropical storm,NA,40,1005,NA,NA +Danielle,1992,9,23,18,34.3,-73.1,tropical storm,NA,40,1006,NA,NA +Danielle,1992,9,24,0,34,-73,tropical storm,NA,40,1006,NA,NA +Danielle,1992,9,24,6,33.8,-73.1,tropical storm,NA,40,1005,NA,NA +Danielle,1992,9,24,12,33.9,-73.3,tropical storm,NA,40,1005,NA,NA +Danielle,1992,9,24,18,34.1,-73.8,tropical storm,NA,40,1005,NA,NA +Danielle,1992,9,25,0,34.3,-74.3,tropical storm,NA,45,1004,NA,NA +Danielle,1992,9,25,6,34.9,-74.8,tropical storm,NA,45,1004,NA,NA +Danielle,1992,9,25,12,35.9,-75.2,tropical storm,NA,55,1001,NA,NA +Danielle,1992,9,25,18,37,-75.4,tropical storm,NA,55,1007,NA,NA +Danielle,1992,9,25,22,37.8,-75.5,tropical storm,NA,55,1007,NA,NA +Danielle,1992,9,26,0,38.3,-75.6,tropical storm,NA,40,1008,NA,NA +Danielle,1992,9,26,6,39.6,-75.9,tropical storm,NA,35,1010,NA,NA +Danielle,1992,9,26,12,40.5,-76.5,tropical depression,NA,25,1014,NA,NA +AL081992,1992,9,25,12,11,-34.7,tropical depression,NA,25,1012,NA,NA +AL081992,1992,9,25,18,11.1,-36.2,tropical depression,NA,30,1011,NA,NA +AL081992,1992,9,26,0,11.2,-37.7,tropical depression,NA,30,1011,NA,NA +AL081992,1992,9,26,6,11.5,-39.2,tropical depression,NA,25,1012,NA,NA +AL081992,1992,9,26,12,11.8,-40.7,tropical depression,NA,25,1013,NA,NA +AL081992,1992,9,26,18,12.3,-41.9,tropical depression,NA,25,1012,NA,NA +AL081992,1992,9,27,0,12.8,-43.1,tropical depression,NA,30,1011,NA,NA +AL081992,1992,9,27,6,13.4,-44.2,tropical depression,NA,30,1010,NA,NA +AL081992,1992,9,27,12,14.1,-45.1,tropical depression,NA,30,1009,NA,NA +AL081992,1992,9,27,18,14.7,-45.8,tropical depression,NA,30,1010,NA,NA +AL081992,1992,9,28,0,15.4,-46.4,tropical depression,NA,30,1011,NA,NA +AL081992,1992,9,28,6,16.2,-46.9,tropical depression,NA,25,1012,NA,NA +AL081992,1992,9,28,12,17.2,-46.9,tropical depression,NA,25,1013,NA,NA +AL081992,1992,9,28,18,18,-46.5,tropical depression,NA,25,1012,NA,NA +AL081992,1992,9,29,0,18.6,-46.2,tropical depression,NA,30,1011,NA,NA +AL081992,1992,9,29,6,19.2,-45.9,tropical depression,NA,30,1010,NA,NA +AL081992,1992,9,29,12,19.8,-45.6,tropical depression,NA,30,1009,NA,NA +AL081992,1992,9,29,18,20.5,-45.4,tropical depression,NA,30,1010,NA,NA +AL081992,1992,9,30,0,21.5,-45.3,tropical depression,NA,30,1009,NA,NA +AL081992,1992,9,30,6,22.5,-45.2,tropical depression,NA,30,1008,NA,NA +AL081992,1992,9,30,12,23.5,-44.8,tropical depression,NA,30,1009,NA,NA +AL081992,1992,9,30,18,24.4,-44.4,tropical depression,NA,30,1010,NA,NA +AL081992,1992,10,1,0,25.4,-43.9,tropical depression,NA,30,1011,NA,NA +AL081992,1992,10,1,6,26.4,-43.2,tropical depression,NA,25,1012,NA,NA +AL081992,1992,10,1,12,27.6,-42.3,tropical depression,NA,20,1015,NA,NA +Earl,1992,9,26,18,26.2,-69.1,tropical depression,NA,25,1009,NA,NA +Earl,1992,9,27,0,25.8,-70.8,tropical depression,NA,25,1008,NA,NA +Earl,1992,9,27,6,26.3,-72.3,tropical depression,NA,25,1007,NA,NA +Earl,1992,9,27,12,27,-73.9,tropical depression,NA,30,1006,NA,NA +Earl,1992,9,27,18,27.7,-75.5,tropical depression,NA,30,1003,NA,NA +Earl,1992,9,28,0,28,-76.6,tropical depression,NA,30,1004,NA,NA +Earl,1992,9,28,6,28.3,-77.7,tropical depression,NA,30,1004,NA,NA +Earl,1992,9,28,12,28.6,-78.6,tropical depression,NA,30,1004,NA,NA +Earl,1992,9,28,18,28.9,-79.2,tropical depression,NA,30,1004,NA,NA +Earl,1992,9,29,0,29.2,-79.4,tropical depression,NA,30,1004,NA,NA +Earl,1992,9,29,6,29.4,-79.5,tropical depression,NA,30,1003,NA,NA +Earl,1992,9,29,12,29.7,-79.3,tropical storm,NA,35,1003,NA,NA +Earl,1992,9,29,18,29.8,-79.1,tropical storm,NA,40,1003,NA,NA +Earl,1992,9,30,0,29.9,-78.8,tropical storm,NA,40,1002,NA,NA +Earl,1992,9,30,6,30,-78.1,tropical storm,NA,40,1000,NA,NA +Earl,1992,9,30,12,30.1,-77.1,tropical storm,NA,45,999,NA,NA +Earl,1992,9,30,18,29.9,-75.8,tropical storm,NA,50,997,NA,NA +Earl,1992,10,1,0,29.7,-74.4,tropical storm,NA,50,996,NA,NA +Earl,1992,10,1,6,29.3,-73,tropical storm,NA,50,997,NA,NA +Earl,1992,10,1,12,28.9,-71.6,tropical storm,NA,50,998,NA,NA +Earl,1992,10,1,18,28.4,-70.3,tropical storm,NA,55,996,NA,NA +Earl,1992,10,2,0,28,-69,tropical storm,NA,55,990,NA,NA +Earl,1992,10,2,6,27.6,-68,tropical storm,NA,50,992,NA,NA +Earl,1992,10,2,12,27.5,-67,tropical storm,NA,45,1000,NA,NA +Earl,1992,10,2,18,27.4,-66.1,tropical storm,NA,40,1003,NA,NA +Earl,1992,10,3,0,27.5,-65.2,tropical storm,NA,35,1005,NA,NA +Earl,1992,10,3,6,27.8,-64.5,tropical storm,NA,35,1007,NA,NA +Earl,1992,10,3,12,28.2,-63.7,tropical depression,NA,30,1008,NA,NA +Earl,1992,10,3,18,28.4,-62.9,extratropical,NA,30,1008,NA,NA +Frances,1992,10,22,12,26.3,-60.8,extratropical,NA,30,1009,NA,NA +Frances,1992,10,22,18,26.6,-61.2,extratropical,NA,40,1004,NA,NA +Frances,1992,10,23,0,27.1,-61.4,extratropical,NA,50,996,NA,NA +Frances,1992,10,23,6,27.7,-61.4,tropical storm,NA,55,992,NA,NA +Frances,1992,10,23,12,28.3,-61.3,tropical storm,NA,60,990,NA,NA +Frances,1992,10,23,18,28.7,-61.1,hurricane,1,65,986,NA,NA +Frances,1992,10,24,0,29,-60.6,hurricane,1,65,978,NA,NA +Frances,1992,10,24,6,29.6,-59.9,hurricane,1,70,977,NA,NA +Frances,1992,10,24,12,30.6,-58.8,hurricane,1,75,976,NA,NA +Frances,1992,10,24,18,32.1,-57.4,hurricane,1,75,976,NA,NA +Frances,1992,10,25,0,33.8,-56.2,hurricane,1,70,978,NA,NA +Frances,1992,10,25,6,35.7,-54.9,hurricane,1,65,980,NA,NA +Frances,1992,10,25,12,37.7,-53.7,hurricane,1,65,982,NA,NA +Frances,1992,10,25,18,39.6,-52.7,tropical storm,NA,60,983,NA,NA +Frances,1992,10,26,0,41.4,-51.7,tropical storm,NA,60,985,NA,NA +Frances,1992,10,26,6,43.2,-50.2,tropical storm,NA,60,986,NA,NA +Frances,1992,10,26,12,44.8,-48.6,tropical storm,NA,60,987,NA,NA +Frances,1992,10,26,18,46,-46.9,tropical storm,NA,55,988,NA,NA +Frances,1992,10,27,0,47,-44.9,tropical storm,NA,55,989,NA,NA +Frances,1992,10,27,6,47.6,-42.7,extratropical,NA,50,992,NA,NA +Frances,1992,10,27,12,48,-40,extratropical,NA,45,994,NA,NA +Frances,1992,10,27,18,48,-37,extratropical,NA,40,998,NA,NA +Frances,1992,10,28,0,48,-34,extratropical,NA,40,1002,NA,NA +Frances,1992,10,28,6,47.5,-31,extratropical,NA,35,1004,NA,NA +Frances,1992,10,28,12,47,-27.5,extratropical,NA,35,1002,NA,NA +Frances,1992,10,28,18,46,-24,extratropical,NA,35,999,NA,NA +Frances,1992,10,29,0,45,-20,extratropical,NA,40,999,NA,NA +Frances,1992,10,29,6,44,-16,extratropical,NA,35,1001,NA,NA +Frances,1992,10,29,12,43.5,-12,extratropical,NA,35,1002,NA,NA +Frances,1992,10,29,18,43,-9,extratropical,NA,30,1003,NA,NA +Frances,1992,10,30,0,43,-7,extratropical,NA,30,1002,NA,NA +AL011993,1993,5,31,12,21.5,-84,tropical depression,NA,25,1003,NA,NA +AL011993,1993,5,31,18,22.3,-82,tropical depression,NA,25,1002,NA,NA +AL011993,1993,6,1,0,23.2,-80.3,tropical depression,NA,25,1000,NA,NA +AL011993,1993,6,1,6,24.5,-79,tropical depression,NA,25,1000,NA,NA +AL011993,1993,6,1,12,25.4,-77.5,tropical depression,NA,30,999,NA,NA +AL011993,1993,6,1,18,26.1,-75.8,tropical depression,NA,30,999,NA,NA +AL011993,1993,6,2,0,26.7,-74,tropical depression,NA,30,999,NA,NA +AL011993,1993,6,2,6,27.8,-71.8,tropical depression,NA,30,999,NA,NA +AL011993,1993,6,2,12,28.4,-69.9,extratropical,NA,35,999,NA,NA +AL011993,1993,6,2,18,28.5,-67.8,extratropical,NA,35,1000,NA,NA +AL011993,1993,6,3,0,28.8,-65.3,extratropical,NA,35,1000,NA,NA +Arlene,1993,6,18,0,20.5,-91.9,tropical depression,NA,25,1006,NA,NA +Arlene,1993,6,18,6,20.8,-92.3,tropical depression,NA,25,1005,NA,NA +Arlene,1993,6,18,12,21.1,-92.8,tropical depression,NA,25,1005,NA,NA +Arlene,1993,6,18,18,21.7,-93.1,tropical depression,NA,30,1005,NA,NA +Arlene,1993,6,19,0,22.6,-93.4,tropical depression,NA,30,1006,NA,NA +Arlene,1993,6,19,6,23.8,-94.1,tropical depression,NA,30,1006,NA,NA +Arlene,1993,6,19,12,25.9,-95.9,tropical storm,NA,35,1000,NA,NA +Arlene,1993,6,19,18,26,-96.3,tropical storm,NA,35,1000,NA,NA +Arlene,1993,6,20,0,26.3,-96.7,tropical storm,NA,35,1000,NA,NA +Arlene,1993,6,20,6,27,-97.2,tropical storm,NA,35,1001,NA,NA +Arlene,1993,6,20,9,27.1,-97.4,tropical storm,NA,35,1001,NA,NA +Arlene,1993,6,20,12,27.2,-97.8,tropical depression,NA,30,1002,NA,NA +Arlene,1993,6,20,18,27.2,-97.9,tropical depression,NA,30,1003,NA,NA +Arlene,1993,6,21,0,27.1,-98.1,tropical depression,NA,30,1004,NA,NA +Arlene,1993,6,21,6,27.1,-98.3,tropical depression,NA,25,1006,NA,NA +Bret,1993,8,4,12,10.4,-40.3,tropical depression,NA,30,1010,NA,NA +Bret,1993,8,4,18,10.4,-41.7,tropical depression,NA,30,1009,NA,NA +Bret,1993,8,5,0,10.4,-43.4,tropical storm,NA,35,1008,NA,NA +Bret,1993,8,5,6,10.3,-45.3,tropical storm,NA,40,1007,NA,NA +Bret,1993,8,5,12,10.3,-47.3,tropical storm,NA,45,1006,NA,NA +Bret,1993,8,5,18,10.3,-49.2,tropical storm,NA,45,1006,NA,NA +Bret,1993,8,6,0,10.2,-51,tropical storm,NA,45,1006,NA,NA +Bret,1993,8,6,6,10.1,-52.9,tropical storm,NA,50,1005,NA,NA +Bret,1993,8,6,12,10,-54.9,tropical storm,NA,50,1005,NA,NA +Bret,1993,8,6,18,10.1,-56.8,tropical storm,NA,50,1003,NA,NA +Bret,1993,8,7,0,10.4,-58.6,tropical storm,NA,50,1002,NA,NA +Bret,1993,8,7,6,10.7,-60.5,tropical storm,NA,50,1002,NA,NA +Bret,1993,8,7,7,10.8,-60.8,tropical storm,NA,50,1002,NA,NA +Bret,1993,8,7,10,10.8,-61.8,tropical storm,NA,50,1002,NA,NA +Bret,1993,8,7,12,10.8,-62.4,tropical storm,NA,50,1002,NA,NA +Bret,1993,8,7,18,10.8,-64.1,tropical storm,NA,45,1006,NA,NA +Bret,1993,8,8,0,10.8,-65.7,tropical storm,NA,40,1008,NA,NA +Bret,1993,8,8,6,11,-67.6,tropical storm,NA,40,1007,NA,NA +Bret,1993,8,8,8,11,-68.3,tropical storm,NA,40,1007,NA,NA +Bret,1993,8,8,12,11,-69.7,tropical storm,NA,40,1007,NA,NA +Bret,1993,8,8,18,11,-71.8,tropical storm,NA,40,1007,NA,NA +Bret,1993,8,9,0,10.9,-73.8,tropical storm,NA,40,1006,NA,NA +Bret,1993,8,9,6,10.7,-75.8,tropical storm,NA,35,1005,NA,NA +Bret,1993,8,9,12,10.7,-77.8,tropical depression,NA,30,1004,NA,NA +Bret,1993,8,9,18,10.7,-79.2,tropical depression,NA,30,1005,NA,NA +Bret,1993,8,10,0,10.8,-80.3,tropical depression,NA,30,1004,NA,NA +Bret,1993,8,10,6,11,-81.4,tropical storm,NA,35,1003,NA,NA +Bret,1993,8,10,12,11.1,-82.6,tropical storm,NA,40,1002,NA,NA +Bret,1993,8,10,17,11.1,-83.8,tropical storm,NA,40,1002,NA,NA +Bret,1993,8,10,18,11.1,-84,tropical storm,NA,35,1004,NA,NA +Bret,1993,8,11,0,11.4,-85,tropical depression,NA,25,1007,NA,NA +Bret,1993,8,11,6,11.7,-85.8,tropical depression,NA,20,1009,NA,NA +Bret,1993,8,11,12,12.2,-86.8,tropical depression,NA,20,1010,NA,NA +Cindy,1993,8,14,12,14.1,-59.5,tropical depression,NA,30,1012,NA,NA +Cindy,1993,8,14,18,14.5,-60.9,tropical storm,NA,35,1012,NA,NA +Cindy,1993,8,15,0,14.9,-62.2,tropical storm,NA,35,1011,NA,NA +Cindy,1993,8,15,6,15.2,-63.5,tropical storm,NA,35,1011,NA,NA +Cindy,1993,8,15,12,15.4,-64.8,tropical storm,NA,35,1013,NA,NA +Cindy,1993,8,15,18,15.8,-66,tropical storm,NA,35,1012,NA,NA +Cindy,1993,8,16,0,16.4,-66.9,tropical storm,NA,35,1010,NA,NA +Cindy,1993,8,16,6,17,-68,tropical storm,NA,35,1008,NA,NA +Cindy,1993,8,16,12,17.3,-69.3,tropical storm,NA,40,1007,NA,NA +Cindy,1993,8,16,18,17.9,-70.6,tropical storm,NA,35,1008,NA,NA +Cindy,1993,8,16,21,18.3,-71,tropical depression,NA,30,1009,NA,NA +Cindy,1993,8,17,0,18.8,-71.3,tropical depression,NA,30,1010,NA,NA +Emily,1993,8,22,18,19.9,-52.6,tropical depression,NA,30,1020,NA,NA +Emily,1993,8,23,0,20.5,-53.6,tropical depression,NA,30,1020,NA,NA +Emily,1993,8,23,6,21.3,-54.8,tropical depression,NA,30,1020,NA,NA +Emily,1993,8,23,12,22.3,-56,tropical depression,NA,30,1020,NA,NA +Emily,1993,8,23,18,23.2,-57.1,tropical depression,NA,30,1020,NA,NA +Emily,1993,8,24,0,24.3,-57.8,tropical depression,NA,30,1020,NA,NA +Emily,1993,8,24,6,25.4,-58.6,tropical depression,NA,30,1020,NA,NA +Emily,1993,8,24,12,26.7,-59.5,tropical depression,NA,30,1020,NA,NA +Emily,1993,8,24,18,27.6,-60,tropical depression,NA,30,1019,NA,NA +Emily,1993,8,25,0,28,-60.3,tropical depression,NA,30,1018,NA,NA +Emily,1993,8,25,6,27.9,-60.5,tropical depression,NA,30,1017,NA,NA +Emily,1993,8,25,12,28,-60.4,tropical storm,NA,35,1016,NA,NA +Emily,1993,8,25,18,28.2,-60.4,tropical storm,NA,40,1015,NA,NA +Emily,1993,8,26,0,28.3,-60.7,tropical storm,NA,45,1013,NA,NA +Emily,1993,8,26,6,27.9,-61,tropical storm,NA,55,1010,NA,NA +Emily,1993,8,26,12,27.4,-61.2,tropical storm,NA,60,1007,NA,NA +Emily,1993,8,26,18,26.9,-61.7,hurricane,1,65,1004,NA,NA +Emily,1993,8,27,0,26.6,-62.4,tropical storm,NA,60,1000,NA,NA +Emily,1993,8,27,6,26.4,-63,tropical storm,NA,60,997,NA,NA +Emily,1993,8,27,12,26.3,-63.5,tropical storm,NA,60,992,NA,NA +Emily,1993,8,27,18,26.4,-64.4,hurricane,1,65,982,NA,NA +Emily,1993,8,28,0,26.6,-65.2,hurricane,1,75,981,NA,NA +Emily,1993,8,28,6,27,-66.1,hurricane,1,75,982,NA,NA +Emily,1993,8,28,12,27.4,-66.9,hurricane,1,75,981,NA,NA +Emily,1993,8,28,18,28,-67.6,hurricane,1,75,976,NA,NA +Emily,1993,8,29,0,28.6,-68.2,hurricane,1,70,973,NA,NA +Emily,1993,8,29,6,29.3,-68.8,hurricane,1,70,978,NA,NA +Emily,1993,8,29,12,30,-69.2,hurricane,1,70,979,NA,NA +Emily,1993,8,29,18,30.6,-69.7,hurricane,1,70,978,NA,NA +Emily,1993,8,30,0,31.2,-70.2,hurricane,1,70,977,NA,NA +Emily,1993,8,30,6,31.5,-70.8,hurricane,1,70,976,NA,NA +Emily,1993,8,30,12,31.8,-71.4,hurricane,1,75,975,NA,NA +Emily,1993,8,30,18,32,-72.2,hurricane,1,75,974,NA,NA +Emily,1993,8,31,0,32.4,-73,hurricane,1,80,972,NA,NA +Emily,1993,8,31,6,32.9,-73.8,hurricane,2,85,970,NA,NA +Emily,1993,8,31,12,33.6,-74.7,hurricane,2,95,965,NA,NA +Emily,1993,8,31,18,34.5,-75.2,hurricane,3,100,962,NA,NA +Emily,1993,8,31,21,35.2,-75.1,hurricane,3,100,961,NA,NA +Emily,1993,9,1,0,35.6,-74.9,hurricane,3,100,960,NA,NA +Emily,1993,9,1,6,36.6,-74.4,hurricane,3,100,962,NA,NA +Emily,1993,9,1,12,37.5,-72.7,hurricane,2,95,965,NA,NA +Emily,1993,9,1,18,38.2,-70.7,hurricane,2,90,969,NA,NA +Emily,1993,9,2,0,39,-68.5,hurricane,2,90,971,NA,NA +Emily,1993,9,2,6,39.2,-66,hurricane,2,90,972,NA,NA +Emily,1993,9,2,12,39.2,-63.6,hurricane,2,90,973,NA,NA +Emily,1993,9,2,18,39,-61.4,hurricane,2,85,974,NA,NA +Emily,1993,9,3,0,38.6,-59.6,hurricane,1,80,975,NA,NA +Emily,1993,9,3,6,38.1,-58.3,hurricane,1,75,979,NA,NA +Emily,1993,9,3,12,37.5,-57.7,hurricane,1,70,985,NA,NA +Emily,1993,9,3,18,36.9,-57.5,tropical storm,NA,60,994,NA,NA +Emily,1993,9,4,0,36.4,-57.6,tropical storm,NA,50,999,NA,NA +Emily,1993,9,4,6,36,-57.6,tropical storm,NA,40,1002,NA,NA +Emily,1993,9,4,12,35.8,-57.5,tropical storm,NA,35,1001,NA,NA +Emily,1993,9,4,18,36.1,-57.2,tropical depression,NA,30,1006,NA,NA +Emily,1993,9,5,0,36.7,-56.9,tropical depression,NA,30,1008,NA,NA +Emily,1993,9,5,6,37.4,-56.4,tropical depression,NA,30,1009,NA,NA +Emily,1993,9,5,12,38,-55.7,tropical depression,NA,25,1010,NA,NA +Emily,1993,9,5,18,38.7,-54.8,tropical depression,NA,25,1011,NA,NA +Emily,1993,9,6,0,39,-53,tropical depression,NA,25,1012,NA,NA +Emily,1993,9,6,6,39.3,-51.1,tropical depression,NA,25,1013,NA,NA +Emily,1993,9,6,12,39.8,-49.4,extratropical,NA,25,1014,NA,NA +Dennis,1993,8,23,12,13.6,-30.8,tropical depression,NA,25,1010,NA,NA +Dennis,1993,8,23,18,13.9,-31.3,tropical depression,NA,30,1009,NA,NA +Dennis,1993,8,24,0,14.5,-32.3,tropical depression,NA,30,1007,NA,NA +Dennis,1993,8,24,6,15,-33.2,tropical depression,NA,30,1005,NA,NA +Dennis,1993,8,24,12,15.4,-34,tropical storm,NA,35,1003,NA,NA +Dennis,1993,8,24,18,15.8,-34.9,tropical storm,NA,40,1002,NA,NA +Dennis,1993,8,25,0,16.4,-35.8,tropical storm,NA,45,1000,NA,NA +Dennis,1993,8,25,6,16.9,-36.6,tropical storm,NA,45,1000,NA,NA +Dennis,1993,8,25,12,17.4,-37.6,tropical storm,NA,45,1000,NA,NA +Dennis,1993,8,25,18,18,-38.7,tropical storm,NA,45,1000,NA,NA +Dennis,1993,8,26,0,18.7,-39.7,tropical storm,NA,45,1000,NA,NA +Dennis,1993,8,26,6,19.4,-40.7,tropical storm,NA,45,1000,NA,NA +Dennis,1993,8,26,12,20,-41.4,tropical storm,NA,45,1000,NA,NA +Dennis,1993,8,26,18,20.6,-42.1,tropical storm,NA,40,1001,NA,NA +Dennis,1993,8,27,0,21.3,-42.5,tropical storm,NA,40,1002,NA,NA +Dennis,1993,8,27,6,22.1,-42.7,tropical storm,NA,35,1005,NA,NA +Dennis,1993,8,27,12,22.5,-43,tropical depression,NA,30,1006,NA,NA +Dennis,1993,8,27,18,22.8,-43.2,tropical depression,NA,25,1009,NA,NA +Dennis,1993,8,28,0,22.9,-43.6,tropical depression,NA,25,1009,NA,NA +Dennis,1993,8,28,6,22.6,-44,tropical depression,NA,25,1009,NA,NA +Dennis,1993,8,28,12,22.2,-44.5,tropical depression,NA,25,1010,NA,NA +Floyd,1993,9,7,12,24.7,-67.5,tropical depression,NA,25,1012,NA,NA +Floyd,1993,9,7,18,26.2,-68.2,tropical storm,NA,40,1010,NA,NA +Floyd,1993,9,8,0,27.8,-68.9,tropical storm,NA,45,1009,NA,NA +Floyd,1993,9,8,6,29.4,-69.4,tropical storm,NA,45,1011,NA,NA +Floyd,1993,9,8,12,31,-69.8,tropical storm,NA,40,1012,NA,NA +Floyd,1993,9,8,18,33.2,-69.2,tropical storm,NA,40,1011,NA,NA +Floyd,1993,9,9,0,35.3,-67.8,tropical storm,NA,40,1009,NA,NA +Floyd,1993,9,9,6,37.5,-65.7,tropical storm,NA,40,1007,NA,NA +Floyd,1993,9,9,12,39.3,-62.4,tropical storm,NA,50,997,NA,NA +Floyd,1993,9,9,18,41.7,-58.3,hurricane,1,65,990,NA,NA +Floyd,1993,9,10,0,43.8,-53.9,hurricane,1,65,990,NA,NA +Floyd,1993,9,10,6,45.4,-48.3,hurricane,1,65,990,NA,NA +Floyd,1993,9,10,12,46.5,-42.5,hurricane,1,65,990,NA,NA +Floyd,1993,9,10,18,47.3,-37.8,extratropical,NA,65,990,NA,NA +Floyd,1993,9,11,0,47.5,-32.5,extratropical,NA,65,989,NA,NA +Floyd,1993,9,11,6,47.5,-27,extratropical,NA,65,988,NA,NA +Floyd,1993,9,11,12,47.5,-22.5,extratropical,NA,65,987,NA,NA +Floyd,1993,9,11,18,47.5,-18.5,extratropical,NA,65,986,NA,NA +Floyd,1993,9,12,0,47.5,-14.5,extratropical,NA,65,983,NA,NA +Floyd,1993,9,12,6,47.5,-10.5,extratropical,NA,65,980,NA,NA +Floyd,1993,9,12,12,48,-7.5,extratropical,NA,70,972,NA,NA +Floyd,1993,9,12,18,48,-6,extratropical,NA,70,966,NA,NA +Floyd,1993,9,13,0,48,-5,extratropical,NA,70,966,NA,NA +Gert,1993,9,14,18,10.6,-80.7,tropical depression,NA,25,1008,NA,NA +Gert,1993,9,15,0,10.7,-81.3,tropical depression,NA,30,1005,NA,NA +Gert,1993,9,15,6,11,-82.2,tropical depression,NA,30,1001,NA,NA +Gert,1993,9,15,12,11.3,-83,tropical storm,NA,35,1001,NA,NA +Gert,1993,9,15,18,11.8,-83.8,tropical storm,NA,35,1005,NA,NA +Gert,1993,9,16,0,12.1,-84.3,tropical depression,NA,30,1006,NA,NA +Gert,1993,9,16,6,12.5,-84.9,tropical depression,NA,30,1006,NA,NA +Gert,1993,9,16,12,12.9,-85.4,tropical depression,NA,30,1006,NA,NA +Gert,1993,9,16,18,13.3,-85.8,tropical depression,NA,25,1006,NA,NA +Gert,1993,9,17,0,13.8,-86.3,tropical depression,NA,25,1006,NA,NA +Gert,1993,9,17,6,14.5,-86.8,tropical depression,NA,25,1006,NA,NA +Gert,1993,9,17,12,15.4,-87.3,tropical depression,NA,25,1006,NA,NA +Gert,1993,9,17,18,16.3,-87.8,tropical storm,NA,35,1001,NA,NA +Gert,1993,9,18,0,17.3,-88.1,tropical storm,NA,35,1000,NA,NA +Gert,1993,9,18,6,18.2,-88.6,tropical storm,NA,35,1002,NA,NA +Gert,1993,9,18,12,18.7,-89.3,tropical depression,NA,30,1003,NA,NA +Gert,1993,9,18,18,19.2,-90.5,tropical depression,NA,30,1003,NA,NA +Gert,1993,9,19,0,19.6,-91.6,tropical depression,NA,30,1001,NA,NA +Gert,1993,9,19,6,20,-92.5,tropical storm,NA,35,1000,NA,NA +Gert,1993,9,19,12,20.5,-93.2,tropical storm,NA,40,993,NA,NA +Gert,1993,9,19,18,20.7,-93.9,tropical storm,NA,45,992,NA,NA +Gert,1993,9,20,0,20.9,-94.2,tropical storm,NA,55,990,NA,NA +Gert,1993,9,20,6,21.1,-95,hurricane,1,65,982,NA,NA +Gert,1993,9,20,12,21.2,-95.9,hurricane,1,80,978,NA,NA +Gert,1993,9,20,18,21.3,-97,hurricane,2,85,970,NA,NA +Gert,1993,9,20,21,21.2,-97.5,hurricane,2,85,970,NA,NA +Gert,1993,9,21,0,21.1,-98.3,hurricane,1,65,984,NA,NA +Gert,1993,9,21,6,20.9,-100.2,tropical storm,NA,40,1000,NA,NA +Gert,1993,9,21,12,20.8,-102.5,tropical depression,NA,25,1002,NA,NA +Gert,1993,9,21,18,20.8,-104.7,tropical depression,NA,20,1004,NA,NA +Harvey,1993,9,18,18,26.7,-61.8,tropical depression,NA,30,1014,NA,NA +Harvey,1993,9,19,0,27.3,-62,tropical depression,NA,30,1013,NA,NA +Harvey,1993,9,19,6,27.9,-62,tropical depression,NA,30,1012,NA,NA +Harvey,1993,9,19,12,28.5,-61.7,tropical depression,NA,30,1010,NA,NA +Harvey,1993,9,19,18,29.3,-61.1,tropical depression,NA,30,1009,NA,NA +Harvey,1993,9,20,0,30.2,-60.2,tropical depression,NA,30,1008,NA,NA +Harvey,1993,9,20,6,31.5,-59,tropical storm,NA,35,1005,NA,NA +Harvey,1993,9,20,12,33.3,-57.4,tropical storm,NA,50,998,NA,NA +Harvey,1993,9,20,18,35.6,-55.2,hurricane,1,65,990,NA,NA +Harvey,1993,9,21,0,37.8,-52.5,tropical storm,NA,60,992,NA,NA +Harvey,1993,9,21,6,39.8,-49.4,tropical storm,NA,55,994,NA,NA +Harvey,1993,9,21,12,42.5,-46.5,tropical storm,NA,50,997,NA,NA +Harvey,1993,9,21,18,46,-42,extratropical,NA,50,999,NA,NA +AL101993,1993,9,29,18,30,-63.2,tropical depression,NA,30,1012,NA,NA +AL101993,1993,9,30,0,31.7,-63.7,tropical depression,NA,30,1010,NA,NA +AL101993,1993,9,30,6,33.8,-64,tropical depression,NA,30,1009,NA,NA +AL101993,1993,9,30,12,36.9,-64,tropical depression,NA,30,1008,NA,NA +AL101993,1993,9,30,18,39.6,-62.2,tropical depression,NA,30,1008,NA,NA +Alberto,1994,6,30,6,21.7,-83.6,tropical depression,NA,25,1011,NA,NA +Alberto,1994,6,30,12,21.6,-84.3,tropical depression,NA,25,1010,NA,NA +Alberto,1994,6,30,18,21.6,-85.2,tropical depression,NA,30,1008,NA,NA +Alberto,1994,7,1,0,21.5,-85.6,tropical depression,NA,30,1008,NA,NA +Alberto,1994,7,1,6,22,-86.1,tropical depression,NA,30,1008,NA,NA +Alberto,1994,7,1,12,22.5,-86.4,tropical depression,NA,30,1008,NA,NA +Alberto,1994,7,1,18,23,-86.7,tropical depression,NA,30,1007,NA,NA +Alberto,1994,7,2,0,23.7,-87.1,tropical storm,NA,35,1006,NA,NA +Alberto,1994,7,2,6,24.4,-87.5,tropical storm,NA,35,1005,NA,NA +Alberto,1994,7,2,12,25.5,-87.5,tropical storm,NA,40,1003,NA,NA +Alberto,1994,7,2,18,26.5,-86.9,tropical storm,NA,45,1000,NA,NA +Alberto,1994,7,3,0,27.7,-86.8,tropical storm,NA,45,998,NA,NA +Alberto,1994,7,3,6,28.8,-86.8,tropical storm,NA,50,997,NA,NA +Alberto,1994,7,3,12,29.9,-86.7,tropical storm,NA,55,993,NA,NA +Alberto,1994,7,3,15,30.4,-86.5,tropical storm,NA,55,993,NA,NA +Alberto,1994,7,3,18,30.7,-86.3,tropical storm,NA,45,1000,NA,NA +Alberto,1994,7,4,0,31.2,-86.1,tropical depression,NA,25,1004,NA,NA +Alberto,1994,7,4,6,31.7,-85.9,tropical depression,NA,20,1009,NA,NA +Alberto,1994,7,4,12,32.3,-85.5,tropical depression,NA,20,1011,NA,NA +Alberto,1994,7,4,18,32.7,-85.2,tropical depression,NA,20,1014,NA,NA +Alberto,1994,7,5,0,33,-85,tropical depression,NA,20,1014,NA,NA +Alberto,1994,7,5,6,33.2,-84.9,tropical depression,NA,20,1013,NA,NA +Alberto,1994,7,5,12,33.3,-84.8,tropical depression,NA,20,1013,NA,NA +Alberto,1994,7,5,18,33.5,-84.6,tropical depression,NA,20,1012,NA,NA +Alberto,1994,7,6,0,33.4,-84.4,tropical depression,NA,15,1013,NA,NA +Alberto,1994,7,6,6,33.3,-84.5,tropical depression,NA,15,1013,NA,NA +Alberto,1994,7,6,12,33.1,-84.8,tropical depression,NA,15,1013,NA,NA +Alberto,1994,7,6,18,32.8,-85.4,tropical depression,NA,15,1013,NA,NA +Alberto,1994,7,7,0,32.7,-86.3,tropical depression,NA,10,1012,NA,NA +Alberto,1994,7,7,6,32.7,-86.6,tropical depression,NA,10,1012,NA,NA +Alberto,1994,7,7,12,32.8,-86.8,tropical depression,NA,10,1012,NA,NA +Alberto,1994,7,7,18,33,-87,tropical depression,NA,10,1013,NA,NA +AL021994,1994,7,20,6,32.2,-78.9,tropical depression,NA,25,1017,NA,NA +AL021994,1994,7,20,12,33,-79.1,tropical depression,NA,30,1015,NA,NA +AL021994,1994,7,20,14,33.2,-79.2,tropical depression,NA,30,1015,NA,NA +AL021994,1994,7,20,18,33.7,-79.7,tropical depression,NA,25,1016,NA,NA +AL021994,1994,7,21,0,34.4,-80.5,tropical depression,NA,20,1016,NA,NA +AL021994,1994,7,21,6,35.2,-81,tropical depression,NA,15,1016,NA,NA +Beryl,1994,8,14,12,28.7,-87.2,tropical depression,NA,20,1013,NA,NA +Beryl,1994,8,14,18,29.4,-87.3,tropical depression,NA,25,1012,NA,NA +Beryl,1994,8,15,0,29.5,-86.3,tropical depression,NA,25,1009,NA,NA +Beryl,1994,8,15,6,29.6,-85.9,tropical depression,NA,30,1008,NA,NA +Beryl,1994,8,15,12,29.7,-85.6,tropical storm,NA,35,1007,NA,NA +Beryl,1994,8,15,18,29.9,-85.7,tropical storm,NA,45,1004,NA,NA +Beryl,1994,8,16,0,30,-85.6,tropical storm,NA,50,1000,NA,NA +Beryl,1994,8,16,3,30.2,-85.4,tropical storm,NA,50,999,NA,NA +Beryl,1994,8,16,6,30.4,-85.3,tropical storm,NA,50,1003,NA,NA +Beryl,1994,8,16,12,31.3,-85,tropical depression,NA,30,1004,NA,NA +Beryl,1994,8,16,18,32.3,-84.5,tropical depression,NA,25,1005,NA,NA +Beryl,1994,8,17,0,33.3,-83.9,tropical depression,NA,20,1005,NA,NA +Beryl,1994,8,17,6,34.3,-83.5,tropical depression,NA,15,1006,NA,NA +Beryl,1994,8,17,12,35.5,-82.6,tropical depression,NA,15,1009,NA,NA +Beryl,1994,8,17,18,37.5,-81.5,tropical depression,NA,15,1011,NA,NA +Beryl,1994,8,18,0,38.5,-79.6,tropical depression,NA,15,1011,NA,NA +Beryl,1994,8,18,6,39.5,-77.5,tropical depression,NA,15,1011,NA,NA +Beryl,1994,8,18,12,41.2,-76,tropical depression,NA,15,1010,NA,NA +Beryl,1994,8,18,18,41.6,-73.9,tropical depression,NA,15,1010,NA,NA +Beryl,1994,8,19,0,42,-72,tropical depression,NA,15,1012,NA,NA +Chris,1994,8,16,12,11.3,-39.4,tropical depression,NA,30,1010,NA,NA +Chris,1994,8,16,18,11.5,-40.3,tropical depression,NA,30,1008,NA,NA +Chris,1994,8,17,0,11.7,-41.2,tropical storm,NA,35,1006,NA,NA +Chris,1994,8,17,6,12.1,-42.2,tropical storm,NA,40,1003,NA,NA +Chris,1994,8,17,12,12.6,-43.3,tropical storm,NA,50,1000,NA,NA +Chris,1994,8,17,18,13.3,-44.5,tropical storm,NA,60,994,NA,NA +Chris,1994,8,18,0,13.9,-45.6,tropical storm,NA,60,988,NA,NA +Chris,1994,8,18,6,14.5,-46.8,hurricane,1,65,987,NA,NA +Chris,1994,8,18,12,15.2,-48,hurricane,1,65,987,NA,NA +Chris,1994,8,18,18,16,-49.3,hurricane,1,65,987,NA,NA +Chris,1994,8,19,0,17,-50.6,hurricane,1,70,985,NA,NA +Chris,1994,8,19,6,18,-51.9,hurricane,1,70,979,NA,NA +Chris,1994,8,19,12,19,-53.2,hurricane,1,70,979,NA,NA +Chris,1994,8,19,18,20.1,-54.4,hurricane,1,70,980,NA,NA +Chris,1994,8,20,0,21.3,-55.6,hurricane,1,65,984,NA,NA +Chris,1994,8,20,6,22.6,-56.8,tropical storm,NA,60,995,NA,NA +Chris,1994,8,20,12,23.8,-58.2,tropical storm,NA,50,1009,NA,NA +Chris,1994,8,20,18,24.9,-59.7,tropical storm,NA,45,1010,NA,NA +Chris,1994,8,21,0,26.1,-61,tropical storm,NA,40,1011,NA,NA +Chris,1994,8,21,6,27.3,-62.3,tropical storm,NA,35,1012,NA,NA +Chris,1994,8,21,12,28.7,-63.1,tropical storm,NA,35,1013,NA,NA +Chris,1994,8,21,18,30.4,-63.1,tropical storm,NA,35,1013,NA,NA +Chris,1994,8,22,0,32.2,-62.8,tropical storm,NA,35,1012,NA,NA +Chris,1994,8,22,6,33.8,-62.8,tropical storm,NA,35,1008,NA,NA +Chris,1994,8,22,12,35,-63,tropical storm,NA,35,1006,NA,NA +Chris,1994,8,22,18,36.2,-62.3,tropical storm,NA,40,1004,NA,NA +Chris,1994,8,23,0,37.9,-60.7,tropical storm,NA,40,1003,NA,NA +Chris,1994,8,23,6,39.9,-58.4,tropical storm,NA,40,1003,NA,NA +Chris,1994,8,23,12,42.2,-55.5,tropical storm,NA,45,1003,NA,NA +Chris,1994,8,23,18,44.7,-52,tropical storm,NA,45,1003,NA,NA +AL051994,1994,8,29,12,20.5,-93,tropical depression,NA,30,1007,NA,NA +AL051994,1994,8,29,18,20.5,-93.8,tropical depression,NA,30,1007,NA,NA +AL051994,1994,8,30,0,20.6,-94.5,tropical depression,NA,30,1006,NA,NA +AL051994,1994,8,30,6,20.7,-95.2,tropical depression,NA,30,1005,NA,NA +AL051994,1994,8,30,12,21,-95.9,tropical depression,NA,30,1006,NA,NA +AL051994,1994,8,30,18,21.4,-96.5,tropical depression,NA,30,1006,NA,NA +AL051994,1994,8,31,0,21.8,-97.1,tropical depression,NA,30,1006,NA,NA +AL051994,1994,8,31,6,22.4,-98,tropical depression,NA,30,1007,NA,NA +AL051994,1994,8,31,12,23,-99,tropical depression,NA,30,1008,NA,NA +Debby,1994,9,9,12,13.1,-56.8,tropical depression,NA,25,1011,NA,NA +Debby,1994,9,9,18,13.4,-58.3,tropical depression,NA,30,1010,NA,NA +Debby,1994,9,10,0,13.7,-60.2,tropical storm,NA,45,1010,NA,NA +Debby,1994,9,10,3,14,-61,tropical storm,NA,55,1007,NA,NA +Debby,1994,9,10,6,14.1,-61.6,tropical storm,NA,60,1006,NA,NA +Debby,1994,9,10,12,14.6,-63.2,tropical storm,NA,55,1007,NA,NA +Debby,1994,9,10,18,15.1,-64.9,tropical storm,NA,50,1008,NA,NA +Debby,1994,9,11,0,15.5,-66.7,tropical storm,NA,50,1008,NA,NA +Ernesto,1994,9,21,18,10.1,-29.9,tropical depression,NA,25,1010,NA,NA +Ernesto,1994,9,22,0,10.5,-30.2,tropical depression,NA,25,1010,NA,NA +Ernesto,1994,9,22,6,11.1,-30.3,tropical depression,NA,30,1009,NA,NA +Ernesto,1994,9,22,12,11.8,-30.3,tropical storm,NA,35,1005,NA,NA +Ernesto,1994,9,22,18,12.5,-30.3,tropical storm,NA,45,1000,NA,NA +Ernesto,1994,9,23,0,13.1,-30.4,tropical storm,NA,50,997,NA,NA +Ernesto,1994,9,23,6,13.8,-30.5,tropical storm,NA,50,998,NA,NA +Ernesto,1994,9,23,12,14.4,-30.6,tropical storm,NA,45,1000,NA,NA +Ernesto,1994,9,23,18,14.9,-30.6,tropical storm,NA,45,1001,NA,NA +Ernesto,1994,9,24,0,15.4,-30.6,tropical storm,NA,40,1003,NA,NA +Ernesto,1994,9,24,6,15.9,-30.7,tropical storm,NA,35,1005,NA,NA +Ernesto,1994,9,24,12,16.5,-31,tropical depression,NA,30,1007,NA,NA +Ernesto,1994,9,24,18,16.8,-31.3,tropical depression,NA,30,1009,NA,NA +Ernesto,1994,9,25,0,17,-31.6,tropical depression,NA,25,1010,NA,NA +Ernesto,1994,9,25,6,17,-31.9,tropical depression,NA,25,1010,NA,NA +Ernesto,1994,9,25,12,17,-32.1,tropical depression,NA,25,1010,NA,NA +Ernesto,1994,9,25,18,17,-32.3,tropical depression,NA,25,1010,NA,NA +Ernesto,1994,9,26,0,16.8,-33.2,tropical depression,NA,20,1011,NA,NA +AL081994,1994,9,24,12,16,-84.5,tropical depression,NA,25,1008,NA,NA +AL081994,1994,9,24,18,16.3,-85.1,tropical depression,NA,30,1007,NA,NA +AL081994,1994,9,25,0,16.5,-85.9,tropical depression,NA,30,1007,NA,NA +AL081994,1994,9,25,6,16.6,-86.7,tropical depression,NA,30,1006,NA,NA +AL081994,1994,9,25,12,16.7,-87.6,tropical depression,NA,30,1005,NA,NA +AL081994,1994,9,25,18,16.6,-88.4,tropical depression,NA,30,1004,NA,NA +AL081994,1994,9,26,0,16.6,-88.7,tropical depression,NA,30,1006,NA,NA +AL081994,1994,9,26,6,16.6,-88.9,tropical depression,NA,25,1007,NA,NA +AL081994,1994,9,26,12,16.5,-89.2,tropical depression,NA,25,1007,NA,NA +AL081994,1994,9,26,18,16.5,-89.5,tropical depression,NA,25,1007,NA,NA +AL091994,1994,9,27,12,13.8,-20.8,tropical depression,NA,30,1008,NA,NA +AL091994,1994,9,27,18,14.7,-20.9,tropical depression,NA,30,1008,NA,NA +AL091994,1994,9,28,0,15.2,-20.9,tropical depression,NA,30,1007,NA,NA +AL091994,1994,9,28,6,15.5,-21.1,tropical depression,NA,30,1008,NA,NA +AL091994,1994,9,28,12,15.9,-21.5,tropical depression,NA,30,1008,NA,NA +AL091994,1994,9,28,18,16.3,-21.9,tropical depression,NA,30,1008,NA,NA +AL091994,1994,9,29,0,16.5,-22.1,tropical depression,NA,25,1009,NA,NA +AL101994,1994,9,29,6,20.5,-86,tropical depression,NA,25,1007,NA,NA +AL101994,1994,9,29,12,21,-85.5,tropical depression,NA,25,1006,NA,NA +AL101994,1994,9,29,18,22,-85,tropical depression,NA,30,1006,NA,NA +AL101994,1994,9,30,0,22.3,-85,tropical depression,NA,30,1005,NA,NA +AL101994,1994,9,30,6,22.5,-85.2,tropical depression,NA,30,1004,NA,NA +AL101994,1994,9,30,12,23,-85.5,tropical depression,NA,30,1005,NA,NA +AL101994,1994,9,30,18,24,-86,tropical depression,NA,25,1006,NA,NA +Florence,1994,11,2,0,22.7,-47,subtropical depression,NA,30,1011,NA,NA +Florence,1994,11,2,6,23.2,-47.7,subtropical storm,NA,35,1010,NA,NA +Florence,1994,11,2,12,23.8,-48.2,subtropical storm,NA,35,1009,NA,NA +Florence,1994,11,2,18,24.2,-48.9,subtropical storm,NA,35,1008,NA,NA +Florence,1994,11,3,0,24.5,-49.9,subtropical storm,NA,35,1008,NA,NA +Florence,1994,11,3,6,24.7,-50.7,subtropical depression,NA,30,1008,NA,NA +Florence,1994,11,3,12,25,-51.4,subtropical depression,NA,30,1006,NA,NA +Florence,1994,11,3,18,25.3,-52.2,tropical depression,NA,30,1005,NA,NA +Florence,1994,11,4,0,26,-52.6,tropical storm,NA,35,1004,NA,NA +Florence,1994,11,4,6,26.7,-52.9,tropical storm,NA,40,1003,NA,NA +Florence,1994,11,4,12,27.3,-53.4,tropical storm,NA,50,999,NA,NA +Florence,1994,11,4,18,28.1,-54,hurricane,1,65,990,NA,NA +Florence,1994,11,5,0,28.8,-54.6,hurricane,1,65,987,NA,NA +Florence,1994,11,5,6,29.4,-55.1,hurricane,1,65,986,NA,NA +Florence,1994,11,5,12,30,-55.7,hurricane,1,70,984,NA,NA +Florence,1994,11,5,18,30.6,-56.2,hurricane,1,75,981,NA,NA +Florence,1994,11,6,0,31.3,-56.7,hurricane,1,75,980,NA,NA +Florence,1994,11,6,6,32,-56.9,hurricane,1,75,980,NA,NA +Florence,1994,11,6,12,32.6,-57,hurricane,1,75,980,NA,NA +Florence,1994,11,6,18,33,-56.9,hurricane,1,65,982,NA,NA +Florence,1994,11,7,0,33.3,-56.5,hurricane,1,65,982,NA,NA +Florence,1994,11,7,6,33.7,-56,hurricane,1,70,981,NA,NA +Florence,1994,11,7,12,34.4,-54.8,hurricane,1,80,975,NA,NA +Florence,1994,11,7,18,35.4,-53.1,hurricane,2,90,972,NA,NA +Florence,1994,11,8,0,37,-49.9,hurricane,2,95,972,NA,NA +Florence,1994,11,8,6,39.2,-45.5,hurricane,2,95,974,NA,NA +Florence,1994,11,8,12,41.8,-40.7,hurricane,2,85,977,NA,NA +Florence,1994,11,8,18,44.2,-36.2,hurricane,1,75,982,NA,NA +Gordon,1994,11,8,12,11.9,-82.3,tropical depression,NA,25,1009,NA,NA +Gordon,1994,11,8,18,12,-82.5,tropical depression,NA,25,1008,NA,NA +Gordon,1994,11,9,0,12.3,-82.8,tropical depression,NA,30,1007,NA,NA +Gordon,1994,11,9,6,12.5,-83,tropical depression,NA,30,1007,NA,NA +Gordon,1994,11,9,12,12.8,-83.2,tropical depression,NA,30,1007,NA,NA +Gordon,1994,11,9,18,13.2,-83.4,tropical depression,NA,30,1007,NA,NA +Gordon,1994,11,10,0,13.6,-83.4,tropical depression,NA,30,1007,NA,NA +Gordon,1994,11,10,6,14,-83.4,tropical depression,NA,30,1008,NA,NA +Gordon,1994,11,10,12,14.3,-83.2,tropical depression,NA,30,1008,NA,NA +Gordon,1994,11,10,18,14.6,-82.7,tropical storm,NA,35,1006,NA,NA +Gordon,1994,11,11,0,15.1,-82.4,tropical storm,NA,35,1006,NA,NA +Gordon,1994,11,11,6,15.7,-82.3,tropical storm,NA,35,1003,NA,NA +Gordon,1994,11,11,12,16.3,-82.2,tropical storm,NA,35,1005,NA,NA +Gordon,1994,11,11,18,16.9,-81.5,tropical storm,NA,35,1004,NA,NA +Gordon,1994,11,12,0,17.2,-80.8,tropical storm,NA,40,1000,NA,NA +Gordon,1994,11,12,6,17.4,-80.2,tropical storm,NA,40,999,NA,NA +Gordon,1994,11,12,12,17.5,-79.8,tropical storm,NA,40,999,NA,NA +Gordon,1994,11,12,18,17.4,-79.2,tropical storm,NA,35,999,NA,NA +Gordon,1994,11,13,0,17.6,-77.9,tropical storm,NA,35,999,NA,NA +Gordon,1994,11,13,3,17.9,-76.8,tropical storm,NA,35,1000,NA,NA +Gordon,1994,11,13,6,18.3,-76,tropical storm,NA,40,1001,NA,NA +Gordon,1994,11,13,12,19.9,-75,tropical storm,NA,40,1000,NA,NA +Gordon,1994,11,13,13,20,-74.9,tropical storm,NA,40,1000,NA,NA +Gordon,1994,11,13,18,21.5,-75.4,tropical storm,NA,40,1001,NA,NA +Gordon,1994,11,14,0,22.1,-76.3,tropical storm,NA,40,999,NA,NA +Gordon,1994,11,14,6,22.7,-77.5,tropical storm,NA,45,998,NA,NA +Gordon,1994,11,14,12,23.2,-78.3,tropical storm,NA,45,997,NA,NA +Gordon,1994,11,14,18,23.4,-79.1,tropical storm,NA,45,998,NA,NA +Gordon,1994,11,15,0,23.6,-79.9,tropical storm,NA,45,998,NA,NA +Gordon,1994,11,15,6,23.9,-80.8,tropical storm,NA,45,999,NA,NA +Gordon,1994,11,15,12,24.5,-81.6,tropical storm,NA,45,999,NA,NA +Gordon,1994,11,15,13,24.6,-81.7,tropical storm,NA,45,999,NA,NA +Gordon,1994,11,15,18,24.9,-82.1,tropical storm,NA,45,998,NA,NA +Gordon,1994,11,16,0,25.4,-82.5,tropical storm,NA,45,998,NA,NA +Gordon,1994,11,16,6,25.7,-82.4,tropical storm,NA,45,997,NA,NA +Gordon,1994,11,16,12,26.4,-82,tropical storm,NA,45,995,NA,NA +Gordon,1994,11,16,13,26.5,-81.9,tropical storm,NA,45,996,NA,NA +Gordon,1994,11,16,18,27.1,-81.4,tropical storm,NA,45,995,NA,NA +Gordon,1994,11,17,0,28,-80,tropical storm,NA,55,993,NA,NA +Gordon,1994,11,17,6,29,-78.5,tropical storm,NA,55,989,NA,NA +Gordon,1994,11,17,12,30,-76.7,tropical storm,NA,60,987,NA,NA +Gordon,1994,11,17,18,31.5,-74.8,hurricane,1,65,981,NA,NA +Gordon,1994,11,18,0,33.1,-74.2,hurricane,1,75,980,NA,NA +Gordon,1994,11,18,6,33.5,-74.7,hurricane,1,70,981,NA,NA +Gordon,1994,11,18,12,33.7,-75.7,hurricane,1,70,984,NA,NA +Gordon,1994,11,18,18,33.2,-75.9,tropical storm,NA,60,986,NA,NA +Gordon,1994,11,19,0,32.5,-75.5,tropical storm,NA,50,992,NA,NA +Gordon,1994,11,19,6,31.6,-75,tropical storm,NA,45,996,NA,NA +Gordon,1994,11,19,12,31.1,-74.8,tropical storm,NA,40,1000,NA,NA +Gordon,1994,11,19,18,30.4,-75,tropical storm,NA,35,1005,NA,NA +Gordon,1994,11,20,0,29.8,-75.3,tropical storm,NA,35,1007,NA,NA +Gordon,1994,11,20,6,28.9,-76.2,tropical depression,NA,30,1008,NA,NA +Gordon,1994,11,20,12,28.4,-77.2,tropical depression,NA,30,1009,NA,NA +Gordon,1994,11,20,18,28.2,-78.6,tropical depression,NA,25,1009,NA,NA +Gordon,1994,11,21,0,28.2,-79.8,tropical depression,NA,25,1010,NA,NA +Gordon,1994,11,21,3,28.5,-80.6,tropical depression,NA,25,1011,NA,NA +Gordon,1994,11,21,6,29.2,-81.5,tropical depression,NA,20,1012,NA,NA +Gordon,1994,11,21,12,31.3,-81.8,tropical depression,NA,20,1013,NA,NA +Gordon,1994,11,21,18,34.1,-79.8,tropical depression,NA,20,1013,NA,NA +Allison,1995,6,3,0,17.4,-84.3,tropical depression,NA,30,1005,NA,NA +Allison,1995,6,3,6,18.3,-84.9,tropical depression,NA,30,1004,NA,NA +Allison,1995,6,3,12,19.3,-85.7,tropical storm,NA,35,1003,NA,NA +Allison,1995,6,3,18,20.6,-85.8,tropical storm,NA,40,1001,NA,NA +Allison,1995,6,4,0,22,-86,tropical storm,NA,50,997,NA,NA +Allison,1995,6,4,6,23.3,-86.3,tropical storm,NA,60,995,NA,NA +Allison,1995,6,4,12,24.7,-86.2,hurricane,1,65,987,NA,NA +Allison,1995,6,4,18,26.2,-86.2,hurricane,1,65,988,NA,NA +Allison,1995,6,5,0,27.6,-86.1,hurricane,1,65,988,NA,NA +Allison,1995,6,5,6,28.5,-85.6,tropical storm,NA,60,990,NA,NA +Allison,1995,6,5,12,29.6,-84.7,tropical storm,NA,60,990,NA,NA +Allison,1995,6,5,14,29.9,-84.4,tropical storm,NA,60,991,NA,NA +Allison,1995,6,5,15,30.1,-84.2,tropical storm,NA,55,991,NA,NA +Allison,1995,6,5,18,30.7,-83.8,tropical storm,NA,45,993,NA,NA +Allison,1995,6,6,0,31.8,-82.8,tropical depression,NA,30,993,NA,NA +Allison,1995,6,6,6,32.7,-81.5,extratropical,NA,35,994,NA,NA +Allison,1995,6,6,12,33.6,-80,extratropical,NA,35,995,NA,NA +Allison,1995,6,6,18,34.5,-78.1,extratropical,NA,40,995,NA,NA +Allison,1995,6,7,0,35.6,-75.9,extratropical,NA,40,992,NA,NA +Allison,1995,6,7,6,37.1,-73.6,extratropical,NA,45,990,NA,NA +Allison,1995,6,7,12,38.5,-71,extratropical,NA,45,988,NA,NA +Allison,1995,6,7,18,39.8,-69.2,extratropical,NA,45,984,NA,NA +Allison,1995,6,8,0,41,-67.7,extratropical,NA,50,982,NA,NA +Allison,1995,6,8,6,42.4,-66,extratropical,NA,50,984,NA,NA +Allison,1995,6,8,12,43.8,-63.7,extratropical,NA,50,989,NA,NA +Allison,1995,6,8,18,45.2,-61.2,extratropical,NA,45,993,NA,NA +Allison,1995,6,9,0,46.5,-58.5,extratropical,NA,40,995,NA,NA +Allison,1995,6,9,6,48.1,-55.9,extratropical,NA,40,996,NA,NA +Allison,1995,6,9,12,50,-53,extratropical,NA,40,997,NA,NA +Allison,1995,6,9,18,53,-52,extratropical,NA,40,1000,NA,NA +Allison,1995,6,10,0,57,-52,extratropical,NA,40,997,NA,NA +Allison,1995,6,10,6,60,-52,extratropical,NA,40,990,NA,NA +Allison,1995,6,10,12,62,-53,extratropical,NA,40,992,NA,NA +Allison,1995,6,10,18,64,-55,extratropical,NA,35,992,NA,NA +Allison,1995,6,11,0,65,-56,extratropical,NA,35,993,NA,NA +Barry,1995,7,5,6,32,-72,tropical depression,NA,20,1019,NA,NA +Barry,1995,7,5,12,32,-72,tropical depression,NA,20,1019,NA,NA +Barry,1995,7,5,18,31.9,-72,tropical depression,NA,20,1018,NA,NA +Barry,1995,7,6,0,31.8,-72,tropical depression,NA,25,1017,NA,NA +Barry,1995,7,6,6,31.7,-71.9,tropical depression,NA,25,1016,NA,NA +Barry,1995,7,6,12,31.5,-71.7,tropical depression,NA,30,1013,NA,NA +Barry,1995,7,6,18,31.3,-71.6,tropical depression,NA,30,1011,NA,NA +Barry,1995,7,7,0,31.3,-71.3,tropical depression,NA,30,1009,NA,NA +Barry,1995,7,7,6,31.6,-71,tropical storm,NA,35,1007,NA,NA +Barry,1995,7,7,12,32.2,-70.6,tropical storm,NA,40,1004,NA,NA +Barry,1995,7,7,18,33.2,-70.2,tropical storm,NA,60,1001,NA,NA +Barry,1995,7,7,21,33.6,-69.9,tropical storm,NA,60,998,NA,NA +Barry,1995,7,8,0,34,-69.6,tropical storm,NA,60,997,NA,NA +Barry,1995,7,8,6,34.9,-68.9,tropical storm,NA,55,997,NA,NA +Barry,1995,7,8,12,35.9,-68.2,tropical storm,NA,50,997,NA,NA +Barry,1995,7,8,18,37.2,-67.2,tropical storm,NA,50,997,NA,NA +Barry,1995,7,9,0,38.7,-66,tropical storm,NA,50,996,NA,NA +Barry,1995,7,9,6,40.5,-64.6,tropical storm,NA,50,995,NA,NA +Barry,1995,7,9,12,42.3,-63.1,tropical storm,NA,50,993,NA,NA +Barry,1995,7,9,18,44.3,-61.7,tropical storm,NA,50,991,NA,NA +Barry,1995,7,9,21,45.3,-61,tropical storm,NA,50,990,NA,NA +Barry,1995,7,9,22,45.6,-60.8,tropical storm,NA,45,990,NA,NA +Barry,1995,7,10,0,46.4,-60.5,tropical storm,NA,45,990,NA,NA +Barry,1995,7,10,6,48.5,-59.2,tropical storm,NA,40,989,NA,NA +Chantal,1995,7,12,0,17.1,-54.9,tropical depression,NA,25,1012,NA,NA +Chantal,1995,7,12,6,17.5,-56.5,tropical depression,NA,25,1012,NA,NA +Chantal,1995,7,12,12,18.1,-58.3,tropical depression,NA,25,1012,NA,NA +Chantal,1995,7,12,18,18.7,-59.9,tropical depression,NA,30,1011,NA,NA +Chantal,1995,7,13,0,19.2,-61,tropical depression,NA,30,1011,NA,NA +Chantal,1995,7,13,6,19.6,-61.9,tropical depression,NA,30,1011,NA,NA +Chantal,1995,7,13,12,20.1,-62.7,tropical depression,NA,30,1010,NA,NA +Chantal,1995,7,13,18,20.6,-63.6,tropical depression,NA,30,1010,NA,NA +Chantal,1995,7,14,0,21.1,-64.4,tropical storm,NA,35,1006,NA,NA +Chantal,1995,7,14,6,21.1,-64.9,tropical storm,NA,35,1008,NA,NA +Chantal,1995,7,14,12,21.1,-65.2,tropical storm,NA,35,1009,NA,NA +Chantal,1995,7,14,18,21.3,-65.5,tropical storm,NA,40,1010,NA,NA +Chantal,1995,7,15,0,21.8,-66,tropical storm,NA,40,1009,NA,NA +Chantal,1995,7,15,6,22.3,-66.7,tropical storm,NA,45,1006,NA,NA +Chantal,1995,7,15,12,22.7,-67.5,tropical storm,NA,45,1006,NA,NA +Chantal,1995,7,15,18,23.2,-67.9,tropical storm,NA,45,1005,NA,NA +Chantal,1995,7,16,0,23.7,-68.2,tropical storm,NA,45,1004,NA,NA +Chantal,1995,7,16,6,24.5,-68.4,tropical storm,NA,50,999,NA,NA +Chantal,1995,7,16,12,25.3,-68.8,tropical storm,NA,50,999,NA,NA +Chantal,1995,7,16,18,26.2,-69.1,tropical storm,NA,55,997,NA,NA +Chantal,1995,7,17,0,27.2,-69.4,tropical storm,NA,60,991,NA,NA +Chantal,1995,7,17,6,28.2,-69.6,tropical storm,NA,60,995,NA,NA +Chantal,1995,7,17,12,29.3,-69.8,tropical storm,NA,60,997,NA,NA +Chantal,1995,7,17,18,30.5,-69.8,tropical storm,NA,55,995,NA,NA +Chantal,1995,7,18,0,31.6,-69.7,tropical storm,NA,55,994,NA,NA +Chantal,1995,7,18,6,32.6,-69,tropical storm,NA,55,994,NA,NA +Chantal,1995,7,18,12,33.6,-68.1,tropical storm,NA,50,995,NA,NA +Chantal,1995,7,18,18,34.6,-67.3,tropical storm,NA,50,996,NA,NA +Chantal,1995,7,19,0,35.4,-65.8,tropical storm,NA,50,997,NA,NA +Chantal,1995,7,19,6,36.2,-64.1,tropical storm,NA,50,997,NA,NA +Chantal,1995,7,19,12,37.1,-62.4,tropical storm,NA,50,998,NA,NA +Chantal,1995,7,19,18,38.2,-60.2,tropical storm,NA,50,998,NA,NA +Chantal,1995,7,20,0,39.5,-57.6,tropical storm,NA,50,999,NA,NA +Chantal,1995,7,20,6,41.1,-54.7,tropical storm,NA,50,999,NA,NA +Chantal,1995,7,20,12,43,-51.7,tropical storm,NA,50,1000,NA,NA +Chantal,1995,7,20,18,45.4,-48.8,extratropical,NA,50,1000,NA,NA +Chantal,1995,7,21,0,47.7,-45.2,extratropical,NA,50,1001,NA,NA +Chantal,1995,7,21,6,49.7,-41.6,extratropical,NA,50,1002,NA,NA +Chantal,1995,7,21,12,51.4,-37,extratropical,NA,50,1003,NA,NA +Chantal,1995,7,21,18,53,-31,extratropical,NA,50,1005,NA,NA +Chantal,1995,7,22,0,55,-20,extratropical,NA,50,1005,NA,NA +Dean,1995,7,28,18,26.2,-86.6,tropical depression,NA,25,1009,NA,NA +Dean,1995,7,29,0,26.1,-87.3,tropical depression,NA,30,1008,NA,NA +Dean,1995,7,29,6,26.2,-87.9,tropical depression,NA,30,1008,NA,NA +Dean,1995,7,29,12,26.3,-88.3,tropical depression,NA,30,1008,NA,NA +Dean,1995,7,29,18,26.5,-89.4,tropical depression,NA,30,1007,NA,NA +Dean,1995,7,30,0,26.9,-90.6,tropical depression,NA,30,1007,NA,NA +Dean,1995,7,30,6,27.6,-91.7,tropical depression,NA,30,1006,NA,NA +Dean,1995,7,30,12,28.1,-93,tropical depression,NA,30,1005,NA,NA +Dean,1995,7,30,18,28.6,-94,tropical storm,NA,35,1003,NA,NA +Dean,1995,7,31,0,29,-95,tropical storm,NA,40,999,NA,NA +Dean,1995,7,31,2,29.2,-95.3,tropical storm,NA,40,999,NA,NA +Dean,1995,7,31,6,29.5,-95.5,tropical depression,NA,30,1002,NA,NA +Dean,1995,7,31,12,30,-96,tropical depression,NA,25,1003,NA,NA +Dean,1995,7,31,18,30.5,-96.5,tropical depression,NA,20,1003,NA,NA +Dean,1995,8,1,0,31.5,-97,tropical depression,NA,20,1004,NA,NA +Dean,1995,8,1,6,32,-97.5,tropical depression,NA,20,1004,NA,NA +Dean,1995,8,1,12,33,-98.5,tropical depression,NA,20,1004,NA,NA +Dean,1995,8,1,18,33,-98.5,tropical depression,NA,20,1004,NA,NA +Dean,1995,8,2,0,33,-98.5,tropical depression,NA,20,1004,NA,NA +Dean,1995,8,2,6,33,-98.5,tropical depression,NA,20,1004,NA,NA +Dean,1995,8,2,12,33,-98.5,tropical depression,NA,20,1004,NA,NA +Dean,1995,8,2,18,33,-98.5,tropical depression,NA,20,1004,NA,NA +Erin,1995,7,31,0,22.3,-73.2,tropical storm,NA,45,1004,NA,NA +Erin,1995,7,31,6,22.6,-73.6,tropical storm,NA,50,1003,NA,NA +Erin,1995,7,31,12,22.8,-73.9,tropical storm,NA,55,999,NA,NA +Erin,1995,7,31,18,23.2,-74.3,tropical storm,NA,60,997,NA,NA +Erin,1995,8,1,0,23.6,-74.9,hurricane,1,70,992,NA,NA +Erin,1995,8,1,6,24.3,-75.7,hurricane,1,75,988,NA,NA +Erin,1995,8,1,12,25.5,-76.3,hurricane,1,75,985,NA,NA +Erin,1995,8,1,18,26.3,-77.7,hurricane,1,75,980,NA,NA +Erin,1995,8,2,0,26.9,-79,hurricane,1,75,982,NA,NA +Erin,1995,8,2,6,27.7,-80.4,hurricane,1,75,985,NA,NA +Erin,1995,8,2,6,27.7,-80.3,hurricane,1,75,984,NA,NA +Erin,1995,8,2,12,28.2,-81.9,tropical storm,NA,50,990,NA,NA +Erin,1995,8,2,18,28.6,-83.4,tropical storm,NA,60,988,NA,NA +Erin,1995,8,3,0,28.8,-84.7,hurricane,1,65,985,NA,NA +Erin,1995,8,3,6,29.3,-85.7,hurricane,1,70,979,NA,NA +Erin,1995,8,3,12,29.8,-86.6,hurricane,1,80,974,NA,NA +Erin,1995,8,3,13,30,-86.8,hurricane,2,85,973,NA,NA +Erin,1995,8,3,16,30.3,-87.2,hurricane,1,75,973,NA,NA +Erin,1995,8,3,18,30.6,-87.5,hurricane,1,65,985,NA,NA +Erin,1995,8,4,0,31.4,-88.5,tropical storm,NA,45,997,NA,NA +Erin,1995,8,4,6,32.3,-89.1,tropical storm,NA,35,1001,NA,NA +Erin,1995,8,4,12,33.2,-89.7,tropical depression,NA,20,1003,NA,NA +Erin,1995,8,4,18,34.1,-90.2,tropical depression,NA,20,1003,NA,NA +Erin,1995,8,5,0,34.8,-90.2,tropical depression,NA,20,1003,NA,NA +Erin,1995,8,5,6,35.4,-90.1,tropical depression,NA,20,1003,NA,NA +Erin,1995,8,5,12,36.3,-89.8,tropical depression,NA,20,1003,NA,NA +Erin,1995,8,5,18,37.5,-88.8,tropical depression,NA,20,1003,NA,NA +Erin,1995,8,6,0,38.4,-86.8,tropical depression,NA,20,1003,NA,NA +Erin,1995,8,6,6,38.7,-84.9,tropical depression,NA,20,1005,NA,NA +Erin,1995,8,6,12,38.8,-82,tropical depression,NA,20,1008,NA,NA +AL061995,1995,8,5,18,20.2,-95.2,tropical depression,NA,20,1008,NA,NA +AL061995,1995,8,6,0,20.5,-95.6,tropical depression,NA,20,1005,NA,NA +AL061995,1995,8,6,6,20.7,-95.9,tropical depression,NA,20,1004,NA,NA +AL061995,1995,8,6,12,20.9,-96.2,tropical depression,NA,25,1003,NA,NA +AL061995,1995,8,6,18,21.2,-96.7,tropical depression,NA,30,1003,NA,NA +AL061995,1995,8,6,23,21.5,-97.4,tropical depression,NA,30,1002,NA,NA +AL061995,1995,8,7,0,21.5,-97.5,tropical depression,NA,30,1002,NA,NA +AL061995,1995,8,7,6,21.7,-98.2,tropical depression,NA,30,1003,NA,NA +AL061995,1995,8,7,12,21.8,-99,tropical depression,NA,20,1003,NA,NA +Felix,1995,8,8,0,14.3,-30.8,tropical depression,NA,30,1010,NA,NA +Felix,1995,8,8,6,14.7,-32.5,tropical depression,NA,30,1008,NA,NA +Felix,1995,8,8,12,15,-34.4,tropical depression,NA,30,1007,NA,NA +Felix,1995,8,8,18,15.5,-36.4,tropical storm,NA,35,1005,NA,NA +Felix,1995,8,9,0,15.7,-38.3,tropical storm,NA,40,1004,NA,NA +Felix,1995,8,9,6,16,-40.2,tropical storm,NA,45,1003,NA,NA +Felix,1995,8,9,12,16.2,-41.9,tropical storm,NA,45,1001,NA,NA +Felix,1995,8,9,18,16.6,-43.7,tropical storm,NA,45,1000,NA,NA +Felix,1995,8,10,0,17,-45.6,tropical storm,NA,50,998,NA,NA +Felix,1995,8,10,6,17.5,-47.4,tropical storm,NA,55,995,NA,NA +Felix,1995,8,10,12,18,-49.1,tropical storm,NA,60,993,NA,NA +Felix,1995,8,10,18,18.4,-50.8,tropical storm,NA,60,991,NA,NA +Felix,1995,8,11,0,18.9,-52.4,hurricane,1,65,987,NA,NA +Felix,1995,8,11,6,19.6,-53.9,hurricane,1,70,980,NA,NA +Felix,1995,8,11,12,20.4,-55.4,hurricane,1,80,972,NA,NA +Felix,1995,8,11,18,21.3,-56.5,hurricane,2,90,965,NA,NA +Felix,1995,8,12,0,22.1,-57.8,hurricane,3,100,955,NA,NA +Felix,1995,8,12,6,22.9,-59,hurricane,3,110,943,NA,NA +Felix,1995,8,12,12,23.6,-60.2,hurricane,4,115,932,NA,NA +Felix,1995,8,12,18,24.3,-61,hurricane,4,120,929,NA,NA +Felix,1995,8,13,0,25.1,-61.6,hurricane,4,115,930,NA,NA +Felix,1995,8,13,6,25.9,-61.9,hurricane,3,105,937,NA,NA +Felix,1995,8,13,12,26.6,-62.3,hurricane,3,100,942,NA,NA +Felix,1995,8,13,18,27.4,-62.3,hurricane,2,95,947,NA,NA +Felix,1995,8,14,0,28.2,-62.5,hurricane,2,90,948,NA,NA +Felix,1995,8,14,6,29,-62.9,hurricane,1,80,954,NA,NA +Felix,1995,8,14,12,29.9,-63.4,hurricane,1,80,962,NA,NA +Felix,1995,8,14,18,30.7,-64.1,hurricane,1,75,962,NA,NA +Felix,1995,8,15,0,31.3,-65.1,hurricane,1,75,962,NA,NA +Felix,1995,8,15,6,31.9,-66.2,hurricane,1,75,964,NA,NA +Felix,1995,8,15,12,32.5,-67.4,hurricane,1,70,968,NA,NA +Felix,1995,8,15,18,33.1,-68.8,hurricane,1,70,965,NA,NA +Felix,1995,8,16,0,33.5,-70.1,hurricane,1,70,963,NA,NA +Felix,1995,8,16,6,34,-71.3,hurricane,1,70,966,NA,NA +Felix,1995,8,16,12,34.6,-72.4,hurricane,1,70,968,NA,NA +Felix,1995,8,16,18,34.8,-72.7,hurricane,1,70,970,NA,NA +Felix,1995,8,17,0,35.3,-72.9,hurricane,1,65,968,NA,NA +Felix,1995,8,17,6,35.6,-72.9,hurricane,1,65,971,NA,NA +Felix,1995,8,17,12,36.1,-72.7,hurricane,1,65,972,NA,NA +Felix,1995,8,17,18,36.5,-72.2,hurricane,1,65,973,NA,NA +Felix,1995,8,18,0,36.8,-71.5,hurricane,1,65,973,NA,NA +Felix,1995,8,18,6,37.1,-70.7,hurricane,1,65,971,NA,NA +Felix,1995,8,18,12,37.1,-69.9,hurricane,1,65,970,NA,NA +Felix,1995,8,18,18,36.9,-68.9,hurricane,1,70,971,NA,NA +Felix,1995,8,19,0,36.6,-68.1,hurricane,1,70,970,NA,NA +Felix,1995,8,19,6,36.1,-67.8,hurricane,1,70,970,NA,NA +Felix,1995,8,19,12,35.7,-67.5,hurricane,1,70,971,NA,NA +Felix,1995,8,19,18,35.4,-67.4,hurricane,1,70,973,NA,NA +Felix,1995,8,20,0,35.1,-67.5,hurricane,1,65,976,NA,NA +Felix,1995,8,20,6,35,-67.9,tropical storm,NA,60,979,NA,NA +Felix,1995,8,20,12,35.4,-68.2,tropical storm,NA,60,982,NA,NA +Felix,1995,8,20,18,35.9,-68.3,tropical storm,NA,60,985,NA,NA +Felix,1995,8,21,0,36.6,-67.8,tropical storm,NA,60,986,NA,NA +Felix,1995,8,21,6,37.7,-67,tropical storm,NA,55,988,NA,NA +Felix,1995,8,21,12,39,-66.1,tropical storm,NA,50,989,NA,NA +Felix,1995,8,21,18,40.6,-63.3,tropical storm,NA,50,988,NA,NA +Felix,1995,8,22,0,42.5,-59.8,tropical storm,NA,50,987,NA,NA +Felix,1995,8,22,6,44.5,-55.8,tropical storm,NA,50,986,NA,NA +Felix,1995,8,22,12,46.8,-50.8,tropical storm,NA,50,985,NA,NA +Felix,1995,8,22,18,49,-46,extratropical,NA,50,985,NA,NA +Felix,1995,8,23,0,50.8,-40.5,extratropical,NA,50,985,NA,NA +Felix,1995,8,23,6,53.5,-35.5,extratropical,NA,50,985,NA,NA +Felix,1995,8,23,12,56,-34,extratropical,NA,50,986,NA,NA +Felix,1995,8,23,18,58,-31,extratropical,NA,50,987,NA,NA +Felix,1995,8,24,0,59.5,-26,extratropical,NA,50,988,NA,NA +Felix,1995,8,24,6,60,-20,extratropical,NA,45,988,NA,NA +Felix,1995,8,24,12,60,-14,extratropical,NA,40,989,NA,NA +Felix,1995,8,24,18,60,-7.5,extratropical,NA,35,990,NA,NA +Felix,1995,8,25,0,61.5,-1,extratropical,NA,35,992,NA,NA +Gabrielle,1995,8,9,18,23.7,-94.8,tropical depression,NA,30,1007,NA,NA +Gabrielle,1995,8,10,0,23.7,-95.4,tropical depression,NA,30,1004,NA,NA +Gabrielle,1995,8,10,6,23.7,-96.2,tropical depression,NA,30,1002,NA,NA +Gabrielle,1995,8,10,12,23.5,-96.5,tropical storm,NA,35,999,NA,NA +Gabrielle,1995,8,10,18,23.1,-96.7,tropical storm,NA,40,997,NA,NA +Gabrielle,1995,8,11,0,23,-96.7,tropical storm,NA,45,995,NA,NA +Gabrielle,1995,8,11,6,23.1,-97,tropical storm,NA,50,993,NA,NA +Gabrielle,1995,8,11,12,23.3,-97.2,tropical storm,NA,55,991,NA,NA +Gabrielle,1995,8,11,18,23.6,-97.5,tropical storm,NA,60,990,NA,NA +Gabrielle,1995,8,11,20,23.7,-97.8,tropical storm,NA,60,988,NA,NA +Gabrielle,1995,8,12,0,23.9,-98.2,tropical depression,NA,30,999,NA,NA +Humberto,1995,8,22,0,13.2,-33,tropical depression,NA,30,1009,NA,NA +Humberto,1995,8,22,6,13.7,-34.3,tropical storm,NA,35,1005,NA,NA +Humberto,1995,8,22,12,14.2,-35.2,tropical storm,NA,45,1002,NA,NA +Humberto,1995,8,22,18,14.6,-36.2,tropical storm,NA,50,998,NA,NA +Humberto,1995,8,23,0,14.8,-37.3,tropical storm,NA,60,995,NA,NA +Humberto,1995,8,23,6,14.9,-38.3,hurricane,1,65,987,NA,NA +Humberto,1995,8,23,12,15,-39.2,hurricane,1,70,985,NA,NA +Humberto,1995,8,23,18,15.1,-40.3,hurricane,1,75,982,NA,NA +Humberto,1995,8,24,0,15.2,-41,hurricane,1,80,975,NA,NA +Humberto,1995,8,24,6,15.3,-41.9,hurricane,2,85,973,NA,NA +Humberto,1995,8,24,12,15.4,-42.6,hurricane,2,90,971,NA,NA +Humberto,1995,8,24,18,15.7,-43.2,hurricane,2,95,968,NA,NA +Humberto,1995,8,25,0,16.1,-43.8,hurricane,2,90,970,NA,NA +Humberto,1995,8,25,6,16.7,-44.4,hurricane,2,90,970,NA,NA +Humberto,1995,8,25,12,17.6,-45.1,hurricane,2,90,970,NA,NA +Humberto,1995,8,25,18,18.5,-45.9,hurricane,2,90,970,NA,NA +Humberto,1995,8,26,0,19.4,-46.6,hurricane,2,90,970,NA,NA +Humberto,1995,8,26,6,20,-47.2,hurricane,2,90,970,NA,NA +Humberto,1995,8,26,12,20.6,-47.6,hurricane,2,85,972,NA,NA +Humberto,1995,8,26,18,21.4,-48,hurricane,1,80,975,NA,NA +Humberto,1995,8,27,0,22.2,-48.2,hurricane,1,80,980,NA,NA +Humberto,1995,8,27,6,22.9,-48,hurricane,1,75,982,NA,NA +Humberto,1995,8,27,12,24.1,-48.2,hurricane,1,70,984,NA,NA +Humberto,1995,8,27,18,25.4,-48.4,hurricane,1,70,986,NA,NA +Humberto,1995,8,28,0,26.4,-48.6,hurricane,1,65,992,NA,NA +Humberto,1995,8,28,6,27.1,-48.8,hurricane,1,65,994,NA,NA +Humberto,1995,8,28,12,27.7,-49.1,hurricane,1,65,991,NA,NA +Humberto,1995,8,28,18,28.4,-49.3,hurricane,1,65,987,NA,NA +Humberto,1995,8,29,0,29,-49.4,hurricane,1,65,985,NA,NA +Humberto,1995,8,29,6,29.5,-49.4,hurricane,1,70,983,NA,NA +Humberto,1995,8,29,12,30,-49.2,hurricane,1,75,981,NA,NA +Humberto,1995,8,29,18,30.6,-48.9,hurricane,1,75,979,NA,NA +Humberto,1995,8,30,0,31.3,-48.3,hurricane,1,80,978,NA,NA +Humberto,1995,8,30,6,32.8,-47.1,hurricane,1,80,976,NA,NA +Humberto,1995,8,30,12,34,-45.7,hurricane,1,80,974,NA,NA +Humberto,1995,8,30,18,35.2,-44,hurricane,1,80,971,NA,NA +Humberto,1995,8,31,0,36,-41.9,hurricane,1,80,970,NA,NA +Humberto,1995,8,31,6,37.1,-40,hurricane,1,80,971,NA,NA +Humberto,1995,8,31,12,38.3,-39,hurricane,1,70,985,NA,NA +Humberto,1995,8,31,18,39.1,-38.2,tropical storm,NA,60,995,NA,NA +Humberto,1995,9,1,0,40,-37,tropical storm,NA,45,1000,NA,NA +Iris,1995,8,22,12,13.2,-49.3,tropical depression,NA,30,1008,NA,NA +Iris,1995,8,22,18,13.3,-50.6,tropical storm,NA,35,1007,NA,NA +Iris,1995,8,23,0,13.7,-51.8,tropical storm,NA,35,1006,NA,NA +Iris,1995,8,23,6,14,-52.5,tropical storm,NA,40,1004,NA,NA +Iris,1995,8,23,12,14.5,-53,tropical storm,NA,55,998,NA,NA +Iris,1995,8,23,18,15,-53.4,hurricane,1,75,991,NA,NA +Iris,1995,8,24,0,15.2,-53.8,hurricane,1,70,992,NA,NA +Iris,1995,8,24,6,15,-54.3,hurricane,1,70,992,NA,NA +Iris,1995,8,24,12,14.8,-55.1,hurricane,1,65,992,NA,NA +Iris,1995,8,24,18,14.6,-56,tropical storm,NA,60,992,NA,NA +Iris,1995,8,25,0,14.5,-56.8,tropical storm,NA,55,995,NA,NA +Iris,1995,8,25,6,14.3,-57.8,tropical storm,NA,55,996,NA,NA +Iris,1995,8,25,12,14.2,-58.8,tropical storm,NA,55,999,NA,NA +Iris,1995,8,25,18,14.2,-59.8,tropical storm,NA,50,998,NA,NA +Iris,1995,8,26,0,14,-60.3,tropical storm,NA,50,1000,NA,NA +Iris,1995,8,26,6,14.2,-60.2,tropical storm,NA,45,999,NA,NA +Iris,1995,8,26,12,14.6,-60.5,tropical storm,NA,45,1000,NA,NA +Iris,1995,8,26,18,14.9,-61,tropical storm,NA,40,1003,NA,NA +Iris,1995,8,27,0,15,-61.2,tropical storm,NA,35,1006,NA,NA +Iris,1995,8,27,6,15.6,-61.2,tropical storm,NA,40,1005,NA,NA +Iris,1995,8,27,12,16.2,-61.2,tropical storm,NA,45,1002,NA,NA +Iris,1995,8,27,18,17,-61.9,tropical storm,NA,50,995,NA,NA +Iris,1995,8,27,23,17.7,-62,tropical storm,NA,55,993,NA,NA +Iris,1995,8,28,0,17.8,-62,tropical storm,NA,55,993,NA,NA +Iris,1995,8,28,6,18.6,-62,tropical storm,NA,55,989,NA,NA +Iris,1995,8,28,12,19.4,-62.1,tropical storm,NA,60,985,NA,NA +Iris,1995,8,28,18,20.4,-62.4,hurricane,1,65,983,NA,NA +Iris,1995,8,29,0,21.3,-62.5,hurricane,1,70,981,NA,NA +Iris,1995,8,29,6,22,-62.5,hurricane,1,80,974,NA,NA +Iris,1995,8,29,12,22.6,-62.5,hurricane,1,75,973,NA,NA +Iris,1995,8,29,18,23.1,-62.3,hurricane,1,70,975,NA,NA +Iris,1995,8,30,0,23.6,-62.1,hurricane,1,70,976,NA,NA +Iris,1995,8,30,6,23.8,-61.8,hurricane,1,70,977,NA,NA +Iris,1995,8,30,12,24,-61.4,hurricane,1,75,972,NA,NA +Iris,1995,8,30,18,24.2,-60.8,hurricane,1,75,971,NA,NA +Iris,1995,8,31,0,24.5,-60.1,hurricane,1,75,971,NA,NA +Iris,1995,8,31,6,24.7,-59.6,hurricane,1,75,971,NA,NA +Iris,1995,8,31,12,24.9,-59.1,hurricane,1,75,971,NA,NA +Iris,1995,8,31,18,25,-58.9,hurricane,2,85,968,NA,NA +Iris,1995,9,1,0,25.2,-58.8,hurricane,2,90,967,NA,NA +Iris,1995,9,1,6,25.5,-58.8,hurricane,2,95,965,NA,NA +Iris,1995,9,1,12,25.6,-59,hurricane,2,90,967,NA,NA +Iris,1995,9,1,18,25.7,-59.7,hurricane,2,85,969,NA,NA +Iris,1995,9,2,0,26,-60.2,hurricane,2,85,971,NA,NA +Iris,1995,9,2,6,26.6,-60.2,hurricane,2,85,973,NA,NA +Iris,1995,9,2,12,27.8,-59.9,hurricane,1,80,978,NA,NA +Iris,1995,9,2,18,29.1,-59.7,hurricane,1,75,983,NA,NA +Iris,1995,9,3,0,31.3,-59,hurricane,1,75,982,NA,NA +Iris,1995,9,3,6,34.2,-58.6,hurricane,1,75,982,NA,NA +Iris,1995,9,3,12,36.9,-57.5,hurricane,1,75,982,NA,NA +Iris,1995,9,3,18,39.2,-55.5,hurricane,1,70,985,NA,NA +Iris,1995,9,4,0,41,-52.3,hurricane,1,65,987,NA,NA +Iris,1995,9,4,6,43.1,-49.4,tropical storm,NA,60,990,NA,NA +Iris,1995,9,4,12,45,-46,extratropical,NA,60,995,NA,NA +Iris,1995,9,4,18,47.1,-42,extratropical,NA,55,997,NA,NA +Iris,1995,9,5,0,48.7,-35.7,extratropical,NA,50,999,NA,NA +Iris,1995,9,5,6,48.9,-28.1,extratropical,NA,50,998,NA,NA +Iris,1995,9,5,12,48.6,-25,extratropical,NA,50,987,NA,NA +Iris,1995,9,5,18,48.5,-21.5,extratropical,NA,55,979,NA,NA +Iris,1995,9,6,0,48.3,-18,extratropical,NA,55,972,NA,NA +Iris,1995,9,6,6,48,-14.2,extratropical,NA,60,967,NA,NA +Iris,1995,9,6,12,48,-12.6,extratropical,NA,60,963,NA,NA +Iris,1995,9,6,18,48.2,-11.1,extratropical,NA,65,960,NA,NA +Iris,1995,9,7,0,48.4,-8.7,extratropical,NA,65,957,NA,NA +Iris,1995,9,7,6,48.9,-6.9,extratropical,NA,65,962,NA,NA +Iris,1995,9,7,12,49.3,-4.4,extratropical,NA,60,968,NA,NA +Jerry,1995,8,22,18,23.7,-78.7,tropical depression,NA,20,1010,NA,NA +Jerry,1995,8,23,0,24.2,-78.9,tropical depression,NA,25,1009,NA,NA +Jerry,1995,8,23,6,25.2,-79.2,tropical depression,NA,30,1008,NA,NA +Jerry,1995,8,23,12,26.4,-79.7,tropical storm,NA,35,1008,NA,NA +Jerry,1995,8,23,18,27,-80.2,tropical storm,NA,35,1006,NA,NA +Jerry,1995,8,24,0,27.3,-80.5,tropical storm,NA,35,1005,NA,NA +Jerry,1995,8,24,6,27.7,-81.1,tropical storm,NA,35,1005,NA,NA +Jerry,1995,8,24,12,28.4,-81.8,tropical storm,NA,35,1004,NA,NA +Jerry,1995,8,24,18,28.8,-82.6,tropical depression,NA,30,1002,NA,NA +Jerry,1995,8,25,0,29,-82.9,tropical depression,NA,30,1002,NA,NA +Jerry,1995,8,25,6,29.2,-83.3,tropical depression,NA,30,1002,NA,NA +Jerry,1995,8,25,12,29.8,-83.3,tropical depression,NA,25,1004,NA,NA +Jerry,1995,8,25,18,30.4,-83.2,tropical depression,NA,25,1005,NA,NA +Jerry,1995,8,26,0,30.7,-83.4,tropical depression,NA,25,1005,NA,NA +Jerry,1995,8,26,6,31.3,-83.7,tropical depression,NA,20,1005,NA,NA +Jerry,1995,8,26,12,31.8,-83.9,tropical depression,NA,20,1005,NA,NA +Jerry,1995,8,26,18,32.4,-84,tropical depression,NA,20,1006,NA,NA +Jerry,1995,8,27,0,33,-84,tropical depression,NA,20,1006,NA,NA +Jerry,1995,8,27,6,33.5,-83.9,tropical depression,NA,20,1006,NA,NA +Jerry,1995,8,27,12,33.8,-83.6,tropical depression,NA,20,1006,NA,NA +Jerry,1995,8,27,18,33.9,-83,tropical depression,NA,20,1006,NA,NA +Jerry,1995,8,28,0,33.8,-82.4,tropical depression,NA,20,1006,NA,NA +Karen,1995,8,26,12,15.4,-32.7,tropical depression,NA,30,1009,NA,NA +Karen,1995,8,26,18,15.5,-34,tropical depression,NA,30,1008,NA,NA +Karen,1995,8,27,0,15.6,-35.4,tropical depression,NA,30,1008,NA,NA +Karen,1995,8,27,6,15.8,-36.7,tropical depression,NA,30,1007,NA,NA +Karen,1995,8,27,12,16.1,-38,tropical depression,NA,30,1007,NA,NA +Karen,1995,8,27,18,16.3,-39.3,tropical depression,NA,30,1006,NA,NA +Karen,1995,8,28,0,16.5,-40.4,tropical depression,NA,30,1006,NA,NA +Karen,1995,8,28,6,16.6,-41.5,tropical storm,NA,35,1005,NA,NA +Karen,1995,8,28,12,16.9,-42.6,tropical storm,NA,40,1003,NA,NA +Karen,1995,8,28,18,17.4,-43.6,tropical storm,NA,45,1001,NA,NA +Karen,1995,8,29,0,17.7,-44.6,tropical storm,NA,45,1000,NA,NA +Karen,1995,8,29,6,17.8,-45.5,tropical storm,NA,45,1000,NA,NA +Karen,1995,8,29,12,18.1,-46.4,tropical storm,NA,45,1000,NA,NA +Karen,1995,8,29,18,18.5,-47.3,tropical storm,NA,45,1001,NA,NA +Karen,1995,8,30,0,19,-48.2,tropical storm,NA,45,1002,NA,NA +Karen,1995,8,30,6,19.2,-49.1,tropical storm,NA,40,1003,NA,NA +Karen,1995,8,30,12,19.4,-49.9,tropical storm,NA,40,1003,NA,NA +Karen,1995,8,30,18,19.6,-50.6,tropical storm,NA,40,1004,NA,NA +Karen,1995,8,31,0,20,-51.1,tropical storm,NA,40,1004,NA,NA +Karen,1995,8,31,6,20.3,-51.6,tropical storm,NA,40,1003,NA,NA +Karen,1995,8,31,12,20.4,-51.9,tropical storm,NA,40,1002,NA,NA +Karen,1995,8,31,18,20.8,-52.1,tropical storm,NA,40,1001,NA,NA +Karen,1995,9,1,0,21.6,-52.3,tropical storm,NA,40,1001,NA,NA +Karen,1995,9,1,6,22.9,-52.7,tropical storm,NA,40,1001,NA,NA +Karen,1995,9,1,12,24.6,-53.3,tropical storm,NA,35,1001,NA,NA +Karen,1995,9,1,18,26.6,-54.3,tropical storm,NA,35,1001,NA,NA +Karen,1995,9,2,0,28.4,-55.6,tropical storm,NA,35,1001,NA,NA +Karen,1995,9,2,6,29.9,-57.1,tropical storm,NA,35,1001,NA,NA +Karen,1995,9,2,12,31.2,-59.2,tropical depression,NA,30,1001,NA,NA +Karen,1995,9,2,18,32.4,-61.9,tropical depression,NA,30,1001,NA,NA +Karen,1995,9,3,0,33,-61.5,tropical depression,NA,30,1002,NA,NA +Luis,1995,8,28,18,11.4,-27.5,tropical depression,NA,30,1008,NA,NA +Luis,1995,8,29,0,11.6,-29,tropical storm,NA,35,1005,NA,NA +Luis,1995,8,29,6,11.8,-30.5,tropical storm,NA,40,1000,NA,NA +Luis,1995,8,29,12,12.2,-31.9,tropical storm,NA,40,1000,NA,NA +Luis,1995,8,29,18,12.7,-33.1,tropical storm,NA,35,1003,NA,NA +Luis,1995,8,30,0,13,-34.2,tropical storm,NA,35,1005,NA,NA +Luis,1995,8,30,6,13.2,-35.3,tropical storm,NA,35,1005,NA,NA +Luis,1995,8,30,12,13.4,-36.2,tropical storm,NA,35,1005,NA,NA +Luis,1995,8,30,18,13.7,-37,tropical storm,NA,45,1002,NA,NA +Luis,1995,8,31,0,14,-37.9,tropical storm,NA,55,998,NA,NA +Luis,1995,8,31,6,14.3,-38.8,hurricane,1,75,992,NA,NA +Luis,1995,8,31,12,14.6,-39.7,hurricane,1,80,979,NA,NA +Luis,1995,8,31,18,15,-40.7,hurricane,2,90,971,NA,NA +Luis,1995,9,1,0,15.4,-41.7,hurricane,3,100,965,NA,NA +Luis,1995,9,1,6,15.8,-42.6,hurricane,3,105,958,NA,NA +Luis,1995,9,1,12,16.2,-43.6,hurricane,4,115,950,NA,NA +Luis,1995,9,1,18,16.5,-44.7,hurricane,4,115,948,NA,NA +Luis,1995,9,2,0,16.8,-45.8,hurricane,4,115,948,NA,NA +Luis,1995,9,2,6,17,-46.9,hurricane,4,115,948,NA,NA +Luis,1995,9,2,12,17.2,-48,hurricane,4,120,948,NA,NA +Luis,1995,9,2,18,17.3,-49.2,hurricane,4,120,948,NA,NA +Luis,1995,9,3,0,17.3,-50.5,hurricane,4,120,948,NA,NA +Luis,1995,9,3,6,17.4,-51.8,hurricane,4,120,948,NA,NA +Luis,1995,9,3,12,17.3,-53.1,hurricane,4,120,948,NA,NA +Luis,1995,9,3,18,17.3,-54.3,hurricane,4,125,945,NA,NA +Luis,1995,9,4,0,17.1,-55.6,hurricane,4,125,942,NA,NA +Luis,1995,9,4,6,17,-56.8,hurricane,4,130,940,NA,NA +Luis,1995,9,4,12,17,-58,hurricane,4,130,945,NA,NA +Luis,1995,9,4,18,17,-59.1,hurricane,4,125,943,NA,NA +Luis,1995,9,5,0,17.1,-60.1,hurricane,4,125,940,NA,NA +Luis,1995,9,5,6,17.3,-61,hurricane,4,120,939,NA,NA +Luis,1995,9,5,12,17.5,-61.7,hurricane,4,115,945,NA,NA +Luis,1995,9,5,18,18,-62.4,hurricane,4,115,944,NA,NA +Luis,1995,9,6,0,18.4,-63,hurricane,4,115,942,NA,NA +Luis,1995,9,6,6,18.9,-63.6,hurricane,4,120,939,NA,NA +Luis,1995,9,6,12,19.4,-64.2,hurricane,4,120,943,NA,NA +Luis,1995,9,6,18,20.1,-64.9,hurricane,4,125,940,NA,NA +Luis,1995,9,7,0,20.7,-65.4,hurricane,4,125,938,NA,NA +Luis,1995,9,7,6,21.3,-66,hurricane,4,120,936,NA,NA +Luis,1995,9,7,12,22,-66.6,hurricane,4,115,941,NA,NA +Luis,1995,9,7,18,22.8,-67.2,hurricane,4,115,938,NA,NA +Luis,1995,9,8,0,24.3,-68,hurricane,4,115,935,NA,NA +Luis,1995,9,8,6,25.8,-68.8,hurricane,4,115,939,NA,NA +Luis,1995,9,8,12,26.4,-69.3,hurricane,3,110,941,NA,NA +Luis,1995,9,8,18,26.5,-69.5,hurricane,3,105,944,NA,NA +Luis,1995,9,9,0,27.1,-69.8,hurricane,3,100,945,NA,NA +Luis,1995,9,9,6,29.1,-69.5,hurricane,2,95,949,NA,NA +Luis,1995,9,9,12,31,-69.1,hurricane,2,90,952,NA,NA +Luis,1995,9,9,18,32.7,-68.6,hurricane,2,85,955,NA,NA +Luis,1995,9,10,0,34.5,-67.2,hurricane,2,85,959,NA,NA +Luis,1995,9,10,6,36.5,-65.4,hurricane,2,85,963,NA,NA +Luis,1995,9,10,12,38.4,-63.7,hurricane,2,85,961,NA,NA +Luis,1995,9,10,18,40.9,-60.9,extratropical,NA,85,966,NA,NA +Luis,1995,9,11,0,43.9,-57.7,extratropical,NA,95,965,NA,NA +Luis,1995,9,11,6,47.1,-54.2,extratropical,NA,105,963,NA,NA +Luis,1995,9,11,12,51.5,-48.5,extratropical,NA,90,960,NA,NA +Luis,1995,9,11,18,55,-46,extratropical,NA,75,958,NA,NA +Luis,1995,9,12,0,57,-45,extratropical,NA,60,955,NA,NA +Luis,1995,9,12,6,58,-44,extratropical,NA,60,950,NA,NA +Luis,1995,9,12,12,59,-42,extratropical,NA,60,955,NA,NA +Luis,1995,9,12,18,60,-40,extratropical,NA,50,960,NA,NA +AL141995,1995,9,9,12,17.9,-41.9,tropical depression,NA,25,1009,NA,NA +AL141995,1995,9,9,18,18.3,-43.3,tropical depression,NA,25,1009,NA,NA +AL141995,1995,9,10,0,18.7,-44.6,tropical depression,NA,25,1009,NA,NA +AL141995,1995,9,10,6,19.1,-46.1,tropical depression,NA,25,1009,NA,NA +AL141995,1995,9,10,12,20,-47.8,tropical depression,NA,25,1009,NA,NA +AL141995,1995,9,10,18,20.8,-49.3,tropical depression,NA,25,1009,NA,NA +AL141995,1995,9,11,0,21.7,-50.9,tropical depression,NA,25,1009,NA,NA +AL141995,1995,9,11,6,22.6,-52.2,tropical depression,NA,30,1008,NA,NA +AL141995,1995,9,11,12,23.4,-53.4,tropical depression,NA,30,1008,NA,NA +AL141995,1995,9,11,18,24.3,-54.5,tropical depression,NA,30,1008,NA,NA +AL141995,1995,9,12,0,25,-55.7,tropical depression,NA,30,1008,NA,NA +AL141995,1995,9,12,6,25.5,-56.3,tropical depression,NA,30,1008,NA,NA +AL141995,1995,9,12,12,25.8,-57.2,tropical depression,NA,30,1008,NA,NA +AL141995,1995,9,12,18,26.3,-57.9,tropical depression,NA,30,1008,NA,NA +AL141995,1995,9,13,0,26.5,-58.9,tropical depression,NA,30,1009,NA,NA +AL141995,1995,9,13,6,26.4,-60,tropical depression,NA,30,1009,NA,NA +AL141995,1995,9,13,12,25.8,-61.3,tropical depression,NA,25,1009,NA,NA +Marilyn,1995,9,12,18,11.7,-50.9,tropical depression,NA,30,1006,NA,NA +Marilyn,1995,9,13,0,11.8,-52.7,tropical storm,NA,35,1004,NA,NA +Marilyn,1995,9,13,6,11.9,-54.3,tropical storm,NA,45,999,NA,NA +Marilyn,1995,9,13,12,12.1,-55.4,tropical storm,NA,55,995,NA,NA +Marilyn,1995,9,13,18,12.5,-56.5,tropical storm,NA,60,990,NA,NA +Marilyn,1995,9,14,0,13,-57.7,hurricane,1,65,988,NA,NA +Marilyn,1995,9,14,6,13.5,-58.8,hurricane,1,70,987,NA,NA +Marilyn,1995,9,14,12,14.2,-59.8,hurricane,1,70,986,NA,NA +Marilyn,1995,9,14,18,15,-60.8,hurricane,1,70,983,NA,NA +Marilyn,1995,9,14,21,15.5,-61.3,hurricane,1,70,984,NA,NA +Marilyn,1995,9,15,0,15.8,-61.7,hurricane,1,75,985,NA,NA +Marilyn,1995,9,15,6,16.5,-62.8,hurricane,1,80,977,NA,NA +Marilyn,1995,9,15,12,16.8,-63.5,hurricane,1,80,974,NA,NA +Marilyn,1995,9,15,18,17.4,-64.2,hurricane,2,85,969,NA,NA +Marilyn,1995,9,16,0,17.9,-64.7,hurricane,2,90,962,NA,NA +Marilyn,1995,9,16,6,18.5,-65.2,hurricane,2,95,952,NA,NA +Marilyn,1995,9,16,12,19,-65.8,hurricane,2,95,951,NA,NA +Marilyn,1995,9,16,18,19.7,-66.4,hurricane,3,100,950,NA,NA +Marilyn,1995,9,17,0,20.4,-67,hurricane,3,100,950,NA,NA +Marilyn,1995,9,17,3,20.7,-67.1,hurricane,3,100,949,NA,NA +Marilyn,1995,9,17,6,21.2,-67.5,hurricane,2,95,953,NA,NA +Marilyn,1995,9,17,12,22,-68.2,hurricane,1,80,965,NA,NA +Marilyn,1995,9,17,18,22.9,-68.8,hurricane,1,80,968,NA,NA +Marilyn,1995,9,18,0,24,-69.1,hurricane,2,85,963,NA,NA +Marilyn,1995,9,18,6,25,-69.4,hurricane,2,85,965,NA,NA +Marilyn,1995,9,18,12,26.1,-69.5,hurricane,2,85,966,NA,NA +Marilyn,1995,9,18,18,27.2,-69.3,hurricane,1,80,966,NA,NA +Marilyn,1995,9,19,0,28.4,-69,hurricane,1,80,969,NA,NA +Marilyn,1995,9,19,6,29.6,-68.6,hurricane,1,75,970,NA,NA +Marilyn,1995,9,19,12,31,-68.2,hurricane,1,75,976,NA,NA +Marilyn,1995,9,19,18,32.6,-67.7,hurricane,1,80,974,NA,NA +Marilyn,1995,9,20,0,34.2,-66.8,hurricane,1,80,974,NA,NA +Marilyn,1995,9,20,6,35.8,-66.1,hurricane,1,75,976,NA,NA +Marilyn,1995,9,20,12,37.3,-65.2,hurricane,1,70,978,NA,NA +Marilyn,1995,9,20,18,38.3,-64.3,hurricane,1,70,980,NA,NA +Marilyn,1995,9,21,0,39,-63.3,hurricane,1,65,982,NA,NA +Marilyn,1995,9,21,6,39.3,-61.9,hurricane,1,65,984,NA,NA +Marilyn,1995,9,21,12,39.4,-60.6,hurricane,1,65,987,NA,NA +Marilyn,1995,9,21,18,39.6,-59.3,tropical storm,NA,60,990,NA,NA +Marilyn,1995,9,22,0,39.8,-58.3,tropical storm,NA,55,992,NA,NA +Marilyn,1995,9,22,6,39.7,-57.6,extratropical,NA,55,994,NA,NA +Marilyn,1995,9,22,12,39.4,-57.1,extratropical,NA,55,996,NA,NA +Marilyn,1995,9,22,18,39,-56.8,extratropical,NA,55,998,NA,NA +Marilyn,1995,9,23,0,38.4,-56.7,extratropical,NA,50,1000,NA,NA +Marilyn,1995,9,23,6,37.8,-56.7,extratropical,NA,45,1001,NA,NA +Marilyn,1995,9,23,12,37.1,-56.7,extratropical,NA,35,1002,NA,NA +Marilyn,1995,9,23,18,36.6,-56.8,extratropical,NA,30,1003,NA,NA +Marilyn,1995,9,24,0,35.9,-57.2,extratropical,NA,30,1004,NA,NA +Marilyn,1995,9,24,6,35,-58.1,extratropical,NA,30,1004,NA,NA +Marilyn,1995,9,24,12,33.8,-57.7,extratropical,NA,30,1005,NA,NA +Marilyn,1995,9,24,18,33,-57,extratropical,NA,30,1005,NA,NA +Marilyn,1995,9,25,0,32.6,-56.6,extratropical,NA,30,1005,NA,NA +Marilyn,1995,9,25,6,32,-56.3,extratropical,NA,30,1005,NA,NA +Marilyn,1995,9,25,12,31.1,-56,extratropical,NA,30,1005,NA,NA +Marilyn,1995,9,25,18,30.9,-55.1,extratropical,NA,30,1005,NA,NA +Marilyn,1995,9,26,0,31,-54.7,extratropical,NA,25,1006,NA,NA +Marilyn,1995,9,26,6,31.1,-54.2,extratropical,NA,25,1006,NA,NA +Marilyn,1995,9,26,12,31.3,-53.8,extratropical,NA,25,1007,NA,NA +Marilyn,1995,9,26,18,31.5,-53.4,extratropical,NA,25,1008,NA,NA +Marilyn,1995,9,27,0,31.7,-53.1,extratropical,NA,20,1009,NA,NA +Marilyn,1995,9,27,6,31.8,-52.6,extratropical,NA,20,1010,NA,NA +Marilyn,1995,9,27,12,32.2,-52.1,extratropical,NA,20,1011,NA,NA +Marilyn,1995,9,27,18,32.6,-51.7,extratropical,NA,20,1012,NA,NA +Marilyn,1995,9,28,0,32.9,-51.4,extratropical,NA,20,1013,NA,NA +Marilyn,1995,9,28,6,33.2,-51.1,extratropical,NA,20,1014,NA,NA +Marilyn,1995,9,28,12,33.6,-50.9,extratropical,NA,20,1014,NA,NA +Marilyn,1995,9,28,18,34,-50.6,extratropical,NA,20,1013,NA,NA +Marilyn,1995,9,29,0,34.3,-49.9,extratropical,NA,20,1013,NA,NA +Marilyn,1995,9,29,6,34.8,-49.1,extratropical,NA,20,1014,NA,NA +Marilyn,1995,9,29,12,35.3,-48.2,extratropical,NA,20,1014,NA,NA +Marilyn,1995,9,29,18,35.3,-47.2,extratropical,NA,20,1014,NA,NA +Marilyn,1995,9,30,0,34.9,-47.7,extratropical,NA,20,1015,NA,NA +Marilyn,1995,9,30,6,34.6,-48.5,extratropical,NA,20,1015,NA,NA +Marilyn,1995,9,30,12,34.6,-49.3,extratropical,NA,20,1016,NA,NA +Marilyn,1995,9,30,18,34.7,-50,extratropical,NA,20,1016,NA,NA +Marilyn,1995,10,1,0,34.8,-50.5,extratropical,NA,20,1016,NA,NA +Marilyn,1995,10,1,6,35,-51,extratropical,NA,20,1016,NA,NA +Marilyn,1995,10,1,12,35.2,-51.5,extratropical,NA,20,1016,NA,NA +Marilyn,1995,10,1,18,35.3,-51.9,extratropical,NA,20,1016,NA,NA +Noel,1995,9,26,18,10.4,-37.7,tropical depression,NA,25,1007,NA,NA +Noel,1995,9,27,0,10.9,-39,tropical depression,NA,30,1006,NA,NA +Noel,1995,9,27,6,11.4,-40,tropical depression,NA,30,1005,NA,NA +Noel,1995,9,27,12,12.1,-40.6,tropical storm,NA,35,1005,NA,NA +Noel,1995,9,27,18,12.8,-41,tropical storm,NA,40,1002,NA,NA +Noel,1995,9,28,0,13.5,-41.5,tropical storm,NA,45,1000,NA,NA +Noel,1995,9,28,6,14,-42,tropical storm,NA,50,998,NA,NA +Noel,1995,9,28,12,14.5,-42.4,tropical storm,NA,60,995,NA,NA +Noel,1995,9,28,18,15.2,-42.6,hurricane,1,65,987,NA,NA +Noel,1995,9,29,0,15.9,-42.6,hurricane,1,65,987,NA,NA +Noel,1995,9,29,6,16.5,-42.2,hurricane,1,65,987,NA,NA +Noel,1995,9,29,12,17.4,-41.9,hurricane,1,65,987,NA,NA +Noel,1995,9,29,18,18.2,-41.2,hurricane,1,65,987,NA,NA +Noel,1995,9,30,0,18.9,-40.6,hurricane,1,65,987,NA,NA +Noel,1995,9,30,6,19.4,-40.3,hurricane,1,65,987,NA,NA +Noel,1995,9,30,12,19.7,-40.2,tropical storm,NA,60,990,NA,NA +Noel,1995,9,30,18,19.8,-40.1,tropical storm,NA,55,993,NA,NA +Noel,1995,10,1,0,19.9,-40.2,tropical storm,NA,50,994,NA,NA +Noel,1995,10,1,6,20,-40.3,tropical storm,NA,50,995,NA,NA +Noel,1995,10,1,12,20.1,-40.4,tropical storm,NA,45,1000,NA,NA +Noel,1995,10,1,18,20.5,-40.4,tropical storm,NA,45,1000,NA,NA +Noel,1995,10,2,0,20.9,-40.2,tropical storm,NA,45,1000,NA,NA +Noel,1995,10,2,6,21.5,-40.1,tropical storm,NA,45,1000,NA,NA +Noel,1995,10,2,12,22.4,-40,tropical storm,NA,45,1000,NA,NA +Noel,1995,10,2,18,23.5,-40.1,tropical storm,NA,45,1000,NA,NA +Noel,1995,10,3,0,24.7,-40.3,tropical storm,NA,45,1000,NA,NA +Noel,1995,10,3,6,25.7,-41,tropical storm,NA,40,1000,NA,NA +Noel,1995,10,3,12,26.7,-41.8,tropical storm,NA,45,1000,NA,NA +Noel,1995,10,3,18,27.6,-42.4,tropical storm,NA,45,1000,NA,NA +Noel,1995,10,4,0,28.5,-42.8,tropical storm,NA,45,999,NA,NA +Noel,1995,10,4,6,29.5,-43.1,tropical storm,NA,50,998,NA,NA +Noel,1995,10,4,12,30.4,-43.1,tropical storm,NA,50,997,NA,NA +Noel,1995,10,4,18,31.3,-43,tropical storm,NA,55,994,NA,NA +Noel,1995,10,5,0,31.9,-42.7,hurricane,1,65,987,NA,NA +Noel,1995,10,5,6,32.2,-42.3,hurricane,1,65,987,NA,NA +Noel,1995,10,5,12,32.4,-41.5,hurricane,1,65,987,NA,NA +Noel,1995,10,5,18,32.4,-40.5,hurricane,1,65,987,NA,NA +Noel,1995,10,6,0,32.5,-39.4,tropical storm,NA,60,990,NA,NA +Noel,1995,10,6,6,32.5,-38.2,tropical storm,NA,55,994,NA,NA +Noel,1995,10,6,12,32.5,-36.9,tropical storm,NA,50,997,NA,NA +Noel,1995,10,6,18,32.7,-35.3,tropical storm,NA,40,1001,NA,NA +Noel,1995,10,7,0,33.2,-33.5,tropical storm,NA,35,1004,NA,NA +Noel,1995,10,7,6,34,-31,extratropical,NA,30,1000,NA,NA +Noel,1995,10,7,12,35,-29.5,extratropical,NA,30,997,NA,NA +Noel,1995,10,7,18,36,-28,extratropical,NA,30,995,NA,NA +Opal,1995,9,27,18,19.1,-87.3,tropical depression,NA,25,1004,NA,NA +Opal,1995,9,28,0,19.4,-87.5,tropical depression,NA,25,1004,NA,NA +Opal,1995,9,28,6,19.4,-87.9,tropical depression,NA,25,1004,NA,NA +Opal,1995,9,28,12,19.3,-88.2,tropical depression,NA,25,1003,NA,NA +Opal,1995,9,28,18,19.3,-88.4,tropical depression,NA,25,1003,NA,NA +Opal,1995,9,29,0,19.4,-88.4,tropical depression,NA,25,1003,NA,NA +Opal,1995,9,29,6,19.5,-88.4,tropical depression,NA,25,1003,NA,NA +Opal,1995,9,29,12,19.6,-88.3,tropical depression,NA,25,1003,NA,NA +Opal,1995,9,29,18,19.8,-88.2,tropical depression,NA,30,1003,NA,NA +Opal,1995,9,30,0,20.1,-88.2,tropical depression,NA,30,1002,NA,NA +Opal,1995,9,30,6,20.6,-88.3,tropical depression,NA,30,1002,NA,NA +Opal,1995,9,30,12,21.1,-88.5,tropical storm,NA,35,1001,NA,NA +Opal,1995,9,30,18,21.4,-89.1,tropical storm,NA,40,1000,NA,NA +Opal,1995,10,1,0,21.3,-89.9,tropical storm,NA,45,994,NA,NA +Opal,1995,10,1,6,21.1,-90.7,tropical storm,NA,45,987,NA,NA +Opal,1995,10,1,12,20.9,-91.2,tropical storm,NA,45,986,NA,NA +Opal,1995,10,1,18,20.8,-91.6,tropical storm,NA,50,985,NA,NA +Opal,1995,10,2,0,20.7,-91.9,tropical storm,NA,55,984,NA,NA +Opal,1995,10,2,6,20.8,-92.1,tropical storm,NA,60,980,NA,NA +Opal,1995,10,2,12,21,-92.3,hurricane,1,65,973,NA,NA +Opal,1995,10,2,18,21.2,-92.3,hurricane,1,65,972,NA,NA +Opal,1995,10,3,0,21.7,-92.2,hurricane,1,70,970,NA,NA +Opal,1995,10,3,6,22.2,-92,hurricane,1,75,969,NA,NA +Opal,1995,10,3,12,22.8,-91.6,hurricane,1,80,968,NA,NA +Opal,1995,10,3,18,23.5,-91,hurricane,2,85,965,NA,NA +Opal,1995,10,4,0,24.5,-90.1,hurricane,3,100,953,NA,NA +Opal,1995,10,4,6,25.9,-89.4,hurricane,3,110,935,NA,NA +Opal,1995,10,4,10,26.6,-88.8,hurricane,4,130,916,NA,NA +Opal,1995,10,4,12,27.3,-88.5,hurricane,4,130,919,NA,NA +Opal,1995,10,4,18,29,-87.7,hurricane,3,110,938,NA,NA +Opal,1995,10,4,22,30.3,-87.1,hurricane,3,100,942,NA,NA +Opal,1995,10,5,0,31,-86.8,hurricane,1,80,950,NA,NA +Opal,1995,10,5,6,33.2,-86.2,tropical storm,NA,50,974,NA,NA +Opal,1995,10,5,12,35.4,-85.7,tropical depression,NA,30,982,NA,NA +Opal,1995,10,5,18,38.5,-83.5,extratropical,NA,40,986,NA,NA +Opal,1995,10,6,0,40.5,-82.3,extratropical,NA,40,989,NA,NA +Opal,1995,10,6,6,42,-80.5,extratropical,NA,40,991,NA,NA +Opal,1995,10,6,12,43.3,-78.4,extratropical,NA,35,997,NA,NA +Opal,1995,10,6,18,44.5,-76.5,extratropical,NA,30,1002,NA,NA +Pablo,1995,10,4,18,8.3,-31.4,tropical depression,NA,30,1009,NA,NA +Pablo,1995,10,5,0,8.4,-32.8,tropical depression,NA,30,1009,NA,NA +Pablo,1995,10,5,6,9.3,-35.1,tropical depression,NA,30,1008,NA,NA +Pablo,1995,10,5,12,10.2,-37.5,tropical storm,NA,35,1006,NA,NA +Pablo,1995,10,5,18,11.1,-40.1,tropical storm,NA,40,1003,NA,NA +Pablo,1995,10,6,0,11.5,-41.9,tropical storm,NA,50,997,NA,NA +Pablo,1995,10,6,6,12,-44,tropical storm,NA,50,994,NA,NA +Pablo,1995,10,6,12,12.2,-45.8,tropical storm,NA,50,995,NA,NA +Pablo,1995,10,6,18,12.4,-47.5,tropical storm,NA,45,998,NA,NA +Pablo,1995,10,7,0,12.5,-48.8,tropical storm,NA,45,1000,NA,NA +Pablo,1995,10,7,6,12.7,-50,tropical storm,NA,45,1000,NA,NA +Pablo,1995,10,7,12,12.8,-51.1,tropical storm,NA,45,1000,NA,NA +Pablo,1995,10,7,18,12.6,-52.3,tropical storm,NA,45,1000,NA,NA +Pablo,1995,10,8,0,12.5,-53.9,tropical storm,NA,45,1001,NA,NA +Pablo,1995,10,8,6,12.3,-55.7,tropical storm,NA,45,1007,NA,NA +Pablo,1995,10,8,12,12.1,-57.5,tropical depression,NA,30,1009,NA,NA +Roxanne,1995,10,7,18,14,-82.1,tropical depression,NA,25,1005,NA,NA +Roxanne,1995,10,8,0,14.2,-82.7,tropical depression,NA,25,1005,NA,NA +Roxanne,1995,10,8,6,14.8,-83,tropical depression,NA,25,1005,NA,NA +Roxanne,1995,10,8,12,15,-83.2,tropical depression,NA,25,1005,NA,NA +Roxanne,1995,10,8,18,15.7,-83.2,tropical depression,NA,30,1004,NA,NA +Roxanne,1995,10,9,0,16.5,-83.1,tropical storm,NA,35,1002,NA,NA +Roxanne,1995,10,9,6,17.2,-83,tropical storm,NA,40,1001,NA,NA +Roxanne,1995,10,9,12,17.9,-82.9,tropical storm,NA,45,999,NA,NA +Roxanne,1995,10,9,18,18.4,-82.9,tropical storm,NA,50,995,NA,NA +Roxanne,1995,10,10,0,18.9,-83.7,tropical storm,NA,60,989,NA,NA +Roxanne,1995,10,10,6,19.2,-84.3,hurricane,1,70,985,NA,NA +Roxanne,1995,10,10,12,19.4,-85,hurricane,1,80,972,NA,NA +Roxanne,1995,10,10,18,19.9,-86,hurricane,2,95,966,NA,NA +Roxanne,1995,10,10,21,20,-86.7,hurricane,3,100,956,NA,NA +Roxanne,1995,10,11,0,20,-87,hurricane,3,100,958,NA,NA +Roxanne,1995,10,11,2,20,-87.6,hurricane,3,100,958,NA,NA +Roxanne,1995,10,11,6,20,-88.1,hurricane,2,90,970,NA,NA +Roxanne,1995,10,11,12,19.9,-89.1,hurricane,1,75,983,NA,NA +Roxanne,1995,10,11,18,19.7,-90,hurricane,1,70,987,NA,NA +Roxanne,1995,10,12,0,19.5,-90.8,hurricane,1,65,990,NA,NA +Roxanne,1995,10,12,6,19.5,-91.5,hurricane,1,65,992,NA,NA +Roxanne,1995,10,12,12,19.5,-92.2,tropical storm,NA,55,994,NA,NA +Roxanne,1995,10,12,18,19.7,-92.6,tropical storm,NA,55,995,NA,NA +Roxanne,1995,10,13,0,20.1,-92.8,tropical storm,NA,55,993,NA,NA +Roxanne,1995,10,13,6,20.5,-93.1,tropical storm,NA,55,993,NA,NA +Roxanne,1995,10,13,12,21,-93.6,tropical storm,NA,55,992,NA,NA +Roxanne,1995,10,13,18,21.4,-93.9,tropical storm,NA,55,988,NA,NA +Roxanne,1995,10,14,0,21.8,-93.9,tropical storm,NA,55,982,NA,NA +Roxanne,1995,10,14,6,22.2,-93.9,tropical storm,NA,60,981,NA,NA +Roxanne,1995,10,14,12,22.3,-93.8,hurricane,1,65,980,NA,NA +Roxanne,1995,10,14,18,22.3,-93.3,hurricane,1,70,980,NA,NA +Roxanne,1995,10,15,0,21.8,-92.9,hurricane,1,70,979,NA,NA +Roxanne,1995,10,15,6,21.4,-92.4,hurricane,1,75,979,NA,NA +Roxanne,1995,10,15,12,21,-91.9,hurricane,1,75,980,NA,NA +Roxanne,1995,10,15,18,20.6,-91.6,hurricane,1,75,980,NA,NA +Roxanne,1995,10,16,0,20.4,-91.5,hurricane,1,75,981,NA,NA +Roxanne,1995,10,16,6,20.3,-91.7,hurricane,1,70,984,NA,NA +Roxanne,1995,10,16,12,20.3,-92,hurricane,1,65,985,NA,NA +Roxanne,1995,10,16,18,20.4,-92.2,hurricane,1,65,987,NA,NA +Roxanne,1995,10,17,0,20.6,-92.4,hurricane,1,65,991,NA,NA +Roxanne,1995,10,17,6,20.9,-92.6,tropical storm,NA,60,995,NA,NA +Roxanne,1995,10,17,12,21.2,-92.9,tropical storm,NA,55,998,NA,NA +Roxanne,1995,10,17,18,21.3,-93.1,tropical storm,NA,50,1000,NA,NA +Roxanne,1995,10,18,0,21.5,-93.3,tropical storm,NA,45,1003,NA,NA +Roxanne,1995,10,18,6,21.8,-93.6,tropical storm,NA,40,1004,NA,NA +Roxanne,1995,10,18,12,22.2,-94.2,tropical storm,NA,35,1005,NA,NA +Roxanne,1995,10,18,18,22.3,-94.7,tropical storm,NA,35,1008,NA,NA +Roxanne,1995,10,19,0,22.3,-95.1,tropical depression,NA,30,1009,NA,NA +Roxanne,1995,10,19,6,22.4,-95.4,tropical depression,NA,30,1009,NA,NA +Roxanne,1995,10,19,12,22.3,-95.5,tropical depression,NA,30,1009,NA,NA +Roxanne,1995,10,19,18,22.3,-95.6,tropical depression,NA,30,1009,NA,NA +Roxanne,1995,10,20,0,22.4,-95.6,tropical depression,NA,30,1009,NA,NA +Roxanne,1995,10,20,6,22,-95.5,tropical depression,NA,30,1009,NA,NA +Roxanne,1995,10,20,12,21.5,-95.5,tropical depression,NA,25,1009,NA,NA +Roxanne,1995,10,20,18,20.5,-95.5,tropical depression,NA,25,1010,NA,NA +Roxanne,1995,10,21,0,19.5,-96,tropical depression,NA,25,1011,NA,NA +Sebastien,1995,10,20,12,13.8,-53.8,tropical depression,NA,25,1006,NA,NA +Sebastien,1995,10,20,18,14.8,-54.5,tropical depression,NA,30,1005,NA,NA +Sebastien,1995,10,21,0,16,-55.1,tropical storm,NA,35,1004,NA,NA +Sebastien,1995,10,21,6,17.6,-55.9,tropical storm,NA,35,1004,NA,NA +Sebastien,1995,10,21,12,19,-56.3,tropical storm,NA,40,1005,NA,NA +Sebastien,1995,10,21,18,20.1,-56.6,tropical storm,NA,40,1007,NA,NA +Sebastien,1995,10,22,0,21.2,-56.7,tropical storm,NA,40,1007,NA,NA +Sebastien,1995,10,22,6,21.8,-56.8,tropical storm,NA,40,1006,NA,NA +Sebastien,1995,10,22,12,22,-57.7,tropical storm,NA,45,1004,NA,NA +Sebastien,1995,10,22,18,21.5,-58.5,tropical storm,NA,55,1001,NA,NA +Sebastien,1995,10,23,0,20.9,-59.5,tropical storm,NA,50,1001,NA,NA +Sebastien,1995,10,23,6,20.1,-60.4,tropical storm,NA,45,1002,NA,NA +Sebastien,1995,10,23,12,19.4,-61,tropical storm,NA,40,1003,NA,NA +Sebastien,1995,10,23,18,19,-61.7,tropical storm,NA,35,1004,NA,NA +Sebastien,1995,10,24,0,18.6,-62.3,tropical depression,NA,30,1005,NA,NA +Sebastien,1995,10,24,6,18.3,-63,tropical depression,NA,30,1007,NA,NA +Sebastien,1995,10,24,12,18,-63.7,tropical depression,NA,30,1007,NA,NA +Sebastien,1995,10,24,18,17.7,-64.3,tropical depression,NA,25,1007,NA,NA +Sebastien,1995,10,25,0,17.5,-64.5,tropical depression,NA,20,1008,NA,NA +Tanya,1995,10,27,0,24.6,-59.2,tropical depression,NA,30,1004,NA,NA +Tanya,1995,10,27,6,25.3,-58.6,tropical depression,NA,30,1002,NA,NA +Tanya,1995,10,27,12,26.2,-57.9,tropical storm,NA,35,1001,NA,NA +Tanya,1995,10,27,18,27.1,-57.1,tropical storm,NA,40,998,NA,NA +Tanya,1995,10,28,0,27.2,-56.6,tropical storm,NA,45,997,NA,NA +Tanya,1995,10,28,6,27.3,-56.2,tropical storm,NA,45,996,NA,NA +Tanya,1995,10,28,12,27.2,-55.7,tropical storm,NA,50,995,NA,NA +Tanya,1995,10,28,18,27.5,-54.7,tropical storm,NA,55,992,NA,NA +Tanya,1995,10,29,0,28.4,-54.2,tropical storm,NA,60,990,NA,NA +Tanya,1995,10,29,6,29.6,-54.2,tropical storm,NA,60,987,NA,NA +Tanya,1995,10,29,12,30.5,-54.9,hurricane,1,65,983,NA,NA +Tanya,1995,10,29,18,31.2,-55.3,hurricane,1,70,982,NA,NA +Tanya,1995,10,30,0,31.8,-54.8,hurricane,1,70,980,NA,NA +Tanya,1995,10,30,6,32.6,-54.2,hurricane,1,70,980,NA,NA +Tanya,1995,10,30,12,33.1,-53.4,hurricane,1,70,979,NA,NA +Tanya,1995,10,30,18,33.8,-51.8,hurricane,1,75,977,NA,NA +Tanya,1995,10,31,0,34.6,-50.1,hurricane,1,75,975,NA,NA +Tanya,1995,10,31,6,35.4,-48.3,hurricane,1,75,972,NA,NA +Tanya,1995,10,31,12,36.2,-45.8,hurricane,1,75,973,NA,NA +Tanya,1995,10,31,18,37.1,-43.2,hurricane,1,75,973,NA,NA +Tanya,1995,11,1,0,37.8,-40.4,hurricane,1,70,974,NA,NA +Tanya,1995,11,1,6,37.7,-37.9,hurricane,1,65,974,NA,NA +Tanya,1995,11,1,12,37.4,-35.4,tropical storm,NA,60,974,NA,NA +Tanya,1995,11,1,18,37.7,-31.8,tropical storm,NA,55,972,NA,NA +Tanya,1995,11,2,0,39.2,-28.2,extratropical,NA,55,970,NA,NA +Tanya,1995,11,2,6,41.8,-25.7,extratropical,NA,55,971,NA,NA +Tanya,1995,11,2,12,44.5,-24,extratropical,NA,50,974,NA,NA +Tanya,1995,11,2,18,47.5,-23,extratropical,NA,45,976,NA,NA +Tanya,1995,11,3,0,50.5,-24,extratropical,NA,40,977,NA,NA +Arthur,1996,6,17,18,26.8,-77.8,tropical depression,NA,25,1010,NA,NA +Arthur,1996,6,18,0,27.7,-78.3,tropical depression,NA,25,1010,NA,NA +Arthur,1996,6,18,6,28.6,-78.8,tropical depression,NA,25,1009,NA,NA +Arthur,1996,6,18,12,29.7,-78.8,tropical depression,NA,25,1008,NA,NA +Arthur,1996,6,18,18,30.6,-78.7,tropical depression,NA,30,1008,NA,NA +Arthur,1996,6,19,0,31.5,-78.7,tropical storm,NA,35,1004,NA,NA +Arthur,1996,6,19,6,32.3,-78.6,tropical storm,NA,35,1006,NA,NA +Arthur,1996,6,19,12,33.2,-78.1,tropical storm,NA,40,1005,NA,NA +Arthur,1996,6,19,18,33.9,-77.3,tropical storm,NA,40,1005,NA,NA +Arthur,1996,6,20,0,34.7,-76.4,tropical storm,NA,35,1005,NA,NA +Arthur,1996,6,20,6,35.5,-75.4,tropical storm,NA,35,1005,NA,NA +Arthur,1996,6,20,12,36.4,-74.1,tropical depression,NA,30,1005,NA,NA +Arthur,1996,6,20,18,36.9,-72.5,tropical depression,NA,30,1004,NA,NA +Arthur,1996,6,21,0,37.3,-70.3,tropical depression,NA,30,1003,NA,NA +Arthur,1996,6,21,6,37.3,-66.5,tropical depression,NA,30,1002,NA,NA +Arthur,1996,6,21,12,37.5,-62,extratropical,NA,35,1001,NA,NA +Arthur,1996,6,21,18,37.8,-56.2,extratropical,NA,45,1000,NA,NA +Arthur,1996,6,22,0,38.5,-50.5,extratropical,NA,45,998,NA,NA +Arthur,1996,6,22,6,40,-47,extratropical,NA,45,995,NA,NA +Arthur,1996,6,22,12,41,-43,extratropical,NA,45,993,NA,NA +Arthur,1996,6,22,18,42.5,-40,extratropical,NA,45,992,NA,NA +Arthur,1996,6,23,0,44,-37,extratropical,NA,45,996,NA,NA +Bertha,1996,7,5,0,9.8,-34,tropical depression,NA,30,1009,NA,NA +Bertha,1996,7,5,6,10.2,-36.3,tropical depression,NA,30,1008,NA,NA +Bertha,1996,7,5,12,11,-39,tropical storm,NA,35,1007,NA,NA +Bertha,1996,7,5,18,12,-41.2,tropical storm,NA,35,1006,NA,NA +Bertha,1996,7,6,0,12.7,-43.9,tropical storm,NA,35,1005,NA,NA +Bertha,1996,7,6,6,13.1,-46.6,tropical storm,NA,35,1004,NA,NA +Bertha,1996,7,6,12,13.7,-48.7,tropical storm,NA,40,1002,NA,NA +Bertha,1996,7,6,18,14.2,-51,tropical storm,NA,45,1000,NA,NA +Bertha,1996,7,7,0,14.9,-52.9,tropical storm,NA,50,999,NA,NA +Bertha,1996,7,7,6,15.6,-54.8,tropical storm,NA,55,997,NA,NA +Bertha,1996,7,7,12,16.4,-56.9,tropical storm,NA,60,995,NA,NA +Bertha,1996,7,7,18,16.5,-58.4,hurricane,1,70,992,NA,NA +Bertha,1996,7,8,0,17,-60.1,hurricane,1,75,988,NA,NA +Bertha,1996,7,8,6,17.5,-61.8,hurricane,1,75,985,NA,NA +Bertha,1996,7,8,12,18,-63.5,hurricane,1,70,983,NA,NA +Bertha,1996,7,8,18,18.6,-64.9,hurricane,1,75,978,NA,NA +Bertha,1996,7,9,0,19.4,-66.1,hurricane,1,80,970,NA,NA +Bertha,1996,7,9,6,20.3,-67.7,hurricane,3,100,960,NA,NA +Bertha,1996,7,9,12,21.4,-69.4,hurricane,3,100,965,NA,NA +Bertha,1996,7,9,18,22.5,-71.1,hurricane,2,90,967,NA,NA +Bertha,1996,7,10,0,23.6,-72.6,hurricane,2,85,969,NA,NA +Bertha,1996,7,10,6,24.5,-74,hurricane,1,80,971,NA,NA +Bertha,1996,7,10,12,25.4,-75.3,hurricane,1,80,968,NA,NA +Bertha,1996,7,10,18,26.4,-75.8,hurricane,1,80,966,NA,NA +Bertha,1996,7,11,0,27.5,-76.4,hurricane,1,75,968,NA,NA +Bertha,1996,7,11,6,28.3,-76.8,hurricane,1,75,972,NA,NA +Bertha,1996,7,11,12,29.2,-77.5,hurricane,1,75,977,NA,NA +Bertha,1996,7,11,18,30,-78,hurricane,1,70,980,NA,NA +Bertha,1996,7,12,0,30.7,-78.3,hurricane,1,70,982,NA,NA +Bertha,1996,7,12,6,31.2,-78.6,hurricane,1,70,984,NA,NA +Bertha,1996,7,12,12,32.2,-78.4,hurricane,2,85,975,NA,NA +Bertha,1996,7,12,18,33.6,-78.1,hurricane,2,90,974,NA,NA +Bertha,1996,7,12,20,34.3,-77.8,hurricane,2,90,974,NA,NA +Bertha,1996,7,13,0,35,-77.6,hurricane,1,65,993,NA,NA +Bertha,1996,7,13,6,36.7,-77,tropical storm,NA,60,993,NA,NA +Bertha,1996,7,13,12,38.3,-76.1,tropical storm,NA,60,994,NA,NA +Bertha,1996,7,13,18,40.2,-74.5,tropical storm,NA,60,994,NA,NA +Bertha,1996,7,14,0,42.1,-71.9,tropical storm,NA,60,994,NA,NA +Bertha,1996,7,14,6,44.1,-69,tropical storm,NA,55,995,NA,NA +Bertha,1996,7,14,12,46,-66,extratropical,NA,50,995,NA,NA +Bertha,1996,7,14,18,47,-62,extratropical,NA,50,995,NA,NA +Bertha,1996,7,15,0,48,-57,extratropical,NA,50,995,NA,NA +Bertha,1996,7,15,6,49,-52,extratropical,NA,45,996,NA,NA +Bertha,1996,7,15,12,51,-47,extratropical,NA,40,996,NA,NA +Bertha,1996,7,15,18,54,-44,extratropical,NA,40,996,NA,NA +Bertha,1996,7,16,0,57.5,-42.5,extratropical,NA,40,991,NA,NA +Bertha,1996,7,16,6,58.5,-42.5,extratropical,NA,40,988,NA,NA +Bertha,1996,7,16,12,59.5,-42,extratropical,NA,45,988,NA,NA +Bertha,1996,7,16,18,59.8,-41,extratropical,NA,45,985,NA,NA +Bertha,1996,7,17,0,60,-40,extratropical,NA,40,993,NA,NA +Bertha,1996,7,17,6,60.5,-39,extratropical,NA,35,1001,NA,NA +Cesar,1996,7,24,18,11.8,-62.6,tropical depression,NA,25,1009,NA,NA +Cesar,1996,7,25,0,11.9,-64.7,tropical depression,NA,25,1009,NA,NA +Cesar,1996,7,25,6,11.9,-66.5,tropical depression,NA,30,1007,NA,NA +Cesar,1996,7,25,12,12.1,-68.1,tropical storm,NA,40,1004,NA,NA +Cesar,1996,7,25,18,12.3,-69.6,tropical storm,NA,40,1002,NA,NA +Cesar,1996,7,26,0,12.4,-71,tropical storm,NA,40,1002,NA,NA +Cesar,1996,7,26,6,12.4,-72.7,tropical storm,NA,40,1002,NA,NA +Cesar,1996,7,26,12,12.3,-74.5,tropical storm,NA,45,1002,NA,NA +Cesar,1996,7,26,18,11.9,-76.1,tropical storm,NA,50,1002,NA,NA +Cesar,1996,7,27,0,11.7,-77.2,tropical storm,NA,50,1000,NA,NA +Cesar,1996,7,27,6,11.6,-78.1,tropical storm,NA,60,992,NA,NA +Cesar,1996,7,27,12,11.6,-79.5,hurricane,1,70,992,NA,NA +Cesar,1996,7,27,18,11.8,-81,hurricane,1,65,994,NA,NA +Cesar,1996,7,28,0,12,-82.6,hurricane,1,70,992,NA,NA +Cesar,1996,7,28,4,12.2,-83.9,hurricane,1,75,985,NA,NA +Cesar,1996,7,28,6,12.3,-84.2,hurricane,1,70,990,NA,NA +Cesar,1996,7,28,12,12.7,-86.2,tropical storm,NA,50,995,NA,NA +Cesar,1996,7,28,18,13.1,-87.9,tropical storm,NA,35,1004,NA,NA +Dolly,1996,8,19,6,17.3,-80.2,tropical depression,NA,25,1009,NA,NA +Dolly,1996,8,19,12,17.8,-81.7,tropical depression,NA,30,1008,NA,NA +Dolly,1996,8,19,18,18.2,-83,tropical storm,NA,45,1006,NA,NA +Dolly,1996,8,20,0,18.6,-84.4,tropical storm,NA,45,1006,NA,NA +Dolly,1996,8,20,6,18.8,-85.7,tropical storm,NA,55,1005,NA,NA +Dolly,1996,8,20,12,19,-86.9,tropical storm,NA,60,1002,NA,NA +Dolly,1996,8,20,17,19.1,-87.7,hurricane,1,65,999,NA,NA +Dolly,1996,8,20,18,19.2,-87.8,hurricane,1,65,999,NA,NA +Dolly,1996,8,21,0,19.2,-88.7,tropical storm,NA,40,1001,NA,NA +Dolly,1996,8,21,6,19.3,-89.5,tropical storm,NA,35,1002,NA,NA +Dolly,1996,8,21,12,19.4,-90.1,tropical depression,NA,30,1002,NA,NA +Dolly,1996,8,21,18,19.5,-90.7,tropical depression,NA,30,1002,NA,NA +Dolly,1996,8,22,0,19.7,-91.4,tropical storm,NA,35,1002,NA,NA +Dolly,1996,8,22,6,20.1,-92.6,tropical storm,NA,45,1002,NA,NA +Dolly,1996,8,22,12,20.4,-93.7,tropical storm,NA,45,999,NA,NA +Dolly,1996,8,22,18,20.6,-94.2,tropical storm,NA,50,993,NA,NA +Dolly,1996,8,23,0,20.9,-94.9,tropical storm,NA,55,990,NA,NA +Dolly,1996,8,23,6,21.3,-96.1,tropical storm,NA,60,991,NA,NA +Dolly,1996,8,23,12,21.6,-97.7,hurricane,1,70,989,NA,NA +Dolly,1996,8,23,18,21.6,-99.3,tropical storm,NA,45,997,NA,NA +Dolly,1996,8,24,0,21.6,-100.9,tropical depression,NA,30,1002,NA,NA +Dolly,1996,8,24,6,21.6,-102.5,tropical depression,NA,25,1004,NA,NA +Dolly,1996,8,24,12,21.7,-104,tropical depression,NA,20,1005,NA,NA +Dolly,1996,8,24,18,21.7,-105.7,tropical depression,NA,20,1005,NA,NA +Dolly,1996,8,25,0,21.8,-107.3,tropical depression,NA,20,1005,NA,NA +Edouard,1996,8,19,18,12.4,-19.9,tropical depression,NA,25,1007,NA,NA +Edouard,1996,8,20,0,12.4,-20.7,tropical depression,NA,25,1007,NA,NA +Edouard,1996,8,20,6,12.4,-21.6,tropical depression,NA,25,1007,NA,NA +Edouard,1996,8,20,12,12.5,-22.6,tropical depression,NA,25,1007,NA,NA +Edouard,1996,8,20,18,12.6,-23.8,tropical depression,NA,25,1007,NA,NA +Edouard,1996,8,21,0,12.6,-25.3,tropical depression,NA,25,1007,NA,NA +Edouard,1996,8,21,6,12.8,-26.7,tropical depression,NA,25,1007,NA,NA +Edouard,1996,8,21,12,12.9,-27.9,tropical depression,NA,25,1007,NA,NA +Edouard,1996,8,21,18,13,-29.2,tropical depression,NA,25,1006,NA,NA +Edouard,1996,8,22,0,13.1,-30.3,tropical depression,NA,30,1006,NA,NA +Edouard,1996,8,22,6,13.2,-31.6,tropical storm,NA,35,1005,NA,NA +Edouard,1996,8,22,12,13.4,-32.9,tropical storm,NA,40,1003,NA,NA +Edouard,1996,8,22,18,13.5,-34.4,tropical storm,NA,40,1002,NA,NA +Edouard,1996,8,23,0,13.7,-35.8,tropical storm,NA,45,1000,NA,NA +Edouard,1996,8,23,6,13.8,-37,tropical storm,NA,50,996,NA,NA +Edouard,1996,8,23,12,13.9,-38.3,hurricane,1,65,988,NA,NA +Edouard,1996,8,23,18,14,-39.8,hurricane,1,65,986,NA,NA +Edouard,1996,8,24,0,14.1,-41.1,hurricane,1,70,983,NA,NA +Edouard,1996,8,24,6,14.1,-42.4,hurricane,1,75,980,NA,NA +Edouard,1996,8,24,12,14.4,-43.6,hurricane,2,90,970,NA,NA +Edouard,1996,8,24,18,14.6,-44.7,hurricane,3,100,960,NA,NA +Edouard,1996,8,25,0,15,-45.8,hurricane,4,120,942,NA,NA +Edouard,1996,8,25,6,15.4,-47,hurricane,4,125,933,NA,NA +Edouard,1996,8,25,12,15.9,-48.3,hurricane,4,125,934,NA,NA +Edouard,1996,8,25,18,16.5,-49.6,hurricane,4,125,935,NA,NA +Edouard,1996,8,26,0,17,-50.9,hurricane,4,125,936,NA,NA +Edouard,1996,8,26,6,17.5,-52,hurricane,4,125,936,NA,NA +Edouard,1996,8,26,12,17.9,-53.2,hurricane,4,125,937,NA,NA +Edouard,1996,8,26,18,18.4,-54.5,hurricane,4,125,938,NA,NA +Edouard,1996,8,27,0,18.9,-55.6,hurricane,4,125,942,NA,NA +Edouard,1996,8,27,6,19.5,-56.9,hurricane,4,120,948,NA,NA +Edouard,1996,8,27,12,20,-58.1,hurricane,4,115,952,NA,NA +Edouard,1996,8,27,18,20.4,-59.3,hurricane,4,115,951,NA,NA +Edouard,1996,8,28,0,20.9,-60.4,hurricane,4,125,944,NA,NA +Edouard,1996,8,28,6,21.3,-61.7,hurricane,4,115,952,NA,NA +Edouard,1996,8,28,12,21.9,-63.2,hurricane,3,110,960,NA,NA +Edouard,1996,8,28,18,22.3,-64.6,hurricane,3,110,956,NA,NA +Edouard,1996,8,29,0,22.9,-65.9,hurricane,3,110,957,NA,NA +Edouard,1996,8,29,6,23.4,-67.1,hurricane,3,110,961,NA,NA +Edouard,1996,8,29,12,24,-68.1,hurricane,4,115,950,NA,NA +Edouard,1996,8,29,18,24.7,-69,hurricane,4,120,948,NA,NA +Edouard,1996,8,30,0,25.5,-69.5,hurricane,4,120,941,NA,NA +Edouard,1996,8,30,6,26.4,-69.9,hurricane,4,120,939,NA,NA +Edouard,1996,8,30,12,27.4,-70.2,hurricane,4,120,938,NA,NA +Edouard,1996,8,30,18,28.5,-70.5,hurricane,4,120,934,NA,NA +Edouard,1996,8,31,0,29.5,-70.5,hurricane,3,110,944,NA,NA +Edouard,1996,8,31,6,30.4,-70.6,hurricane,3,105,950,NA,NA +Edouard,1996,8,31,12,31.6,-70.3,hurricane,3,105,952,NA,NA +Edouard,1996,8,31,18,32.7,-70.1,hurricane,3,100,953,NA,NA +Edouard,1996,9,1,0,34,-70.1,hurricane,3,100,959,NA,NA +Edouard,1996,9,1,6,35.2,-70.1,hurricane,3,100,958,NA,NA +Edouard,1996,9,1,12,36.5,-70.2,hurricane,2,95,958,NA,NA +Edouard,1996,9,1,18,37.5,-70,hurricane,2,85,960,NA,NA +Edouard,1996,9,2,0,38.7,-69.5,hurricane,1,80,964,NA,NA +Edouard,1996,9,2,6,39.8,-69.4,hurricane,1,70,961,NA,NA +Edouard,1996,9,2,12,40.5,-68.3,hurricane,1,70,962,NA,NA +Edouard,1996,9,2,18,41.3,-67.3,hurricane,1,65,972,NA,NA +Edouard,1996,9,3,0,42,-66.8,tropical storm,NA,60,978,NA,NA +Edouard,1996,9,3,6,42.2,-66,extratropical,NA,55,985,NA,NA +Edouard,1996,9,3,12,42.5,-65,extratropical,NA,50,992,NA,NA +Edouard,1996,9,3,18,42.7,-63,extratropical,NA,50,995,NA,NA +Edouard,1996,9,4,0,43.2,-59.8,extratropical,NA,50,997,NA,NA +Edouard,1996,9,4,6,43.3,-57.5,extratropical,NA,50,994,NA,NA +Edouard,1996,9,4,12,43.4,-55.5,extratropical,NA,50,994,NA,NA +Edouard,1996,9,4,18,43.5,-53.5,extratropical,NA,50,995,NA,NA +Edouard,1996,9,5,0,43.5,-51.5,extratropical,NA,50,995,NA,NA +Edouard,1996,9,5,6,43.5,-50,extratropical,NA,45,994,NA,NA +Edouard,1996,9,5,12,43.5,-48.5,extratropical,NA,45,994,NA,NA +Edouard,1996,9,5,18,43.7,-47.5,extratropical,NA,45,995,NA,NA +Edouard,1996,9,6,0,44.5,-46,extratropical,NA,40,995,NA,NA +Edouard,1996,9,6,6,46,-44,extratropical,NA,40,994,NA,NA +Edouard,1996,9,6,12,48,-43,extratropical,NA,40,992,NA,NA +Edouard,1996,9,6,18,50,-41,extratropical,NA,40,990,NA,NA +Fran,1996,8,23,12,14,-21,tropical depression,NA,25,1012,NA,NA +Fran,1996,8,23,18,14.1,-22.8,tropical depression,NA,25,1011,NA,NA +Fran,1996,8,24,0,14.2,-24.8,tropical depression,NA,25,1010,NA,NA +Fran,1996,8,24,6,14.2,-26.6,tropical depression,NA,30,1009,NA,NA +Fran,1996,8,24,12,14.1,-28.2,tropical depression,NA,30,1009,NA,NA +Fran,1996,8,24,18,14.1,-29.6,tropical depression,NA,30,1009,NA,NA +Fran,1996,8,25,0,14.1,-30.8,tropical depression,NA,25,1009,NA,NA +Fran,1996,8,25,6,14.3,-32,tropical depression,NA,25,1009,NA,NA +Fran,1996,8,25,12,14.6,-33.4,tropical depression,NA,25,1009,NA,NA +Fran,1996,8,25,18,14.7,-35.1,tropical depression,NA,25,1009,NA,NA +Fran,1996,8,26,0,14.9,-37,tropical depression,NA,25,1009,NA,NA +Fran,1996,8,26,6,15.1,-38.6,tropical depression,NA,25,1009,NA,NA +Fran,1996,8,26,12,15.3,-40,tropical depression,NA,30,1009,NA,NA +Fran,1996,8,26,18,15.2,-41.4,tropical depression,NA,30,1008,NA,NA +Fran,1996,8,27,0,14.9,-42.7,tropical depression,NA,30,1007,NA,NA +Fran,1996,8,27,6,14.7,-43.8,tropical depression,NA,30,1006,NA,NA +Fran,1996,8,27,12,14.6,-44.9,tropical storm,NA,35,1005,NA,NA +Fran,1996,8,27,18,14.6,-46.1,tropical storm,NA,40,1004,NA,NA +Fran,1996,8,28,0,14.6,-47.5,tropical storm,NA,45,1002,NA,NA +Fran,1996,8,28,6,15,-49.1,tropical storm,NA,50,1000,NA,NA +Fran,1996,8,28,12,15.5,-50.7,tropical storm,NA,55,995,NA,NA +Fran,1996,8,28,18,15.9,-52.3,tropical storm,NA,60,990,NA,NA +Fran,1996,8,29,0,16.4,-53.7,hurricane,1,65,987,NA,NA +Fran,1996,8,29,6,17,-55,hurricane,1,65,987,NA,NA +Fran,1996,8,29,12,17.8,-56.3,hurricane,1,65,988,NA,NA +Fran,1996,8,29,18,18.6,-57.5,hurricane,1,65,988,NA,NA +Fran,1996,8,30,0,19.1,-58.5,hurricane,1,65,991,NA,NA +Fran,1996,8,30,6,19.4,-59.4,hurricane,1,65,991,NA,NA +Fran,1996,8,30,12,19.8,-60.1,hurricane,1,65,989,NA,NA +Fran,1996,8,30,18,20.2,-60.6,tropical storm,NA,60,990,NA,NA +Fran,1996,8,31,0,20.5,-60.9,tropical storm,NA,60,988,NA,NA +Fran,1996,8,31,6,20.8,-61.2,tropical storm,NA,60,987,NA,NA +Fran,1996,8,31,12,21.1,-61.4,hurricane,1,65,984,NA,NA +Fran,1996,8,31,18,21.5,-61.7,hurricane,1,65,983,NA,NA +Fran,1996,9,1,0,21.7,-62.1,hurricane,1,65,978,NA,NA +Fran,1996,9,1,6,21.9,-62.6,hurricane,1,65,982,NA,NA +Fran,1996,9,1,12,22.2,-63.2,hurricane,1,70,982,NA,NA +Fran,1996,9,1,18,22.5,-63.9,hurricane,1,75,981,NA,NA +Fran,1996,9,2,0,22.9,-64.7,hurricane,1,75,978,NA,NA +Fran,1996,9,2,6,23.3,-65.7,hurricane,1,75,976,NA,NA +Fran,1996,9,2,12,23.6,-66.7,hurricane,1,75,976,NA,NA +Fran,1996,9,2,18,23.9,-67.9,hurricane,1,75,976,NA,NA +Fran,1996,9,3,0,24.2,-69,hurricane,1,75,977,NA,NA +Fran,1996,9,3,6,24.4,-70.1,hurricane,1,80,975,NA,NA +Fran,1996,9,3,12,24.7,-71.2,hurricane,1,80,973,NA,NA +Fran,1996,9,3,18,25.2,-72.2,hurricane,2,85,968,NA,NA +Fran,1996,9,4,0,25.7,-73.1,hurricane,2,95,961,NA,NA +Fran,1996,9,4,6,26.4,-73.9,hurricane,3,100,953,NA,NA +Fran,1996,9,4,12,27,-74.7,hurricane,3,105,956,NA,NA +Fran,1996,9,4,18,27.7,-75.5,hurricane,3,105,952,NA,NA +Fran,1996,9,5,0,28.6,-76.1,hurricane,3,105,946,NA,NA +Fran,1996,9,5,6,29.8,-76.7,hurricane,3,105,952,NA,NA +Fran,1996,9,5,12,31,-77.2,hurricane,3,100,954,NA,NA +Fran,1996,9,5,18,32.3,-77.8,hurricane,3,100,952,NA,NA +Fran,1996,9,6,0,33.7,-78,hurricane,3,100,954,NA,NA +Fran,1996,9,6,0,33.9,-78,hurricane,3,100,954,NA,NA +Fran,1996,9,6,6,35.2,-78.7,hurricane,1,65,970,NA,NA +Fran,1996,9,6,12,36.7,-79,tropical storm,NA,40,985,NA,NA +Fran,1996,9,6,18,38,-79.4,tropical depression,NA,30,995,NA,NA +Fran,1996,9,7,0,39.2,-79.9,tropical depression,NA,30,1000,NA,NA +Fran,1996,9,7,6,40.4,-80.4,tropical depression,NA,30,1001,NA,NA +Fran,1996,9,7,12,41.2,-80.5,tropical depression,NA,30,1001,NA,NA +Fran,1996,9,7,18,42,-80.4,tropical depression,NA,30,1000,NA,NA +Fran,1996,9,8,0,42.8,-80.1,tropical depression,NA,30,999,NA,NA +Fran,1996,9,8,6,43.4,-79.9,tropical depression,NA,30,999,NA,NA +Fran,1996,9,8,12,44,-79,tropical depression,NA,25,1000,NA,NA +Fran,1996,9,8,18,44.5,-77.6,tropical depression,NA,25,1001,NA,NA +Fran,1996,9,9,0,44.9,-75.9,extratropical,NA,25,1002,NA,NA +Fran,1996,9,9,6,45.4,-74,extratropical,NA,20,1004,NA,NA +Fran,1996,9,9,12,45.7,-72.3,extratropical,NA,15,1006,NA,NA +Fran,1996,9,9,18,46,-71.1,extratropical,NA,15,1008,NA,NA +Fran,1996,9,10,0,46.7,-70,extratropical,NA,15,1010,NA,NA +Gustav,1996,8,26,0,12.7,-23,tropical depression,NA,30,1008,NA,NA +Gustav,1996,8,26,6,12.7,-24.1,tropical depression,NA,30,1008,NA,NA +Gustav,1996,8,26,12,12.5,-25.3,tropical depression,NA,30,1008,NA,NA +Gustav,1996,8,26,18,12.3,-26.6,tropical depression,NA,30,1008,NA,NA +Gustav,1996,8,27,0,12.1,-27.8,tropical depression,NA,30,1008,NA,NA +Gustav,1996,8,27,6,11.7,-28.8,tropical depression,NA,30,1008,NA,NA +Gustav,1996,8,27,12,11.1,-30,tropical depression,NA,30,1007,NA,NA +Gustav,1996,8,27,18,10.6,-31,tropical depression,NA,30,1007,NA,NA +Gustav,1996,8,28,0,10.4,-31.8,tropical depression,NA,30,1006,NA,NA +Gustav,1996,8,28,6,10.6,-32.7,tropical storm,NA,35,1006,NA,NA +Gustav,1996,8,28,12,11,-33.6,tropical storm,NA,35,1005,NA,NA +Gustav,1996,8,28,18,11.8,-34.4,tropical storm,NA,35,1005,NA,NA +Gustav,1996,8,29,0,12.5,-35.2,tropical storm,NA,40,1005,NA,NA +Gustav,1996,8,29,6,13.1,-36.2,tropical storm,NA,40,1005,NA,NA +Gustav,1996,8,29,12,13.7,-37.2,tropical storm,NA,40,1005,NA,NA +Gustav,1996,8,29,18,14.4,-38,tropical storm,NA,40,1005,NA,NA +Gustav,1996,8,30,0,15.2,-38.4,tropical storm,NA,35,1005,NA,NA +Gustav,1996,8,30,6,15.8,-38.9,tropical storm,NA,35,1005,NA,NA +Gustav,1996,8,30,12,16.2,-39.5,tropical storm,NA,35,1006,NA,NA +Gustav,1996,8,30,18,16.6,-40.4,tropical storm,NA,35,1006,NA,NA +Gustav,1996,8,31,0,17.1,-41.1,tropical storm,NA,35,1007,NA,NA +Gustav,1996,8,31,6,17.7,-41.8,tropical storm,NA,35,1008,NA,NA +Gustav,1996,8,31,12,18.3,-42.5,tropical storm,NA,35,1008,NA,NA +Gustav,1996,8,31,18,18.7,-43.2,tropical storm,NA,35,1008,NA,NA +Gustav,1996,9,1,0,19.3,-43.8,tropical storm,NA,35,1008,NA,NA +Gustav,1996,9,1,6,19.9,-44.5,tropical storm,NA,35,1008,NA,NA +Gustav,1996,9,1,12,20.5,-45.4,tropical storm,NA,35,1008,NA,NA +Gustav,1996,9,1,18,20.9,-46.5,tropical depression,NA,30,1008,NA,NA +Gustav,1996,9,2,0,21.3,-47.7,tropical depression,NA,30,1008,NA,NA +Hortense,1996,9,3,12,14.9,-41,tropical depression,NA,25,1006,NA,NA +Hortense,1996,9,3,18,14.9,-42.7,tropical depression,NA,30,1006,NA,NA +Hortense,1996,9,4,0,14.8,-44.1,tropical depression,NA,30,1006,NA,NA +Hortense,1996,9,4,6,14.7,-45.4,tropical depression,NA,30,1006,NA,NA +Hortense,1996,9,4,12,14.6,-46.6,tropical depression,NA,30,1006,NA,NA +Hortense,1996,9,4,18,14.7,-47.5,tropical depression,NA,30,1006,NA,NA +Hortense,1996,9,5,0,14.9,-48.4,tropical depression,NA,30,1006,NA,NA +Hortense,1996,9,5,6,14.8,-49.5,tropical depression,NA,30,1006,NA,NA +Hortense,1996,9,5,12,14.5,-51.1,tropical depression,NA,30,1006,NA,NA +Hortense,1996,9,5,18,14.3,-52.6,tropical depression,NA,30,1006,NA,NA +Hortense,1996,9,6,0,14.4,-53.6,tropical depression,NA,30,1006,NA,NA +Hortense,1996,9,6,6,14.6,-54.3,tropical depression,NA,30,1006,NA,NA +Hortense,1996,9,6,12,14.7,-55.1,tropical depression,NA,30,1006,NA,NA +Hortense,1996,9,6,18,14.9,-55.7,tropical depression,NA,30,1006,NA,NA +Hortense,1996,9,7,0,15.2,-57,tropical depression,NA,30,1006,NA,NA +Hortense,1996,9,7,6,15.4,-58.3,tropical storm,NA,35,1005,NA,NA +Hortense,1996,9,7,12,15.6,-59.6,tropical storm,NA,40,1004,NA,NA +Hortense,1996,9,7,18,15.8,-60.4,tropical storm,NA,40,1000,NA,NA +Hortense,1996,9,8,0,16.1,-61.2,tropical storm,NA,50,996,NA,NA +Hortense,1996,9,8,6,16.1,-62,tropical storm,NA,55,996,NA,NA +Hortense,1996,9,8,12,16.1,-62.8,tropical storm,NA,60,996,NA,NA +Hortense,1996,9,8,18,16.1,-63.6,tropical storm,NA,60,991,NA,NA +Hortense,1996,9,9,0,16.1,-64.1,tropical storm,NA,60,990,NA,NA +Hortense,1996,9,9,6,16.1,-64.5,hurricane,1,70,987,NA,NA +Hortense,1996,9,9,12,16.3,-65,hurricane,1,70,985,NA,NA +Hortense,1996,9,9,18,16.6,-65.6,hurricane,1,70,990,NA,NA +Hortense,1996,9,10,0,17.1,-66.1,hurricane,1,70,989,NA,NA +Hortense,1996,9,10,6,18,-66.9,hurricane,1,70,989,NA,NA +Hortense,1996,9,10,12,18.3,-67.8,hurricane,1,65,989,NA,NA +Hortense,1996,9,10,18,18.9,-68.4,hurricane,1,65,990,NA,NA +Hortense,1996,9,11,0,19.5,-68.9,hurricane,1,70,982,NA,NA +Hortense,1996,9,11,6,20.1,-69.5,hurricane,1,75,975,NA,NA +Hortense,1996,9,11,12,20.9,-70.1,hurricane,2,90,971,NA,NA +Hortense,1996,9,11,18,21.6,-70.6,hurricane,2,95,970,NA,NA +Hortense,1996,9,12,0,22.3,-71.1,hurricane,3,100,967,NA,NA +Hortense,1996,9,12,6,23,-71.4,hurricane,3,105,962,NA,NA +Hortense,1996,9,12,12,23.9,-71.8,hurricane,4,115,959,NA,NA +Hortense,1996,9,12,18,24.7,-71.8,hurricane,4,115,946,NA,NA +Hortense,1996,9,13,0,25.9,-71.5,hurricane,4,120,935,NA,NA +Hortense,1996,9,13,6,27.2,-71.4,hurricane,4,115,942,NA,NA +Hortense,1996,9,13,12,29,-70.9,hurricane,3,100,948,NA,NA +Hortense,1996,9,13,18,31,-70.3,hurricane,3,100,948,NA,NA +Hortense,1996,9,14,0,33.3,-69.5,hurricane,2,90,948,NA,NA +Hortense,1996,9,14,6,35.9,-68.4,hurricane,2,90,955,NA,NA +Hortense,1996,9,14,12,38.5,-67.1,hurricane,2,85,960,NA,NA +Hortense,1996,9,14,18,42,-65.2,hurricane,1,75,960,NA,NA +Hortense,1996,9,15,0,44.3,-63.3,hurricane,1,70,970,NA,NA +Hortense,1996,9,15,3,44.8,-62.5,hurricane,1,70,978,NA,NA +Hortense,1996,9,15,6,45.5,-61.5,hurricane,1,65,980,NA,NA +Hortense,1996,9,15,12,46.3,-59.1,tropical storm,NA,60,982,NA,NA +Hortense,1996,9,15,18,46,-55,extratropical,NA,40,996,NA,NA +Hortense,1996,9,16,0,46,-54,extratropical,NA,40,998,NA,NA +Hortense,1996,9,16,6,45,-50,extratropical,NA,35,999,NA,NA +Isidore,1996,9,24,12,8.6,-23.3,tropical depression,NA,25,1008,NA,NA +Isidore,1996,9,24,18,9.2,-25.2,tropical depression,NA,30,1008,NA,NA +Isidore,1996,9,25,0,9.9,-26.9,tropical depression,NA,30,1006,NA,NA +Isidore,1996,9,25,6,10.3,-28.5,tropical storm,NA,35,1004,NA,NA +Isidore,1996,9,25,12,10.7,-30,tropical storm,NA,45,1000,NA,NA +Isidore,1996,9,25,18,11,-31.7,tropical storm,NA,50,994,NA,NA +Isidore,1996,9,26,0,11.2,-32.8,tropical storm,NA,60,988,NA,NA +Isidore,1996,9,26,6,11.7,-34.2,hurricane,1,70,984,NA,NA +Isidore,1996,9,26,12,12.4,-35.8,hurricane,1,70,980,NA,NA +Isidore,1996,9,26,18,12.8,-37.1,hurricane,1,75,977,NA,NA +Isidore,1996,9,27,0,13.1,-38.6,hurricane,1,80,974,NA,NA +Isidore,1996,9,27,6,13.7,-39.8,hurricane,2,85,972,NA,NA +Isidore,1996,9,27,12,14.1,-41.1,hurricane,2,90,968,NA,NA +Isidore,1996,9,27,18,14.9,-42.2,hurricane,2,95,963,NA,NA +Isidore,1996,9,28,0,15.8,-42.9,hurricane,3,100,960,NA,NA +Isidore,1996,9,28,6,16.7,-43.1,hurricane,3,100,961,NA,NA +Isidore,1996,9,28,12,17.8,-43.2,hurricane,2,95,965,NA,NA +Isidore,1996,9,28,18,19,-43.2,hurricane,2,90,968,NA,NA +Isidore,1996,9,29,0,20,-42.9,hurricane,2,85,973,NA,NA +Isidore,1996,9,29,6,20.8,-42.2,hurricane,1,75,979,NA,NA +Isidore,1996,9,29,12,21.8,-41.3,hurricane,1,70,982,NA,NA +Isidore,1996,9,29,18,22.6,-40.9,hurricane,1,65,986,NA,NA +Isidore,1996,9,30,0,23.8,-40.4,tropical storm,NA,60,989,NA,NA +Isidore,1996,9,30,6,25.3,-40.1,tropical storm,NA,60,992,NA,NA +Isidore,1996,9,30,12,26.7,-40,tropical storm,NA,50,995,NA,NA +Isidore,1996,9,30,18,28.2,-40.1,tropical storm,NA,45,997,NA,NA +Isidore,1996,10,1,0,29.9,-40.3,tropical storm,NA,35,1000,NA,NA +Isidore,1996,10,1,6,31.6,-40.4,tropical storm,NA,35,1002,NA,NA +Isidore,1996,10,1,12,33.6,-40.4,tropical depression,NA,30,1005,NA,NA +Isidore,1996,10,1,18,35.8,-40.3,tropical depression,NA,30,1008,NA,NA +Isidore,1996,10,2,0,38.1,-40.2,extratropical,NA,25,1010,NA,NA +Isidore,1996,10,2,6,40.3,-39.6,extratropical,NA,20,1013,NA,NA +Isidore,1996,10,2,12,43,-36,extratropical,NA,20,1015,NA,NA +Josephine,1996,10,4,18,22.7,-96.2,tropical depression,NA,25,1003,NA,NA +Josephine,1996,10,5,0,23,-96.1,tropical depression,NA,30,1003,NA,NA +Josephine,1996,10,5,6,23.3,-96,tropical depression,NA,30,1003,NA,NA +Josephine,1996,10,5,12,23.6,-95.8,tropical depression,NA,30,1003,NA,NA +Josephine,1996,10,5,18,24.3,-95.5,tropical depression,NA,30,1003,NA,NA +Josephine,1996,10,6,0,24.8,-95,tropical depression,NA,30,1002,NA,NA +Josephine,1996,10,6,6,25,-94.5,tropical depression,NA,30,1002,NA,NA +Josephine,1996,10,6,12,25.1,-93.5,tropical depression,NA,30,1003,NA,NA +Josephine,1996,10,6,18,25.1,-91.8,tropical storm,NA,35,1001,NA,NA +Josephine,1996,10,7,0,25.5,-90.4,tropical storm,NA,40,996,NA,NA +Josephine,1996,10,7,6,25.9,-88.9,tropical storm,NA,50,992,NA,NA +Josephine,1996,10,7,12,26.9,-87.3,tropical storm,NA,60,981,NA,NA +Josephine,1996,10,7,18,28.2,-86,tropical storm,NA,60,983,NA,NA +Josephine,1996,10,8,0,29.3,-84.5,tropical storm,NA,60,983,NA,NA +Josephine,1996,10,8,3,30,-83.9,tropical storm,NA,60,983,NA,NA +Josephine,1996,10,8,6,30.9,-82.3,extratropical,NA,45,990,NA,NA +Josephine,1996,10,8,12,34,-79,extratropical,NA,45,988,NA,NA +Josephine,1996,10,8,18,36,-76,extratropical,NA,45,986,NA,NA +Josephine,1996,10,9,0,38,-73.5,extratropical,NA,45,983,NA,NA +Josephine,1996,10,9,6,41,-71,extratropical,NA,45,980,NA,NA +Josephine,1996,10,9,12,42.5,-68,extratropical,NA,45,980,NA,NA +Josephine,1996,10,9,18,44.5,-65.5,extratropical,NA,45,984,NA,NA +Josephine,1996,10,10,0,46.5,-62.5,extratropical,NA,45,985,NA,NA +Josephine,1996,10,10,6,48.5,-58,extratropical,NA,45,985,NA,NA +Josephine,1996,10,10,12,49.5,-55,extratropical,NA,45,983,NA,NA +Josephine,1996,10,10,18,50.5,-50,extratropical,NA,45,984,NA,NA +Josephine,1996,10,11,0,51,-44,extratropical,NA,45,984,NA,NA +Josephine,1996,10,11,6,51,-38,extratropical,NA,45,986,NA,NA +Josephine,1996,10,11,12,51,-32,extratropical,NA,45,988,NA,NA +Josephine,1996,10,11,18,51,-26,extratropical,NA,45,989,NA,NA +Josephine,1996,10,12,0,51,-21,extratropical,NA,45,985,NA,NA +Josephine,1996,10,12,6,51,-18,extratropical,NA,45,980,NA,NA +Josephine,1996,10,12,12,51.5,-16.5,extratropical,NA,45,982,NA,NA +Josephine,1996,10,12,18,52.5,-15.5,extratropical,NA,50,977,NA,NA +Josephine,1996,10,13,0,53,-15.5,extratropical,NA,55,973,NA,NA +Josephine,1996,10,13,6,53.5,-15.5,extratropical,NA,60,971,NA,NA +Josephine,1996,10,13,12,54,-15.5,extratropical,NA,55,972,NA,NA +Josephine,1996,10,13,18,55.5,-15.5,extratropical,NA,50,977,NA,NA +Josephine,1996,10,14,0,57.5,-16,extratropical,NA,45,982,NA,NA +Josephine,1996,10,14,6,60,-18,extratropical,NA,45,977,NA,NA +Josephine,1996,10,14,12,61,-20,extratropical,NA,45,972,NA,NA +Josephine,1996,10,14,18,62,-22,extratropical,NA,45,970,NA,NA +Josephine,1996,10,15,0,62.5,-24,extratropical,NA,45,972,NA,NA +Josephine,1996,10,15,6,63,-26,extratropical,NA,45,978,NA,NA +Josephine,1996,10,15,12,63,-28,extratropical,NA,40,983,NA,NA +Josephine,1996,10,15,18,63,-29.5,extratropical,NA,35,988,NA,NA +Josephine,1996,10,16,0,63,-30.5,extratropical,NA,30,992,NA,NA +Kyle,1996,10,11,12,17.3,-86.5,tropical depression,NA,30,1006,NA,NA +Kyle,1996,10,11,18,16.9,-87.1,tropical storm,NA,45,1002,NA,NA +Kyle,1996,10,11,21,16.7,-87.4,tropical storm,NA,45,1001,NA,NA +Kyle,1996,10,12,0,16.6,-87.5,tropical storm,NA,45,1001,NA,NA +Kyle,1996,10,12,6,16.3,-87.8,tropical storm,NA,35,1004,NA,NA +Kyle,1996,10,12,12,16,-88.1,tropical depression,NA,30,1008,NA,NA +Kyle,1996,10,12,18,15.7,-88.4,tropical depression,NA,25,1012,NA,NA +Lili,1996,10,14,12,12.8,-80.4,tropical depression,NA,25,1006,NA,NA +Lili,1996,10,14,18,13.4,-80.9,tropical depression,NA,25,1005,NA,NA +Lili,1996,10,15,0,14.1,-81.4,tropical depression,NA,25,1005,NA,NA +Lili,1996,10,15,6,14.8,-81.9,tropical depression,NA,25,1005,NA,NA +Lili,1996,10,15,12,15.4,-82.5,tropical depression,NA,30,1004,NA,NA +Lili,1996,10,15,18,16.1,-83.1,tropical depression,NA,30,1003,NA,NA +Lili,1996,10,16,0,16.8,-83.5,tropical depression,NA,30,999,NA,NA +Lili,1996,10,16,6,17.5,-83.8,tropical storm,NA,35,998,NA,NA +Lili,1996,10,16,12,18.2,-83.8,tropical storm,NA,45,998,NA,NA +Lili,1996,10,16,18,18.3,-84.5,tropical storm,NA,50,996,NA,NA +Lili,1996,10,17,0,18.2,-84.2,tropical storm,NA,55,992,NA,NA +Lili,1996,10,17,6,18.8,-83.7,tropical storm,NA,60,990,NA,NA +Lili,1996,10,17,12,19.6,-83.5,hurricane,1,65,987,NA,NA +Lili,1996,10,17,18,20.5,-83.1,hurricane,1,70,984,NA,NA +Lili,1996,10,18,0,21.3,-82.8,hurricane,1,70,982,NA,NA +Lili,1996,10,18,6,21.8,-82.2,hurricane,1,75,980,NA,NA +Lili,1996,10,18,9,22.3,-82,hurricane,2,85,975,NA,NA +Lili,1996,10,18,12,22.4,-81.5,hurricane,2,85,975,NA,NA +Lili,1996,10,18,18,22.5,-80,hurricane,1,80,975,NA,NA +Lili,1996,10,19,0,23,-78.2,hurricane,2,85,975,NA,NA +Lili,1996,10,19,6,23.5,-76.2,hurricane,2,90,970,NA,NA +Lili,1996,10,19,12,24.4,-74,hurricane,3,100,960,NA,NA +Lili,1996,10,19,18,25.5,-71.5,hurricane,2,90,962,NA,NA +Lili,1996,10,20,0,26.9,-69,hurricane,1,80,964,NA,NA +Lili,1996,10,20,6,28.3,-67,hurricane,1,80,968,NA,NA +Lili,1996,10,20,12,29.6,-65,hurricane,2,85,960,NA,NA +Lili,1996,10,20,18,30.7,-62.9,hurricane,1,75,970,NA,NA +Lili,1996,10,21,0,31.9,-60.8,hurricane,1,75,980,NA,NA +Lili,1996,10,21,6,33,-59.1,hurricane,1,70,985,NA,NA +Lili,1996,10,21,12,33.7,-57.9,hurricane,1,65,986,NA,NA +Lili,1996,10,21,18,34,-57,hurricane,1,65,987,NA,NA +Lili,1996,10,22,0,34,-55.9,hurricane,1,65,987,NA,NA +Lili,1996,10,22,6,33.8,-55.2,hurricane,1,65,987,NA,NA +Lili,1996,10,22,12,33.7,-54.6,hurricane,1,65,987,NA,NA +Lili,1996,10,22,18,33.5,-54,hurricane,1,65,987,NA,NA +Lili,1996,10,23,0,33.4,-53.9,hurricane,1,65,987,NA,NA +Lili,1996,10,23,6,33.2,-53.8,hurricane,1,65,985,NA,NA +Lili,1996,10,23,12,33.1,-53.7,hurricane,1,65,981,NA,NA +Lili,1996,10,23,18,33.3,-53.2,hurricane,1,70,979,NA,NA +Lili,1996,10,24,0,33.7,-52.8,hurricane,1,70,979,NA,NA +Lili,1996,10,24,6,34,-52.5,hurricane,1,70,979,NA,NA +Lili,1996,10,24,12,34,-51.9,hurricane,1,70,979,NA,NA +Lili,1996,10,24,18,34.1,-51.2,hurricane,1,75,979,NA,NA +Lili,1996,10,25,0,34.3,-49.9,hurricane,1,80,977,NA,NA +Lili,1996,10,25,6,35,-47.8,hurricane,1,80,973,NA,NA +Lili,1996,10,25,12,35.8,-45.4,hurricane,2,85,970,NA,NA +Lili,1996,10,25,18,37.2,-43.3,hurricane,1,80,971,NA,NA +Lili,1996,10,26,0,38.1,-41,hurricane,1,75,975,NA,NA +Lili,1996,10,26,6,39.2,-38.8,hurricane,1,70,978,NA,NA +Lili,1996,10,26,12,40.5,-35.8,hurricane,1,65,979,NA,NA +Lili,1996,10,26,18,42.3,-33.2,tropical storm,NA,60,980,NA,NA +Lili,1996,10,27,0,44.3,-30.5,tropical storm,NA,55,978,NA,NA +Lili,1996,10,27,6,46.3,-27.2,extratropical,NA,55,980,NA,NA +Lili,1996,10,27,12,48.2,-23.1,extratropical,NA,55,978,NA,NA +Lili,1996,10,27,18,50.3,-19,extratropical,NA,55,973,NA,NA +Lili,1996,10,28,0,52.5,-15.5,extratropical,NA,55,973,NA,NA +Lili,1996,10,28,6,53.8,-12,extratropical,NA,55,973,NA,NA +Lili,1996,10,28,12,54,-7.5,extratropical,NA,55,970,NA,NA +Lili,1996,10,28,18,54.5,-3.5,extratropical,NA,55,970,NA,NA +Lili,1996,10,29,0,54,1,extratropical,NA,55,976,NA,NA +Marco,1996,11,13,12,10.5,-77.5,other low,NA,20,1009,NA,NA +Marco,1996,11,13,18,11.3,-78,other low,NA,20,1009,NA,NA +Marco,1996,11,14,0,12,-78.5,other low,NA,20,1009,NA,NA +Marco,1996,11,14,6,12.8,-78.9,other low,NA,20,1009,NA,NA +Marco,1996,11,14,12,13.5,-79,other low,NA,20,1008,NA,NA +Marco,1996,11,14,18,14,-79,other low,NA,20,1008,NA,NA +Marco,1996,11,15,0,14.3,-79,other low,NA,20,1008,NA,NA +Marco,1996,11,15,6,14.7,-79,other low,NA,20,1008,NA,NA +Marco,1996,11,15,12,15,-79,other low,NA,20,1008,NA,NA +Marco,1996,11,15,18,15.5,-79,other low,NA,20,1008,NA,NA +Marco,1996,11,16,0,15.8,-79,other low,NA,20,1008,NA,NA +Marco,1996,11,16,6,16.2,-79,other low,NA,20,1008,NA,NA +Marco,1996,11,16,12,16.5,-79,other low,NA,25,1007,NA,NA +Marco,1996,11,16,18,17,-79,tropical depression,NA,30,1007,NA,NA +Marco,1996,11,17,0,16.8,-79.8,tropical depression,NA,30,1007,NA,NA +Marco,1996,11,17,6,16.3,-80.5,tropical depression,NA,30,1007,NA,NA +Marco,1996,11,17,12,15.8,-80.8,tropical depression,NA,30,1007,NA,NA +Marco,1996,11,17,18,15,-81,tropical depression,NA,30,1006,NA,NA +Marco,1996,11,18,0,14.9,-81,tropical depression,NA,30,1006,NA,NA +Marco,1996,11,18,6,14.7,-81,tropical depression,NA,30,1005,NA,NA +Marco,1996,11,18,12,14.6,-81,tropical depression,NA,30,1004,NA,NA +Marco,1996,11,18,18,14.5,-81,tropical depression,NA,30,1003,NA,NA +Marco,1996,11,19,0,14.2,-81,tropical depression,NA,30,1001,NA,NA +Marco,1996,11,19,6,13.8,-80.9,tropical storm,NA,35,998,NA,NA +Marco,1996,11,19,12,13.5,-80.7,tropical storm,NA,45,997,NA,NA +Marco,1996,11,19,18,13.5,-80.2,tropical storm,NA,55,995,NA,NA +Marco,1996,11,20,0,13.8,-79.5,tropical storm,NA,60,990,NA,NA +Marco,1996,11,20,6,13.8,-78.5,hurricane,1,65,983,NA,NA +Marco,1996,11,20,12,14.2,-77.8,hurricane,1,65,989,NA,NA +Marco,1996,11,20,18,14.6,-77.4,tropical storm,NA,45,1000,NA,NA +Marco,1996,11,21,0,14.9,-77.1,tropical storm,NA,45,1000,NA,NA +Marco,1996,11,21,6,15.1,-76.8,tropical storm,NA,45,995,NA,NA +Marco,1996,11,21,12,15.3,-76.6,tropical storm,NA,50,993,NA,NA +Marco,1996,11,21,18,15.6,-76.5,tropical storm,NA,50,995,NA,NA +Marco,1996,11,22,0,15.8,-76.3,tropical storm,NA,55,992,NA,NA +Marco,1996,11,22,6,15.9,-76,tropical storm,NA,55,985,NA,NA +Marco,1996,11,22,12,15.9,-75.4,tropical storm,NA,60,987,NA,NA +Marco,1996,11,22,18,15.9,-75,tropical storm,NA,50,995,NA,NA +Marco,1996,11,23,0,16,-74.7,tropical storm,NA,45,995,NA,NA +Marco,1996,11,23,6,15.9,-74.5,tropical storm,NA,35,995,NA,NA +Marco,1996,11,23,12,15.7,-74.5,tropical storm,NA,35,995,NA,NA +Marco,1996,11,23,18,15.6,-74.8,tropical depression,NA,30,1000,NA,NA +Marco,1996,11,24,0,15.8,-76,tropical depression,NA,30,1002,NA,NA +Marco,1996,11,24,6,15.9,-77,tropical depression,NA,30,1003,NA,NA +Marco,1996,11,24,12,16,-78,tropical storm,NA,35,1003,NA,NA +Marco,1996,11,24,18,16,-78.9,tropical storm,NA,35,1003,NA,NA +Marco,1996,11,25,0,16.7,-80.2,tropical storm,NA,45,1002,NA,NA +Marco,1996,11,25,6,17.5,-81.5,tropical storm,NA,50,1002,NA,NA +Marco,1996,11,25,12,18.3,-82.6,tropical storm,NA,55,1001,NA,NA +Marco,1996,11,25,18,19.2,-83.5,tropical storm,NA,45,1009,NA,NA +Marco,1996,11,26,0,19.7,-84,tropical storm,NA,40,1009,NA,NA +Marco,1996,11,26,6,20.1,-84.4,tropical storm,NA,35,1010,NA,NA +Marco,1996,11,26,12,20.1,-84.3,tropical depression,NA,30,1010,NA,NA +Marco,1996,11,26,18,19.6,-84.8,tropical depression,NA,25,1010,NA,NA +Ana,1997,6,30,12,32,-77.2,tropical depression,NA,30,1013,NA,NA +Ana,1997,6,30,18,32,-76.6,tropical depression,NA,30,1011,NA,NA +Ana,1997,7,1,0,31.9,-76,tropical depression,NA,30,1009,NA,NA +Ana,1997,7,1,6,31.8,-75.4,tropical storm,NA,35,1006,NA,NA +Ana,1997,7,1,12,31.7,-74.6,tropical storm,NA,40,1004,NA,NA +Ana,1997,7,1,18,31.4,-73.8,tropical storm,NA,40,1002,NA,NA +Ana,1997,7,2,0,31.4,-72.9,tropical storm,NA,40,1000,NA,NA +Ana,1997,7,2,6,31.7,-72,tropical storm,NA,35,1000,NA,NA +Ana,1997,7,2,12,32.1,-71.2,tropical storm,NA,35,1000,NA,NA +Ana,1997,7,2,18,32.7,-70.5,tropical storm,NA,35,1000,NA,NA +Ana,1997,7,3,0,33.5,-69.8,tropical storm,NA,35,1001,NA,NA +Ana,1997,7,3,6,34.4,-69.2,tropical storm,NA,35,1001,NA,NA +Ana,1997,7,3,12,35.2,-68.4,tropical storm,NA,35,1002,NA,NA +Ana,1997,7,3,18,36.1,-67.5,tropical depression,NA,30,1002,NA,NA +Ana,1997,7,4,0,36.9,-66.2,tropical depression,NA,25,1003,NA,NA +Ana,1997,7,4,6,37.7,-64.5,extratropical,NA,25,1003,NA,NA +Ana,1997,7,4,12,38.4,-62.4,extratropical,NA,25,1004,NA,NA +Ana,1997,7,4,18,39.5,-59.5,extratropical,NA,25,1004,NA,NA +Ana,1997,7,5,0,41,-58,extratropical,NA,25,1005,NA,NA +Bill,1997,7,11,6,30.4,-69.9,tropical depression,NA,30,1014,NA,NA +Bill,1997,7,11,12,31.8,-68.9,tropical storm,NA,40,1013,NA,NA +Bill,1997,7,11,18,33.1,-67.6,tropical storm,NA,45,1010,NA,NA +Bill,1997,7,12,0,34.7,-65.8,tropical storm,NA,50,1005,NA,NA +Bill,1997,7,12,6,36.3,-63.6,tropical storm,NA,60,995,NA,NA +Bill,1997,7,12,12,37.9,-61.1,hurricane,1,65,987,NA,NA +Bill,1997,7,12,15,38.8,-60,hurricane,1,65,986,NA,NA +Bill,1997,7,12,18,39.6,-58.4,hurricane,1,65,987,NA,NA +Bill,1997,7,13,0,41.6,-55.4,tropical storm,NA,60,990,NA,NA +Bill,1997,7,13,6,44,-53,tropical storm,NA,40,990,NA,NA +Claudette,1997,7,13,0,31.3,-73.6,extratropical,NA,25,1012,NA,NA +Claudette,1997,7,13,6,31.3,-73.3,tropical depression,NA,25,1011,NA,NA +Claudette,1997,7,13,12,31.6,-73.1,tropical depression,NA,30,1008,NA,NA +Claudette,1997,7,13,18,31.9,-73,tropical storm,NA,40,1004,NA,NA +Claudette,1997,7,14,0,32.3,-73,tropical storm,NA,40,1003,NA,NA +Claudette,1997,7,14,6,32.7,-72.9,tropical storm,NA,40,1003,NA,NA +Claudette,1997,7,14,12,33.4,-72.7,tropical storm,NA,40,1004,NA,NA +Claudette,1997,7,14,18,34,-72.6,tropical storm,NA,40,1005,NA,NA +Claudette,1997,7,15,0,34.9,-71.8,tropical storm,NA,35,1005,NA,NA +Claudette,1997,7,15,6,35.6,-70.9,tropical storm,NA,35,1006,NA,NA +Claudette,1997,7,15,12,36.2,-69.3,tropical storm,NA,40,1009,NA,NA +Claudette,1997,7,15,18,36.6,-67.2,tropical storm,NA,35,1009,NA,NA +Claudette,1997,7,16,0,36.7,-64.9,tropical depression,NA,30,1009,NA,NA +Claudette,1997,7,16,6,36.6,-62.7,tropical storm,NA,35,1006,NA,NA +Claudette,1997,7,16,12,36.3,-60.5,tropical storm,NA,35,1007,NA,NA +Claudette,1997,7,16,18,35.9,-57.9,extratropical,NA,30,1009,NA,NA +Danny,1997,7,16,12,27.4,-92.6,tropical depression,NA,25,1013,NA,NA +Danny,1997,7,16,18,27.5,-92.5,tropical depression,NA,30,1013,NA,NA +Danny,1997,7,17,0,27.7,-92.3,tropical depression,NA,30,1011,NA,NA +Danny,1997,7,17,6,27.9,-92,tropical depression,NA,30,1007,NA,NA +Danny,1997,7,17,12,28.3,-91.4,tropical storm,NA,40,1003,NA,NA +Danny,1997,7,17,18,28.6,-91,tropical storm,NA,50,1002,NA,NA +Danny,1997,7,18,0,28.9,-90.2,tropical storm,NA,55,997,NA,NA +Danny,1997,7,18,6,29.2,-89.9,hurricane,1,65,992,NA,NA +Danny,1997,7,18,9,29.3,-89.7,hurricane,1,65,989,NA,NA +Danny,1997,7,18,12,29.5,-89.4,hurricane,1,70,990,NA,NA +Danny,1997,7,18,18,29.7,-89,hurricane,1,70,988,NA,NA +Danny,1997,7,19,0,29.8,-88.4,hurricane,1,70,984,NA,NA +Danny,1997,7,19,6,30.1,-88.1,hurricane,1,65,987,NA,NA +Danny,1997,7,19,10,30.2,-88.1,hurricane,1,70,984,NA,NA +Danny,1997,7,19,12,30.3,-88,hurricane,1,70,984,NA,NA +Danny,1997,7,19,18,30.4,-87.9,hurricane,1,65,986,NA,NA +Danny,1997,7,20,0,30.3,-87.6,tropical storm,NA,60,991,NA,NA +Danny,1997,7,20,6,30.4,-87.5,tropical storm,NA,45,998,NA,NA +Danny,1997,7,20,12,30.6,-87.4,tropical storm,NA,35,1001,NA,NA +Danny,1997,7,20,18,30.8,-87.4,tropical depression,NA,30,1004,NA,NA +Danny,1997,7,21,0,31,-87.5,tropical depression,NA,25,1006,NA,NA +Danny,1997,7,21,6,31.3,-87.6,tropical depression,NA,20,1009,NA,NA +Danny,1997,7,21,12,31.7,-87.6,tropical depression,NA,20,1010,NA,NA +Danny,1997,7,21,18,32.1,-87.2,tropical depression,NA,20,1011,NA,NA +Danny,1997,7,22,0,32.9,-87.1,tropical depression,NA,20,1011,NA,NA +Danny,1997,7,22,6,33.2,-86.8,tropical depression,NA,20,1012,NA,NA +Danny,1997,7,22,12,33.4,-86.6,tropical depression,NA,20,1013,NA,NA +Danny,1997,7,22,18,33.7,-86.3,tropical depression,NA,20,1013,NA,NA +Danny,1997,7,23,0,34,-86,tropical depression,NA,20,1012,NA,NA +Danny,1997,7,23,6,34.1,-85.2,tropical depression,NA,20,1012,NA,NA +Danny,1997,7,23,12,34.2,-84.5,tropical depression,NA,20,1012,NA,NA +Danny,1997,7,23,18,34.3,-83.7,tropical depression,NA,20,1012,NA,NA +Danny,1997,7,24,0,34.4,-82.4,tropical depression,NA,20,1012,NA,NA +Danny,1997,7,24,6,34.6,-80.7,tropical depression,NA,20,1010,NA,NA +Danny,1997,7,24,12,35.2,-79.2,tropical depression,NA,30,1004,NA,NA +Danny,1997,7,24,18,36.4,-76.7,tropical storm,NA,40,1000,NA,NA +Danny,1997,7,25,0,37.5,-73.5,tropical storm,NA,50,996,NA,NA +Danny,1997,7,25,6,38.6,-71.6,tropical storm,NA,50,995,NA,NA +Danny,1997,7,25,12,40,-70.4,tropical storm,NA,50,995,NA,NA +Danny,1997,7,25,18,40.7,-69.9,tropical storm,NA,50,994,NA,NA +Danny,1997,7,26,0,40.7,-69.6,tropical storm,NA,45,995,NA,NA +Danny,1997,7,26,6,40.4,-68,extratropical,NA,45,998,NA,NA +Danny,1997,7,26,12,40.6,-65.6,extratropical,NA,40,1003,NA,NA +Danny,1997,7,26,18,41,-63,extratropical,NA,40,1004,NA,NA +Danny,1997,7,27,0,41.7,-60.4,extratropical,NA,40,1004,NA,NA +Danny,1997,7,27,6,42.8,-56,extratropical,NA,40,1004,NA,NA +Danny,1997,7,27,12,44,-48,extratropical,NA,30,1005,NA,NA +AL061997,1997,7,17,6,12,-51.5,tropical depression,NA,25,1009,NA,NA +AL061997,1997,7,17,12,12.5,-52.7,tropical depression,NA,30,1008,NA,NA +AL061997,1997,7,17,18,13,-54,tropical depression,NA,30,1009,NA,NA +AL061997,1997,7,18,0,13.6,-55.3,tropical depression,NA,30,1009,NA,NA +AL061997,1997,7,18,6,14.1,-56.6,tropical depression,NA,30,1011,NA,NA +AL061997,1997,7,18,12,14.6,-57.8,tropical depression,NA,30,1012,NA,NA +AL061997,1997,7,18,18,14.8,-58.9,tropical depression,NA,30,1013,NA,NA +AL061997,1997,7,19,0,15,-60,tropical depression,NA,25,1013,NA,NA +Erika,1997,9,3,6,10.9,-44.1,tropical depression,NA,30,1006,NA,NA +Erika,1997,9,3,12,11.5,-45.5,tropical depression,NA,30,1005,NA,NA +Erika,1997,9,3,18,12.3,-47.1,tropical storm,NA,35,1004,NA,NA +Erika,1997,9,4,0,13.1,-48.5,tropical storm,NA,40,1002,NA,NA +Erika,1997,9,4,6,13.9,-49.9,tropical storm,NA,50,1001,NA,NA +Erika,1997,9,4,12,14.6,-51.7,tropical storm,NA,55,1000,NA,NA +Erika,1997,9,4,18,15.2,-53.7,hurricane,1,65,999,NA,NA +Erika,1997,9,5,0,15.6,-55.3,hurricane,1,65,998,NA,NA +Erika,1997,9,5,6,16,-56.4,hurricane,1,65,997,NA,NA +Erika,1997,9,5,12,16.4,-57.4,hurricane,1,65,996,NA,NA +Erika,1997,9,5,18,17,-58.3,hurricane,1,65,990,NA,NA +Erika,1997,9,6,0,17.5,-59.2,hurricane,1,65,988,NA,NA +Erika,1997,9,6,6,18.1,-60,hurricane,1,70,986,NA,NA +Erika,1997,9,6,12,18.6,-60.9,hurricane,1,70,982,NA,NA +Erika,1997,9,6,18,19,-61.7,hurricane,1,75,980,NA,NA +Erika,1997,9,7,0,19.4,-62.4,hurricane,1,75,979,NA,NA +Erika,1997,9,7,6,19.7,-62.8,hurricane,1,75,978,NA,NA +Erika,1997,9,7,12,20.2,-63.1,hurricane,1,75,975,NA,NA +Erika,1997,9,7,18,20.6,-63.2,hurricane,2,90,970,NA,NA +Erika,1997,9,8,0,21.2,-63.2,hurricane,2,95,966,NA,NA +Erika,1997,9,8,6,21.8,-63.2,hurricane,3,100,961,NA,NA +Erika,1997,9,8,12,22.5,-62.9,hurricane,3,105,957,NA,NA +Erika,1997,9,8,18,23.2,-62.5,hurricane,3,110,952,NA,NA +Erika,1997,9,9,0,24.1,-62,hurricane,3,110,948,NA,NA +Erika,1997,9,9,6,25.2,-61.4,hurricane,3,110,946,NA,NA +Erika,1997,9,9,12,26.5,-60.8,hurricane,3,110,947,NA,NA +Erika,1997,9,9,18,27.9,-60.2,hurricane,3,110,951,NA,NA +Erika,1997,9,10,0,29.3,-59.6,hurricane,3,105,955,NA,NA +Erika,1997,9,10,6,30.8,-58.9,hurricane,3,100,960,NA,NA +Erika,1997,9,10,12,32.2,-58.3,hurricane,2,95,965,NA,NA +Erika,1997,9,10,18,33.6,-57.5,hurricane,2,90,970,NA,NA +Erika,1997,9,11,0,34.8,-56.4,hurricane,1,80,973,NA,NA +Erika,1997,9,11,6,35.7,-55.1,hurricane,1,75,977,NA,NA +Erika,1997,9,11,12,36.4,-53.6,hurricane,1,70,984,NA,NA +Erika,1997,9,11,18,37.1,-51.9,hurricane,1,65,988,NA,NA +Erika,1997,9,12,0,37.6,-49.9,tropical storm,NA,60,990,NA,NA +Erika,1997,9,12,6,38,-48,tropical storm,NA,55,994,NA,NA +Erika,1997,9,12,12,38.5,-46.2,tropical storm,NA,55,995,NA,NA +Erika,1997,9,12,18,38.9,-44.9,tropical storm,NA,50,995,NA,NA +Erika,1997,9,13,0,39,-44,tropical storm,NA,45,995,NA,NA +Erika,1997,9,13,6,38.9,-43.2,tropical storm,NA,45,995,NA,NA +Erika,1997,9,13,12,38.5,-42.3,tropical storm,NA,45,995,NA,NA +Erika,1997,9,13,18,38.1,-41.3,tropical storm,NA,45,995,NA,NA +Erika,1997,9,14,0,37.8,-40.2,tropical storm,NA,45,995,NA,NA +Erika,1997,9,14,6,37.6,-39.1,tropical storm,NA,50,992,NA,NA +Erika,1997,9,14,12,37.6,-37.9,tropical storm,NA,55,989,NA,NA +Erika,1997,9,14,18,37.8,-36.5,tropical storm,NA,55,987,NA,NA +Erika,1997,9,15,0,38.2,-35,tropical storm,NA,60,984,NA,NA +Erika,1997,9,15,6,38.9,-33.4,tropical storm,NA,55,984,NA,NA +Erika,1997,9,15,12,39.7,-31.7,tropical storm,NA,50,983,NA,NA +Erika,1997,9,15,18,40.9,-29.9,tropical storm,NA,50,984,NA,NA +Erika,1997,9,16,0,42.2,-28.2,extratropical,NA,50,985,NA,NA +Erika,1997,9,16,6,43.5,-26.5,extratropical,NA,50,987,NA,NA +Erika,1997,9,16,12,45,-24.5,extratropical,NA,50,989,NA,NA +Erika,1997,9,16,18,46,-22.5,extratropical,NA,55,991,NA,NA +Erika,1997,9,17,0,46.8,-21,extratropical,NA,60,993,NA,NA +Erika,1997,9,17,6,47,-20,extratropical,NA,60,994,NA,NA +Erika,1997,9,17,12,46.5,-19,extratropical,NA,60,992,NA,NA +Erika,1997,9,17,18,46,-20,extratropical,NA,55,994,NA,NA +Erika,1997,9,18,0,47.2,-19.8,extratropical,NA,50,996,NA,NA +Erika,1997,9,18,6,48,-19,extratropical,NA,45,998,NA,NA +Erika,1997,9,18,12,48.5,-18,extratropical,NA,40,1000,NA,NA +Erika,1997,9,18,18,48.8,-17.5,extratropical,NA,40,1000,NA,NA +Erika,1997,9,19,0,48.9,-17,extratropical,NA,35,1000,NA,NA +Erika,1997,9,19,6,48.9,-16.2,extratropical,NA,30,1000,NA,NA +Erika,1997,9,19,12,49,-15.3,extratropical,NA,30,1005,NA,NA +Erika,1997,9,19,18,49,-14,extratropical,NA,25,1009,NA,NA +Fabian,1997,10,4,18,24.2,-64.5,tropical depression,NA,25,1009,NA,NA +Fabian,1997,10,5,0,24.7,-64.3,tropical depression,NA,25,1009,NA,NA +Fabian,1997,10,5,6,25.2,-64,tropical depression,NA,25,1009,NA,NA +Fabian,1997,10,5,12,25.7,-63.5,tropical depression,NA,30,1007,NA,NA +Fabian,1997,10,5,18,26.3,-63.1,tropical storm,NA,35,1005,NA,NA +Fabian,1997,10,6,0,26.8,-62.6,tropical storm,NA,35,1005,NA,NA +Fabian,1997,10,6,6,27.2,-61.9,tropical storm,NA,35,1005,NA,NA +Fabian,1997,10,6,12,27.7,-61.3,tropical storm,NA,35,1005,NA,NA +Fabian,1997,10,6,18,28.2,-60.2,tropical storm,NA,35,1005,NA,NA +Fabian,1997,10,7,0,28.8,-59.1,tropical storm,NA,35,1005,NA,NA +Fabian,1997,10,7,6,29.2,-57.9,tropical storm,NA,35,1005,NA,NA +Fabian,1997,10,7,12,29.5,-56.8,tropical storm,NA,35,1004,NA,NA +Fabian,1997,10,7,18,29.1,-56,tropical storm,NA,35,1005,NA,NA +Fabian,1997,10,8,0,28.6,-55,tropical storm,NA,35,1005,NA,NA +Fabian,1997,10,8,6,28.4,-53.4,tropical storm,NA,35,1005,NA,NA +Fabian,1997,10,8,12,28.7,-51.4,extratropical,NA,35,1005,NA,NA +Fabian,1997,10,8,18,29.2,-48.8,extratropical,NA,40,1005,NA,NA +Grace,1997,10,14,12,20,-68.7,tropical depression,NA,30,1002,NA,NA +Grace,1997,10,14,18,20.3,-69.8,extratropical,NA,30,1001,NA,NA +Grace,1997,10,15,0,20.3,-69.6,tropical storm,NA,35,999,NA,NA +Grace,1997,10,15,6,20.3,-68.9,extratropical,NA,35,999,NA,NA +Grace,1997,10,15,12,20.6,-68,extratropical,NA,40,999,NA,NA +Grace,1997,10,15,18,20.8,-66.5,extratropical,NA,40,999,NA,NA +Grace,1997,10,16,0,21.2,-64.4,tropical storm,NA,40,999,NA,NA +Grace,1997,10,16,6,21.6,-61.6,tropical storm,NA,35,1000,NA,NA +Grace,1997,10,16,12,22.4,-58.8,tropical storm,NA,35,1000,NA,NA +Grace,1997,10,16,18,23.6,-56.2,tropical storm,NA,35,1001,NA,NA +Grace,1997,10,17,0,24,-53.6,tropical storm,NA,35,1002,NA,NA +Grace,1997,10,17,6,24.3,-50.5,tropical storm,NA,35,1003,NA,NA +Grace,1997,10,17,12,24.5,-47.3,tropical depression,NA,30,1004,NA,NA +Alex,1998,7,27,12,11.3,-25.4,tropical depression,NA,25,1009,NA,NA +Alex,1998,7,27,18,11.7,-27.2,tropical depression,NA,25,1009,NA,NA +Alex,1998,7,28,0,12.2,-29.2,tropical depression,NA,25,1009,NA,NA +Alex,1998,7,28,6,12.6,-31.3,tropical depression,NA,25,1008,NA,NA +Alex,1998,7,28,12,12.9,-33.3,tropical depression,NA,30,1007,NA,NA +Alex,1998,7,28,18,13.1,-35.1,tropical depression,NA,30,1006,NA,NA +Alex,1998,7,29,0,13.3,-36.8,tropical storm,NA,35,1005,NA,NA +Alex,1998,7,29,6,13.5,-38.5,tropical storm,NA,35,1005,NA,NA +Alex,1998,7,29,12,13.7,-40,tropical storm,NA,35,1005,NA,NA +Alex,1998,7,29,18,13.9,-41.3,tropical storm,NA,35,1005,NA,NA +Alex,1998,7,30,0,14.2,-42.6,tropical storm,NA,35,1005,NA,NA +Alex,1998,7,30,6,14.4,-43.9,tropical storm,NA,40,1003,NA,NA +Alex,1998,7,30,12,14.7,-45,tropical storm,NA,40,1003,NA,NA +Alex,1998,7,30,18,15.1,-46.1,tropical storm,NA,45,1003,NA,NA +Alex,1998,7,31,0,15.4,-47.1,tropical storm,NA,45,1002,NA,NA +Alex,1998,7,31,6,15.6,-48.1,tropical storm,NA,45,1003,NA,NA +Alex,1998,7,31,12,15.7,-49.2,tropical storm,NA,45,1003,NA,NA +Alex,1998,7,31,18,15.8,-50.4,tropical storm,NA,40,1005,NA,NA +Alex,1998,8,1,0,15.9,-51.7,tropical storm,NA,35,1007,NA,NA +Alex,1998,8,1,6,16.3,-53.1,tropical storm,NA,35,1009,NA,NA +Alex,1998,8,1,12,16.9,-54.3,tropical storm,NA,40,1009,NA,NA +Alex,1998,8,1,18,17.7,-55.4,tropical storm,NA,40,1012,NA,NA +Alex,1998,8,2,0,18.4,-56.5,tropical storm,NA,35,1012,NA,NA +Alex,1998,8,2,6,19,-57.7,tropical storm,NA,35,1012,NA,NA +Alex,1998,8,2,12,19.9,-58.6,tropical storm,NA,35,1012,NA,NA +Alex,1998,8,2,18,21,-59.3,tropical depression,NA,30,1014,NA,NA +Bonnie,1998,8,19,12,14.7,-48.1,tropical depression,NA,25,1009,NA,NA +Bonnie,1998,8,19,18,15.4,-50.1,tropical depression,NA,30,1009,NA,NA +Bonnie,1998,8,20,0,16.2,-52.2,tropical depression,NA,30,1009,NA,NA +Bonnie,1998,8,20,6,16.9,-54.7,tropical depression,NA,30,1008,NA,NA +Bonnie,1998,8,20,12,17.3,-57.3,tropical storm,NA,35,1007,NA,NA +Bonnie,1998,8,20,18,18.2,-59.6,tropical storm,NA,35,1006,NA,NA +Bonnie,1998,8,21,0,18.7,-61.3,tropical storm,NA,40,1005,NA,NA +Bonnie,1998,8,21,6,19.1,-62.9,tropical storm,NA,45,1002,NA,NA +Bonnie,1998,8,21,12,19.5,-64.5,tropical storm,NA,50,1000,NA,NA +Bonnie,1998,8,21,18,20.3,-65.9,tropical storm,NA,55,999,NA,NA +Bonnie,1998,8,22,0,21.1,-67.3,hurricane,1,65,991,NA,NA +Bonnie,1998,8,22,6,21.8,-68.7,hurricane,1,70,989,NA,NA +Bonnie,1998,8,22,12,22.3,-69.8,hurricane,1,75,980,NA,NA +Bonnie,1998,8,22,18,23,-70.5,hurricane,2,85,970,NA,NA +Bonnie,1998,8,23,0,23.4,-71,hurricane,2,90,962,NA,NA +Bonnie,1998,8,23,6,23.8,-71.3,hurricane,2,95,960,NA,NA +Bonnie,1998,8,23,12,24.1,-71.5,hurricane,3,100,958,NA,NA +Bonnie,1998,8,23,18,24.4,-71.7,hurricane,3,100,955,NA,NA +Bonnie,1998,8,24,0,24.8,-71.8,hurricane,3,100,954,NA,NA +Bonnie,1998,8,24,6,25.2,-72.1,hurricane,3,100,960,NA,NA +Bonnie,1998,8,24,12,25.6,-72.4,hurricane,3,100,962,NA,NA +Bonnie,1998,8,24,18,26.1,-72.8,hurricane,3,100,962,NA,NA +Bonnie,1998,8,25,0,26.9,-73.2,hurricane,3,100,963,NA,NA +Bonnie,1998,8,25,6,27.8,-73.8,hurricane,3,100,962,NA,NA +Bonnie,1998,8,25,12,28.8,-74.7,hurricane,3,100,963,NA,NA +Bonnie,1998,8,25,18,29.8,-75.6,hurricane,3,100,963,NA,NA +Bonnie,1998,8,26,0,30.8,-76.4,hurricane,3,100,958,NA,NA +Bonnie,1998,8,26,6,31.7,-77.3,hurricane,3,100,964,NA,NA +Bonnie,1998,8,26,12,32.7,-77.8,hurricane,3,100,965,NA,NA +Bonnie,1998,8,26,18,33.4,-77.8,hurricane,3,100,962,NA,NA +Bonnie,1998,8,27,0,34,-77.7,hurricane,2,95,963,NA,NA +Bonnie,1998,8,27,4,34.4,-77.7,hurricane,2,95,964,NA,NA +Bonnie,1998,8,27,6,34.5,-77.5,hurricane,2,85,965,NA,NA +Bonnie,1998,8,27,12,34.9,-77.1,hurricane,1,75,974,NA,NA +Bonnie,1998,8,27,18,35.4,-76.6,tropical storm,NA,60,980,NA,NA +Bonnie,1998,8,28,0,35.8,-75.9,hurricane,1,65,983,NA,NA +Bonnie,1998,8,28,6,36.2,-75.1,hurricane,1,75,985,NA,NA +Bonnie,1998,8,28,12,36.7,-74.3,hurricane,1,65,990,NA,NA +Bonnie,1998,8,28,18,37.3,-73.2,tropical storm,NA,60,991,NA,NA +Bonnie,1998,8,29,0,38.3,-71.4,tropical storm,NA,45,993,NA,NA +Bonnie,1998,8,29,6,39.2,-69.6,tropical storm,NA,45,999,NA,NA +Bonnie,1998,8,29,12,40.2,-67.8,tropical storm,NA,45,999,NA,NA +Bonnie,1998,8,29,18,41.6,-64.8,tropical storm,NA,45,1000,NA,NA +Bonnie,1998,8,30,0,42.9,-61.5,tropical storm,NA,45,1000,NA,NA +Bonnie,1998,8,30,6,44.3,-57,tropical storm,NA,45,1000,NA,NA +Bonnie,1998,8,30,12,44.5,-53.5,tropical storm,NA,45,1000,NA,NA +Bonnie,1998,8,30,18,44,-50,extratropical,NA,45,998,NA,NA +Bonnie,1998,8,31,0,44,-45,extratropical,NA,45,996,NA,NA +Bonnie,1998,8,31,6,43,-41,extratropical,NA,40,996,NA,NA +Charley,1998,8,21,6,25.3,-92.3,tropical depression,NA,25,1008,NA,NA +Charley,1998,8,21,12,25.4,-93.8,tropical depression,NA,30,1008,NA,NA +Charley,1998,8,21,18,26,-94.5,tropical storm,NA,40,1008,NA,NA +Charley,1998,8,22,0,26.8,-95.4,tropical storm,NA,45,1006,NA,NA +Charley,1998,8,22,6,27.5,-96.5,tropical storm,NA,60,1002,NA,NA +Charley,1998,8,22,10,27.8,-97.1,tropical storm,NA,40,1000,NA,NA +Charley,1998,8,22,12,27.9,-97.4,tropical storm,NA,35,1001,NA,NA +Charley,1998,8,22,18,28.3,-98.1,tropical depression,NA,30,1003,NA,NA +Charley,1998,8,23,0,28.5,-98.7,tropical depression,NA,25,1005,NA,NA +Charley,1998,8,23,6,28.7,-99.3,tropical depression,NA,20,1006,NA,NA +Charley,1998,8,23,12,28.8,-99.9,tropical depression,NA,20,1007,NA,NA +Charley,1998,8,23,18,29.1,-100.6,tropical depression,NA,20,1008,NA,NA +Charley,1998,8,24,0,29.4,-101.2,tropical depression,NA,20,1008,NA,NA +Danielle,1998,8,24,6,13.4,-34.3,tropical depression,NA,25,1007,NA,NA +Danielle,1998,8,24,12,13.8,-36.1,tropical depression,NA,30,1006,NA,NA +Danielle,1998,8,24,18,14.2,-37.9,tropical storm,NA,35,1005,NA,NA +Danielle,1998,8,25,0,14.8,-39.8,tropical storm,NA,40,1003,NA,NA +Danielle,1998,8,25,6,15.3,-41.6,tropical storm,NA,50,997,NA,NA +Danielle,1998,8,25,12,16.2,-43.3,hurricane,1,65,990,NA,NA +Danielle,1998,8,25,18,16.9,-45.3,hurricane,1,75,982,NA,NA +Danielle,1998,8,26,0,17.6,-47.3,hurricane,1,80,980,NA,NA +Danielle,1998,8,26,6,18.4,-49.1,hurricane,2,90,975,NA,NA +Danielle,1998,8,26,12,19.1,-51.1,hurricane,2,85,980,NA,NA +Danielle,1998,8,26,18,19.7,-52.8,hurricane,1,80,985,NA,NA +Danielle,1998,8,27,0,20.1,-54.9,hurricane,1,80,993,NA,NA +Danielle,1998,8,27,6,20.6,-56.7,hurricane,2,85,994,NA,NA +Danielle,1998,8,27,12,21.2,-58.5,hurricane,2,90,994,NA,NA +Danielle,1998,8,27,18,21.8,-60.1,hurricane,2,85,994,NA,NA +Danielle,1998,8,28,0,22.4,-61.7,hurricane,1,80,992,NA,NA +Danielle,1998,8,28,6,22.7,-63.2,hurricane,1,80,992,NA,NA +Danielle,1998,8,28,12,23,-64.4,hurricane,1,80,989,NA,NA +Danielle,1998,8,28,18,23.4,-65.7,hurricane,1,80,986,NA,NA +Danielle,1998,8,29,0,23.9,-66.9,hurricane,1,75,989,NA,NA +Danielle,1998,8,29,6,24.3,-68.2,hurricane,1,70,990,NA,NA +Danielle,1998,8,29,12,24.8,-69.4,hurricane,1,70,988,NA,NA +Danielle,1998,8,29,18,25.4,-70.5,hurricane,1,70,987,NA,NA +Danielle,1998,8,30,0,25.9,-71.4,hurricane,1,65,987,NA,NA +Danielle,1998,8,30,6,26.4,-72.2,hurricane,1,65,988,NA,NA +Danielle,1998,8,30,12,26.9,-73.1,hurricane,1,65,990,NA,NA +Danielle,1998,8,30,18,27.5,-73.9,hurricane,1,65,987,NA,NA +Danielle,1998,8,31,0,27.9,-74.1,hurricane,1,70,983,NA,NA +Danielle,1998,8,31,6,28.4,-74.3,hurricane,1,75,980,NA,NA +Danielle,1998,8,31,12,29.2,-74.1,hurricane,2,90,977,NA,NA +Danielle,1998,8,31,18,30,-73.7,hurricane,2,85,975,NA,NA +Danielle,1998,9,1,0,30.9,-73.3,hurricane,2,85,973,NA,NA +Danielle,1998,9,1,6,31.7,-72.7,hurricane,2,85,972,NA,NA +Danielle,1998,9,1,12,32.2,-72,hurricane,2,85,968,NA,NA +Danielle,1998,9,1,18,32.9,-70.7,hurricane,2,90,965,NA,NA +Danielle,1998,9,2,0,33.7,-69.1,hurricane,1,80,967,NA,NA +Danielle,1998,9,2,6,34.6,-67.6,hurricane,1,75,970,NA,NA +Danielle,1998,9,2,12,36,-65.4,hurricane,1,70,975,NA,NA +Danielle,1998,9,2,18,37.9,-63.1,hurricane,1,70,975,NA,NA +Danielle,1998,9,3,0,39.9,-60.1,hurricane,1,70,970,NA,NA +Danielle,1998,9,3,6,42.1,-57.5,hurricane,1,70,960,NA,NA +Danielle,1998,9,3,12,43.4,-54.8,hurricane,1,70,965,NA,NA +Danielle,1998,9,3,18,44.6,-51.9,hurricane,1,65,965,NA,NA +Danielle,1998,9,4,0,44.8,-48.5,extratropical,NA,65,975,NA,NA +Danielle,1998,9,4,6,44.9,-44,extratropical,NA,60,985,NA,NA +Danielle,1998,9,4,12,45,-40.5,extratropical,NA,60,978,NA,NA +Danielle,1998,9,4,18,45.3,-37,extratropical,NA,60,976,NA,NA +Danielle,1998,9,5,0,45.9,-33,extratropical,NA,60,975,NA,NA +Danielle,1998,9,5,6,46.5,-28,extratropical,NA,60,973,NA,NA +Danielle,1998,9,5,12,47,-25,extratropical,NA,60,970,NA,NA +Danielle,1998,9,5,18,48,-22,extratropical,NA,60,967,NA,NA +Danielle,1998,9,6,0,50,-19,extratropical,NA,60,964,NA,NA +Danielle,1998,9,6,6,51.5,-18,extratropical,NA,55,965,NA,NA +Danielle,1998,9,6,12,52.8,-17.1,extratropical,NA,55,965,NA,NA +Danielle,1998,9,6,18,53.3,-16.7,extratropical,NA,55,967,NA,NA +Danielle,1998,9,7,0,53.8,-16.2,extratropical,NA,50,970,NA,NA +Danielle,1998,9,7,6,54.5,-16,extratropical,NA,45,975,NA,NA +Danielle,1998,9,7,12,55,-15,extratropical,NA,40,977,NA,NA +Danielle,1998,9,7,18,55.8,-14,extratropical,NA,35,979,NA,NA +Danielle,1998,9,8,0,56.4,-13.1,extratropical,NA,30,980,NA,NA +Danielle,1998,9,8,6,57,-12,extratropical,NA,30,980,NA,NA +Earl,1998,8,31,12,21.6,-93.5,tropical depression,NA,30,1005,NA,NA +Earl,1998,8,31,18,22.4,-93.8,tropical storm,NA,35,1002,NA,NA +Earl,1998,9,1,0,23.2,-93.7,tropical storm,NA,35,1002,NA,NA +Earl,1998,9,1,6,24.1,-93.4,tropical storm,NA,40,1001,NA,NA +Earl,1998,9,1,12,25,-93.1,tropical storm,NA,45,999,NA,NA +Earl,1998,9,1,18,25.8,-92.5,tropical storm,NA,50,998,NA,NA +Earl,1998,9,2,0,26.8,-91.5,tropical storm,NA,50,998,NA,NA +Earl,1998,9,2,6,27.6,-90.4,tropical storm,NA,50,996,NA,NA +Earl,1998,9,2,12,28.2,-89,hurricane,1,70,994,NA,NA +Earl,1998,9,2,18,28.7,-87.9,hurricane,2,85,988,NA,NA +Earl,1998,9,3,0,29.4,-86.8,hurricane,1,80,985,NA,NA +Earl,1998,9,3,6,30.1,-85.7,hurricane,1,70,987,NA,NA +Earl,1998,9,3,12,31.3,-84,tropical storm,NA,45,990,NA,NA +Earl,1998,9,3,18,32.4,-82.4,extratropical,NA,40,994,NA,NA +Earl,1998,9,4,0,33.2,-80.5,extratropical,NA,40,994,NA,NA +Earl,1998,9,4,6,34.5,-79,extratropical,NA,50,995,NA,NA +Earl,1998,9,4,12,35.9,-77.2,extratropical,NA,50,998,NA,NA +Earl,1998,9,4,18,36.5,-75,extratropical,NA,50,1000,NA,NA +Earl,1998,9,5,0,38,-71,extratropical,NA,50,1000,NA,NA +Earl,1998,9,5,6,40,-65.5,extratropical,NA,50,998,NA,NA +Earl,1998,9,5,12,42.5,-61,extratropical,NA,50,990,NA,NA +Earl,1998,9,5,18,45,-56,extratropical,NA,50,986,NA,NA +Earl,1998,9,6,0,47,-54,extratropical,NA,50,979,NA,NA +Earl,1998,9,6,6,48,-53,extratropical,NA,50,968,NA,NA +Earl,1998,9,6,12,49,-52,extratropical,NA,55,964,NA,NA +Earl,1998,9,6,18,49.5,-50,extratropical,NA,55,966,NA,NA +Earl,1998,9,7,0,50,-48,extratropical,NA,55,968,NA,NA +Earl,1998,9,7,6,50.5,-45,extratropical,NA,50,970,NA,NA +Earl,1998,9,7,12,51,-41,extratropical,NA,45,978,NA,NA +Earl,1998,9,7,18,51,-37,extratropical,NA,45,978,NA,NA +Earl,1998,9,8,0,51,-32,extratropical,NA,40,982,NA,NA +Earl,1998,9,8,6,51.5,-28.5,extratropical,NA,40,982,NA,NA +Earl,1998,9,8,12,52,-25,extratropical,NA,35,983,NA,NA +Frances,1998,9,8,18,25.5,-94.5,tropical depression,NA,30,1000,NA,NA +Frances,1998,9,9,0,25.3,-94.4,tropical depression,NA,30,1000,NA,NA +Frances,1998,9,9,6,25,-94.5,tropical depression,NA,30,999,NA,NA +Frances,1998,9,9,12,24.6,-94.7,tropical depression,NA,30,998,NA,NA +Frances,1998,9,9,18,24.2,-95.5,tropical storm,NA,35,997,NA,NA +Frances,1998,9,10,0,23.5,-95.6,tropical storm,NA,40,995,NA,NA +Frances,1998,9,10,6,24.2,-95,tropical storm,NA,40,995,NA,NA +Frances,1998,9,10,12,25.3,-95.2,tropical storm,NA,45,996,NA,NA +Frances,1998,9,10,18,26.6,-95.2,tropical storm,NA,45,996,NA,NA +Frances,1998,9,11,0,27.2,-95.9,tropical storm,NA,55,994,NA,NA +Frances,1998,9,11,6,28.2,-96.9,tropical storm,NA,45,990,NA,NA +Frances,1998,9,11,12,28.4,-97.6,tropical storm,NA,40,992,NA,NA +Frances,1998,9,11,18,28.5,-97,tropical storm,NA,35,994,NA,NA +Frances,1998,9,12,0,29.3,-96.9,tropical depression,NA,30,996,NA,NA +Frances,1998,9,12,6,30.2,-96.8,tropical depression,NA,30,998,NA,NA +Frances,1998,9,12,12,31,-96.8,tropical depression,NA,30,1000,NA,NA +Frances,1998,9,12,18,31.3,-96.8,tropical depression,NA,30,1001,NA,NA +Frances,1998,9,13,0,31.5,-96.8,tropical depression,NA,25,1002,NA,NA +Frances,1998,9,13,6,31.7,-96.9,tropical depression,NA,20,1002,NA,NA +Frances,1998,9,13,12,32,-96.9,tropical depression,NA,20,1003,NA,NA +Frances,1998,9,13,18,33,-97,tropical depression,NA,20,1003,NA,NA +Georges,1998,9,15,12,9.7,-25.1,tropical depression,NA,30,1009,NA,NA +Georges,1998,9,15,18,9.8,-26.5,tropical depression,NA,30,1009,NA,NA +Georges,1998,9,16,0,10,-28.1,tropical depression,NA,30,1009,NA,NA +Georges,1998,9,16,6,10.3,-29.7,tropical depression,NA,30,1009,NA,NA +Georges,1998,9,16,12,10.6,-31.3,tropical storm,NA,35,1005,NA,NA +Georges,1998,9,16,18,11,-32.9,tropical storm,NA,35,1003,NA,NA +Georges,1998,9,17,0,11.3,-34.6,tropical storm,NA,45,1000,NA,NA +Georges,1998,9,17,6,11.7,-36.3,tropical storm,NA,50,997,NA,NA +Georges,1998,9,17,12,12,-38.1,tropical storm,NA,55,994,NA,NA +Georges,1998,9,17,18,12.3,-40,hurricane,1,65,987,NA,NA +Georges,1998,9,18,0,12.5,-42,hurricane,1,70,984,NA,NA +Georges,1998,9,18,6,12.8,-43.9,hurricane,1,80,977,NA,NA +Georges,1998,9,18,12,13.1,-45.7,hurricane,2,85,973,NA,NA +Georges,1998,9,18,18,13.5,-47.4,hurricane,2,90,970,NA,NA +Georges,1998,9,19,0,13.9,-49,hurricane,2,90,970,NA,NA +Georges,1998,9,19,6,14.4,-50.6,hurricane,2,95,965,NA,NA +Georges,1998,9,19,12,14.9,-52,hurricane,3,110,954,NA,NA +Georges,1998,9,19,18,15.4,-53.5,hurricane,4,125,949,NA,NA +Georges,1998,9,20,0,15.7,-54.9,hurricane,4,130,939,NA,NA +Georges,1998,9,20,6,16,-56.3,hurricane,4,135,937,NA,NA +Georges,1998,9,20,12,16.2,-57.7,hurricane,4,130,939,NA,NA +Georges,1998,9,20,18,16.4,-59.2,hurricane,4,115,956,NA,NA +Georges,1998,9,21,0,16.7,-60.6,hurricane,3,100,963,NA,NA +Georges,1998,9,21,4,17,-61.7,hurricane,3,100,966,NA,NA +Georges,1998,9,21,6,17.1,-62.1,hurricane,3,100,966,NA,NA +Georges,1998,9,21,8,17.2,-62.6,hurricane,3,100,966,NA,NA +Georges,1998,9,21,12,17.4,-63.6,hurricane,2,95,966,NA,NA +Georges,1998,9,21,18,17.8,-65,hurricane,2,90,970,NA,NA +Georges,1998,9,21,22,18.1,-65.8,hurricane,3,100,968,NA,NA +Georges,1998,9,22,0,18.2,-66.3,hurricane,2,90,970,NA,NA +Georges,1998,9,22,6,18,-67.4,hurricane,2,95,972,NA,NA +Georges,1998,9,22,12,18.2,-68.5,hurricane,3,105,964,NA,NA +Georges,1998,9,22,12,18.2,-68.7,hurricane,3,105,962,NA,NA +Georges,1998,9,22,18,18.6,-69.7,hurricane,2,95,970,NA,NA +Georges,1998,9,23,0,18.8,-70.8,hurricane,1,70,980,NA,NA +Georges,1998,9,23,6,19,-72.1,hurricane,1,65,990,NA,NA +Georges,1998,9,23,12,19.3,-73.3,hurricane,1,65,996,NA,NA +Georges,1998,9,23,18,19.8,-74.3,hurricane,1,65,994,NA,NA +Georges,1998,9,23,21,20.1,-74.5,hurricane,1,65,993,NA,NA +Georges,1998,9,24,0,20.5,-74.9,hurricane,1,65,992,NA,NA +Georges,1998,9,24,6,20.8,-76,hurricane,1,65,991,NA,NA +Georges,1998,9,24,12,21.3,-77.2,hurricane,1,70,990,NA,NA +Georges,1998,9,24,18,21.9,-78,hurricane,1,75,989,NA,NA +Georges,1998,9,25,0,22.7,-79,hurricane,1,80,987,NA,NA +Georges,1998,9,25,6,23.4,-80.2,hurricane,2,85,986,NA,NA +Georges,1998,9,25,12,23.9,-81.3,hurricane,2,90,982,NA,NA +Georges,1998,9,25,15,24.5,-81.8,hurricane,2,90,981,NA,NA +Georges,1998,9,25,18,24.6,-82.4,hurricane,2,90,975,NA,NA +Georges,1998,9,26,0,24.8,-83.3,hurricane,2,90,974,NA,NA +Georges,1998,9,26,6,25.2,-84.2,hurricane,2,90,975,NA,NA +Georges,1998,9,26,12,25.7,-85.1,hurricane,2,90,974,NA,NA +Georges,1998,9,26,18,26.2,-85.9,hurricane,2,90,975,NA,NA +Georges,1998,9,27,0,27,-86.5,hurricane,2,95,969,NA,NA +Georges,1998,9,27,6,27.6,-87.2,hurricane,2,95,970,NA,NA +Georges,1998,9,27,12,28.2,-87.8,hurricane,2,95,962,NA,NA +Georges,1998,9,27,18,28.8,-88.3,hurricane,2,95,962,NA,NA +Georges,1998,9,28,0,29.3,-88.5,hurricane,2,95,961,NA,NA +Georges,1998,9,28,6,29.8,-88.7,hurricane,2,90,964,NA,NA +Georges,1998,9,28,11,30.4,-88.9,hurricane,2,90,964,NA,NA +Georges,1998,9,28,12,30.4,-88.9,hurricane,2,90,965,NA,NA +Georges,1998,9,28,18,30.6,-88.9,hurricane,1,65,984,NA,NA +Georges,1998,9,29,0,30.6,-89,tropical storm,NA,50,986,NA,NA +Georges,1998,9,29,6,30.6,-88.4,tropical storm,NA,40,992,NA,NA +Georges,1998,9,29,12,31,-88.1,tropical depression,NA,30,994,NA,NA +Georges,1998,9,29,18,30.9,-87.5,tropical depression,NA,30,996,NA,NA +Georges,1998,9,30,0,30.8,-86.9,tropical depression,NA,30,998,NA,NA +Georges,1998,9,30,6,30.7,-86.3,tropical depression,NA,30,1000,NA,NA +Georges,1998,9,30,12,30.7,-85.4,tropical depression,NA,25,1002,NA,NA +Georges,1998,9,30,18,30.6,-84.2,tropical depression,NA,25,1004,NA,NA +Georges,1998,10,1,0,30.5,-83,tropical depression,NA,25,1006,NA,NA +Georges,1998,10,1,6,30.5,-81.8,tropical depression,NA,20,1008,NA,NA +Hermine,1998,9,17,12,26.9,-90.3,tropical depression,NA,30,1001,NA,NA +Hermine,1998,9,17,18,26.8,-91.6,tropical depression,NA,30,1001,NA,NA +Hermine,1998,9,18,0,26.4,-92.1,tropical depression,NA,30,1000,NA,NA +Hermine,1998,9,18,6,25.7,-92.5,tropical depression,NA,30,999,NA,NA +Hermine,1998,9,18,12,26,-92.5,tropical depression,NA,30,999,NA,NA +Hermine,1998,9,18,18,25.9,-92.3,tropical depression,NA,30,1000,NA,NA +Hermine,1998,9,19,0,25.8,-92,tropical depression,NA,30,1001,NA,NA +Hermine,1998,9,19,6,26.4,-91.4,tropical depression,NA,30,1001,NA,NA +Hermine,1998,9,19,12,27.5,-91.3,tropical storm,NA,35,1001,NA,NA +Hermine,1998,9,19,18,28.3,-91.1,tropical storm,NA,40,1000,NA,NA +Hermine,1998,9,20,0,29,-90.9,tropical storm,NA,40,999,NA,NA +Hermine,1998,9,20,5,29.1,-90.9,tropical storm,NA,35,1000,NA,NA +Hermine,1998,9,20,6,29.2,-90.9,tropical storm,NA,35,1001,NA,NA +Hermine,1998,9,20,12,30.5,-90.5,tropical depression,NA,30,1002,NA,NA +Hermine,1998,9,20,18,31,-90,tropical depression,NA,20,1003,NA,NA +Ivan,1998,9,19,0,13.4,-26.6,tropical depression,NA,25,1010,NA,NA +Ivan,1998,9,19,6,13.1,-27.5,tropical depression,NA,25,1010,NA,NA +Ivan,1998,9,19,12,12.9,-28.2,tropical depression,NA,25,1010,NA,NA +Ivan,1998,9,19,18,13.1,-29,tropical depression,NA,25,1010,NA,NA +Ivan,1998,9,20,0,13.4,-29.6,tropical depression,NA,30,1009,NA,NA +Ivan,1998,9,20,6,14.3,-30.6,tropical depression,NA,30,1009,NA,NA +Ivan,1998,9,20,12,15.2,-31.5,tropical depression,NA,30,1008,NA,NA +Ivan,1998,9,20,18,16,-32.6,tropical storm,NA,35,1006,NA,NA +Ivan,1998,9,21,0,16.8,-33.7,tropical storm,NA,35,1005,NA,NA +Ivan,1998,9,21,6,17.4,-34.9,tropical storm,NA,35,1003,NA,NA +Ivan,1998,9,21,12,18.2,-35.6,tropical storm,NA,35,1003,NA,NA +Ivan,1998,9,21,18,19,-36,tropical storm,NA,40,1002,NA,NA +Ivan,1998,9,22,0,20,-36.1,tropical storm,NA,40,1001,NA,NA +Ivan,1998,9,22,6,21.3,-36.1,tropical storm,NA,45,1000,NA,NA +Ivan,1998,9,22,12,22.9,-36.4,tropical storm,NA,45,997,NA,NA +Ivan,1998,9,22,18,24.2,-37.1,tropical storm,NA,55,994,NA,NA +Ivan,1998,9,23,0,25.6,-37.7,tropical storm,NA,50,996,NA,NA +Ivan,1998,9,23,6,26.9,-38.4,tropical storm,NA,45,997,NA,NA +Ivan,1998,9,23,12,28.3,-39.2,tropical storm,NA,55,990,NA,NA +Ivan,1998,9,23,18,29.6,-40.2,hurricane,1,65,987,NA,NA +Ivan,1998,9,24,0,30.5,-40.9,hurricane,1,65,986,NA,NA +Ivan,1998,9,24,6,31.3,-41.6,hurricane,1,70,985,NA,NA +Ivan,1998,9,24,12,32.3,-42,hurricane,1,70,985,NA,NA +Ivan,1998,9,24,18,33.4,-42.3,hurricane,1,70,985,NA,NA +Ivan,1998,9,25,0,34.4,-42.3,hurricane,1,70,984,NA,NA +Ivan,1998,9,25,6,35.3,-41.9,hurricane,1,70,984,NA,NA +Ivan,1998,9,25,12,36.3,-41.3,hurricane,1,70,984,NA,NA +Ivan,1998,9,25,18,37.2,-40.2,hurricane,1,75,983,NA,NA +Ivan,1998,9,26,0,38.1,-38.7,hurricane,1,75,980,NA,NA +Ivan,1998,9,26,6,39.2,-36.3,hurricane,1,80,975,NA,NA +Ivan,1998,9,26,12,40.1,-33.1,hurricane,1,75,977,NA,NA +Ivan,1998,9,26,18,40.7,-29.7,hurricane,1,75,982,NA,NA +Ivan,1998,9,27,0,40.7,-25.7,tropical storm,NA,60,994,NA,NA +Ivan,1998,9,27,6,40.9,-22.7,extratropical,NA,50,997,NA,NA +Ivan,1998,9,27,12,41.3,-19.2,extratropical,NA,45,1000,NA,NA +Ivan,1998,9,27,18,41.5,-15.5,extratropical,NA,40,1002,NA,NA +Jeanne,1998,9,21,6,9.6,-17.4,tropical depression,NA,30,1008,NA,NA +Jeanne,1998,9,21,12,10.5,-18.2,tropical depression,NA,30,1006,NA,NA +Jeanne,1998,9,21,18,11,-19.4,tropical storm,NA,35,1004,NA,NA +Jeanne,1998,9,22,0,11.5,-20.7,tropical storm,NA,40,1002,NA,NA +Jeanne,1998,9,22,6,12.1,-22.2,tropical storm,NA,45,1000,NA,NA +Jeanne,1998,9,22,12,12.7,-23.8,tropical storm,NA,55,994,NA,NA +Jeanne,1998,9,22,18,13.1,-25.2,hurricane,1,65,987,NA,NA +Jeanne,1998,9,23,0,13.6,-26.7,hurricane,1,70,983,NA,NA +Jeanne,1998,9,23,6,14.1,-28.1,hurricane,1,75,980,NA,NA +Jeanne,1998,9,23,12,14.5,-29.5,hurricane,1,80,975,NA,NA +Jeanne,1998,9,23,18,15,-30.8,hurricane,2,85,973,NA,NA +Jeanne,1998,9,24,0,15.4,-32.1,hurricane,2,85,972,NA,NA +Jeanne,1998,9,24,6,15.9,-33.4,hurricane,2,90,971,NA,NA +Jeanne,1998,9,24,12,16.4,-34.4,hurricane,2,90,970,NA,NA +Jeanne,1998,9,24,18,17,-35.4,hurricane,2,90,969,NA,NA +Jeanne,1998,9,25,0,17.5,-36.3,hurricane,2,90,971,NA,NA +Jeanne,1998,9,25,6,18,-37.2,hurricane,2,90,973,NA,NA +Jeanne,1998,9,25,12,18.6,-37.9,hurricane,2,85,975,NA,NA +Jeanne,1998,9,25,18,19.3,-38.6,hurricane,1,80,977,NA,NA +Jeanne,1998,9,26,0,20,-39.4,hurricane,1,75,979,NA,NA +Jeanne,1998,9,26,6,20.8,-40,hurricane,1,70,983,NA,NA +Jeanne,1998,9,26,12,21.6,-40.6,hurricane,1,70,983,NA,NA +Jeanne,1998,9,26,18,22.4,-41.2,hurricane,1,75,980,NA,NA +Jeanne,1998,9,27,0,23.4,-41.6,hurricane,1,75,980,NA,NA +Jeanne,1998,9,27,6,24.4,-42,hurricane,1,70,983,NA,NA +Jeanne,1998,9,27,12,25.6,-41.8,hurricane,1,70,983,NA,NA +Jeanne,1998,9,27,18,27.1,-41.5,hurricane,1,70,983,NA,NA +Jeanne,1998,9,28,0,28.8,-41.2,hurricane,1,70,983,NA,NA +Jeanne,1998,9,28,6,30.6,-40.7,hurricane,1,70,983,NA,NA +Jeanne,1998,9,28,12,32.3,-39.6,hurricane,1,75,980,NA,NA +Jeanne,1998,9,28,18,33.8,-38.4,hurricane,1,80,977,NA,NA +Jeanne,1998,9,29,0,35,-37.2,hurricane,1,80,977,NA,NA +Jeanne,1998,9,29,6,35.8,-36.2,hurricane,1,75,980,NA,NA +Jeanne,1998,9,29,12,36.2,-35.3,hurricane,1,65,985,NA,NA +Jeanne,1998,9,29,18,36.6,-34.6,tropical storm,NA,60,990,NA,NA +Jeanne,1998,9,30,0,36.9,-33.4,tropical storm,NA,50,997,NA,NA +Jeanne,1998,9,30,6,37.2,-32.1,tropical storm,NA,45,1000,NA,NA +Jeanne,1998,9,30,12,37.6,-30.7,tropical storm,NA,40,1002,NA,NA +Jeanne,1998,9,30,18,38,-29.4,tropical storm,NA,35,1006,NA,NA +Jeanne,1998,10,1,0,38.2,-28,extratropical,NA,30,1008,NA,NA +Jeanne,1998,10,1,6,38.3,-26.3,extratropical,NA,30,1008,NA,NA +Jeanne,1998,10,1,12,38.5,-24.5,extratropical,NA,35,1006,NA,NA +Jeanne,1998,10,1,18,38.7,-22.5,extratropical,NA,35,1005,NA,NA +Jeanne,1998,10,2,0,38.8,-21,extratropical,NA,35,1003,NA,NA +Jeanne,1998,10,2,6,38.9,-19.5,extratropical,NA,35,1003,NA,NA +Jeanne,1998,10,2,12,39,-18.2,extratropical,NA,40,1003,NA,NA +Jeanne,1998,10,2,18,39,-16.8,extratropical,NA,40,1003,NA,NA +Jeanne,1998,10,3,0,39,-15.5,extratropical,NA,40,1003,NA,NA +Jeanne,1998,10,3,6,39,-14.3,extratropical,NA,40,1003,NA,NA +Jeanne,1998,10,3,12,39,-13,extratropical,NA,40,1003,NA,NA +Jeanne,1998,10,3,18,39,-11,extratropical,NA,35,1003,NA,NA +Jeanne,1998,10,4,0,39.1,-9,extratropical,NA,30,1003,NA,NA +Jeanne,1998,10,4,6,39.3,-7,extratropical,NA,30,1004,NA,NA +Jeanne,1998,10,4,12,39.5,-5,extratropical,NA,25,1004,NA,NA +Karl,1998,9,23,12,33.3,-65.4,tropical depression,NA,25,1003,NA,NA +Karl,1998,9,23,18,33.2,-62.8,tropical depression,NA,30,1004,NA,NA +Karl,1998,9,24,0,33.2,-60.7,tropical storm,NA,35,1003,NA,NA +Karl,1998,9,24,6,32.9,-59.2,tropical storm,NA,35,1002,NA,NA +Karl,1998,9,24,12,32.5,-58.1,tropical storm,NA,40,1001,NA,NA +Karl,1998,9,24,18,32,-57.2,tropical storm,NA,45,1000,NA,NA +Karl,1998,9,25,0,31.4,-56.2,tropical storm,NA,50,998,NA,NA +Karl,1998,9,25,6,30.8,-55.1,tropical storm,NA,55,994,NA,NA +Karl,1998,9,25,12,30.4,-54,hurricane,1,65,987,NA,NA +Karl,1998,9,25,18,30.3,-52.9,hurricane,1,70,984,NA,NA +Karl,1998,9,26,0,30.5,-51.8,hurricane,1,75,981,NA,NA +Karl,1998,9,26,6,31.1,-51,hurricane,1,75,979,NA,NA +Karl,1998,9,26,12,31.8,-49.9,hurricane,1,75,977,NA,NA +Karl,1998,9,26,18,32.6,-48.8,hurricane,1,80,973,NA,NA +Karl,1998,9,27,0,33.9,-47.3,hurricane,2,90,970,NA,NA +Karl,1998,9,27,6,35.5,-45.2,hurricane,2,90,970,NA,NA +Karl,1998,9,27,12,37.4,-42.5,hurricane,1,80,973,NA,NA +Karl,1998,9,27,18,39.1,-39,hurricane,1,70,983,NA,NA +Karl,1998,9,28,0,40.4,-34.7,tropical storm,NA,55,994,NA,NA +Karl,1998,9,28,6,41.5,-30,extratropical,NA,40,1002,NA,NA +Karl,1998,9,28,12,42,-25,extratropical,NA,35,1001,NA,NA +Karl,1998,9,28,18,43,-20,extratropical,NA,35,1000,NA,NA +Karl,1998,9,29,0,46,-16,extratropical,NA,35,996,NA,NA +Karl,1998,9,29,6,48,-14,extratropical,NA,35,994,NA,NA +Karl,1998,9,29,12,49,-11,extratropical,NA,35,994,NA,NA +Karl,1998,9,29,18,49,-8,extratropical,NA,35,991,NA,NA +Lisa,1998,10,5,0,13.9,-46.4,tropical depression,NA,30,1008,NA,NA +Lisa,1998,10,5,6,14.2,-47.1,tropical storm,NA,35,1007,NA,NA +Lisa,1998,10,5,12,14.8,-47.8,tropical storm,NA,35,1007,NA,NA +Lisa,1998,10,5,18,15.7,-48.5,tropical storm,NA,40,1006,NA,NA +Lisa,1998,10,6,0,16.5,-49.2,tropical storm,NA,40,1006,NA,NA +Lisa,1998,10,6,6,17.1,-49.3,tropical storm,NA,45,1005,NA,NA +Lisa,1998,10,6,12,17.6,-48.9,tropical storm,NA,45,1005,NA,NA +Lisa,1998,10,6,18,18.2,-48.5,tropical storm,NA,45,1005,NA,NA +Lisa,1998,10,7,0,18.9,-48,tropical storm,NA,50,1004,NA,NA +Lisa,1998,10,7,6,19.6,-47.5,tropical storm,NA,50,1003,NA,NA +Lisa,1998,10,7,12,20.4,-46.6,tropical storm,NA,50,1002,NA,NA +Lisa,1998,10,7,18,21.5,-45.3,tropical storm,NA,50,1001,NA,NA +Lisa,1998,10,8,0,22.9,-43.9,tropical storm,NA,55,1000,NA,NA +Lisa,1998,10,8,6,24.6,-42.1,tropical storm,NA,55,999,NA,NA +Lisa,1998,10,8,12,26.9,-40.1,tropical storm,NA,55,999,NA,NA +Lisa,1998,10,8,18,29.6,-38.6,tropical storm,NA,60,999,NA,NA +Lisa,1998,10,9,0,32.9,-37.8,tropical storm,NA,60,999,NA,NA +Lisa,1998,10,9,6,36.8,-37.9,tropical storm,NA,60,997,NA,NA +Lisa,1998,10,9,12,41.6,-38.7,hurricane,1,65,995,NA,NA +Lisa,1998,10,9,18,47.1,-39.3,hurricane,1,65,997,NA,NA +Lisa,1998,10,10,0,52.1,-32,extratropical,NA,60,999,NA,NA +Mitch,1998,10,22,0,11.6,-76.1,tropical depression,NA,30,1002,NA,NA +Mitch,1998,10,22,6,11.9,-77.1,tropical depression,NA,30,1002,NA,NA +Mitch,1998,10,22,12,12,-77.9,tropical depression,NA,30,1002,NA,NA +Mitch,1998,10,22,18,11.6,-77.9,tropical storm,NA,35,1001,NA,NA +Mitch,1998,10,23,0,11.8,-77.6,tropical storm,NA,40,1000,NA,NA +Mitch,1998,10,23,6,12.2,-77.6,tropical storm,NA,45,999,NA,NA +Mitch,1998,10,23,12,12.5,-77.8,tropical storm,NA,45,999,NA,NA +Mitch,1998,10,23,18,12.9,-78,tropical storm,NA,50,998,NA,NA +Mitch,1998,10,24,0,13.4,-77.9,tropical storm,NA,55,997,NA,NA +Mitch,1998,10,24,6,13.9,-77.8,hurricane,1,65,990,NA,NA +Mitch,1998,10,24,12,14.5,-77.9,hurricane,1,75,985,NA,NA +Mitch,1998,10,24,18,15,-78.1,hurricane,2,90,980,NA,NA +Mitch,1998,10,25,0,15.5,-78.4,hurricane,3,100,965,NA,NA +Mitch,1998,10,25,6,16,-78.9,hurricane,3,105,951,NA,NA +Mitch,1998,10,25,12,16.2,-79.6,hurricane,4,115,945,NA,NA +Mitch,1998,10,25,18,16.4,-80.3,hurricane,4,125,926,NA,NA +Mitch,1998,10,26,0,16.4,-81,hurricane,4,130,923,NA,NA +Mitch,1998,10,26,6,16.4,-81.8,hurricane,4,135,922,NA,NA +Mitch,1998,10,26,12,16.6,-82.6,hurricane,5,145,914,NA,NA +Mitch,1998,10,26,18,16.9,-83.1,hurricane,5,155,905,NA,NA +Mitch,1998,10,27,0,17.2,-83.8,hurricane,5,155,910,NA,NA +Mitch,1998,10,27,6,17.3,-84.4,hurricane,5,150,917,NA,NA +Mitch,1998,10,27,12,17.1,-85,hurricane,5,150,922,NA,NA +Mitch,1998,10,27,18,16.9,-85.4,hurricane,5,145,928,NA,NA +Mitch,1998,10,28,0,16.6,-85.6,hurricane,5,140,933,NA,NA +Mitch,1998,10,28,6,16.3,-85.6,hurricane,4,130,938,NA,NA +Mitch,1998,10,28,12,16.3,-85.6,hurricane,4,115,948,NA,NA +Mitch,1998,10,28,18,16.3,-85.7,hurricane,2,95,959,NA,NA +Mitch,1998,10,29,0,16.2,-85.8,hurricane,2,85,970,NA,NA +Mitch,1998,10,29,6,16.1,-85.8,hurricane,1,75,979,NA,NA +Mitch,1998,10,29,12,15.9,-85.7,hurricane,1,70,987,NA,NA +Mitch,1998,10,29,18,15.8,-85.6,tropical storm,NA,60,994,NA,NA +Mitch,1998,10,30,0,15.6,-85.7,tropical storm,NA,55,995,NA,NA +Mitch,1998,10,30,6,15.4,-85.9,tropical storm,NA,50,996,NA,NA +Mitch,1998,10,30,12,15.2,-86.1,tropical storm,NA,45,997,NA,NA +Mitch,1998,10,30,18,14.9,-86.5,tropical storm,NA,45,998,NA,NA +Mitch,1998,10,31,0,14.7,-87,tropical storm,NA,45,999,NA,NA +Mitch,1998,10,31,6,14.5,-87.7,tropical storm,NA,40,1000,NA,NA +Mitch,1998,10,31,12,14.5,-88.5,tropical storm,NA,35,1000,NA,NA +Mitch,1998,10,31,18,14.6,-89.2,tropical depression,NA,30,1001,NA,NA +Mitch,1998,11,1,0,14.6,-90,tropical depression,NA,30,1002,NA,NA +Mitch,1998,11,1,6,14.7,-90.8,tropical depression,NA,25,1003,NA,NA +Mitch,1998,11,1,12,14.9,-91.5,tropical depression,NA,25,1005,NA,NA +Mitch,1998,11,1,18,15.5,-92.2,tropical depression,NA,25,1005,NA,NA +Mitch,1998,11,2,0,16.3,-92.7,other low,NA,20,1005,NA,NA +Mitch,1998,11,2,6,17.1,-93.1,other low,NA,20,1005,NA,NA +Mitch,1998,11,2,12,17.9,-93.4,other low,NA,20,1005,NA,NA +Mitch,1998,11,2,18,18.7,-93.7,other low,NA,20,1005,NA,NA +Mitch,1998,11,3,0,19.2,-93.4,other low,NA,20,1003,NA,NA +Mitch,1998,11,3,6,19.3,-92.7,other low,NA,20,1003,NA,NA +Mitch,1998,11,3,12,19.4,-92.1,other low,NA,25,1002,NA,NA +Mitch,1998,11,3,18,19.6,-91.4,tropical storm,NA,40,997,NA,NA +Mitch,1998,11,4,0,20,-90.6,tropical storm,NA,35,997,NA,NA +Mitch,1998,11,4,2,20.1,-90.5,tropical storm,NA,35,998,NA,NA +Mitch,1998,11,4,6,20.8,-89.6,tropical depression,NA,30,998,NA,NA +Mitch,1998,11,4,12,21.8,-88.2,tropical storm,NA,40,998,NA,NA +Mitch,1998,11,4,18,23.3,-86.5,tropical storm,NA,40,993,NA,NA +Mitch,1998,11,5,0,24.8,-84.8,tropical storm,NA,45,993,NA,NA +Mitch,1998,11,5,6,25.6,-83.1,tropical storm,NA,50,990,NA,NA +Mitch,1998,11,5,11,26.2,-81.9,tropical storm,NA,55,989,NA,NA +Mitch,1998,11,5,12,26.6,-81.3,tropical storm,NA,55,987,NA,NA +Mitch,1998,11,5,18,27.5,-78.3,extratropical,NA,50,992,NA,NA +Mitch,1998,11,6,0,30,-75,extratropical,NA,50,993,NA,NA +Mitch,1998,11,6,6,32.5,-72,extratropical,NA,50,992,NA,NA +Mitch,1998,11,6,12,35,-68,extratropical,NA,50,990,NA,NA +Mitch,1998,11,6,18,37,-63,extratropical,NA,50,989,NA,NA +Mitch,1998,11,7,0,39,-58,extratropical,NA,50,990,NA,NA +Mitch,1998,11,7,6,41,-53,extratropical,NA,50,992,NA,NA +Mitch,1998,11,7,12,42.5,-47.5,extratropical,NA,50,986,NA,NA +Mitch,1998,11,7,18,44.5,-42,extratropical,NA,60,972,NA,NA +Mitch,1998,11,8,0,46.5,-36.5,extratropical,NA,60,974,NA,NA +Mitch,1998,11,8,6,48.5,-31,extratropical,NA,60,972,NA,NA +Mitch,1998,11,8,12,50,-25,extratropical,NA,60,962,NA,NA +Mitch,1998,11,8,18,53.5,-20.5,extratropical,NA,60,956,NA,NA +Mitch,1998,11,9,0,55.5,-14.5,extratropical,NA,60,956,NA,NA +Mitch,1998,11,9,6,58,-10.5,extratropical,NA,60,956,NA,NA +Mitch,1998,11,9,12,61,-10,extratropical,NA,60,956,NA,NA +Mitch,1998,11,9,18,63.5,-5,extratropical,NA,55,960,NA,NA +Nicole,1998,11,24,0,28.3,-28,tropical depression,NA,30,1010,NA,NA +Nicole,1998,11,24,6,27.9,-29.1,tropical storm,NA,35,1005,NA,NA +Nicole,1998,11,24,12,27.5,-30.1,tropical storm,NA,45,1000,NA,NA +Nicole,1998,11,24,18,27.2,-31.1,tropical storm,NA,60,997,NA,NA +Nicole,1998,11,25,0,26.9,-32,tropical storm,NA,60,995,NA,NA +Nicole,1998,11,25,6,26.6,-32.9,tropical storm,NA,60,994,NA,NA +Nicole,1998,11,25,12,26.3,-33.7,tropical storm,NA,55,994,NA,NA +Nicole,1998,11,25,18,26,-34.6,tropical storm,NA,50,994,NA,NA +Nicole,1998,11,26,0,25.7,-35.4,tropical storm,NA,40,998,NA,NA +Nicole,1998,11,26,6,25.5,-36.4,tropical storm,NA,35,1000,NA,NA +Nicole,1998,11,26,12,25.3,-37.3,tropical depression,NA,30,1007,NA,NA +Nicole,1998,11,26,18,25.2,-38.3,tropical depression,NA,25,1009,NA,NA +Nicole,1998,11,27,0,25.2,-39.2,tropical depression,NA,25,1009,NA,NA +Nicole,1998,11,27,6,25.3,-40.3,tropical depression,NA,25,1009,NA,NA +Nicole,1998,11,27,12,25.4,-41.7,tropical depression,NA,30,1009,NA,NA +Nicole,1998,11,27,18,25.6,-43,tropical storm,NA,40,1005,NA,NA +Nicole,1998,11,28,0,25.8,-44.1,tropical storm,NA,50,1001,NA,NA +Nicole,1998,11,28,6,26.3,-45.3,tropical storm,NA,50,1000,NA,NA +Nicole,1998,11,28,12,27.1,-46.2,tropical storm,NA,50,1000,NA,NA +Nicole,1998,11,28,18,28,-46.6,tropical storm,NA,50,1000,NA,NA +Nicole,1998,11,29,0,28.8,-46.5,tropical storm,NA,45,1000,NA,NA +Nicole,1998,11,29,6,30,-45.9,tropical storm,NA,45,1000,NA,NA +Nicole,1998,11,29,12,31,-44.9,tropical storm,NA,55,1000,NA,NA +Nicole,1998,11,29,18,31.8,-43.8,tropical storm,NA,60,995,NA,NA +Nicole,1998,11,30,0,32.6,-42.6,hurricane,1,65,992,NA,NA +Nicole,1998,11,30,6,33.1,-41.7,hurricane,1,65,992,NA,NA +Nicole,1998,11,30,12,33.8,-40.5,hurricane,1,65,987,NA,NA +Nicole,1998,11,30,18,34.3,-39.3,hurricane,1,70,984,NA,NA +Nicole,1998,12,1,0,35.1,-37.9,hurricane,1,75,979,NA,NA +Nicole,1998,12,1,6,37,-35.5,hurricane,1,70,980,NA,NA +Nicole,1998,12,1,12,40.4,-34,tropical storm,NA,60,982,NA,NA +Nicole,1998,12,1,18,43,-34,extratropical,NA,60,985,NA,NA +Nicole,1998,12,2,0,47,-34.5,extratropical,NA,50,988,NA,NA +Nicole,1998,12,2,6,49.5,-35.5,extratropical,NA,50,990,NA,NA +Nicole,1998,12,2,12,52,-37,extratropical,NA,50,990,NA,NA +Arlene,1999,6,11,18,27.1,-58.1,tropical depression,NA,30,1010,NA,NA +Arlene,1999,6,12,0,27.7,-57.4,tropical depression,NA,30,1010,NA,NA +Arlene,1999,6,12,6,28.1,-57.3,tropical depression,NA,30,1010,NA,NA +Arlene,1999,6,12,12,28.3,-57.3,tropical storm,NA,35,1009,NA,NA +Arlene,1999,6,12,18,28.5,-57.4,tropical storm,NA,45,1008,NA,NA +Arlene,1999,6,13,0,28.8,-57.5,tropical storm,NA,50,1006,NA,NA +Arlene,1999,6,13,6,29,-57.8,tropical storm,NA,50,1006,NA,NA +Arlene,1999,6,13,12,29.1,-58.2,tropical storm,NA,50,1007,NA,NA +Arlene,1999,6,13,18,29.1,-58.7,tropical storm,NA,50,1007,NA,NA +Arlene,1999,6,14,0,29.1,-59.2,tropical storm,NA,45,1008,NA,NA +Arlene,1999,6,14,6,29.2,-59.8,tropical storm,NA,40,1009,NA,NA +Arlene,1999,6,14,12,29.3,-60.4,tropical storm,NA,40,1009,NA,NA +Arlene,1999,6,14,18,29.6,-60.7,tropical storm,NA,40,1009,NA,NA +Arlene,1999,6,15,0,29.8,-61.1,tropical storm,NA,40,1009,NA,NA +Arlene,1999,6,15,6,29.7,-61.5,tropical storm,NA,40,1009,NA,NA +Arlene,1999,6,15,12,29.6,-61.3,tropical storm,NA,45,1008,NA,NA +Arlene,1999,6,15,18,29.9,-61.4,tropical storm,NA,45,1009,NA,NA +Arlene,1999,6,16,0,30,-61.7,tropical storm,NA,45,1009,NA,NA +Arlene,1999,6,16,6,30.3,-62,tropical storm,NA,45,1010,NA,NA +Arlene,1999,6,16,12,30.8,-62.3,tropical storm,NA,40,1010,NA,NA +Arlene,1999,6,16,18,31.3,-62.5,tropical storm,NA,35,1012,NA,NA +Arlene,1999,6,17,0,31.8,-62.8,tropical depression,NA,30,1014,NA,NA +Arlene,1999,6,17,6,32.5,-63,tropical depression,NA,30,1015,NA,NA +Arlene,1999,6,17,12,33.4,-63,tropical depression,NA,30,1015,NA,NA +Arlene,1999,6,17,18,34.4,-62.3,tropical depression,NA,30,1015,NA,NA +Arlene,1999,6,18,0,35.4,-61.6,tropical depression,NA,25,1015,NA,NA +AL021999,1999,7,2,18,20.2,-95,tropical depression,NA,30,1006,NA,NA +AL021999,1999,7,3,0,20.6,-96.3,tropical depression,NA,30,1004,NA,NA +AL021999,1999,7,3,4,20.5,-97,tropical depression,NA,30,1004,NA,NA +AL021999,1999,7,3,6,20.4,-97.3,tropical depression,NA,25,1005,NA,NA +Bret,1999,8,18,18,19.5,-94.4,tropical depression,NA,30,1010,NA,NA +Bret,1999,8,19,0,19.5,-94.5,tropical depression,NA,30,1008,NA,NA +Bret,1999,8,19,6,19.6,-94.6,tropical depression,NA,30,1008,NA,NA +Bret,1999,8,19,12,19.7,-94.6,tropical depression,NA,30,1008,NA,NA +Bret,1999,8,19,18,19.8,-94.7,tropical storm,NA,35,1005,NA,NA +Bret,1999,8,20,0,19.8,-94.7,tropical storm,NA,40,1000,NA,NA +Bret,1999,8,20,6,20,-94.6,tropical storm,NA,45,998,NA,NA +Bret,1999,8,20,12,20.4,-94.5,tropical storm,NA,50,993,NA,NA +Bret,1999,8,20,18,21.2,-94.4,tropical storm,NA,55,991,NA,NA +Bret,1999,8,21,0,21.9,-94.5,hurricane,1,65,983,NA,NA +Bret,1999,8,21,6,22.5,-94.7,hurricane,1,75,980,NA,NA +Bret,1999,8,21,12,23.1,-94.9,hurricane,1,80,979,NA,NA +Bret,1999,8,21,18,23.8,-95,hurricane,2,90,975,NA,NA +Bret,1999,8,22,0,24.7,-95.1,hurricane,4,120,954,NA,NA +Bret,1999,8,22,6,25.5,-95.5,hurricane,4,125,950,NA,NA +Bret,1999,8,22,12,26.2,-96.1,hurricane,4,125,944,NA,NA +Bret,1999,8,22,18,26.6,-96.8,hurricane,4,120,946,NA,NA +Bret,1999,8,23,0,26.9,-97.4,hurricane,3,100,951,NA,NA +Bret,1999,8,23,6,27,-97.9,hurricane,1,80,963,NA,NA +Bret,1999,8,23,12,27.3,-98.3,tropical storm,NA,60,980,NA,NA +Bret,1999,8,23,18,27.6,-98.8,tropical storm,NA,35,993,NA,NA +Bret,1999,8,24,0,28,-99.5,tropical depression,NA,30,1000,NA,NA +Bret,1999,8,24,6,28,-100.4,tropical depression,NA,30,1003,NA,NA +Bret,1999,8,24,12,27.8,-101.3,tropical depression,NA,25,1006,NA,NA +Bret,1999,8,24,18,27.7,-102.1,tropical depression,NA,25,1007,NA,NA +Bret,1999,8,25,0,27.6,-103,tropical depression,NA,20,1008,NA,NA +Cindy,1999,8,19,0,13.5,-18.9,tropical depression,NA,30,1003,NA,NA +Cindy,1999,8,19,6,13.8,-20.3,tropical depression,NA,30,1003,NA,NA +Cindy,1999,8,19,12,13.9,-21.5,tropical depression,NA,30,1003,NA,NA +Cindy,1999,8,19,18,13.8,-22.5,tropical depression,NA,30,1003,NA,NA +Cindy,1999,8,20,0,13.7,-23.4,tropical depression,NA,30,1002,NA,NA +Cindy,1999,8,20,6,13.6,-24.3,tropical depression,NA,30,1002,NA,NA +Cindy,1999,8,20,12,13.5,-25.4,tropical depression,NA,30,1002,NA,NA +Cindy,1999,8,20,18,13.6,-26.6,tropical storm,NA,35,1001,NA,NA +Cindy,1999,8,21,0,13.6,-27.7,tropical storm,NA,40,1000,NA,NA +Cindy,1999,8,21,6,13.8,-28.8,tropical storm,NA,50,997,NA,NA +Cindy,1999,8,21,12,13.9,-29.7,tropical storm,NA,55,994,NA,NA +Cindy,1999,8,21,18,14.1,-30.8,tropical storm,NA,60,990,NA,NA +Cindy,1999,8,22,0,14.2,-31.7,hurricane,1,65,987,NA,NA +Cindy,1999,8,22,6,14.4,-32.3,hurricane,1,65,987,NA,NA +Cindy,1999,8,22,12,14.5,-32.7,hurricane,1,65,987,NA,NA +Cindy,1999,8,22,18,14.6,-33.1,tropical storm,NA,60,990,NA,NA +Cindy,1999,8,23,0,14.9,-33.9,tropical storm,NA,50,997,NA,NA +Cindy,1999,8,23,6,15.3,-34.9,tropical storm,NA,50,997,NA,NA +Cindy,1999,8,23,12,15.7,-35.9,tropical storm,NA,50,997,NA,NA +Cindy,1999,8,23,18,16.1,-36.9,tropical storm,NA,50,997,NA,NA +Cindy,1999,8,24,0,16.6,-38,tropical storm,NA,50,997,NA,NA +Cindy,1999,8,24,6,16.9,-39.2,tropical storm,NA,50,997,NA,NA +Cindy,1999,8,24,12,17.2,-40.6,tropical storm,NA,50,997,NA,NA +Cindy,1999,8,24,18,17.5,-42.2,tropical storm,NA,50,997,NA,NA +Cindy,1999,8,25,0,17.8,-43.6,tropical storm,NA,55,994,NA,NA +Cindy,1999,8,25,6,18.4,-44.8,tropical storm,NA,55,994,NA,NA +Cindy,1999,8,25,12,19.3,-45.9,tropical storm,NA,55,994,NA,NA +Cindy,1999,8,25,18,20.4,-47.1,tropical storm,NA,60,990,NA,NA +Cindy,1999,8,26,0,21.7,-48.2,hurricane,1,65,987,NA,NA +Cindy,1999,8,26,6,22.9,-49.5,hurricane,1,65,987,NA,NA +Cindy,1999,8,26,12,24.2,-50.8,hurricane,1,65,987,NA,NA +Cindy,1999,8,26,18,25.4,-52,hurricane,1,70,984,NA,NA +Cindy,1999,8,27,0,26.4,-53.1,hurricane,1,80,978,NA,NA +Cindy,1999,8,27,6,27.2,-54.3,hurricane,1,80,978,NA,NA +Cindy,1999,8,27,12,27.8,-55.4,hurricane,2,90,970,NA,NA +Cindy,1999,8,27,18,28.3,-56.2,hurricane,2,90,970,NA,NA +Cindy,1999,8,28,0,28.7,-56.9,hurricane,3,100,961,NA,NA +Cindy,1999,8,28,6,29.3,-57.5,hurricane,4,115,948,NA,NA +Cindy,1999,8,28,12,30.1,-58,hurricane,4,120,942,NA,NA +Cindy,1999,8,28,18,30.8,-58.5,hurricane,4,120,943,NA,NA +Cindy,1999,8,29,0,31.5,-58.4,hurricane,4,120,944,NA,NA +Cindy,1999,8,29,6,32.3,-58.4,hurricane,4,115,948,NA,NA +Cindy,1999,8,29,12,33.1,-58.2,hurricane,3,100,961,NA,NA +Cindy,1999,8,29,18,33.8,-57.4,hurricane,2,95,965,NA,NA +Cindy,1999,8,30,0,34.3,-56.3,hurricane,2,90,970,NA,NA +Cindy,1999,8,30,6,34.7,-55.5,hurricane,2,90,970,NA,NA +Cindy,1999,8,30,12,35.3,-54.9,hurricane,1,80,978,NA,NA +Cindy,1999,8,30,18,36.1,-54.2,hurricane,1,80,978,NA,NA +Cindy,1999,8,31,0,37,-52.6,hurricane,1,70,984,NA,NA +Cindy,1999,8,31,6,38.2,-50.6,tropical storm,NA,60,990,NA,NA +Cindy,1999,8,31,12,40.4,-48.2,tropical storm,NA,50,997,NA,NA +Dennis,1999,8,24,0,21.5,-67.7,tropical depression,NA,30,1009,NA,NA +Dennis,1999,8,24,6,22,-68.9,tropical depression,NA,30,1009,NA,NA +Dennis,1999,8,24,12,22.4,-70,tropical storm,NA,35,1009,NA,NA +Dennis,1999,8,24,18,22.7,-70.9,tropical storm,NA,40,1009,NA,NA +Dennis,1999,8,25,0,22.8,-71.5,tropical storm,NA,40,1008,NA,NA +Dennis,1999,8,25,6,23,-71.9,tropical storm,NA,40,1007,NA,NA +Dennis,1999,8,25,12,23.2,-72.1,tropical storm,NA,45,1004,NA,NA +Dennis,1999,8,25,18,23.4,-72.3,tropical storm,NA,55,1000,NA,NA +Dennis,1999,8,26,0,23.6,-72.5,tropical storm,NA,60,998,NA,NA +Dennis,1999,8,26,6,23.8,-73.1,hurricane,1,65,995,NA,NA +Dennis,1999,8,26,12,24.1,-73.6,hurricane,1,65,995,NA,NA +Dennis,1999,8,26,18,24.4,-74,hurricane,1,70,990,NA,NA +Dennis,1999,8,27,0,24.8,-74.4,hurricane,1,65,993,NA,NA +Dennis,1999,8,27,6,25.2,-75,hurricane,1,65,988,NA,NA +Dennis,1999,8,27,12,25.6,-75.5,hurricane,1,65,988,NA,NA +Dennis,1999,8,27,18,25.9,-75.9,hurricane,1,65,987,NA,NA +Dennis,1999,8,28,0,26.1,-76.2,hurricane,1,70,982,NA,NA +Dennis,1999,8,28,6,26.5,-76.7,hurricane,1,75,976,NA,NA +Dennis,1999,8,28,7,26.6,-76.8,hurricane,1,75,976,NA,NA +Dennis,1999,8,28,12,27.1,-77,hurricane,2,85,973,NA,NA +Dennis,1999,8,28,18,27.7,-77.3,hurricane,2,90,969,NA,NA +Dennis,1999,8,29,0,28.3,-77.7,hurricane,2,90,969,NA,NA +Dennis,1999,8,29,6,29,-77.9,hurricane,2,90,970,NA,NA +Dennis,1999,8,29,12,29.9,-78.4,hurricane,2,90,971,NA,NA +Dennis,1999,8,29,18,30.8,-78.4,hurricane,2,90,967,NA,NA +Dennis,1999,8,30,0,31.9,-78.1,hurricane,2,90,964,NA,NA +Dennis,1999,8,30,6,32.8,-77.6,hurricane,2,90,962,NA,NA +Dennis,1999,8,30,12,33.6,-76.5,hurricane,2,85,965,NA,NA +Dennis,1999,8,30,18,34.3,-74.8,hurricane,2,85,966,NA,NA +Dennis,1999,8,31,0,34.9,-73.6,hurricane,1,80,971,NA,NA +Dennis,1999,8,31,6,35.1,-72.9,hurricane,1,80,977,NA,NA +Dennis,1999,8,31,12,35.2,-72.8,hurricane,1,75,983,NA,NA +Dennis,1999,8,31,18,35.1,-73.3,hurricane,1,70,984,NA,NA +Dennis,1999,9,1,0,35.2,-73.6,tropical storm,NA,60,986,NA,NA +Dennis,1999,9,1,6,35,-73.4,tropical storm,NA,55,987,NA,NA +Dennis,1999,9,1,12,35.4,-73.5,tropical storm,NA,50,989,NA,NA +Dennis,1999,9,1,18,35.5,-73.8,tropical storm,NA,50,988,NA,NA +Dennis,1999,9,2,0,35.4,-73.7,tropical storm,NA,50,988,NA,NA +Dennis,1999,9,2,6,35.2,-73.6,tropical storm,NA,45,989,NA,NA +Dennis,1999,9,2,12,35.1,-73.7,tropical storm,NA,45,989,NA,NA +Dennis,1999,9,2,18,34.8,-73.9,tropical storm,NA,45,990,NA,NA +Dennis,1999,9,3,0,34.2,-74,tropical storm,NA,45,989,NA,NA +Dennis,1999,9,3,6,33.6,-74.1,tropical storm,NA,45,989,NA,NA +Dennis,1999,9,3,12,33.2,-73.9,tropical storm,NA,45,988,NA,NA +Dennis,1999,9,3,18,33,-73.8,tropical storm,NA,50,987,NA,NA +Dennis,1999,9,4,0,33.1,-74,tropical storm,NA,50,987,NA,NA +Dennis,1999,9,4,6,33.3,-74.5,tropical storm,NA,55,986,NA,NA +Dennis,1999,9,4,12,33.9,-75.3,tropical storm,NA,55,986,NA,NA +Dennis,1999,9,4,18,34.5,-76,tropical storm,NA,60,986,NA,NA +Dennis,1999,9,4,21,34.8,-76.5,tropical storm,NA,60,984,NA,NA +Dennis,1999,9,5,0,35,-76.8,tropical storm,NA,50,985,NA,NA +Dennis,1999,9,5,6,35.5,-77.7,tropical storm,NA,35,989,NA,NA +Dennis,1999,9,5,12,36.1,-78.8,tropical depression,NA,30,994,NA,NA +Dennis,1999,9,5,18,36.2,-79.4,tropical depression,NA,25,998,NA,NA +Dennis,1999,9,6,0,36.2,-79.9,tropical depression,NA,25,1000,NA,NA +Dennis,1999,9,6,6,36.4,-80.1,tropical depression,NA,20,1004,NA,NA +Dennis,1999,9,6,12,37,-79.9,tropical depression,NA,20,1005,NA,NA +Dennis,1999,9,6,18,37.7,-79.5,tropical depression,NA,20,1008,NA,NA +Dennis,1999,9,7,0,38.5,-78.5,tropical depression,NA,20,1009,NA,NA +Dennis,1999,9,7,6,40.8,-77,tropical depression,NA,20,1008,NA,NA +Dennis,1999,9,7,12,42.7,-77.7,tropical depression,NA,20,1007,NA,NA +Dennis,1999,9,7,18,43.5,-77.7,extratropical,NA,20,1006,NA,NA +Dennis,1999,9,8,0,43.5,-76.5,extratropical,NA,20,1006,NA,NA +Dennis,1999,9,8,6,44,-75.8,extratropical,NA,20,1006,NA,NA +Dennis,1999,9,8,12,44.9,-74.8,extratropical,NA,20,1006,NA,NA +Dennis,1999,9,8,18,45.5,-75.6,extratropical,NA,20,1005,NA,NA +Emily,1999,8,24,6,11.5,-53.6,tropical depression,NA,30,1007,NA,NA +Emily,1999,8,24,12,11.5,-53.8,tropical storm,NA,35,1006,NA,NA +Emily,1999,8,24,18,11.6,-53.9,tropical storm,NA,45,1004,NA,NA +Emily,1999,8,25,0,12.1,-53.9,tropical storm,NA,45,1005,NA,NA +Emily,1999,8,25,6,12.6,-54.2,tropical storm,NA,40,1006,NA,NA +Emily,1999,8,25,12,12.8,-54.8,tropical storm,NA,40,1007,NA,NA +Emily,1999,8,25,18,13.2,-55.2,tropical storm,NA,40,1005,NA,NA +Emily,1999,8,26,0,13.8,-55.7,tropical storm,NA,40,1005,NA,NA +Emily,1999,8,26,6,14.3,-56.2,tropical storm,NA,40,1007,NA,NA +Emily,1999,8,26,12,15,-56.6,tropical storm,NA,40,1010,NA,NA +Emily,1999,8,26,18,15.8,-57,tropical storm,NA,35,1010,NA,NA +Emily,1999,8,27,0,17,-57.1,tropical storm,NA,35,1010,NA,NA +Emily,1999,8,27,6,18,-57,tropical storm,NA,35,1011,NA,NA +Emily,1999,8,27,12,19,-57,tropical storm,NA,35,1009,NA,NA +Emily,1999,8,27,18,20,-57,tropical storm,NA,40,1007,NA,NA +Emily,1999,8,28,0,21.1,-56.6,tropical storm,NA,40,1007,NA,NA +Emily,1999,8,28,6,22.4,-56.7,tropical storm,NA,35,1009,NA,NA +Emily,1999,8,28,12,23.8,-56.7,tropical depression,NA,30,1009,NA,NA +AL071999,1999,9,5,18,21.6,-96.4,tropical depression,NA,25,1006,NA,NA +AL071999,1999,9,6,0,22,-96.7,tropical depression,NA,30,1006,NA,NA +AL071999,1999,9,6,6,22.6,-97.2,tropical depression,NA,30,1006,NA,NA +AL071999,1999,9,6,12,23.2,-97.7,tropical depression,NA,30,1006,NA,NA +AL071999,1999,9,6,18,23.8,-98,tropical depression,NA,30,1006,NA,NA +AL071999,1999,9,7,0,24,-98.1,tropical depression,NA,30,1006,NA,NA +AL071999,1999,9,7,6,24.3,-98.5,tropical depression,NA,30,1006,NA,NA +AL071999,1999,9,7,12,25,-99,tropical depression,NA,25,1007,NA,NA +Floyd,1999,9,7,18,14.6,-45.6,tropical depression,NA,25,1008,NA,NA +Floyd,1999,9,8,0,15,-46.9,tropical depression,NA,30,1007,NA,NA +Floyd,1999,9,8,6,15.3,-48.2,tropical storm,NA,35,1005,NA,NA +Floyd,1999,9,8,12,15.8,-49.6,tropical storm,NA,40,1003,NA,NA +Floyd,1999,9,8,18,16.3,-51.1,tropical storm,NA,45,1000,NA,NA +Floyd,1999,9,9,0,16.7,-52.6,tropical storm,NA,45,1000,NA,NA +Floyd,1999,9,9,6,17.1,-53.9,tropical storm,NA,45,1003,NA,NA +Floyd,1999,9,9,12,17.3,-55.1,tropical storm,NA,50,1003,NA,NA +Floyd,1999,9,9,18,17.9,-56.3,tropical storm,NA,60,996,NA,NA +Floyd,1999,9,10,0,18.3,-57.2,tropical storm,NA,60,995,NA,NA +Floyd,1999,9,10,6,18.6,-58.2,tropical storm,NA,60,990,NA,NA +Floyd,1999,9,10,12,19.3,-58.8,hurricane,1,70,989,NA,NA +Floyd,1999,9,10,18,20.2,-59.6,hurricane,1,70,975,NA,NA +Floyd,1999,9,11,0,20.8,-60.4,hurricane,1,80,971,NA,NA +Floyd,1999,9,11,6,21.4,-61.1,hurricane,2,95,963,NA,NA +Floyd,1999,9,11,12,21.9,-62,hurricane,2,95,962,NA,NA +Floyd,1999,9,11,18,22.5,-63,hurricane,2,90,966,NA,NA +Floyd,1999,9,12,0,22.7,-64.1,hurricane,2,85,967,NA,NA +Floyd,1999,9,12,6,22.8,-65.2,hurricane,2,95,960,NA,NA +Floyd,1999,9,12,12,23,-66.2,hurricane,3,105,955,NA,NA +Floyd,1999,9,12,18,23.2,-67.4,hurricane,4,115,940,NA,NA +Floyd,1999,9,13,0,23.4,-68.7,hurricane,4,125,931,NA,NA +Floyd,1999,9,13,6,23.6,-70,hurricane,4,135,922,NA,NA +Floyd,1999,9,13,12,23.9,-71.4,hurricane,4,135,921,NA,NA +Floyd,1999,9,13,18,24.1,-72.9,hurricane,4,125,923,NA,NA +Floyd,1999,9,14,0,24.5,-74,hurricane,4,115,924,NA,NA +Floyd,1999,9,14,6,24.9,-75.3,hurricane,3,105,927,NA,NA +Floyd,1999,9,14,12,25.4,-76.3,hurricane,3,105,930,NA,NA +Floyd,1999,9,14,18,26.1,-77,hurricane,3,110,930,NA,NA +Floyd,1999,9,14,19,26.3,-77.1,hurricane,3,110,932,NA,NA +Floyd,1999,9,15,0,27.1,-77.7,hurricane,4,115,933,NA,NA +Floyd,1999,9,15,6,28.2,-78.5,hurricane,3,110,935,NA,NA +Floyd,1999,9,15,12,29.3,-78.9,hurricane,3,100,943,NA,NA +Floyd,1999,9,15,18,30.6,-79.1,hurricane,2,95,947,NA,NA +Floyd,1999,9,16,0,32.1,-78.7,hurricane,2,90,950,NA,NA +Floyd,1999,9,16,6,33.7,-78,hurricane,2,90,956,NA,NA +Floyd,1999,9,16,6,33.8,-78,hurricane,2,90,956,NA,NA +Floyd,1999,9,16,12,35.7,-76.8,hurricane,1,70,967,NA,NA +Floyd,1999,9,16,18,38,-75.3,tropical storm,NA,60,974,NA,NA +Floyd,1999,9,17,0,40.6,-73.5,tropical storm,NA,50,980,NA,NA +Floyd,1999,9,17,6,42.1,-72.1,tropical storm,NA,50,983,NA,NA +Floyd,1999,9,17,12,43.3,-70.6,extratropical,NA,45,984,NA,NA +Floyd,1999,9,17,18,44.2,-68.9,extratropical,NA,45,985,NA,NA +Floyd,1999,9,18,0,44.8,-67.3,extratropical,NA,40,987,NA,NA +Floyd,1999,9,18,6,45.4,-65.5,extratropical,NA,35,990,NA,NA +Floyd,1999,9,18,12,46.6,-63,extratropical,NA,35,992,NA,NA +Floyd,1999,9,18,18,47.7,-59.3,extratropical,NA,35,992,NA,NA +Floyd,1999,9,19,0,48,-56.3,extratropical,NA,35,992,NA,NA +Floyd,1999,9,19,6,48.5,-52.5,extratropical,NA,35,994,NA,NA +Floyd,1999,9,19,12,49.5,-48,extratropical,NA,40,992,NA,NA +Gert,1999,9,11,12,12.6,-24.2,tropical depression,NA,30,1006,NA,NA +Gert,1999,9,11,18,12.9,-26.1,tropical depression,NA,30,1005,NA,NA +Gert,1999,9,12,0,13.3,-28,tropical depression,NA,30,1006,NA,NA +Gert,1999,9,12,6,13.8,-29.8,tropical depression,NA,30,1005,NA,NA +Gert,1999,9,12,12,14.2,-31.9,tropical storm,NA,35,1001,NA,NA +Gert,1999,9,12,18,14.8,-33.8,tropical storm,NA,45,997,NA,NA +Gert,1999,9,13,0,15.1,-35.6,tropical storm,NA,55,995,NA,NA +Gert,1999,9,13,6,15.4,-37.3,tropical storm,NA,60,990,NA,NA +Gert,1999,9,13,12,15.9,-39.2,hurricane,1,65,984,NA,NA +Gert,1999,9,13,18,16.1,-40.8,hurricane,1,70,979,NA,NA +Gert,1999,9,14,0,16.3,-42.2,hurricane,1,75,976,NA,NA +Gert,1999,9,14,6,16.6,-43.5,hurricane,2,85,973,NA,NA +Gert,1999,9,14,12,16.8,-44.6,hurricane,2,90,968,NA,NA +Gert,1999,9,14,18,17.1,-45.8,hurricane,2,95,962,NA,NA +Gert,1999,9,15,0,17.2,-46.9,hurricane,3,100,955,NA,NA +Gert,1999,9,15,6,17.4,-47.9,hurricane,3,110,948,NA,NA +Gert,1999,9,15,12,17.5,-48.9,hurricane,4,115,940,NA,NA +Gert,1999,9,15,18,17.7,-50,hurricane,4,125,933,NA,NA +Gert,1999,9,16,0,17.8,-50.8,hurricane,4,130,930,NA,NA +Gert,1999,9,16,6,18,-51.7,hurricane,4,130,933,NA,NA +Gert,1999,9,16,12,18.2,-52.6,hurricane,4,125,941,NA,NA +Gert,1999,9,16,18,18.6,-53.4,hurricane,4,120,940,NA,NA +Gert,1999,9,17,0,19,-54.2,hurricane,4,115,944,NA,NA +Gert,1999,9,17,6,19.4,-55,hurricane,4,125,942,NA,NA +Gert,1999,9,17,12,19.9,-55.7,hurricane,4,125,945,NA,NA +Gert,1999,9,17,18,20.4,-56.3,hurricane,4,115,950,NA,NA +Gert,1999,9,18,0,20.9,-56.8,hurricane,3,110,953,NA,NA +Gert,1999,9,18,6,21.6,-57.1,hurricane,3,105,954,NA,NA +Gert,1999,9,18,12,22.2,-57.4,hurricane,3,105,953,NA,NA +Gert,1999,9,18,18,22.8,-57.8,hurricane,3,105,950,NA,NA +Gert,1999,9,19,0,23.4,-58.1,hurricane,3,110,947,NA,NA +Gert,1999,9,19,6,24.1,-58.7,hurricane,4,115,946,NA,NA +Gert,1999,9,19,12,24.7,-59.2,hurricane,4,115,946,NA,NA +Gert,1999,9,19,18,25.5,-60,hurricane,4,115,946,NA,NA +Gert,1999,9,20,0,26.2,-60.7,hurricane,4,115,947,NA,NA +Gert,1999,9,20,6,26.8,-61.4,hurricane,3,110,947,NA,NA +Gert,1999,9,20,12,27.6,-62.4,hurricane,3,105,948,NA,NA +Gert,1999,9,20,18,28.3,-62.7,hurricane,3,100,949,NA,NA +Gert,1999,9,21,0,29.2,-62.9,hurricane,2,95,950,NA,NA +Gert,1999,9,21,6,30.1,-62.8,hurricane,2,90,952,NA,NA +Gert,1999,9,21,12,31.3,-62.6,hurricane,2,85,955,NA,NA +Gert,1999,9,21,18,32.7,-62.1,hurricane,1,80,958,NA,NA +Gert,1999,9,22,0,34.3,-61.2,hurricane,1,75,960,NA,NA +Gert,1999,9,22,6,36.2,-60.4,hurricane,1,75,961,NA,NA +Gert,1999,9,22,12,38.1,-59.4,hurricane,1,70,962,NA,NA +Gert,1999,9,22,18,40.3,-57.9,hurricane,1,65,963,NA,NA +Gert,1999,9,23,0,42.2,-55.6,tropical storm,NA,60,964,NA,NA +Gert,1999,9,23,6,44.6,-54.5,tropical storm,NA,60,968,NA,NA +Gert,1999,9,23,12,46.6,-51.9,extratropical,NA,60,972,NA,NA +Harvey,1999,9,19,6,25,-87.8,tropical depression,NA,30,1005,NA,NA +Harvey,1999,9,19,12,25.5,-87.8,tropical depression,NA,30,1004,NA,NA +Harvey,1999,9,19,18,26,-87.8,tropical depression,NA,30,1003,NA,NA +Harvey,1999,9,20,0,26.3,-87.4,tropical storm,NA,40,1002,NA,NA +Harvey,1999,9,20,6,26.6,-86.9,tropical storm,NA,40,1001,NA,NA +Harvey,1999,9,20,12,27,-86.3,tropical storm,NA,40,998,NA,NA +Harvey,1999,9,20,18,27,-85.5,tropical storm,NA,50,998,NA,NA +Harvey,1999,9,21,0,27.1,-84.6,tropical storm,NA,50,995,NA,NA +Harvey,1999,9,21,6,26.5,-83.9,tropical storm,NA,50,995,NA,NA +Harvey,1999,9,21,8,26.3,-83.7,tropical storm,NA,50,994,NA,NA +Harvey,1999,9,21,12,26,-82.8,tropical storm,NA,50,996,NA,NA +Harvey,1999,9,21,17,25.9,-81.7,tropical storm,NA,50,999,NA,NA +Harvey,1999,9,21,18,25.9,-81.5,tropical storm,NA,50,999,NA,NA +Harvey,1999,9,22,0,26.9,-78.6,tropical storm,NA,40,1000,NA,NA +AL111999,1999,10,4,6,20.1,-94.1,tropical depression,NA,30,1005,NA,NA +AL111999,1999,10,4,12,19.5,-94,tropical depression,NA,30,1004,NA,NA +AL111999,1999,10,4,18,19,-94,tropical depression,NA,30,1003,NA,NA +AL111999,1999,10,5,0,18.9,-93.8,tropical depression,NA,30,1002,NA,NA +AL111999,1999,10,5,6,19.1,-94.2,tropical depression,NA,30,1003,NA,NA +AL111999,1999,10,5,12,19.4,-94.5,tropical depression,NA,30,1004,NA,NA +AL111999,1999,10,5,18,19.6,-94.8,tropical depression,NA,30,1005,NA,NA +AL111999,1999,10,6,0,19.6,-95,tropical depression,NA,30,1006,NA,NA +AL111999,1999,10,6,6,19.5,-95.4,tropical depression,NA,30,1007,NA,NA +AL111999,1999,10,6,12,20.4,-96.4,tropical depression,NA,30,1007,NA,NA +AL121999,1999,10,6,0,14.4,-44.8,tropical depression,NA,30,1008,NA,NA +AL121999,1999,10,6,6,14.8,-45.4,tropical depression,NA,30,1008,NA,NA +AL121999,1999,10,6,12,15,-45.8,tropical depression,NA,30,1007,NA,NA +AL121999,1999,10,6,18,15.2,-46,tropical depression,NA,30,1007,NA,NA +AL121999,1999,10,7,0,15.4,-46.2,tropical depression,NA,30,1008,NA,NA +AL121999,1999,10,7,6,15.6,-46.5,tropical depression,NA,30,1008,NA,NA +AL121999,1999,10,7,12,15.8,-46.7,tropical depression,NA,30,1008,NA,NA +AL121999,1999,10,7,18,16,-47.1,tropical depression,NA,30,1008,NA,NA +AL121999,1999,10,8,0,16.4,-47.5,tropical depression,NA,30,1008,NA,NA +AL121999,1999,10,8,6,16.6,-47.7,tropical depression,NA,30,1008,NA,NA +AL121999,1999,10,8,12,16.8,-47.9,tropical depression,NA,30,1008,NA,NA +AL121999,1999,10,8,18,17.3,-48.5,tropical depression,NA,25,1010,NA,NA +Irene,1999,10,12,12,15.9,-82,other low,NA,20,1006,NA,NA +Irene,1999,10,12,18,16.4,-83,other low,NA,20,1006,NA,NA +Irene,1999,10,13,0,16.7,-83.2,other low,NA,20,1005,NA,NA +Irene,1999,10,13,6,17.3,-83.3,tropical depression,NA,30,1004,NA,NA +Irene,1999,10,13,12,18.5,-83.4,tropical storm,NA,35,1003,NA,NA +Irene,1999,10,13,18,19.8,-83.6,tropical storm,NA,45,1001,NA,NA +Irene,1999,10,14,0,20.7,-83.6,tropical storm,NA,55,999,NA,NA +Irene,1999,10,14,6,21,-83.6,tropical storm,NA,60,999,NA,NA +Irene,1999,10,14,12,21.3,-82.9,tropical storm,NA,60,997,NA,NA +Irene,1999,10,14,18,22.4,-82.4,tropical storm,NA,60,995,NA,NA +Irene,1999,10,14,19,22.7,-82.5,tropical storm,NA,60,986,NA,NA +Irene,1999,10,15,0,23.1,-82.6,tropical storm,NA,60,988,NA,NA +Irene,1999,10,15,6,23.8,-82.2,hurricane,1,65,988,NA,NA +Irene,1999,10,15,12,24.4,-81.8,hurricane,1,65,987,NA,NA +Irene,1999,10,15,13,24.6,-81.6,hurricane,1,65,987,NA,NA +Irene,1999,10,15,18,25.1,-81.3,hurricane,1,65,986,NA,NA +Irene,1999,10,15,20,25.3,-81.1,hurricane,1,70,987,NA,NA +Irene,1999,10,16,0,26.1,-80.6,hurricane,1,65,986,NA,NA +Irene,1999,10,16,6,27,-80.2,hurricane,1,65,985,NA,NA +Irene,1999,10,16,12,27.8,-80.1,hurricane,1,65,982,NA,NA +Irene,1999,10,16,18,28.6,-79.9,hurricane,1,65,984,NA,NA +Irene,1999,10,17,0,29.4,-79.8,hurricane,1,65,984,NA,NA +Irene,1999,10,17,6,30.2,-79.8,hurricane,1,65,985,NA,NA +Irene,1999,10,17,12,31.2,-79.7,hurricane,1,65,984,NA,NA +Irene,1999,10,17,18,32.2,-79,hurricane,1,70,978,NA,NA +Irene,1999,10,18,0,33.4,-77.4,hurricane,1,80,976,NA,NA +Irene,1999,10,18,6,34.8,-75.2,hurricane,2,95,964,NA,NA +Irene,1999,10,18,7,35.4,-74.4,hurricane,2,95,958,NA,NA +Irene,1999,10,18,12,36.8,-71.6,hurricane,2,90,960,NA,NA +Irene,1999,10,18,18,39,-67.4,hurricane,1,80,968,NA,NA +Irene,1999,10,19,0,41.5,-61,hurricane,1,80,968,NA,NA +Irene,1999,10,19,6,44.9,-51.5,extratropical,NA,80,968,NA,NA +Irene,1999,10,19,12,48,-48,extratropical,NA,80,968,NA,NA +Irene,1999,10,19,18,51,-45,extratropical,NA,80,968,NA,NA +Jose,1999,10,17,18,9.8,-50.8,tropical depression,NA,25,1006,NA,NA +Jose,1999,10,18,0,10.3,-51.8,tropical depression,NA,30,1005,NA,NA +Jose,1999,10,18,6,10.9,-52.8,tropical storm,NA,35,1004,NA,NA +Jose,1999,10,18,12,11.5,-53.9,tropical storm,NA,40,1003,NA,NA +Jose,1999,10,18,18,12.2,-55.1,tropical storm,NA,40,1002,NA,NA +Jose,1999,10,19,0,12.9,-56.1,tropical storm,NA,45,1000,NA,NA +Jose,1999,10,19,6,13.5,-57.1,tropical storm,NA,55,994,NA,NA +Jose,1999,10,19,12,14.1,-58.1,tropical storm,NA,60,994,NA,NA +Jose,1999,10,19,18,14.9,-58.9,hurricane,1,65,992,NA,NA +Jose,1999,10,20,0,15.7,-59.5,hurricane,1,70,987,NA,NA +Jose,1999,10,20,6,16.3,-60.2,hurricane,1,80,979,NA,NA +Jose,1999,10,20,12,16.8,-61.1,hurricane,2,85,980,NA,NA +Jose,1999,10,20,16,17.1,-61.7,hurricane,1,80,982,NA,NA +Jose,1999,10,20,18,17.2,-62,hurricane,1,80,983,NA,NA +Jose,1999,10,21,0,17.6,-62.7,hurricane,1,75,990,NA,NA +Jose,1999,10,21,6,18.1,-63.8,hurricane,1,65,992,NA,NA +Jose,1999,10,21,11,18.4,-64.6,tropical storm,NA,60,996,NA,NA +Jose,1999,10,21,12,18.5,-64.8,tropical storm,NA,60,996,NA,NA +Jose,1999,10,21,18,19,-65.3,tropical storm,NA,55,994,NA,NA +Jose,1999,10,22,0,19.4,-65.8,tropical storm,NA,50,993,NA,NA +Jose,1999,10,22,6,19.9,-66.1,tropical storm,NA,50,992,NA,NA +Jose,1999,10,22,12,20.5,-65.9,tropical storm,NA,50,992,NA,NA +Jose,1999,10,22,18,21.1,-65.6,tropical storm,NA,50,993,NA,NA +Jose,1999,10,23,0,22,-65.2,tropical storm,NA,50,994,NA,NA +Jose,1999,10,23,6,23,-64.8,tropical storm,NA,50,995,NA,NA +Jose,1999,10,23,12,24,-64.3,tropical storm,NA,55,995,NA,NA +Jose,1999,10,23,18,25.2,-63.8,tropical storm,NA,55,995,NA,NA +Jose,1999,10,24,0,26.6,-63.1,tropical storm,NA,55,995,NA,NA +Jose,1999,10,24,6,28,-62.2,tropical storm,NA,60,990,NA,NA +Jose,1999,10,24,12,29.7,-61.1,hurricane,1,65,987,NA,NA +Jose,1999,10,24,18,32.2,-59.8,hurricane,1,65,987,NA,NA +Jose,1999,10,25,0,34.9,-58.1,tropical storm,NA,60,990,NA,NA +Jose,1999,10,25,6,37.9,-55.8,tropical storm,NA,55,994,NA,NA +Jose,1999,10,25,12,40,-51.8,extratropical,NA,50,996,NA,NA +Katrina,1999,10,28,18,11.4,-80.9,tropical depression,NA,30,1001,NA,NA +Katrina,1999,10,29,0,11.6,-81.6,tropical depression,NA,30,1001,NA,NA +Katrina,1999,10,29,6,12,-82,tropical depression,NA,30,1001,NA,NA +Katrina,1999,10,29,12,12.6,-82.6,tropical depression,NA,30,1000,NA,NA +Katrina,1999,10,29,18,13.2,-82.9,tropical storm,NA,35,1000,NA,NA +Katrina,1999,10,30,0,13.8,-83.4,tropical storm,NA,35,999,NA,NA +Katrina,1999,10,30,6,14.1,-84,tropical depression,NA,30,1000,NA,NA +Katrina,1999,10,30,12,14.3,-84.5,tropical depression,NA,25,1001,NA,NA +Katrina,1999,10,30,18,14.7,-85.2,tropical depression,NA,25,1003,NA,NA +Katrina,1999,10,31,0,16,-86.6,tropical depression,NA,25,1005,NA,NA +Katrina,1999,10,31,6,17.2,-87.4,tropical depression,NA,25,1007,NA,NA +Katrina,1999,10,31,12,18.4,-88,tropical depression,NA,25,1008,NA,NA +Katrina,1999,10,31,18,19.4,-88.7,tropical depression,NA,25,1009,NA,NA +Katrina,1999,11,1,0,19.9,-89.6,tropical depression,NA,20,1010,NA,NA +Katrina,1999,11,1,6,20.4,-89.8,tropical depression,NA,20,1011,NA,NA +Katrina,1999,11,1,12,21.2,-89.8,tropical depression,NA,20,1011,NA,NA +Lenny,1999,11,13,18,16.7,-81.6,tropical depression,NA,30,1003,NA,NA +Lenny,1999,11,14,0,16.5,-81.1,tropical depression,NA,30,1003,NA,NA +Lenny,1999,11,14,6,16.4,-80.5,tropical depression,NA,30,1002,NA,NA +Lenny,1999,11,14,12,16.4,-79.9,tropical storm,NA,40,1000,NA,NA +Lenny,1999,11,14,18,16.3,-79.3,tropical storm,NA,55,992,NA,NA +Lenny,1999,11,15,0,16,-78.6,hurricane,1,70,988,NA,NA +Lenny,1999,11,15,6,15.5,-77.7,hurricane,1,75,977,NA,NA +Lenny,1999,11,15,12,15.1,-76.4,hurricane,2,85,971,NA,NA +Lenny,1999,11,15,18,14.8,-74.8,hurricane,1,75,983,NA,NA +Lenny,1999,11,16,0,15.1,-73.4,hurricane,1,75,982,NA,NA +Lenny,1999,11,16,6,15.1,-72,hurricane,1,75,974,NA,NA +Lenny,1999,11,16,12,15.1,-70.5,hurricane,2,85,971,NA,NA +Lenny,1999,11,16,18,15.5,-69,hurricane,2,85,967,NA,NA +Lenny,1999,11,17,0,15.9,-67.6,hurricane,3,100,959,NA,NA +Lenny,1999,11,17,6,16.4,-66.5,hurricane,3,105,952,NA,NA +Lenny,1999,11,17,12,16.8,-65.5,hurricane,4,115,946,NA,NA +Lenny,1999,11,17,18,17.4,-64.8,hurricane,4,135,933,NA,NA +Lenny,1999,11,18,0,17.6,-64.2,hurricane,4,130,940,NA,NA +Lenny,1999,11,18,6,17.8,-63.9,hurricane,4,125,944,NA,NA +Lenny,1999,11,18,12,17.9,-63.6,hurricane,4,120,953,NA,NA +Lenny,1999,11,18,18,18,-63.3,hurricane,3,110,966,NA,NA +Lenny,1999,11,19,0,18.1,-63.1,hurricane,2,85,975,NA,NA +Lenny,1999,11,19,6,18,-62.9,hurricane,1,75,979,NA,NA +Lenny,1999,11,19,12,17.9,-62.8,hurricane,1,70,986,NA,NA +Lenny,1999,11,19,18,17.6,-62.5,tropical storm,NA,60,994,NA,NA +Lenny,1999,11,20,0,17.3,-61.8,tropical storm,NA,55,994,NA,NA +Lenny,1999,11,20,6,17,-61.1,tropical storm,NA,55,995,NA,NA +Lenny,1999,11,20,12,16.5,-60.4,tropical storm,NA,50,996,NA,NA +Lenny,1999,11,20,18,15.9,-59.8,tropical storm,NA,45,998,NA,NA +Lenny,1999,11,21,0,16,-59,tropical storm,NA,40,998,NA,NA +Lenny,1999,11,21,6,16.5,-58.1,tropical depression,NA,30,998,NA,NA +Lenny,1999,11,21,12,17.2,-57.1,tropical depression,NA,30,999,NA,NA +Lenny,1999,11,21,18,18,-56.7,tropical depression,NA,25,1000,NA,NA +Lenny,1999,11,22,0,18.4,-56.1,tropical depression,NA,25,1001,NA,NA +Lenny,1999,11,22,6,18.5,-55.7,tropical depression,NA,25,1002,NA,NA +Lenny,1999,11,22,12,18.5,-55.3,tropical depression,NA,25,1004,NA,NA +Lenny,1999,11,22,18,18.5,-54.7,tropical depression,NA,20,1005,NA,NA +Lenny,1999,11,23,0,18.5,-53.8,tropical depression,NA,20,1006,NA,NA +Lenny,1999,11,23,6,18.5,-52.8,tropical depression,NA,20,1006,NA,NA +AL012000,2000,6,7,18,21,-93,tropical depression,NA,25,1008,NA,NA +AL012000,2000,6,8,0,20.9,-92.8,tropical depression,NA,25,1009,NA,NA +AL012000,2000,6,8,6,20.7,-93.1,tropical depression,NA,25,1010,NA,NA +AL012000,2000,6,8,12,20.8,-93.5,tropical depression,NA,25,1010,NA,NA +AL022000,2000,6,23,0,9.5,-19.8,tropical depression,NA,25,1010,NA,NA +AL022000,2000,6,23,6,9.6,-21,tropical depression,NA,30,1009,NA,NA +AL022000,2000,6,23,12,9.9,-22.6,tropical depression,NA,30,1009,NA,NA +AL022000,2000,6,23,18,10.2,-24.5,tropical depression,NA,30,1009,NA,NA +AL022000,2000,6,24,0,10.1,-26.2,tropical depression,NA,30,1009,NA,NA +AL022000,2000,6,24,6,9.9,-27.8,tropical depression,NA,30,1009,NA,NA +AL022000,2000,6,24,12,9.9,-29.3,tropical depression,NA,30,1009,NA,NA +AL022000,2000,6,24,18,10.1,-30.1,tropical depression,NA,30,1009,NA,NA +AL022000,2000,6,25,0,10.1,-32.6,tropical depression,NA,30,1009,NA,NA +AL022000,2000,6,25,6,10,-34.2,tropical depression,NA,30,1008,NA,NA +AL022000,2000,6,25,12,9.8,-36.2,tropical depression,NA,30,1009,NA,NA +AL022000,2000,6,25,18,9.7,-38.2,tropical depression,NA,25,1010,NA,NA +Alberto,2000,8,3,18,10.8,-18,tropical depression,NA,25,1007,NA,NA +Alberto,2000,8,4,0,11.5,-20.1,tropical depression,NA,30,1005,NA,NA +Alberto,2000,8,4,6,12,-22.3,tropical storm,NA,35,1004,NA,NA +Alberto,2000,8,4,12,12.3,-23.8,tropical storm,NA,35,1003,NA,NA +Alberto,2000,8,4,18,12.7,-25.2,tropical storm,NA,40,1002,NA,NA +Alberto,2000,8,5,0,13.2,-26.7,tropical storm,NA,40,1001,NA,NA +Alberto,2000,8,5,6,13.7,-28.2,tropical storm,NA,45,1000,NA,NA +Alberto,2000,8,5,12,14.1,-29.8,tropical storm,NA,45,999,NA,NA +Alberto,2000,8,5,18,14.5,-31.4,tropical storm,NA,55,994,NA,NA +Alberto,2000,8,6,0,14.5,-33.2,hurricane,1,65,987,NA,NA +Alberto,2000,8,6,6,14.6,-34.4,hurricane,1,65,985,NA,NA +Alberto,2000,8,6,12,14.7,-35.4,hurricane,1,70,983,NA,NA +Alberto,2000,8,6,18,15.2,-36.6,hurricane,1,75,981,NA,NA +Alberto,2000,8,7,0,15.7,-38.1,hurricane,1,75,979,NA,NA +Alberto,2000,8,7,6,16,-39.6,hurricane,1,80,978,NA,NA +Alberto,2000,8,7,12,16.2,-41,hurricane,1,80,977,NA,NA +Alberto,2000,8,7,18,16.5,-42.2,hurricane,1,80,978,NA,NA +Alberto,2000,8,8,0,16.7,-43.6,hurricane,1,75,979,NA,NA +Alberto,2000,8,8,6,17,-44.9,hurricane,1,70,982,NA,NA +Alberto,2000,8,8,12,17.7,-45.7,hurricane,1,70,985,NA,NA +Alberto,2000,8,8,18,18.6,-46.5,hurricane,1,65,987,NA,NA +Alberto,2000,8,9,0,19.6,-47.2,tropical storm,NA,60,989,NA,NA +Alberto,2000,8,9,6,20.6,-48.5,tropical storm,NA,60,992,NA,NA +Alberto,2000,8,9,12,21.9,-49.9,tropical storm,NA,55,994,NA,NA +Alberto,2000,8,9,18,23.4,-51.3,tropical storm,NA,60,991,NA,NA +Alberto,2000,8,10,0,24.8,-52.6,hurricane,1,65,988,NA,NA +Alberto,2000,8,10,6,26.1,-54,hurricane,1,65,987,NA,NA +Alberto,2000,8,10,12,27.5,-55.3,hurricane,1,65,986,NA,NA +Alberto,2000,8,10,18,28.8,-56.7,hurricane,1,65,984,NA,NA +Alberto,2000,8,11,0,29.9,-57.7,hurricane,1,70,982,NA,NA +Alberto,2000,8,11,6,31.1,-58.4,hurricane,1,75,979,NA,NA +Alberto,2000,8,11,12,32.2,-58.6,hurricane,1,80,976,NA,NA +Alberto,2000,8,11,18,33.3,-58.5,hurricane,2,85,973,NA,NA +Alberto,2000,8,12,0,34.3,-58,hurricane,2,90,970,NA,NA +Alberto,2000,8,12,6,35.1,-56.7,hurricane,3,100,960,NA,NA +Alberto,2000,8,12,12,35.9,-55.3,hurricane,3,110,950,NA,NA +Alberto,2000,8,12,18,36.8,-53.8,hurricane,3,110,954,NA,NA +Alberto,2000,8,13,0,37.4,-52,hurricane,3,105,958,NA,NA +Alberto,2000,8,13,6,38,-50.3,hurricane,2,95,966,NA,NA +Alberto,2000,8,13,12,38.4,-48.3,hurricane,2,85,973,NA,NA +Alberto,2000,8,13,18,38.8,-46.3,hurricane,1,75,980,NA,NA +Alberto,2000,8,14,0,39,-44.2,hurricane,1,65,987,NA,NA +Alberto,2000,8,14,6,39.1,-42.2,tropical storm,NA,60,991,NA,NA +Alberto,2000,8,14,12,39.1,-40.6,tropical storm,NA,55,994,NA,NA +Alberto,2000,8,14,18,39.1,-39.3,tropical storm,NA,50,997,NA,NA +Alberto,2000,8,15,0,38.9,-38.5,tropical storm,NA,45,1000,NA,NA +Alberto,2000,8,15,6,38.3,-38.5,tropical storm,NA,45,1001,NA,NA +Alberto,2000,8,15,12,37.3,-38.5,tropical storm,NA,45,1002,NA,NA +Alberto,2000,8,15,18,36.6,-38.9,tropical storm,NA,40,1002,NA,NA +Alberto,2000,8,16,0,36.1,-39.4,tropical storm,NA,40,1003,NA,NA +Alberto,2000,8,16,6,35.4,-40.2,tropical storm,NA,40,1003,NA,NA +Alberto,2000,8,16,12,34.6,-41.3,tropical storm,NA,40,1003,NA,NA +Alberto,2000,8,16,18,33.9,-42.4,tropical storm,NA,40,1002,NA,NA +Alberto,2000,8,17,0,33.4,-43.5,tropical storm,NA,45,1001,NA,NA +Alberto,2000,8,17,6,33,-44.2,tropical storm,NA,45,1000,NA,NA +Alberto,2000,8,17,12,33,-44.9,tropical storm,NA,50,998,NA,NA +Alberto,2000,8,17,18,33,-45.8,tropical storm,NA,50,997,NA,NA +Alberto,2000,8,18,0,33.2,-46.5,tropical storm,NA,55,995,NA,NA +Alberto,2000,8,18,6,33.6,-47.1,tropical storm,NA,55,993,NA,NA +Alberto,2000,8,18,12,34.2,-47.6,tropical storm,NA,60,991,NA,NA +Alberto,2000,8,18,18,34.7,-48,hurricane,1,65,987,NA,NA +Alberto,2000,8,19,0,34.9,-48.1,hurricane,1,75,979,NA,NA +Alberto,2000,8,19,6,35.3,-48.2,hurricane,1,80,976,NA,NA +Alberto,2000,8,19,12,35.6,-48.2,hurricane,2,85,973,NA,NA +Alberto,2000,8,19,18,36,-48.2,hurricane,2,90,970,NA,NA +Alberto,2000,8,20,0,36.4,-48.1,hurricane,2,90,970,NA,NA +Alberto,2000,8,20,6,36.7,-48,hurricane,2,90,971,NA,NA +Alberto,2000,8,20,12,37.1,-47.9,hurricane,2,85,972,NA,NA +Alberto,2000,8,20,18,37.4,-47.7,hurricane,2,85,973,NA,NA +Alberto,2000,8,21,0,37.9,-47.5,hurricane,2,85,974,NA,NA +Alberto,2000,8,21,6,38.3,-47.3,hurricane,1,80,976,NA,NA +Alberto,2000,8,21,12,38.9,-47.2,hurricane,1,80,977,NA,NA +Alberto,2000,8,21,18,40,-46.7,hurricane,1,80,978,NA,NA +Alberto,2000,8,22,0,41.2,-45.9,hurricane,1,75,979,NA,NA +Alberto,2000,8,22,6,42.6,-45.4,hurricane,1,75,981,NA,NA +Alberto,2000,8,22,12,44,-44,hurricane,1,70,983,NA,NA +Alberto,2000,8,22,18,46.1,-42.1,hurricane,1,65,985,NA,NA +Alberto,2000,8,23,0,48.3,-39.5,hurricane,1,65,987,NA,NA +Alberto,2000,8,23,6,50.7,-36.8,tropical storm,NA,55,994,NA,NA +Alberto,2000,8,23,12,53.2,-35.4,extratropical,NA,45,997,NA,NA +Alberto,2000,8,23,18,57,-34,extratropical,NA,45,997,NA,NA +Alberto,2000,8,24,0,59.5,-30.3,extratropical,NA,40,995,NA,NA +Alberto,2000,8,24,6,62,-25.5,extratropical,NA,35,992,NA,NA +Alberto,2000,8,24,12,65.5,-23,extratropical,NA,35,990,NA,NA +Alberto,2000,8,24,18,68,-20,extratropical,NA,30,992,NA,NA +Alberto,2000,8,25,0,69,-12.5,extratropical,NA,30,990,NA,NA +Alberto,2000,8,25,6,70.7,-4.9,extratropical,NA,30,994,NA,NA +AL042000,2000,8,8,12,28.2,-74.2,tropical depression,NA,30,1011,NA,NA +AL042000,2000,8,8,18,28.1,-75.1,tropical depression,NA,30,1010,NA,NA +AL042000,2000,8,9,0,28,-76,tropical depression,NA,30,1010,NA,NA +AL042000,2000,8,9,6,27.9,-76.8,tropical depression,NA,30,1010,NA,NA +AL042000,2000,8,9,12,27.9,-77.4,tropical depression,NA,30,1010,NA,NA +AL042000,2000,8,9,18,27.9,-77.9,tropical depression,NA,30,1010,NA,NA +AL042000,2000,8,10,0,28,-78.6,tropical depression,NA,30,1009,NA,NA +AL042000,2000,8,10,6,28.3,-79.3,tropical depression,NA,30,1010,NA,NA +AL042000,2000,8,10,12,28.7,-78.9,tropical depression,NA,30,1010,NA,NA +AL042000,2000,8,10,18,28.9,-78.3,tropical depression,NA,25,1011,NA,NA +AL042000,2000,8,11,0,29.2,-77.8,tropical depression,NA,25,1011,NA,NA +AL042000,2000,8,11,6,29.4,-77.2,tropical depression,NA,25,1012,NA,NA +AL042000,2000,8,11,12,29.6,-76.5,tropical depression,NA,25,1013,NA,NA +Beryl,2000,8,13,18,22.5,-93.5,tropical depression,NA,30,1008,NA,NA +Beryl,2000,8,14,0,22.7,-93.8,tropical depression,NA,30,1008,NA,NA +Beryl,2000,8,14,6,23.1,-94.6,tropical storm,NA,35,1007,NA,NA +Beryl,2000,8,14,12,23.5,-95.4,tropical storm,NA,40,1009,NA,NA +Beryl,2000,8,14,18,23.9,-96.3,tropical storm,NA,45,1009,NA,NA +Beryl,2000,8,15,0,24.1,-97,tropical storm,NA,45,1007,NA,NA +Beryl,2000,8,15,6,24.5,-97.7,tropical storm,NA,45,1009,NA,NA +Beryl,2000,8,15,12,24.9,-98.6,tropical depression,NA,30,1010,NA,NA +Beryl,2000,8,15,18,25.2,-99.8,tropical depression,NA,25,1012,NA,NA +Chris,2000,8,17,12,14.2,-51.9,tropical depression,NA,25,1009,NA,NA +Chris,2000,8,17,18,14.7,-52.8,tropical depression,NA,25,1009,NA,NA +Chris,2000,8,18,0,15.2,-53.4,tropical depression,NA,25,1009,NA,NA +Chris,2000,8,18,6,15.6,-54.1,tropical depression,NA,30,1009,NA,NA +Chris,2000,8,18,12,16.2,-55.4,tropical storm,NA,35,1008,NA,NA +Chris,2000,8,18,18,16.8,-56.5,tropical depression,NA,30,1011,NA,NA +Chris,2000,8,19,0,17.3,-57.7,tropical depression,NA,25,1012,NA,NA +Chris,2000,8,19,6,17.8,-59,tropical depression,NA,25,1012,NA,NA +Chris,2000,8,19,12,18.3,-60.4,tropical depression,NA,20,1013,NA,NA +Debby,2000,8,19,18,12,-44.5,tropical depression,NA,30,1010,NA,NA +Debby,2000,8,20,0,12.6,-45.3,tropical depression,NA,30,1010,NA,NA +Debby,2000,8,20,6,13.3,-46.8,tropical storm,NA,35,1009,NA,NA +Debby,2000,8,20,12,14,-48.8,tropical storm,NA,40,1008,NA,NA +Debby,2000,8,20,18,14.7,-50.6,tropical storm,NA,45,1007,NA,NA +Debby,2000,8,21,0,15.1,-52.1,tropical storm,NA,55,1006,NA,NA +Debby,2000,8,21,6,15.4,-54,hurricane,1,65,1005,NA,NA +Debby,2000,8,21,12,15.7,-56.3,hurricane,1,75,1004,NA,NA +Debby,2000,8,21,18,16.1,-58.5,hurricane,1,75,1004,NA,NA +Debby,2000,8,22,0,16.8,-60.1,hurricane,1,70,995,NA,NA +Debby,2000,8,22,3,17.1,-60.9,hurricane,1,70,991,NA,NA +Debby,2000,8,22,6,17.5,-61.7,hurricane,1,65,993,NA,NA +Debby,2000,8,22,9,17.9,-62.8,hurricane,1,65,993,NA,NA +Debby,2000,8,22,12,18.1,-63.5,hurricane,1,65,994,NA,NA +Debby,2000,8,22,15,18.5,-64.4,hurricane,1,65,994,NA,NA +Debby,2000,8,22,18,18.8,-65.4,hurricane,1,65,995,NA,NA +Debby,2000,8,23,0,19.2,-66.7,hurricane,1,65,995,NA,NA +Debby,2000,8,23,6,19.5,-68.1,hurricane,1,65,995,NA,NA +Debby,2000,8,23,12,19.8,-69.7,tropical storm,NA,60,1005,NA,NA +Debby,2000,8,23,18,20,-71.5,tropical storm,NA,50,1009,NA,NA +Debby,2000,8,24,0,19.9,-73.3,tropical storm,NA,40,1010,NA,NA +Debby,2000,8,24,6,19.6,-75.1,tropical storm,NA,35,1011,NA,NA +Debby,2000,8,24,12,19.5,-77,tropical depression,NA,30,1011,NA,NA +Ernesto,2000,9,1,12,14.8,-45.2,tropical depression,NA,25,1009,NA,NA +Ernesto,2000,9,1,18,15,-47,tropical depression,NA,30,1009,NA,NA +Ernesto,2000,9,2,0,15.6,-48.3,tropical depression,NA,30,1009,NA,NA +Ernesto,2000,9,2,6,16.2,-49.5,tropical storm,NA,35,1008,NA,NA +Ernesto,2000,9,2,12,16.9,-50.8,tropical storm,NA,35,1008,NA,NA +Ernesto,2000,9,2,18,17.5,-52.1,tropical storm,NA,35,1008,NA,NA +Ernesto,2000,9,3,0,18.2,-53.6,tropical storm,NA,35,1008,NA,NA +Ernesto,2000,9,3,6,18.8,-55,tropical storm,NA,35,1008,NA,NA +Ernesto,2000,9,3,12,19.4,-56.6,tropical storm,NA,35,1008,NA,NA +Ernesto,2000,9,3,18,20,-58,tropical depression,NA,30,1009,NA,NA +AL092000,2000,9,8,18,27.5,-93.5,tropical depression,NA,25,1009,NA,NA +AL092000,2000,9,8,21,28,-93.5,tropical depression,NA,30,1008,NA,NA +AL092000,2000,9,9,0,28.5,-93.5,tropical depression,NA,30,1009,NA,NA +AL092000,2000,9,9,6,29.3,-93.8,tropical depression,NA,25,1009,NA,NA +AL092000,2000,9,9,10,29.9,-93.9,tropical depression,NA,25,1009,NA,NA +AL092000,2000,9,9,12,30,-94,tropical depression,NA,25,1010,NA,NA +Florence,2000,9,10,18,30.9,-70.9,subtropical depression,NA,30,1007,NA,NA +Florence,2000,9,11,0,30.8,-71.3,subtropical depression,NA,30,1007,NA,NA +Florence,2000,9,11,6,30.7,-71.8,tropical depression,NA,30,1006,NA,NA +Florence,2000,9,11,12,30.4,-72.2,tropical storm,NA,45,1002,NA,NA +Florence,2000,9,11,18,30.1,-72.6,hurricane,1,65,998,NA,NA +Florence,2000,9,12,0,30.1,-72.7,hurricane,1,65,992,NA,NA +Florence,2000,9,12,6,30.2,-72.8,tropical storm,NA,60,993,NA,NA +Florence,2000,9,12,12,30.3,-73.1,tropical storm,NA,60,991,NA,NA +Florence,2000,9,12,18,30.6,-73.3,hurricane,1,65,987,NA,NA +Florence,2000,9,13,0,30.8,-73.7,hurricane,1,65,986,NA,NA +Florence,2000,9,13,6,30.7,-74,hurricane,1,65,986,NA,NA +Florence,2000,9,13,12,30.7,-73.8,tropical storm,NA,60,987,NA,NA +Florence,2000,9,13,18,30.5,-73.7,tropical storm,NA,55,989,NA,NA +Florence,2000,9,14,0,30.2,-73.6,tropical storm,NA,50,991,NA,NA +Florence,2000,9,14,6,29.6,-73.6,tropical storm,NA,45,993,NA,NA +Florence,2000,9,14,12,29.5,-73.4,tropical storm,NA,45,994,NA,NA +Florence,2000,9,14,18,29.3,-73.1,tropical storm,NA,45,995,NA,NA +Florence,2000,9,15,0,29.2,-72.8,tropical storm,NA,45,995,NA,NA +Florence,2000,9,15,6,29.1,-72.4,tropical storm,NA,45,996,NA,NA +Florence,2000,9,15,12,29.8,-71.2,tropical storm,NA,50,997,NA,NA +Florence,2000,9,15,18,30.1,-69.7,tropical storm,NA,60,997,NA,NA +Florence,2000,9,16,0,30.8,-67.5,hurricane,1,65,994,NA,NA +Florence,2000,9,16,6,32.6,-66.1,hurricane,1,65,988,NA,NA +Florence,2000,9,16,12,34.3,-64.2,hurricane,1,65,987,NA,NA +Florence,2000,9,16,18,36.1,-61.8,hurricane,1,70,985,NA,NA +Florence,2000,9,17,0,37.9,-59.5,tropical storm,NA,60,990,NA,NA +Florence,2000,9,17,6,40.1,-57.4,tropical storm,NA,55,995,NA,NA +Florence,2000,9,17,12,42.5,-55,tropical storm,NA,50,1000,NA,NA +Florence,2000,9,17,18,45.5,-53,tropical storm,NA,50,1002,NA,NA +Gordon,2000,9,14,12,19.8,-87.3,tropical depression,NA,25,1008,NA,NA +Gordon,2000,9,14,18,20.4,-87.4,tropical depression,NA,25,1007,NA,NA +Gordon,2000,9,15,0,20.7,-87.7,tropical depression,NA,25,1007,NA,NA +Gordon,2000,9,15,6,21,-88,tropical depression,NA,25,1006,NA,NA +Gordon,2000,9,15,12,21.4,-88.7,tropical depression,NA,25,1004,NA,NA +Gordon,2000,9,15,18,21.6,-87.8,tropical depression,NA,30,1004,NA,NA +Gordon,2000,9,16,0,22.5,-86.7,tropical storm,NA,40,1000,NA,NA +Gordon,2000,9,16,6,22.9,-86.6,tropical storm,NA,50,997,NA,NA +Gordon,2000,9,16,12,23.5,-86.3,tropical storm,NA,55,992,NA,NA +Gordon,2000,9,16,18,24.3,-85.9,tropical storm,NA,60,983,NA,NA +Gordon,2000,9,17,0,25.2,-85.4,hurricane,1,65,985,NA,NA +Gordon,2000,9,17,6,26.1,-84.9,hurricane,1,70,981,NA,NA +Gordon,2000,9,17,12,27.1,-84.3,hurricane,1,65,987,NA,NA +Gordon,2000,9,17,18,28,-83.8,hurricane,1,65,985,NA,NA +Gordon,2000,9,18,0,28.9,-83.4,tropical storm,NA,60,989,NA,NA +Gordon,2000,9,18,3,29.3,-83.2,tropical storm,NA,55,991,NA,NA +Gordon,2000,9,18,6,29.8,-83,tropical storm,NA,40,1000,NA,NA +Gordon,2000,9,18,12,31,-82.3,tropical depression,NA,30,1006,NA,NA +Gordon,2000,9,18,18,32.3,-81.5,extratropical,NA,25,1011,NA,NA +Gordon,2000,9,19,0,33.5,-80.2,extratropical,NA,25,1011,NA,NA +Gordon,2000,9,19,6,35,-79,extratropical,NA,20,1011,NA,NA +Gordon,2000,9,19,12,37,-78.2,extratropical,NA,20,1010,NA,NA +Gordon,2000,9,19,18,38.5,-76,extratropical,NA,25,1008,NA,NA +Gordon,2000,9,20,0,40,-74,extratropical,NA,25,1007,NA,NA +Gordon,2000,9,20,6,41.5,-72,extratropical,NA,25,1005,NA,NA +Gordon,2000,9,20,12,42,-69.5,extratropical,NA,30,1005,NA,NA +Gordon,2000,9,20,18,42.5,-67.2,extratropical,NA,30,1005,NA,NA +Gordon,2000,9,21,0,43,-65,extratropical,NA,30,1004,NA,NA +Gordon,2000,9,21,6,43.5,-63,extratropical,NA,30,1003,NA,NA +Helene,2000,9,15,12,14.9,-52.2,tropical depression,NA,25,1010,NA,NA +Helene,2000,9,15,18,15.3,-53,tropical depression,NA,25,1010,NA,NA +Helene,2000,9,16,0,15.6,-53.6,tropical depression,NA,25,1010,NA,NA +Helene,2000,9,16,6,15.8,-54.4,tropical depression,NA,25,1010,NA,NA +Helene,2000,9,16,12,16.1,-55.9,tropical depression,NA,30,1010,NA,NA +Helene,2000,9,16,18,16.4,-58,tropical wave,NA,30,1010,NA,NA +Helene,2000,9,17,0,16.6,-59.9,tropical wave,NA,30,1010,NA,NA +Helene,2000,9,17,6,16.6,-61.7,tropical wave,NA,30,1010,NA,NA +Helene,2000,9,17,12,16.4,-63.6,tropical wave,NA,30,1010,NA,NA +Helene,2000,9,17,18,16.7,-65.6,tropical wave,NA,30,1010,NA,NA +Helene,2000,9,18,0,17,-67.1,tropical wave,NA,30,1010,NA,NA +Helene,2000,9,18,6,17.1,-68.7,tropical wave,NA,30,1010,NA,NA +Helene,2000,9,18,12,17.2,-70.6,tropical wave,NA,30,1010,NA,NA +Helene,2000,9,18,18,17.4,-72.5,tropical wave,NA,30,1010,NA,NA +Helene,2000,9,19,0,17.6,-74.4,tropical wave,NA,30,1010,NA,NA +Helene,2000,9,19,6,18.3,-76.3,tropical wave,NA,30,1010,NA,NA +Helene,2000,9,19,12,18.9,-78.3,tropical wave,NA,30,1010,NA,NA +Helene,2000,9,19,18,19.4,-79.6,tropical depression,NA,30,1010,NA,NA +Helene,2000,9,20,0,19.9,-81,tropical depression,NA,30,1010,NA,NA +Helene,2000,9,20,6,20.7,-82.6,tropical depression,NA,25,1010,NA,NA +Helene,2000,9,20,12,21.8,-84.3,tropical depression,NA,25,1010,NA,NA +Helene,2000,9,20,18,23,-85.4,tropical depression,NA,25,1010,NA,NA +Helene,2000,9,21,0,23.9,-86.1,tropical depression,NA,25,1008,NA,NA +Helene,2000,9,21,6,24.9,-86.6,tropical storm,NA,35,1007,NA,NA +Helene,2000,9,21,12,26.1,-87,tropical storm,NA,45,1006,NA,NA +Helene,2000,9,21,18,27.1,-87.1,tropical storm,NA,60,999,NA,NA +Helene,2000,9,22,0,28.4,-87.2,tropical storm,NA,60,996,NA,NA +Helene,2000,9,22,6,29.5,-87.2,tropical storm,NA,50,1001,NA,NA +Helene,2000,9,22,12,30.5,-86.6,tropical storm,NA,35,1006,NA,NA +Helene,2000,9,22,18,31.6,-85.4,tropical depression,NA,25,1010,NA,NA +Helene,2000,9,23,0,32.9,-83.5,tropical depression,NA,25,1011,NA,NA +Helene,2000,9,23,6,33.6,-81.7,tropical depression,NA,25,1012,NA,NA +Helene,2000,9,23,12,34.4,-80,tropical depression,NA,25,1011,NA,NA +Helene,2000,9,23,18,35.4,-78,tropical storm,NA,35,1010,NA,NA +Helene,2000,9,24,0,36.4,-76.1,tropical storm,NA,40,1008,NA,NA +Helene,2000,9,24,6,37.2,-74.7,tropical storm,NA,45,1005,NA,NA +Helene,2000,9,24,12,38,-72.5,tropical storm,NA,45,1001,NA,NA +Helene,2000,9,24,18,39.2,-70.1,tropical storm,NA,45,997,NA,NA +Helene,2000,9,25,0,40.1,-66.8,tropical storm,NA,55,993,NA,NA +Helene,2000,9,25,6,41.6,-62.2,tropical storm,NA,60,986,NA,NA +Helene,2000,9,25,12,44,-55.5,tropical storm,NA,55,988,NA,NA +Helene,2000,9,25,18,46.1,-48.8,tropical storm,NA,45,990,NA,NA +Isaac,2000,9,21,12,11.5,-23,tropical depression,NA,30,1008,NA,NA +Isaac,2000,9,21,18,11.9,-24.5,tropical depression,NA,30,1008,NA,NA +Isaac,2000,9,22,0,12.3,-25.9,tropical storm,NA,35,1005,NA,NA +Isaac,2000,9,22,6,12.7,-27.2,tropical storm,NA,40,1001,NA,NA +Isaac,2000,9,22,12,13.1,-28.7,tropical storm,NA,45,1000,NA,NA +Isaac,2000,9,22,18,13.5,-30.1,tropical storm,NA,45,1000,NA,NA +Isaac,2000,9,23,0,13.7,-31.2,tropical storm,NA,50,997,NA,NA +Isaac,2000,9,23,6,13.9,-32.3,tropical storm,NA,55,994,NA,NA +Isaac,2000,9,23,12,14.3,-33.2,hurricane,1,70,984,NA,NA +Isaac,2000,9,23,18,14.6,-34.2,hurricane,2,85,973,NA,NA +Isaac,2000,9,24,0,14.9,-35,hurricane,3,105,960,NA,NA +Isaac,2000,9,24,6,15.1,-35.8,hurricane,3,100,960,NA,NA +Isaac,2000,9,24,12,15.5,-36.8,hurricane,3,100,960,NA,NA +Isaac,2000,9,24,18,15.8,-37.8,hurricane,3,100,960,NA,NA +Isaac,2000,9,25,0,16.3,-38.6,hurricane,2,95,965,NA,NA +Isaac,2000,9,25,6,16.7,-39.5,hurricane,2,95,965,NA,NA +Isaac,2000,9,25,12,17.2,-40.4,hurricane,2,90,970,NA,NA +Isaac,2000,9,25,18,17.6,-41.2,hurricane,2,90,970,NA,NA +Isaac,2000,9,26,0,17.9,-42,hurricane,2,90,970,NA,NA +Isaac,2000,9,26,6,18.3,-42.9,hurricane,2,85,973,NA,NA +Isaac,2000,9,26,12,18.6,-43.9,hurricane,1,75,980,NA,NA +Isaac,2000,9,26,18,19.1,-45,hurricane,1,75,980,NA,NA +Isaac,2000,9,27,0,19.6,-46,hurricane,1,80,977,NA,NA +Isaac,2000,9,27,6,20.4,-47,hurricane,2,85,973,NA,NA +Isaac,2000,9,27,12,21,-48.1,hurricane,2,90,970,NA,NA +Isaac,2000,9,27,18,21.9,-49.5,hurricane,2,95,965,NA,NA +Isaac,2000,9,28,0,22.8,-50.6,hurricane,3,100,960,NA,NA +Isaac,2000,9,28,6,23.8,-52,hurricane,3,105,955,NA,NA +Isaac,2000,9,28,12,25,-52.9,hurricane,3,110,950,NA,NA +Isaac,2000,9,28,18,26.6,-54.2,hurricane,4,120,943,NA,NA +Isaac,2000,9,29,0,28,-55.1,hurricane,4,115,948,NA,NA +Isaac,2000,9,29,6,29.7,-55.9,hurricane,3,110,950,NA,NA +Isaac,2000,9,29,12,31.2,-56.2,hurricane,3,105,955,NA,NA +Isaac,2000,9,29,18,32.9,-55.9,hurricane,2,90,965,NA,NA +Isaac,2000,9,30,0,34.4,-55.2,hurricane,2,85,970,NA,NA +Isaac,2000,9,30,6,35.7,-54,hurricane,1,80,975,NA,NA +Isaac,2000,9,30,12,37,-51.8,hurricane,1,75,979,NA,NA +Isaac,2000,9,30,18,38.3,-49.8,hurricane,1,70,985,NA,NA +Isaac,2000,10,1,0,39.7,-47.9,hurricane,1,65,987,NA,NA +Isaac,2000,10,1,6,40.9,-45.7,tropical storm,NA,60,990,NA,NA +Isaac,2000,10,1,12,42.1,-43.6,tropical storm,NA,55,990,NA,NA +Isaac,2000,10,1,18,43.5,-39.5,extratropical,NA,55,990,NA,NA +Isaac,2000,10,2,0,44.5,-36.5,extratropical,NA,55,982,NA,NA +Isaac,2000,10,2,6,45.7,-33,extratropical,NA,60,972,NA,NA +Isaac,2000,10,2,12,47,-29,extratropical,NA,60,975,NA,NA +Isaac,2000,10,2,18,48.5,-25,extratropical,NA,60,976,NA,NA +Isaac,2000,10,3,0,49.5,-20.5,extratropical,NA,60,976,NA,NA +Isaac,2000,10,3,6,50.5,-16.5,extratropical,NA,60,978,NA,NA +Isaac,2000,10,3,12,52,-12,extratropical,NA,55,982,NA,NA +Isaac,2000,10,3,18,55,-9,extratropical,NA,45,988,NA,NA +Isaac,2000,10,4,0,58,-6,extratropical,NA,45,989,NA,NA +Isaac,2000,10,4,6,62,-4,extratropical,NA,45,994,NA,NA +Joyce,2000,9,25,12,11.2,-29.6,tropical depression,NA,25,1009,NA,NA +Joyce,2000,9,25,18,11.4,-30.7,tropical depression,NA,30,1009,NA,NA +Joyce,2000,9,26,0,11.5,-31.9,tropical storm,NA,35,1008,NA,NA +Joyce,2000,9,26,6,11.6,-33,tropical storm,NA,35,1007,NA,NA +Joyce,2000,9,26,12,11.6,-34.1,tropical storm,NA,35,1005,NA,NA +Joyce,2000,9,26,18,11.7,-35.3,tropical storm,NA,40,1002,NA,NA +Joyce,2000,9,27,0,12.1,-36.4,tropical storm,NA,50,998,NA,NA +Joyce,2000,9,27,6,12.2,-37.6,tropical storm,NA,55,993,NA,NA +Joyce,2000,9,27,12,12.4,-38.8,hurricane,1,65,985,NA,NA +Joyce,2000,9,27,18,12.5,-40.1,hurricane,1,70,978,NA,NA +Joyce,2000,9,28,0,12.4,-41.3,hurricane,1,75,976,NA,NA +Joyce,2000,9,28,6,12.2,-42.5,hurricane,1,80,975,NA,NA +Joyce,2000,9,28,12,11.7,-43.8,hurricane,1,80,975,NA,NA +Joyce,2000,9,28,18,11.3,-45,hurricane,1,75,976,NA,NA +Joyce,2000,9,29,0,10.9,-46.1,hurricane,1,75,977,NA,NA +Joyce,2000,9,29,6,10.7,-47.2,hurricane,1,70,980,NA,NA +Joyce,2000,9,29,12,10.5,-48.6,hurricane,1,65,984,NA,NA +Joyce,2000,9,29,18,10.5,-50.1,tropical storm,NA,60,988,NA,NA +Joyce,2000,9,30,0,10.4,-51.7,tropical storm,NA,55,992,NA,NA +Joyce,2000,9,30,6,10.3,-53.3,tropical storm,NA,50,996,NA,NA +Joyce,2000,9,30,12,10.3,-54.9,tropical storm,NA,45,1000,NA,NA +Joyce,2000,9,30,18,10.5,-56.6,tropical storm,NA,40,1003,NA,NA +Joyce,2000,10,1,0,10.7,-58,tropical storm,NA,40,1005,NA,NA +Joyce,2000,10,1,6,11,-59.5,tropical storm,NA,35,1006,NA,NA +Joyce,2000,10,1,12,11.3,-60.9,tropical storm,NA,35,1007,NA,NA +Joyce,2000,10,1,18,11.7,-62.3,tropical depression,NA,30,1008,NA,NA +Joyce,2000,10,2,0,11.9,-63.5,tropical depression,NA,30,1009,NA,NA +Joyce,2000,10,2,6,11.9,-64.9,tropical depression,NA,25,1009,NA,NA +Keith,2000,9,28,18,16.1,-82.9,tropical depression,NA,25,1005,NA,NA +Keith,2000,9,29,0,16.2,-83.3,tropical depression,NA,25,1004,NA,NA +Keith,2000,9,29,6,16.6,-83.6,tropical depression,NA,30,1003,NA,NA +Keith,2000,9,29,12,16.9,-84,tropical depression,NA,30,1002,NA,NA +Keith,2000,9,29,18,17.4,-84.8,tropical storm,NA,40,1000,NA,NA +Keith,2000,9,30,0,17.7,-85.4,tropical storm,NA,45,993,NA,NA +Keith,2000,9,30,6,17.9,-86,tropical storm,NA,55,987,NA,NA +Keith,2000,9,30,12,17.9,-86.4,hurricane,1,65,982,NA,NA +Keith,2000,9,30,18,17.9,-86.7,hurricane,1,75,977,NA,NA +Keith,2000,10,1,0,17.9,-86.9,hurricane,3,100,955,NA,NA +Keith,2000,10,1,6,17.9,-87.2,hurricane,4,120,941,NA,NA +Keith,2000,10,1,7,17.9,-87.3,hurricane,4,120,939,NA,NA +Keith,2000,10,1,12,17.9,-87.4,hurricane,4,115,944,NA,NA +Keith,2000,10,1,18,17.9,-87.7,hurricane,3,110,950,NA,NA +Keith,2000,10,2,0,17.8,-87.9,hurricane,3,100,959,NA,NA +Keith,2000,10,2,6,17.6,-87.8,hurricane,1,80,974,NA,NA +Keith,2000,10,2,12,17.7,-87.8,hurricane,1,70,980,NA,NA +Keith,2000,10,2,18,17.7,-87.9,hurricane,1,65,987,NA,NA +Keith,2000,10,2,23,17.9,-88,hurricane,1,65,988,NA,NA +Keith,2000,10,3,0,17.9,-88,tropical storm,NA,60,989,NA,NA +Keith,2000,10,3,3,17.9,-88.2,tropical storm,NA,60,990,NA,NA +Keith,2000,10,3,6,18,-88.4,tropical storm,NA,45,990,NA,NA +Keith,2000,10,3,12,18.3,-88.8,tropical depression,NA,30,995,NA,NA +Keith,2000,10,3,18,18.6,-89.5,tropical depression,NA,30,998,NA,NA +Keith,2000,10,4,0,19,-90.4,tropical depression,NA,25,1000,NA,NA +Keith,2000,10,4,6,19.5,-91.4,tropical depression,NA,30,1000,NA,NA +Keith,2000,10,4,12,19.9,-92.5,tropical storm,NA,35,999,NA,NA +Keith,2000,10,4,18,20.3,-93.5,tropical storm,NA,40,996,NA,NA +Keith,2000,10,5,0,20.7,-94.8,tropical storm,NA,60,988,NA,NA +Keith,2000,10,5,6,21.2,-96.1,hurricane,1,65,987,NA,NA +Keith,2000,10,5,12,21.8,-97,hurricane,1,75,983,NA,NA +Keith,2000,10,5,18,22.6,-97.9,hurricane,1,80,980,NA,NA +Keith,2000,10,6,0,23.2,-99,tropical storm,NA,45,988,NA,NA +Keith,2000,10,6,6,23.5,-100,tropical depression,NA,30,1002,NA,NA +Keith,2000,10,6,12,23.8,-101,tropical depression,NA,20,1007,NA,NA +Leslie,2000,10,4,12,29,-81.4,subtropical depression,NA,30,1012,NA,NA +Leslie,2000,10,4,18,29.5,-80.8,subtropical depression,NA,30,1012,NA,NA +Leslie,2000,10,5,0,29.7,-79.9,subtropical depression,NA,30,1010,NA,NA +Leslie,2000,10,5,6,29.8,-78.6,subtropical depression,NA,30,1010,NA,NA +Leslie,2000,10,5,12,29.9,-77.3,tropical storm,NA,35,1009,NA,NA +Leslie,2000,10,5,18,30.2,-75.9,tropical storm,NA,35,1009,NA,NA +Leslie,2000,10,6,0,30.3,-74.3,tropical storm,NA,35,1010,NA,NA +Leslie,2000,10,6,6,30.6,-73.1,tropical storm,NA,40,1006,NA,NA +Leslie,2000,10,6,12,30.9,-72.4,tropical storm,NA,40,1007,NA,NA +Leslie,2000,10,6,18,31.3,-71.8,tropical storm,NA,40,1007,NA,NA +Leslie,2000,10,7,0,32.1,-70.7,tropical storm,NA,40,1006,NA,NA +Leslie,2000,10,7,6,33.1,-69.6,tropical storm,NA,40,1006,NA,NA +Leslie,2000,10,7,12,35.4,-68.3,tropical storm,NA,40,1006,NA,NA +Leslie,2000,10,7,18,37.4,-66.7,extratropical,NA,40,1005,NA,NA +Leslie,2000,10,8,0,40,-64,extratropical,NA,40,1004,NA,NA +Leslie,2000,10,8,6,43,-60,extratropical,NA,40,1003,NA,NA +Leslie,2000,10,8,12,46,-57,extratropical,NA,40,1003,NA,NA +Leslie,2000,10,8,18,49,-54,extratropical,NA,35,1005,NA,NA +Leslie,2000,10,9,0,51,-50,extratropical,NA,35,1007,NA,NA +Leslie,2000,10,9,6,53,-46,extratropical,NA,35,1006,NA,NA +Leslie,2000,10,9,12,55,-41,extratropical,NA,35,1005,NA,NA +Leslie,2000,10,9,18,56,-36,extratropical,NA,35,1003,NA,NA +Leslie,2000,10,10,0,56,-30,extratropical,NA,40,999,NA,NA +Leslie,2000,10,10,6,55,-24,extratropical,NA,50,987,NA,NA +Leslie,2000,10,10,12,54,-17,extratropical,NA,55,980,NA,NA +Leslie,2000,10,10,18,53,-10,extratropical,NA,60,973,NA,NA +Michael,2000,10,15,12,30,-71.2,subtropical depression,NA,30,1007,NA,NA +Michael,2000,10,15,18,30,-71.5,subtropical depression,NA,30,1006,NA,NA +Michael,2000,10,16,0,29.9,-71.8,subtropical storm,NA,35,1005,NA,NA +Michael,2000,10,16,6,29.9,-71.9,subtropical storm,NA,35,1005,NA,NA +Michael,2000,10,16,12,29.7,-71.7,subtropical storm,NA,35,1005,NA,NA +Michael,2000,10,16,18,29.8,-71.4,subtropical storm,NA,35,1004,NA,NA +Michael,2000,10,17,0,29.9,-71.1,tropical storm,NA,35,1003,NA,NA +Michael,2000,10,17,6,29.8,-71,tropical storm,NA,45,1000,NA,NA +Michael,2000,10,17,12,29.8,-70.9,tropical storm,NA,55,995,NA,NA +Michael,2000,10,17,18,30.1,-70.9,hurricane,1,65,988,NA,NA +Michael,2000,10,18,0,30.4,-70.9,hurricane,1,65,988,NA,NA +Michael,2000,10,18,6,30.8,-70.8,hurricane,1,65,986,NA,NA +Michael,2000,10,18,12,31.5,-70.4,hurricane,1,65,984,NA,NA +Michael,2000,10,18,18,32.6,-69.5,hurricane,1,70,979,NA,NA +Michael,2000,10,19,0,34.2,-67.8,hurricane,1,75,983,NA,NA +Michael,2000,10,19,6,36.3,-65.5,hurricane,1,65,986,NA,NA +Michael,2000,10,19,12,39.8,-61.6,hurricane,1,75,979,NA,NA +Michael,2000,10,19,18,44,-58.5,hurricane,2,85,965,NA,NA +Michael,2000,10,20,0,48,-56.5,extratropical,NA,75,966,NA,NA +Michael,2000,10,20,6,50,-56,extratropical,NA,70,966,NA,NA +Michael,2000,10,20,12,51,-53.5,extratropical,NA,65,968,NA,NA +Michael,2000,10,20,18,52,-50.5,extratropical,NA,60,970,NA,NA +Nadine,2000,10,19,12,26.2,-59.9,tropical depression,NA,25,1009,NA,NA +Nadine,2000,10,19,18,27.5,-59.4,tropical depression,NA,30,1008,NA,NA +Nadine,2000,10,20,0,28.7,-58.8,tropical depression,NA,30,1008,NA,NA +Nadine,2000,10,20,6,29.7,-58,tropical depression,NA,30,1005,NA,NA +Nadine,2000,10,20,12,30.4,-57.2,tropical storm,NA,35,1003,NA,NA +Nadine,2000,10,20,18,31.4,-56.3,tropical storm,NA,40,1000,NA,NA +Nadine,2000,10,21,0,32.4,-55.2,tropical storm,NA,50,999,NA,NA +Nadine,2000,10,21,6,33.3,-53.5,tropical storm,NA,50,1000,NA,NA +Nadine,2000,10,21,12,34.1,-52.3,tropical storm,NA,50,1000,NA,NA +Nadine,2000,10,21,18,34.8,-51.3,tropical storm,NA,45,1000,NA,NA +Nadine,2000,10,22,0,35.7,-50.5,extratropical,NA,40,1004,NA,NA +Nadine,2000,10,22,6,37,-49,extratropical,NA,40,1005,NA,NA +Nadine,2000,10,22,12,39,-47,extratropical,NA,35,1005,NA,NA +Allison,2001,6,5,12,27.5,-95,tropical storm,NA,40,1007,NA,NA +Allison,2001,6,5,18,28.5,-95.3,tropical storm,NA,50,1002,NA,NA +Allison,2001,6,5,21,28.9,-95.3,tropical storm,NA,45,1003,NA,NA +Allison,2001,6,6,0,29.3,-95.3,tropical storm,NA,45,1003,NA,NA +Allison,2001,6,6,6,30.1,-95.2,tropical depression,NA,30,1006,NA,NA +Allison,2001,6,6,12,31,-95.2,tropical depression,NA,20,1005,NA,NA +Allison,2001,6,6,18,31.5,-95,tropical depression,NA,20,1005,NA,NA +Allison,2001,6,7,0,31.6,-95,tropical depression,NA,20,1005,NA,NA +Allison,2001,6,7,6,31.8,-94.9,tropical depression,NA,20,1006,NA,NA +Allison,2001,6,7,12,31.4,-94.9,tropical depression,NA,20,1006,NA,NA +Allison,2001,6,7,18,31.1,-95,tropical depression,NA,15,1007,NA,NA +Allison,2001,6,8,0,30.9,-95.6,tropical depression,NA,15,1002,NA,NA +Allison,2001,6,8,6,30.7,-96.1,tropical depression,NA,20,1004,NA,NA +Allison,2001,6,8,12,30.4,-96.2,tropical depression,NA,20,1007,NA,NA +Allison,2001,6,8,18,30.2,-96.1,tropical depression,NA,20,1007,NA,NA +Allison,2001,6,9,0,29.9,-95.9,tropical depression,NA,20,1007,NA,NA +Allison,2001,6,9,6,29.6,-95.8,tropical depression,NA,20,1007,NA,NA +Allison,2001,6,9,12,29.3,-95.8,tropical depression,NA,20,1007,NA,NA +Allison,2001,6,9,18,28.9,-95.6,tropical depression,NA,20,1008,NA,NA +Allison,2001,6,10,0,28.6,-95.2,subtropical depression,NA,20,1008,NA,NA +Allison,2001,6,10,6,28.6,-94.7,subtropical depression,NA,25,1007,NA,NA +Allison,2001,6,10,12,28.7,-94.3,subtropical depression,NA,25,1006,NA,NA +Allison,2001,6,10,18,28.8,-93.5,subtropical depression,NA,30,1006,NA,NA +Allison,2001,6,11,0,29.1,-92.3,subtropical depression,NA,30,1005,NA,NA +Allison,2001,6,11,2,29.6,-91.6,subtropical depression,NA,30,1004,NA,NA +Allison,2001,6,11,6,30,-90.5,subtropical storm,NA,35,1003,NA,NA +Allison,2001,6,11,12,30.7,-89.4,subtropical storm,NA,40,1000,NA,NA +Allison,2001,6,11,18,31,-88.4,subtropical storm,NA,35,1002,NA,NA +Allison,2001,6,12,0,31.3,-87.4,subtropical depression,NA,25,1004,NA,NA +Allison,2001,6,12,6,31.8,-86.1,subtropical depression,NA,20,1005,NA,NA +Allison,2001,6,12,12,32.4,-84.7,subtropical depression,NA,20,1006,NA,NA +Allison,2001,6,12,18,32.8,-83.6,subtropical depression,NA,20,1006,NA,NA +Allison,2001,6,13,0,33.1,-82.6,subtropical depression,NA,20,1006,NA,NA +Allison,2001,6,13,6,33.4,-81.6,subtropical depression,NA,25,1004,NA,NA +Allison,2001,6,13,12,33.7,-80.7,subtropical depression,NA,25,1005,NA,NA +Allison,2001,6,13,18,34,-79.6,subtropical depression,NA,25,1006,NA,NA +Allison,2001,6,14,0,34.3,-78.5,subtropical depression,NA,25,1006,NA,NA +Allison,2001,6,14,6,34.6,-77.9,subtropical depression,NA,25,1006,NA,NA +Allison,2001,6,14,12,34.7,-77.7,subtropical depression,NA,25,1007,NA,NA +Allison,2001,6,14,18,34.6,-77.6,subtropical depression,NA,25,1008,NA,NA +Allison,2001,6,15,0,34.6,-77.2,subtropical depression,NA,25,1008,NA,NA +Allison,2001,6,15,6,34.9,-77,subtropical depression,NA,25,1008,NA,NA +Allison,2001,6,15,12,35.5,-76.9,subtropical depression,NA,25,1008,NA,NA +Allison,2001,6,15,18,35.9,-76.8,subtropical depression,NA,25,1009,NA,NA +Allison,2001,6,16,0,36.3,-76.6,subtropical depression,NA,25,1007,NA,NA +Allison,2001,6,16,6,36.6,-76.2,subtropical depression,NA,25,1007,NA,NA +Allison,2001,6,16,12,36.8,-75.9,subtropical depression,NA,25,1007,NA,NA +Allison,2001,6,16,18,37.2,-75.5,subtropical depression,NA,25,1006,NA,NA +Allison,2001,6,17,0,37.8,-75.4,subtropical depression,NA,25,1006,NA,NA +Allison,2001,6,17,6,38.6,-74.5,subtropical depression,NA,30,1005,NA,NA +Allison,2001,6,17,12,39.3,-73.4,subtropical storm,NA,40,1004,NA,NA +Allison,2001,6,17,18,40,-72.1,subtropical storm,NA,35,1005,NA,NA +Allison,2001,6,18,0,40.6,-70.8,extratropical,NA,30,1006,NA,NA +Allison,2001,6,18,6,41.3,-69.4,extratropical,NA,30,1008,NA,NA +Allison,2001,6,18,12,42,-67.4,extratropical,NA,30,1009,NA,NA +Allison,2001,6,18,18,42.7,-64.6,extratropical,NA,25,1011,NA,NA +Allison,2001,6,19,0,43.5,-61,extratropical,NA,20,1012,NA,NA +AL022001,2001,7,11,18,10.9,-42.1,tropical depression,NA,25,1011,NA,NA +AL022001,2001,7,12,0,11.4,-43.8,tropical depression,NA,25,1010,NA,NA +AL022001,2001,7,12,6,11.8,-45.3,tropical depression,NA,25,1011,NA,NA +AL022001,2001,7,12,12,12.5,-46.9,tropical depression,NA,25,1011,NA,NA +AL022001,2001,7,12,18,13.1,-48.5,tropical depression,NA,25,1012,NA,NA +Barry,2001,8,2,12,25.7,-84.8,tropical depression,NA,30,1011,NA,NA +Barry,2001,8,2,18,26.2,-84.9,tropical storm,NA,45,1010,NA,NA +Barry,2001,8,3,0,26.4,-85.6,tropical storm,NA,40,1007,NA,NA +Barry,2001,8,3,6,26.6,-86.3,tropical storm,NA,35,1008,NA,NA +Barry,2001,8,3,12,26.9,-87,tropical storm,NA,35,1007,NA,NA +Barry,2001,8,3,18,26.8,-87.2,tropical storm,NA,35,1007,NA,NA +Barry,2001,8,4,0,26.7,-87.5,tropical depression,NA,30,1005,NA,NA +Barry,2001,8,4,6,26.6,-87.8,tropical depression,NA,30,1005,NA,NA +Barry,2001,8,4,12,26.9,-87.7,tropical depression,NA,30,1006,NA,NA +Barry,2001,8,4,18,27.1,-87.5,tropical storm,NA,35,1005,NA,NA +Barry,2001,8,5,0,27.3,-87.3,tropical storm,NA,35,1003,NA,NA +Barry,2001,8,5,6,27.5,-86.7,tropical storm,NA,40,1004,NA,NA +Barry,2001,8,5,12,28.1,-86.4,tropical storm,NA,50,990,NA,NA +Barry,2001,8,5,18,28.6,-86.4,tropical storm,NA,60,991,NA,NA +Barry,2001,8,6,0,29.5,-86.3,tropical storm,NA,60,992,NA,NA +Barry,2001,8,6,5,30.4,-86.3,tropical storm,NA,60,990,NA,NA +Barry,2001,8,6,6,30.6,-86.4,tropical storm,NA,60,991,NA,NA +Barry,2001,8,6,12,31.8,-86.9,tropical depression,NA,25,1007,NA,NA +Barry,2001,8,6,18,32.7,-87.7,tropical depression,NA,20,1009,NA,NA +Barry,2001,8,7,0,33.3,-88.5,tropical depression,NA,15,1012,NA,NA +Barry,2001,8,7,6,34,-89.1,other low,NA,15,1015,NA,NA +Barry,2001,8,7,12,34.7,-89.7,other low,NA,10,1017,NA,NA +Barry,2001,8,7,18,35.6,-89.8,other low,NA,10,1018,NA,NA +Barry,2001,8,8,0,36.6,-89.9,other low,NA,10,1016,NA,NA +Barry,2001,8,8,6,37.5,-90,other low,NA,10,1017,NA,NA +Chantal,2001,8,14,18,12.8,-37,tropical depression,NA,25,1010,NA,NA +Chantal,2001,8,15,0,12.9,-39.3,tropical depression,NA,25,1010,NA,NA +Chantal,2001,8,15,6,12.6,-41.6,tropical depression,NA,25,1010,NA,NA +Chantal,2001,8,15,12,12.3,-43.9,tropical depression,NA,30,1010,NA,NA +Chantal,2001,8,15,18,12.3,-46.3,tropical depression,NA,30,1010,NA,NA +Chantal,2001,8,16,0,12.4,-48.8,tropical depression,NA,30,1010,NA,NA +Chantal,2001,8,16,6,12.4,-51.3,tropical depression,NA,30,1011,NA,NA +Chantal,2001,8,16,12,12.7,-53.9,tropical wave,NA,30,1012,NA,NA +Chantal,2001,8,16,18,12.7,-57.2,tropical wave,NA,30,1012,NA,NA +Chantal,2001,8,17,0,13.1,-60.6,tropical wave,NA,35,1011,NA,NA +Chantal,2001,8,17,6,13.3,-62.8,tropical wave,NA,35,1011,NA,NA +Chantal,2001,8,17,12,13.7,-64.6,tropical storm,NA,35,1010,NA,NA +Chantal,2001,8,17,18,14.2,-66.4,tropical storm,NA,35,1006,NA,NA +Chantal,2001,8,18,0,14.4,-68.2,tropical storm,NA,45,1004,NA,NA +Chantal,2001,8,18,6,14.6,-70.4,tropical storm,NA,55,1003,NA,NA +Chantal,2001,8,18,12,14.8,-72.9,tropical storm,NA,50,1006,NA,NA +Chantal,2001,8,18,18,15.3,-75.2,tropical storm,NA,50,1003,NA,NA +Chantal,2001,8,19,0,15.3,-77.2,tropical storm,NA,55,1002,NA,NA +Chantal,2001,8,19,6,15.4,-78.4,tropical storm,NA,60,997,NA,NA +Chantal,2001,8,19,12,15.7,-79.6,tropical storm,NA,60,1004,NA,NA +Chantal,2001,8,19,18,16.2,-81.1,tropical storm,NA,55,1005,NA,NA +Chantal,2001,8,20,0,16.7,-82.6,tropical storm,NA,50,1007,NA,NA +Chantal,2001,8,20,6,17.1,-84.1,tropical storm,NA,50,1008,NA,NA +Chantal,2001,8,20,12,17.5,-85.6,tropical storm,NA,50,1007,NA,NA +Chantal,2001,8,20,18,17.9,-86.7,tropical storm,NA,55,1006,NA,NA +Chantal,2001,8,21,0,18.1,-87.7,tropical storm,NA,60,1000,NA,NA +Chantal,2001,8,21,2,18.1,-87.8,tropical storm,NA,60,999,NA,NA +Chantal,2001,8,21,6,18.2,-88.1,tropical storm,NA,55,1000,NA,NA +Chantal,2001,8,21,12,18.4,-88.7,tropical storm,NA,45,1002,NA,NA +Chantal,2001,8,21,18,18.6,-89.5,tropical storm,NA,35,1006,NA,NA +Chantal,2001,8,22,0,18.7,-90.3,tropical depression,NA,25,1007,NA,NA +Chantal,2001,8,22,6,18.4,-91.2,tropical depression,NA,25,1008,NA,NA +Chantal,2001,8,22,12,17.9,-92.2,tropical depression,NA,25,1009,NA,NA +Dean,2001,8,22,12,17.9,-64.3,tropical storm,NA,45,1010,NA,NA +Dean,2001,8,22,18,19.1,-65.9,tropical storm,NA,50,1009,NA,NA +Dean,2001,8,23,0,19.8,-67.4,tropical storm,NA,50,1010,NA,NA +Dean,2001,8,23,6,20.7,-68.9,tropical storm,NA,50,1010,NA,NA +Dean,2001,8,23,12,21.6,-69.8,tropical depression,NA,30,1012,NA,NA +Dean,2001,8,23,18,23,-70.2,tropical wave,NA,25,1012,NA,NA +Dean,2001,8,24,0,24.6,-70.8,other low,NA,25,1013,NA,NA +Dean,2001,8,24,6,26.6,-70.7,other low,NA,25,1013,NA,NA +Dean,2001,8,24,12,28.6,-70.7,other low,NA,25,1012,NA,NA +Dean,2001,8,24,18,30.3,-70.2,other low,NA,25,1012,NA,NA +Dean,2001,8,25,0,31.5,-69.4,other low,NA,25,1011,NA,NA +Dean,2001,8,25,6,32.7,-67.9,other low,NA,25,1011,NA,NA +Dean,2001,8,25,12,34,-66.5,other low,NA,25,1010,NA,NA +Dean,2001,8,25,18,35,-66,other low,NA,25,1008,NA,NA +Dean,2001,8,26,0,35,-66,other low,NA,25,1008,NA,NA +Dean,2001,8,26,6,35,-66,other low,NA,25,1008,NA,NA +Dean,2001,8,26,12,35.2,-65.5,other low,NA,25,1008,NA,NA +Dean,2001,8,26,18,35.5,-65,tropical depression,NA,30,1004,NA,NA +Dean,2001,8,27,0,36.3,-63.3,tropical storm,NA,40,1001,NA,NA +Dean,2001,8,27,6,37.7,-62,tropical storm,NA,50,1000,NA,NA +Dean,2001,8,27,12,38.9,-60.7,tropical storm,NA,55,996,NA,NA +Dean,2001,8,27,18,40.6,-59.4,tropical storm,NA,60,994,NA,NA +Dean,2001,8,28,0,42.1,-57.5,tropical storm,NA,60,995,NA,NA +Dean,2001,8,28,6,43.5,-56,tropical storm,NA,55,996,NA,NA +Dean,2001,8,28,12,44,-53.4,tropical storm,NA,50,997,NA,NA +Dean,2001,8,28,18,45.5,-50.5,extratropical,NA,45,998,NA,NA +Dean,2001,8,29,0,47,-48.5,extratropical,NA,45,999,NA,NA +Dean,2001,8,29,6,49,-45,extratropical,NA,45,999,NA,NA +Dean,2001,8,29,12,51,-40.9,extratropical,NA,40,1000,NA,NA +Erin,2001,9,1,18,12.5,-34.3,tropical depression,NA,30,1006,NA,NA +Erin,2001,9,2,0,12.9,-35.9,tropical depression,NA,30,1005,NA,NA +Erin,2001,9,2,6,13.2,-37.5,tropical storm,NA,40,1002,NA,NA +Erin,2001,9,2,12,13.5,-39,tropical storm,NA,45,1003,NA,NA +Erin,2001,9,2,18,14.1,-40.6,tropical storm,NA,45,1003,NA,NA +Erin,2001,9,3,0,14.7,-42.2,tropical storm,NA,45,1003,NA,NA +Erin,2001,9,3,6,15.3,-43.7,tropical storm,NA,50,1003,NA,NA +Erin,2001,9,3,12,15.9,-45.3,tropical storm,NA,50,1003,NA,NA +Erin,2001,9,3,18,16.3,-47.1,tropical storm,NA,40,1002,NA,NA +Erin,2001,9,4,0,16.7,-48.7,tropical storm,NA,40,1002,NA,NA +Erin,2001,9,4,6,17,-50.3,tropical storm,NA,45,1000,NA,NA +Erin,2001,9,4,12,17,-52,tropical storm,NA,45,1000,NA,NA +Erin,2001,9,4,18,17.2,-53.4,tropical storm,NA,45,1000,NA,NA +Erin,2001,9,5,0,17.4,-54.8,tropical storm,NA,45,1000,NA,NA +Erin,2001,9,5,6,17.8,-55.9,tropical storm,NA,45,1000,NA,NA +Erin,2001,9,5,12,18.1,-57,tropical storm,NA,35,1013,NA,NA +Erin,2001,9,5,18,19,-57.9,other low,NA,25,1014,NA,NA +Erin,2001,9,6,0,20.1,-58.1,other low,NA,15,1015,NA,NA +Erin,2001,9,6,6,21.2,-58.2,other low,NA,15,1015,NA,NA +Erin,2001,9,6,12,22.2,-58.3,other low,NA,20,1014,NA,NA +Erin,2001,9,6,18,23.2,-58.4,tropical depression,NA,25,1013,NA,NA +Erin,2001,9,7,0,23.9,-58.1,tropical depression,NA,25,1012,NA,NA +Erin,2001,9,7,6,24.4,-57.6,tropical depression,NA,30,1008,NA,NA +Erin,2001,9,7,12,24.9,-57.8,tropical depression,NA,30,1008,NA,NA +Erin,2001,9,7,18,25.3,-58,tropical storm,NA,35,1005,NA,NA +Erin,2001,9,8,0,26,-58.3,tropical storm,NA,35,1004,NA,NA +Erin,2001,9,8,6,26.5,-58.8,tropical storm,NA,40,999,NA,NA +Erin,2001,9,8,12,27.2,-59.2,tropical storm,NA,45,999,NA,NA +Erin,2001,9,8,18,28.4,-59.8,tropical storm,NA,60,994,NA,NA +Erin,2001,9,9,0,29.7,-60.4,hurricane,1,75,987,NA,NA +Erin,2001,9,9,6,30.6,-61.3,hurricane,2,90,982,NA,NA +Erin,2001,9,9,12,31.5,-62.2,hurricane,2,95,979,NA,NA +Erin,2001,9,9,18,32.4,-62.8,hurricane,3,105,968,NA,NA +Erin,2001,9,10,0,33.3,-63.3,hurricane,3,105,969,NA,NA +Erin,2001,9,10,6,34.2,-64.1,hurricane,3,105,969,NA,NA +Erin,2001,9,10,12,34.9,-64.7,hurricane,3,100,969,NA,NA +Erin,2001,9,10,18,35.7,-65.4,hurricane,2,90,970,NA,NA +Erin,2001,9,11,0,36.4,-65.7,hurricane,1,80,973,NA,NA +Erin,2001,9,11,6,36.9,-65.9,hurricane,1,80,976,NA,NA +Erin,2001,9,11,12,37.4,-65.6,hurricane,1,80,976,NA,NA +Erin,2001,9,11,18,37.8,-65.1,hurricane,1,80,976,NA,NA +Erin,2001,9,12,0,38,-64.3,hurricane,1,80,976,NA,NA +Erin,2001,9,12,6,38,-63.3,hurricane,1,75,979,NA,NA +Erin,2001,9,12,12,37.9,-62.6,hurricane,1,75,979,NA,NA +Erin,2001,9,12,18,37.9,-62,hurricane,1,75,979,NA,NA +Erin,2001,9,13,0,38.1,-61.4,hurricane,1,75,979,NA,NA +Erin,2001,9,13,6,38.3,-61,hurricane,1,70,982,NA,NA +Erin,2001,9,13,12,38.8,-60.6,hurricane,1,70,982,NA,NA +Erin,2001,9,13,18,39.6,-60.2,hurricane,1,70,982,NA,NA +Erin,2001,9,14,0,40.6,-59.3,hurricane,1,70,982,NA,NA +Erin,2001,9,14,6,42,-58.1,hurricane,1,65,987,NA,NA +Erin,2001,9,14,12,43.3,-56.7,hurricane,1,65,987,NA,NA +Erin,2001,9,14,18,44.7,-55.2,hurricane,1,65,984,NA,NA +Erin,2001,9,15,0,46.7,-52.7,tropical storm,NA,60,981,NA,NA +Erin,2001,9,15,6,49,-51,extratropical,NA,60,981,NA,NA +Erin,2001,9,15,12,52,-49,extratropical,NA,55,978,NA,NA +Erin,2001,9,15,18,55,-47.5,extratropical,NA,55,976,NA,NA +Erin,2001,9,16,0,58,-46,extratropical,NA,55,972,NA,NA +Erin,2001,9,16,6,60,-44.5,extratropical,NA,55,976,NA,NA +Erin,2001,9,16,12,61.5,-42,extratropical,NA,55,981,NA,NA +Erin,2001,9,16,18,63,-38.9,extratropical,NA,50,985,NA,NA +Erin,2001,9,17,0,65,-35,extratropical,NA,40,995,NA,NA +Felix,2001,9,7,18,13.9,-28.4,tropical depression,NA,30,1008,NA,NA +Felix,2001,9,8,0,14.4,-29.5,tropical depression,NA,30,1007,NA,NA +Felix,2001,9,8,6,14.8,-31,tropical depression,NA,30,1007,NA,NA +Felix,2001,9,8,12,15,-33,tropical depression,NA,30,1008,NA,NA +Felix,2001,9,8,18,15,-35.1,tropical wave,NA,25,1009,NA,NA +Felix,2001,9,9,0,15,-37,tropical wave,NA,25,1009,NA,NA +Felix,2001,9,9,6,15,-38.7,tropical wave,NA,25,1009,NA,NA +Felix,2001,9,9,12,15,-40.2,tropical wave,NA,25,1009,NA,NA +Felix,2001,9,9,18,15,-41.7,tropical wave,NA,25,1009,NA,NA +Felix,2001,9,10,0,15.2,-43.1,tropical wave,NA,25,1009,NA,NA +Felix,2001,9,10,6,16,-43.7,tropical depression,NA,30,1008,NA,NA +Felix,2001,9,10,12,16.5,-44.8,tropical depression,NA,30,1008,NA,NA +Felix,2001,9,10,18,16.9,-45.8,tropical depression,NA,30,1007,NA,NA +Felix,2001,9,11,0,17.3,-46.8,tropical depression,NA,30,1006,NA,NA +Felix,2001,9,11,6,17.8,-47.4,tropical depression,NA,30,1004,NA,NA +Felix,2001,9,11,12,18.6,-47.7,tropical storm,NA,35,1003,NA,NA +Felix,2001,9,11,18,19.4,-48,tropical storm,NA,35,1003,NA,NA +Felix,2001,9,12,0,20.2,-48.4,tropical storm,NA,40,1000,NA,NA +Felix,2001,9,12,6,21,-48.8,tropical storm,NA,45,998,NA,NA +Felix,2001,9,12,12,22,-48.9,tropical storm,NA,55,994,NA,NA +Felix,2001,9,12,18,22.9,-49,tropical storm,NA,60,993,NA,NA +Felix,2001,9,13,0,23.9,-48.9,hurricane,1,65,987,NA,NA +Felix,2001,9,13,6,24.8,-48.6,hurricane,1,75,979,NA,NA +Felix,2001,9,13,12,25.9,-48.4,hurricane,2,85,972,NA,NA +Felix,2001,9,13,18,27.1,-48,hurricane,2,95,966,NA,NA +Felix,2001,9,14,0,28.2,-47.2,hurricane,3,100,962,NA,NA +Felix,2001,9,14,6,29.3,-46.6,hurricane,3,100,962,NA,NA +Felix,2001,9,14,12,30.1,-45.5,hurricane,2,95,966,NA,NA +Felix,2001,9,14,18,30.9,-44.3,hurricane,2,90,970,NA,NA +Felix,2001,9,15,0,31.2,-42.8,hurricane,2,90,970,NA,NA +Felix,2001,9,15,6,31.5,-41.4,hurricane,2,90,970,NA,NA +Felix,2001,9,15,12,31.7,-39.5,hurricane,2,90,970,NA,NA +Felix,2001,9,15,18,32.1,-37.6,hurricane,2,85,975,NA,NA +Felix,2001,9,16,0,32.1,-36,hurricane,2,85,975,NA,NA +Felix,2001,9,16,6,32.6,-34.8,hurricane,1,80,976,NA,NA +Felix,2001,9,16,12,33.4,-33.3,hurricane,1,75,977,NA,NA +Felix,2001,9,16,18,34.3,-32.4,hurricane,1,70,979,NA,NA +Felix,2001,9,17,0,35.1,-32,hurricane,1,70,981,NA,NA +Felix,2001,9,17,6,35.4,-31.7,hurricane,1,65,983,NA,NA +Felix,2001,9,17,12,35.3,-31.5,tropical storm,NA,60,985,NA,NA +Felix,2001,9,17,18,35.2,-31.8,tropical storm,NA,55,990,NA,NA +Felix,2001,9,18,0,35,-32,tropical storm,NA,45,995,NA,NA +Felix,2001,9,18,6,34.8,-32,tropical storm,NA,40,998,NA,NA +Felix,2001,9,18,12,34.7,-31.9,tropical storm,NA,35,1001,NA,NA +Felix,2001,9,18,18,34.7,-31.7,tropical depression,NA,30,1002,NA,NA +Felix,2001,9,19,0,34.6,-31.6,tropical depression,NA,25,1002,NA,NA +Gabrielle,2001,9,11,18,25.8,-84.1,tropical depression,NA,25,1010,NA,NA +Gabrielle,2001,9,12,0,25.7,-84.6,tropical depression,NA,25,1009,NA,NA +Gabrielle,2001,9,12,6,25.7,-85,tropical depression,NA,25,1008,NA,NA +Gabrielle,2001,9,12,12,25.6,-85.3,tropical depression,NA,25,1008,NA,NA +Gabrielle,2001,9,12,18,25.4,-85.4,tropical depression,NA,30,1007,NA,NA +Gabrielle,2001,9,13,0,25.1,-85.7,tropical depression,NA,30,1005,NA,NA +Gabrielle,2001,9,13,6,25.2,-85.3,tropical depression,NA,30,1005,NA,NA +Gabrielle,2001,9,13,12,25.3,-84.9,tropical storm,NA,35,1003,NA,NA +Gabrielle,2001,9,13,18,25.4,-84.5,tropical storm,NA,40,998,NA,NA +Gabrielle,2001,9,14,0,25.4,-84.1,tropical storm,NA,45,997,NA,NA +Gabrielle,2001,9,14,6,25.8,-83.6,tropical storm,NA,50,992,NA,NA +Gabrielle,2001,9,14,12,27.1,-82.6,tropical storm,NA,60,983,NA,NA +Gabrielle,2001,9,14,18,28,-81.8,tropical storm,NA,45,994,NA,NA +Gabrielle,2001,9,15,0,28.6,-81.4,tropical storm,NA,40,995,NA,NA +Gabrielle,2001,9,15,6,28.6,-80.9,tropical storm,NA,40,995,NA,NA +Gabrielle,2001,9,15,12,28.9,-80.1,tropical storm,NA,40,998,NA,NA +Gabrielle,2001,9,15,18,29.8,-79,tropical storm,NA,45,999,NA,NA +Gabrielle,2001,9,16,0,30.4,-77.9,tropical storm,NA,50,998,NA,NA +Gabrielle,2001,9,16,6,30.8,-76.8,tropical storm,NA,50,998,NA,NA +Gabrielle,2001,9,16,12,31.6,-74.9,tropical storm,NA,55,995,NA,NA +Gabrielle,2001,9,16,18,32.3,-72.8,tropical storm,NA,55,995,NA,NA +Gabrielle,2001,9,17,0,33.1,-70.7,hurricane,1,65,991,NA,NA +Gabrielle,2001,9,17,6,34,-68.5,hurricane,1,65,991,NA,NA +Gabrielle,2001,9,17,12,35.3,-66.6,hurricane,1,70,983,NA,NA +Gabrielle,2001,9,17,18,36.2,-64.7,hurricane,1,70,983,NA,NA +Gabrielle,2001,9,18,0,36.9,-62.9,tropical storm,NA,60,987,NA,NA +Gabrielle,2001,9,18,6,37.9,-61.8,tropical storm,NA,55,990,NA,NA +Gabrielle,2001,9,18,12,39,-60.4,tropical storm,NA,55,990,NA,NA +Gabrielle,2001,9,18,18,40.2,-58.9,tropical storm,NA,60,980,NA,NA +Gabrielle,2001,9,19,0,41.5,-57.5,tropical storm,NA,60,975,NA,NA +Gabrielle,2001,9,19,6,42.8,-55.5,extratropical,NA,55,976,NA,NA +Gabrielle,2001,9,19,12,43.5,-54,extratropical,NA,60,978,NA,NA +Gabrielle,2001,9,19,18,46.5,-52,extratropical,NA,60,986,NA,NA +Gabrielle,2001,9,20,0,48.5,-48.5,extratropical,NA,60,988,NA,NA +Gabrielle,2001,9,20,6,50,-46,extratropical,NA,60,986,NA,NA +Gabrielle,2001,9,20,12,52,-43,extratropical,NA,60,984,NA,NA +Gabrielle,2001,9,20,18,54,-40,extratropical,NA,65,981,NA,NA +Gabrielle,2001,9,21,0,55,-37.5,extratropical,NA,65,981,NA,NA +Gabrielle,2001,9,21,6,55,-35,extratropical,NA,65,981,NA,NA +Gabrielle,2001,9,21,12,56,-32.5,extratropical,NA,60,984,NA,NA +Gabrielle,2001,9,21,18,57.5,-31,extratropical,NA,55,987,NA,NA +AL092001,2001,9,19,18,13.4,-81.9,tropical depression,NA,30,1008,NA,NA +AL092001,2001,9,19,21,13.6,-82.7,tropical depression,NA,30,1005,NA,NA +AL092001,2001,9,20,0,13.9,-83.5,tropical depression,NA,30,1006,NA,NA +AL092001,2001,9,20,6,14.5,-85.1,tropical depression,NA,25,1008,NA,NA +Humberto,2001,9,21,12,25.1,-64.2,tropical depression,NA,25,1012,NA,NA +Humberto,2001,9,21,18,25.8,-65,tropical depression,NA,25,1012,NA,NA +Humberto,2001,9,22,0,26.5,-65.5,tropical depression,NA,25,1010,NA,NA +Humberto,2001,9,22,6,27.2,-65.9,tropical depression,NA,30,1010,NA,NA +Humberto,2001,9,22,12,27.9,-66.3,tropical storm,NA,40,1007,NA,NA +Humberto,2001,9,22,18,28.6,-66.7,tropical storm,NA,50,998,NA,NA +Humberto,2001,9,23,0,29.3,-67,tropical storm,NA,55,995,NA,NA +Humberto,2001,9,23,6,30.1,-67.3,tropical storm,NA,55,994,NA,NA +Humberto,2001,9,23,12,31,-67.5,hurricane,1,65,990,NA,NA +Humberto,2001,9,23,18,31.9,-67.4,hurricane,1,80,986,NA,NA +Humberto,2001,9,24,0,32.8,-67.1,hurricane,2,85,983,NA,NA +Humberto,2001,9,24,6,33.8,-66.8,hurricane,1,75,989,NA,NA +Humberto,2001,9,24,12,35,-66.3,hurricane,1,70,990,NA,NA +Humberto,2001,9,24,18,35.9,-65.4,hurricane,1,70,991,NA,NA +Humberto,2001,9,25,0,36.8,-64.3,hurricane,1,65,992,NA,NA +Humberto,2001,9,25,6,37.7,-63.4,hurricane,1,65,992,NA,NA +Humberto,2001,9,25,12,38.5,-62.4,hurricane,1,65,992,NA,NA +Humberto,2001,9,25,18,39.2,-61.6,hurricane,1,65,990,NA,NA +Humberto,2001,9,26,0,39.6,-60.7,hurricane,1,65,990,NA,NA +Humberto,2001,9,26,6,40.4,-60.3,hurricane,1,75,980,NA,NA +Humberto,2001,9,26,12,41,-59.2,hurricane,2,90,970,NA,NA +Humberto,2001,9,26,18,41.8,-57.5,hurricane,1,80,977,NA,NA +Humberto,2001,9,27,0,42.2,-54.6,hurricane,1,70,987,NA,NA +Humberto,2001,9,27,6,42.4,-51.3,hurricane,1,65,991,NA,NA +Humberto,2001,9,27,12,42.2,-47.5,tropical storm,NA,60,994,NA,NA +Humberto,2001,9,27,18,41.5,-44.5,tropical storm,NA,45,996,NA,NA +Iris,2001,10,4,12,12.3,-58.2,tropical depression,NA,25,1011,NA,NA +Iris,2001,10,4,18,12.8,-59.9,tropical depression,NA,30,1010,NA,NA +Iris,2001,10,5,0,13.4,-61.4,tropical depression,NA,30,1010,NA,NA +Iris,2001,10,5,6,14,-63,tropical depression,NA,30,1010,NA,NA +Iris,2001,10,5,12,14.8,-64.5,tropical storm,NA,35,1008,NA,NA +Iris,2001,10,5,18,15.5,-66,tropical storm,NA,45,1005,NA,NA +Iris,2001,10,6,0,15.7,-67.7,tropical storm,NA,50,1001,NA,NA +Iris,2001,10,6,6,16,-69,tropical storm,NA,55,998,NA,NA +Iris,2001,10,6,12,16.5,-70.5,tropical storm,NA,55,998,NA,NA +Iris,2001,10,6,18,16.9,-72.2,hurricane,1,65,992,NA,NA +Iris,2001,10,7,0,16.9,-74,hurricane,1,75,993,NA,NA +Iris,2001,10,7,6,16.9,-75.3,hurricane,1,75,989,NA,NA +Iris,2001,10,7,12,17.3,-77,hurricane,1,75,989,NA,NA +Iris,2001,10,7,18,17.4,-78.9,hurricane,1,75,991,NA,NA +Iris,2001,10,8,0,17.3,-80.6,hurricane,1,80,988,NA,NA +Iris,2001,10,8,6,17.2,-82.3,hurricane,2,90,963,NA,NA +Iris,2001,10,8,12,17.1,-84,hurricane,4,120,950,NA,NA +Iris,2001,10,8,18,16.8,-86,hurricane,4,115,950,NA,NA +Iris,2001,10,9,0,16.5,-88,hurricane,4,125,948,NA,NA +Iris,2001,10,9,2,16.3,-88.4,hurricane,4,125,948,NA,NA +Iris,2001,10,9,6,16.2,-89.9,tropical storm,NA,60,1005,NA,NA +Iris,2001,10,9,12,16.2,-91.9,tropical depression,NA,30,1004,NA,NA +Jerry,2001,10,6,12,10.6,-50.6,tropical depression,NA,25,1008,NA,NA +Jerry,2001,10,6,18,10.8,-52.1,tropical depression,NA,30,1007,NA,NA +Jerry,2001,10,7,0,11,-53.8,tropical storm,NA,35,1007,NA,NA +Jerry,2001,10,7,6,11.3,-55.7,tropical storm,NA,40,1007,NA,NA +Jerry,2001,10,7,12,11.7,-57.7,tropical storm,NA,45,1007,NA,NA +Jerry,2001,10,7,18,12.5,-59.5,tropical storm,NA,45,1007,NA,NA +Jerry,2001,10,8,0,13.1,-60.2,tropical storm,NA,45,1006,NA,NA +Jerry,2001,10,8,6,13.8,-62,tropical storm,NA,45,1004,NA,NA +Jerry,2001,10,8,12,14.2,-64,tropical storm,NA,35,1007,NA,NA +Jerry,2001,10,8,18,14.5,-66,tropical depression,NA,25,1008,NA,NA +Karen,2001,10,11,6,27.5,-63,extratropical,NA,30,1009,NA,NA +Karen,2001,10,11,12,29.8,-62.5,extratropical,NA,35,1003,NA,NA +Karen,2001,10,11,18,30.8,-63.5,extratropical,NA,45,998,NA,NA +Karen,2001,10,12,0,31.8,-64.7,subtropical storm,NA,60,991,NA,NA +Karen,2001,10,12,6,32.2,-65.8,subtropical storm,NA,60,988,NA,NA +Karen,2001,10,12,12,32.8,-65.8,subtropical storm,NA,60,988,NA,NA +Karen,2001,10,12,18,33.5,-66.3,subtropical storm,NA,60,988,NA,NA +Karen,2001,10,13,0,34.2,-66.1,subtropical storm,NA,60,988,NA,NA +Karen,2001,10,13,6,34.9,-65.3,tropical storm,NA,60,988,NA,NA +Karen,2001,10,13,12,36.2,-64.8,tropical storm,NA,60,986,NA,NA +Karen,2001,10,13,18,37.3,-64.6,hurricane,1,65,985,NA,NA +Karen,2001,10,14,0,37.9,-64,hurricane,1,65,985,NA,NA +Karen,2001,10,14,6,38.6,-63.7,hurricane,1,70,982,NA,NA +Karen,2001,10,14,12,39.3,-63.9,tropical storm,NA,60,988,NA,NA +Karen,2001,10,14,18,40.1,-64.1,tropical storm,NA,55,992,NA,NA +Karen,2001,10,15,0,40.9,-64.4,tropical storm,NA,50,995,NA,NA +Karen,2001,10,15,6,42.3,-65,tropical storm,NA,45,997,NA,NA +Karen,2001,10,15,12,44.2,-64.8,tropical storm,NA,40,998,NA,NA +Karen,2001,10,15,18,48,-62,extratropical,NA,40,1002,NA,NA +Lorenzo,2001,10,27,12,27.2,-34.9,tropical depression,NA,30,1010,NA,NA +Lorenzo,2001,10,27,18,27.5,-36.1,tropical depression,NA,30,1009,NA,NA +Lorenzo,2001,10,28,0,27.5,-37.4,tropical depression,NA,30,1009,NA,NA +Lorenzo,2001,10,28,6,27.5,-38.7,tropical depression,NA,30,1009,NA,NA +Lorenzo,2001,10,28,12,27.5,-39.8,tropical depression,NA,30,1009,NA,NA +Lorenzo,2001,10,28,18,27.5,-41,tropical depression,NA,30,1009,NA,NA +Lorenzo,2001,10,29,0,27.2,-41.3,tropical depression,NA,30,1009,NA,NA +Lorenzo,2001,10,29,6,27.7,-41.9,tropical depression,NA,30,1009,NA,NA +Lorenzo,2001,10,29,12,27.8,-42.7,tropical depression,NA,30,1009,NA,NA +Lorenzo,2001,10,29,18,28,-43.7,tropical depression,NA,30,1009,NA,NA +Lorenzo,2001,10,30,0,28.5,-44.6,tropical storm,NA,35,1007,NA,NA +Lorenzo,2001,10,30,6,29.4,-45.5,tropical storm,NA,35,1007,NA,NA +Lorenzo,2001,10,30,12,30.9,-45.6,tropical storm,NA,35,1007,NA,NA +Lorenzo,2001,10,30,18,32.8,-46,tropical storm,NA,35,1008,NA,NA +Lorenzo,2001,10,31,0,34.9,-44.9,tropical storm,NA,35,1008,NA,NA +Lorenzo,2001,10,31,6,37.4,-43.1,tropical storm,NA,35,1008,NA,NA +Michelle,2001,10,29,18,13.3,-83.6,tropical depression,NA,30,1004,NA,NA +Michelle,2001,10,30,0,13.7,-83.6,tropical depression,NA,30,1004,NA,NA +Michelle,2001,10,30,6,13.7,-84.1,tropical depression,NA,30,1005,NA,NA +Michelle,2001,10,30,12,13.3,-83.9,tropical depression,NA,30,1005,NA,NA +Michelle,2001,10,30,18,13,-83.5,tropical depression,NA,30,1006,NA,NA +Michelle,2001,10,31,0,13.7,-83.6,tropical depression,NA,30,1004,NA,NA +Michelle,2001,10,31,6,14.3,-83.4,tropical depression,NA,30,1005,NA,NA +Michelle,2001,10,31,12,14.8,-83.2,tropical depression,NA,30,1004,NA,NA +Michelle,2001,10,31,18,15.3,-83.1,tropical depression,NA,30,1004,NA,NA +Michelle,2001,11,1,0,15.8,-83.1,tropical storm,NA,35,1001,NA,NA +Michelle,2001,11,1,6,16.5,-83.4,tropical storm,NA,45,999,NA,NA +Michelle,2001,11,1,12,16.8,-83.6,tropical storm,NA,50,995,NA,NA +Michelle,2001,11,1,18,17,-83.8,tropical storm,NA,50,993,NA,NA +Michelle,2001,11,2,0,17.3,-83.9,tropical storm,NA,55,991,NA,NA +Michelle,2001,11,2,6,17.5,-83.9,tropical storm,NA,60,988,NA,NA +Michelle,2001,11,2,12,17.8,-84,hurricane,1,70,979,NA,NA +Michelle,2001,11,2,18,18,-84,hurricane,1,80,969,NA,NA +Michelle,2001,11,3,0,18.5,-84,hurricane,2,90,957,NA,NA +Michelle,2001,11,3,6,18.8,-84.3,hurricane,3,105,942,NA,NA +Michelle,2001,11,3,12,18.9,-84.3,hurricane,4,115,937,NA,NA +Michelle,2001,11,3,18,19.3,-84.1,hurricane,3,110,934,NA,NA +Michelle,2001,11,3,21,19.4,-83.9,hurricane,3,110,933,NA,NA +Michelle,2001,11,4,0,19.7,-83.7,hurricane,4,115,938,NA,NA +Michelle,2001,11,4,6,20.1,-83.3,hurricane,4,120,944,NA,NA +Michelle,2001,11,4,12,20.8,-82.5,hurricane,4,120,947,NA,NA +Michelle,2001,11,4,18,21.5,-81.8,hurricane,4,120,949,NA,NA +Michelle,2001,11,4,23,22.1,-81.2,hurricane,4,115,950,NA,NA +Michelle,2001,11,5,0,22.3,-80.9,hurricane,3,105,953,NA,NA +Michelle,2001,11,5,6,23.1,-79.7,hurricane,1,80,972,NA,NA +Michelle,2001,11,5,12,24.3,-78,hurricane,1,80,974,NA,NA +Michelle,2001,11,5,18,25.4,-76.4,hurricane,1,75,980,NA,NA +Michelle,2001,11,6,0,26.3,-74.5,extratropical,NA,75,980,NA,NA +Michelle,2001,11,6,6,26.9,-72.6,extratropical,NA,75,980,NA,NA +Michelle,2001,11,6,12,27.3,-69.7,extratropical,NA,65,984,NA,NA +Michelle,2001,11,6,18,28.7,-66.5,extratropical,NA,55,989,NA,NA +Noel,2001,11,4,0,33.9,-50.4,subtropical storm,NA,45,988,NA,NA +Noel,2001,11,4,6,34.1,-50.4,subtropical storm,NA,45,990,NA,NA +Noel,2001,11,4,12,34.3,-50.4,subtropical storm,NA,45,993,NA,NA +Noel,2001,11,4,18,35.2,-50.3,subtropical storm,NA,50,993,NA,NA +Noel,2001,11,5,0,36.1,-50.1,subtropical storm,NA,55,991,NA,NA +Noel,2001,11,5,6,37,-50.1,subtropical storm,NA,60,988,NA,NA +Noel,2001,11,5,12,37.8,-50.3,hurricane,1,65,986,NA,NA +Noel,2001,11,5,18,38.8,-50.2,hurricane,1,65,986,NA,NA +Noel,2001,11,6,0,39.7,-49.7,tropical storm,NA,60,990,NA,NA +Noel,2001,11,6,6,41.3,-49.2,tropical storm,NA,55,994,NA,NA +Noel,2001,11,6,12,43,-48.5,extratropical,NA,50,996,NA,NA +Noel,2001,11,6,18,45,-48,extratropical,NA,50,1000,NA,NA +Olga,2001,11,23,6,30.5,-51,extratropical,NA,25,1003,NA,NA +Olga,2001,11,23,12,30.2,-51,extratropical,NA,25,1000,NA,NA +Olga,2001,11,23,18,29.7,-50.7,extratropical,NA,30,994,NA,NA +Olga,2001,11,24,0,29.3,-50.3,subtropical storm,NA,50,990,NA,NA +Olga,2001,11,24,6,29.3,-50,subtropical storm,NA,50,990,NA,NA +Olga,2001,11,24,12,29.5,-49.8,tropical storm,NA,50,989,NA,NA +Olga,2001,11,24,18,30.3,-49.5,tropical storm,NA,50,989,NA,NA +Olga,2001,11,25,0,31.3,-50.6,tropical storm,NA,50,989,NA,NA +Olga,2001,11,25,6,31.8,-52,tropical storm,NA,50,989,NA,NA +Olga,2001,11,25,12,31.7,-53.5,tropical storm,NA,55,989,NA,NA +Olga,2001,11,25,18,30.8,-55,tropical storm,NA,60,987,NA,NA +Olga,2001,11,26,0,30.3,-55.3,tropical storm,NA,60,979,NA,NA +Olga,2001,11,26,6,30.1,-55.6,tropical storm,NA,60,979,NA,NA +Olga,2001,11,26,12,30.6,-55.9,hurricane,1,65,979,NA,NA +Olga,2001,11,26,18,31.1,-56,hurricane,1,65,977,NA,NA +Olga,2001,11,27,0,32.1,-56.2,hurricane,1,75,975,NA,NA +Olga,2001,11,27,6,32.6,-57,hurricane,1,80,973,NA,NA +Olga,2001,11,27,12,31.5,-57.2,hurricane,1,80,974,NA,NA +Olga,2001,11,27,18,32,-56,hurricane,1,75,975,NA,NA +Olga,2001,11,28,0,32.3,-55.8,hurricane,1,75,975,NA,NA +Olga,2001,11,28,6,32.6,-55.7,hurricane,1,75,975,NA,NA +Olga,2001,11,28,12,32.4,-56.2,hurricane,1,75,977,NA,NA +Olga,2001,11,28,18,31.4,-57,hurricane,1,70,979,NA,NA +Olga,2001,11,29,0,30.3,-57.6,hurricane,1,65,987,NA,NA +Olga,2001,11,29,6,29.3,-58.7,tropical storm,NA,60,990,NA,NA +Olga,2001,11,29,12,28.4,-60.1,tropical storm,NA,60,992,NA,NA +Olga,2001,11,29,18,27.3,-61.8,tropical storm,NA,55,994,NA,NA +Olga,2001,11,30,0,26.2,-63.2,tropical storm,NA,45,998,NA,NA +Olga,2001,11,30,6,25.3,-64.7,tropical storm,NA,35,1001,NA,NA +Olga,2001,11,30,12,24.5,-66.2,tropical depression,NA,30,1003,NA,NA +Olga,2001,11,30,18,23.7,-67.1,tropical depression,NA,30,1004,NA,NA +Olga,2001,12,1,0,23.4,-67.7,tropical depression,NA,30,1004,NA,NA +Olga,2001,12,1,6,23.1,-68,tropical depression,NA,30,1005,NA,NA +Olga,2001,12,1,12,22.8,-68.3,tropical depression,NA,30,1004,NA,NA +Olga,2001,12,1,18,23,-68.6,tropical depression,NA,30,1004,NA,NA +Olga,2001,12,2,0,23.4,-68.9,tropical storm,NA,35,1003,NA,NA +Olga,2001,12,2,6,24.3,-68.9,tropical storm,NA,35,1003,NA,NA +Olga,2001,12,2,12,25.5,-69.2,tropical storm,NA,40,1001,NA,NA +Olga,2001,12,2,18,26.4,-69.5,tropical storm,NA,40,1001,NA,NA +Olga,2001,12,3,0,27,-69.7,tropical storm,NA,35,1004,NA,NA +Olga,2001,12,3,6,27.4,-69.9,tropical storm,NA,35,1005,NA,NA +Olga,2001,12,3,12,27.8,-69.9,tropical storm,NA,35,1005,NA,NA +Olga,2001,12,3,18,27.7,-69.6,tropical storm,NA,35,1005,NA,NA +Olga,2001,12,4,0,27.7,-69.1,tropical depression,NA,30,1006,NA,NA +Olga,2001,12,4,6,27.8,-68.2,tropical depression,NA,30,1006,NA,NA +Olga,2001,12,4,12,27.8,-68,tropical depression,NA,30,1006,NA,NA +Olga,2001,12,4,18,27,-67.4,tropical depression,NA,30,1006,NA,NA +Arthur,2002,7,14,18,34.3,-76.8,tropical depression,NA,30,1009,NA,NA +Arthur,2002,7,15,0,35,-75.1,tropical depression,NA,30,1008,NA,NA +Arthur,2002,7,15,6,35.5,-73.3,tropical storm,NA,35,1006,NA,NA +Arthur,2002,7,15,12,36.1,-71,tropical storm,NA,45,1004,NA,NA +Arthur,2002,7,15,18,36.8,-68.2,tropical storm,NA,45,1002,NA,NA +Arthur,2002,7,16,0,37.9,-65.1,tropical storm,NA,50,1000,NA,NA +Arthur,2002,7,16,6,38.6,-61.7,tropical storm,NA,50,998,NA,NA +Arthur,2002,7,16,12,40.5,-57.9,tropical storm,NA,50,998,NA,NA +Arthur,2002,7,16,18,42.5,-54.5,tropical storm,NA,50,997,NA,NA +Arthur,2002,7,17,0,44.5,-53,extratropical,NA,50,998,NA,NA +Arthur,2002,7,17,6,46.5,-53.9,extratropical,NA,45,999,NA,NA +Arthur,2002,7,17,12,48,-54,extratropical,NA,40,1002,NA,NA +Arthur,2002,7,17,18,49,-53,extratropical,NA,40,1001,NA,NA +Arthur,2002,7,18,0,50.5,-52.5,extratropical,NA,40,999,NA,NA +Arthur,2002,7,18,6,53,-52.5,extratropical,NA,40,997,NA,NA +Arthur,2002,7,18,12,55.5,-53,extratropical,NA,35,995,NA,NA +Arthur,2002,7,18,18,58,-53,extratropical,NA,35,992,NA,NA +Arthur,2002,7,19,0,57,-52,extratropical,NA,35,996,NA,NA +Arthur,2002,7,19,6,56.5,-51.5,extratropical,NA,35,1000,NA,NA +Arthur,2002,7,19,12,56,-51,extratropical,NA,35,1005,NA,NA +Bertha,2002,8,4,18,29,-88.5,tropical depression,NA,25,1012,NA,NA +Bertha,2002,8,5,0,29.3,-89.2,tropical storm,NA,35,1008,NA,NA +Bertha,2002,8,5,1,29.4,-89.2,tropical storm,NA,35,1007,NA,NA +Bertha,2002,8,5,2,29.4,-89.3,tropical storm,NA,35,1008,NA,NA +Bertha,2002,8,5,6,29.6,-89.7,tropical storm,NA,35,1008,NA,NA +Bertha,2002,8,5,12,30.5,-90.1,tropical depression,NA,25,1010,NA,NA +Bertha,2002,8,5,18,30.9,-90.6,tropical depression,NA,20,1011,NA,NA +Bertha,2002,8,6,0,30.9,-91,tropical depression,NA,15,1012,NA,NA +Bertha,2002,8,6,6,30.8,-91.4,tropical depression,NA,15,1013,NA,NA +Bertha,2002,8,6,12,30.6,-91.5,tropical depression,NA,15,1013,NA,NA +Bertha,2002,8,6,18,30.3,-91.6,tropical depression,NA,15,1012,NA,NA +Bertha,2002,8,7,0,30,-91.7,tropical depression,NA,20,1010,NA,NA +Bertha,2002,8,7,6,29.7,-92.2,tropical depression,NA,20,1011,NA,NA +Bertha,2002,8,7,12,29.4,-92.7,tropical depression,NA,25,1011,NA,NA +Bertha,2002,8,7,18,29,-93.2,tropical depression,NA,25,1010,NA,NA +Bertha,2002,8,8,0,28.6,-93.8,tropical depression,NA,25,1010,NA,NA +Bertha,2002,8,8,6,28.2,-94.4,tropical depression,NA,25,1010,NA,NA +Bertha,2002,8,8,12,27.7,-95.3,tropical depression,NA,20,1011,NA,NA +Bertha,2002,8,8,18,26.9,-96.1,tropical depression,NA,20,1011,NA,NA +Bertha,2002,8,9,0,27,-96.6,tropical depression,NA,20,1011,NA,NA +Bertha,2002,8,9,6,27.2,-97.1,tropical depression,NA,20,1011,NA,NA +Bertha,2002,8,9,8,27.3,-97.4,tropical depression,NA,20,1011,NA,NA +Bertha,2002,8,9,12,27.5,-97.7,tropical depression,NA,20,1012,NA,NA +Cristobal,2002,8,5,18,32,-77.2,tropical depression,NA,30,1008,NA,NA +Cristobal,2002,8,6,0,31.5,-77.1,tropical depression,NA,30,1004,NA,NA +Cristobal,2002,8,6,6,31.1,-77,tropical depression,NA,30,1004,NA,NA +Cristobal,2002,8,6,12,30.7,-76.6,tropical depression,NA,30,1004,NA,NA +Cristobal,2002,8,6,18,30.4,-76.4,tropical storm,NA,35,1002,NA,NA +Cristobal,2002,8,7,0,30.1,-76.2,tropical storm,NA,40,999,NA,NA +Cristobal,2002,8,7,6,29.7,-76.2,tropical storm,NA,40,999,NA,NA +Cristobal,2002,8,7,12,29.4,-76,tropical storm,NA,40,999,NA,NA +Cristobal,2002,8,7,18,29.7,-75.7,tropical storm,NA,40,1000,NA,NA +Cristobal,2002,8,8,0,29.7,-75.3,tropical storm,NA,45,1000,NA,NA +Cristobal,2002,8,8,6,29.7,-74.9,tropical storm,NA,45,1000,NA,NA +Cristobal,2002,8,8,12,29.9,-74,tropical storm,NA,45,1003,NA,NA +Cristobal,2002,8,8,18,31,-72,tropical storm,NA,45,1008,NA,NA +Dolly,2002,8,29,12,9.5,-31.2,tropical depression,NA,30,1007,NA,NA +Dolly,2002,8,29,18,9.7,-32.2,tropical storm,NA,35,1005,NA,NA +Dolly,2002,8,30,0,9.7,-33.1,tropical storm,NA,40,1002,NA,NA +Dolly,2002,8,30,6,10,-34.5,tropical storm,NA,45,1000,NA,NA +Dolly,2002,8,30,12,10.3,-36.3,tropical storm,NA,50,997,NA,NA +Dolly,2002,8,30,18,10.8,-37.7,tropical storm,NA,50,1000,NA,NA +Dolly,2002,8,31,0,11.5,-39.1,tropical storm,NA,45,1000,NA,NA +Dolly,2002,8,31,6,12.1,-40.9,tropical storm,NA,40,1002,NA,NA +Dolly,2002,8,31,12,12.8,-42.9,tropical storm,NA,35,1005,NA,NA +Dolly,2002,8,31,18,13.2,-44.9,tropical storm,NA,35,1005,NA,NA +Dolly,2002,9,1,0,13.6,-46.8,tropical storm,NA,35,1005,NA,NA +Dolly,2002,9,1,6,14.1,-48.4,tropical storm,NA,35,1005,NA,NA +Dolly,2002,9,1,12,14.8,-49.9,tropical storm,NA,35,1005,NA,NA +Dolly,2002,9,1,18,15.6,-51.2,tropical storm,NA,40,1002,NA,NA +Dolly,2002,9,2,0,16.4,-52,tropical storm,NA,40,1001,NA,NA +Dolly,2002,9,2,6,17.1,-52.5,tropical storm,NA,40,1001,NA,NA +Dolly,2002,9,2,12,17.9,-52.9,tropical storm,NA,45,1000,NA,NA +Dolly,2002,9,2,18,18.5,-53.3,tropical storm,NA,45,1002,NA,NA +Dolly,2002,9,3,0,19.3,-53.7,tropical storm,NA,40,1002,NA,NA +Dolly,2002,9,3,6,19.6,-53.7,tropical storm,NA,45,1000,NA,NA +Dolly,2002,9,3,12,21,-52.9,tropical storm,NA,45,1000,NA,NA +Dolly,2002,9,3,18,22.2,-52.4,tropical storm,NA,45,1001,NA,NA +Dolly,2002,9,4,0,23.1,-52.4,tropical storm,NA,45,1001,NA,NA +Dolly,2002,9,4,6,23.5,-52.4,tropical storm,NA,35,1005,NA,NA +Dolly,2002,9,4,12,23.5,-52.5,tropical depression,NA,25,1009,NA,NA +Dolly,2002,9,4,18,24,-52.5,other low,NA,20,1009,NA,NA +Edouard,2002,9,1,18,29.2,-78.8,tropical depression,NA,30,1013,NA,NA +Edouard,2002,9,2,0,29.7,-79.1,tropical depression,NA,30,1011,NA,NA +Edouard,2002,9,2,6,30.1,-79.7,tropical storm,NA,35,1007,NA,NA +Edouard,2002,9,2,12,30.4,-79.6,tropical storm,NA,35,1007,NA,NA +Edouard,2002,9,2,18,30.5,-79,tropical storm,NA,35,1005,NA,NA +Edouard,2002,9,3,0,30.5,-78.6,tropical storm,NA,35,1003,NA,NA +Edouard,2002,9,3,6,30.4,-78.5,tropical storm,NA,35,1003,NA,NA +Edouard,2002,9,3,12,30.4,-78.4,tropical storm,NA,55,1002,NA,NA +Edouard,2002,9,3,18,30,-79,tropical storm,NA,45,1004,NA,NA +Edouard,2002,9,4,0,29.9,-79.1,tropical storm,NA,40,1005,NA,NA +Edouard,2002,9,4,6,29.9,-79.5,tropical storm,NA,35,1002,NA,NA +Edouard,2002,9,4,12,29.9,-79.8,tropical storm,NA,35,1006,NA,NA +Edouard,2002,9,4,18,29.7,-80.5,tropical storm,NA,35,1009,NA,NA +Edouard,2002,9,5,0,29.4,-81,tropical storm,NA,35,1008,NA,NA +Edouard,2002,9,5,0,29.4,-81.1,tropical storm,NA,35,1009,NA,NA +Edouard,2002,9,5,6,29.2,-81.6,tropical depression,NA,25,1011,NA,NA +Edouard,2002,9,5,12,28.9,-82.4,tropical depression,NA,20,1011,NA,NA +Edouard,2002,9,5,18,28.6,-83.4,tropical depression,NA,20,1011,NA,NA +Edouard,2002,9,6,0,28.4,-83.9,tropical depression,NA,20,1009,NA,NA +Edouard,2002,9,6,6,28.3,-84.7,tropical depression,NA,20,1010,NA,NA +Edouard,2002,9,6,12,28.5,-86,tropical depression,NA,20,1008,NA,NA +Fay,2002,9,5,18,28,-93.8,tropical depression,NA,30,1009,NA,NA +Fay,2002,9,6,0,27.8,-93.9,tropical storm,NA,35,1006,NA,NA +Fay,2002,9,6,6,27.6,-94.1,tropical storm,NA,45,1005,NA,NA +Fay,2002,9,6,12,27.7,-94.5,tropical storm,NA,50,1001,NA,NA +Fay,2002,9,6,18,27.8,-94.7,tropical storm,NA,50,999,NA,NA +Fay,2002,9,7,0,27.9,-95,tropical storm,NA,50,998,NA,NA +Fay,2002,9,7,6,28.1,-95.6,tropical storm,NA,50,999,NA,NA +Fay,2002,9,7,9,28.5,-96.3,tropical storm,NA,50,999,NA,NA +Fay,2002,9,7,12,29.1,-96.9,tropical depression,NA,30,1002,NA,NA +Fay,2002,9,7,18,28.9,-98.5,tropical depression,NA,25,1002,NA,NA +Fay,2002,9,8,0,28.9,-98.9,tropical depression,NA,20,1003,NA,NA +Fay,2002,9,8,6,28.7,-99.3,other low,NA,15,1007,NA,NA +Fay,2002,9,8,12,29,-99.5,other low,NA,10,1007,NA,NA +Fay,2002,9,8,18,28.9,-99.1,other low,NA,10,1008,NA,NA +Fay,2002,9,9,0,28.5,-99.2,other low,NA,10,1008,NA,NA +Fay,2002,9,9,6,28.3,-99.2,other low,NA,10,1008,NA,NA +Fay,2002,9,9,12,28.1,-99.4,other low,NA,10,1009,NA,NA +Fay,2002,9,9,18,27.8,-99.6,other low,NA,10,1009,NA,NA +Fay,2002,9,10,0,27.4,-99.5,other low,NA,10,1008,NA,NA +Fay,2002,9,10,6,27,-99.3,other low,NA,10,1008,NA,NA +Fay,2002,9,10,12,26.8,-99.8,other low,NA,10,1008,NA,NA +Fay,2002,9,10,18,26.6,-100.4,other low,NA,10,1008,NA,NA +Fay,2002,9,11,0,26.5,-101,other low,NA,10,1007,NA,NA +AL072002,2002,9,7,12,24.3,-47.5,tropical depression,NA,30,1013,NA,NA +AL072002,2002,9,7,18,24.5,-48.2,tropical depression,NA,30,1014,NA,NA +AL072002,2002,9,8,0,24.5,-49.1,tropical depression,NA,30,1015,NA,NA +AL072002,2002,9,8,6,24.5,-50.2,tropical depression,NA,25,1016,NA,NA +AL072002,2002,9,8,12,24.4,-51.3,tropical depression,NA,25,1016,NA,NA +Gustav,2002,9,8,12,29,-71,subtropical depression,NA,30,1009,NA,NA +Gustav,2002,9,8,18,30.2,-71.1,subtropical storm,NA,35,1007,NA,NA +Gustav,2002,9,9,0,30.5,-72.3,subtropical storm,NA,40,1004,NA,NA +Gustav,2002,9,9,6,31.2,-72.6,subtropical storm,NA,40,1003,NA,NA +Gustav,2002,9,9,12,31.6,-73.6,subtropical storm,NA,40,1002,NA,NA +Gustav,2002,9,9,18,31.9,-74.5,subtropical storm,NA,40,1002,NA,NA +Gustav,2002,9,10,0,32.1,-75.5,subtropical storm,NA,45,996,NA,NA +Gustav,2002,9,10,6,33,-75.5,subtropical storm,NA,50,990,NA,NA +Gustav,2002,9,10,12,33.7,-75.4,tropical storm,NA,50,987,NA,NA +Gustav,2002,9,10,18,35,-75.4,tropical storm,NA,55,985,NA,NA +Gustav,2002,9,11,0,35.5,-74.7,tropical storm,NA,55,983,NA,NA +Gustav,2002,9,11,6,36.8,-73,tropical storm,NA,60,977,NA,NA +Gustav,2002,9,11,12,38,-70.8,hurricane,1,70,971,NA,NA +Gustav,2002,9,11,18,40.3,-66.8,hurricane,2,85,964,NA,NA +Gustav,2002,9,12,0,43.1,-62.8,hurricane,1,80,962,NA,NA +Gustav,2002,9,12,4,45.3,-60.8,hurricane,1,80,960,NA,NA +Gustav,2002,9,12,4,45.6,-60.4,hurricane,1,80,960,NA,NA +Gustav,2002,9,12,6,46.5,-59.6,hurricane,1,75,960,NA,NA +Gustav,2002,9,12,9,47.6,-58.6,hurricane,1,65,963,NA,NA +Gustav,2002,9,12,12,48.6,-57.7,extratropical,NA,60,965,NA,NA +Gustav,2002,9,12,18,50.1,-55.5,extratropical,NA,60,967,NA,NA +Gustav,2002,9,13,0,51,-54,extratropical,NA,55,968,NA,NA +Gustav,2002,9,13,6,52.5,-52.5,extratropical,NA,50,968,NA,NA +Gustav,2002,9,13,12,54.5,-51.4,extratropical,NA,45,972,NA,NA +Gustav,2002,9,13,18,56,-49.5,extratropical,NA,45,976,NA,NA +Gustav,2002,9,14,0,57,-51.5,extratropical,NA,40,982,NA,NA +Gustav,2002,9,14,6,58,-52.5,extratropical,NA,35,984,NA,NA +Gustav,2002,9,14,12,59.5,-53.5,extratropical,NA,30,989,NA,NA +Gustav,2002,9,14,18,61,-54,extratropical,NA,30,992,NA,NA +Gustav,2002,9,15,0,62.5,-54.5,extratropical,NA,20,998,NA,NA +Hanna,2002,9,12,0,26.3,-86.6,tropical depression,NA,30,1001,NA,NA +Hanna,2002,9,12,6,26.7,-86.4,tropical storm,NA,35,1001,NA,NA +Hanna,2002,9,12,12,27,-86.7,tropical storm,NA,35,1001,NA,NA +Hanna,2002,9,12,18,27.1,-87.5,tropical storm,NA,35,1001,NA,NA +Hanna,2002,9,13,0,26.7,-88,tropical storm,NA,35,1001,NA,NA +Hanna,2002,9,13,6,26.9,-88.8,tropical storm,NA,40,1002,NA,NA +Hanna,2002,9,13,12,27.4,-89.3,tropical storm,NA,45,1002,NA,NA +Hanna,2002,9,13,18,27.7,-89.3,tropical storm,NA,45,1003,NA,NA +Hanna,2002,9,14,0,28,-89.2,tropical storm,NA,50,1001,NA,NA +Hanna,2002,9,14,6,28.7,-89.1,tropical storm,NA,50,1003,NA,NA +Hanna,2002,9,14,8,29.1,-89.1,tropical storm,NA,50,1003,NA,NA +Hanna,2002,9,14,12,30,-88.8,tropical storm,NA,50,1003,NA,NA +Hanna,2002,9,14,15,30.4,-88.4,tropical storm,NA,50,1002,NA,NA +Hanna,2002,9,14,18,30.8,-88,tropical depression,NA,30,1005,NA,NA +Hanna,2002,9,15,0,31.5,-87,tropical depression,NA,20,1009,NA,NA +Hanna,2002,9,15,6,32,-86,tropical depression,NA,20,1011,NA,NA +Hanna,2002,9,15,12,33,-85,tropical depression,NA,20,1014,NA,NA +Isidore,2002,9,14,18,10,-60.5,tropical depression,NA,25,1009,NA,NA +Isidore,2002,9,15,0,10.2,-62.4,tropical depression,NA,25,1009,NA,NA +Isidore,2002,9,15,6,10.6,-64.3,tropical depression,NA,25,1009,NA,NA +Isidore,2002,9,15,12,11.2,-66.4,tropical depression,NA,25,1009,NA,NA +Isidore,2002,9,15,18,12.3,-68.5,tropical wave,NA,25,1009,NA,NA +Isidore,2002,9,16,0,14.2,-70.5,tropical wave,NA,20,1009,NA,NA +Isidore,2002,9,16,6,15,-71.9,tropical wave,NA,20,1008,NA,NA +Isidore,2002,9,16,12,15.5,-73.2,tropical wave,NA,20,1008,NA,NA +Isidore,2002,9,16,18,15.7,-74.5,tropical wave,NA,20,1008,NA,NA +Isidore,2002,9,17,0,15.8,-75.3,tropical wave,NA,25,1008,NA,NA +Isidore,2002,9,17,6,15.8,-76.1,tropical wave,NA,25,1008,NA,NA +Isidore,2002,9,17,12,15.9,-76.8,tropical depression,NA,30,1008,NA,NA +Isidore,2002,9,17,18,16.3,-77.4,tropical depression,NA,30,1006,NA,NA +Isidore,2002,9,18,0,16.7,-77.7,tropical depression,NA,30,1006,NA,NA +Isidore,2002,9,18,6,17.1,-78.1,tropical storm,NA,35,1006,NA,NA +Isidore,2002,9,18,12,17.7,-78.5,tropical storm,NA,40,1004,NA,NA +Isidore,2002,9,18,18,18.7,-78.6,tropical storm,NA,45,1001,NA,NA +Isidore,2002,9,19,0,19.3,-79.3,tropical storm,NA,50,998,NA,NA +Isidore,2002,9,19,6,19.7,-80.4,tropical storm,NA,50,990,NA,NA +Isidore,2002,9,19,12,19.9,-80.9,tropical storm,NA,60,990,NA,NA +Isidore,2002,9,19,18,20.4,-81.7,hurricane,1,65,983,NA,NA +Isidore,2002,9,20,0,20.7,-82.3,hurricane,1,75,979,NA,NA +Isidore,2002,9,20,6,21.1,-83,hurricane,2,90,967,NA,NA +Isidore,2002,9,20,12,21.5,-83.5,hurricane,2,85,966,NA,NA +Isidore,2002,9,20,18,21.8,-84,hurricane,1,75,965,NA,NA +Isidore,2002,9,20,21,22,-84.1,hurricane,1,75,964,NA,NA +Isidore,2002,9,21,0,22.1,-84.3,hurricane,1,75,964,NA,NA +Isidore,2002,9,21,6,22.3,-85.1,hurricane,2,85,964,NA,NA +Isidore,2002,9,21,12,22,-85.8,hurricane,3,100,955,NA,NA +Isidore,2002,9,21,18,21.9,-86.1,hurricane,3,110,946,NA,NA +Isidore,2002,9,22,0,22.1,-86.5,hurricane,3,110,947,NA,NA +Isidore,2002,9,22,6,22,-87.4,hurricane,3,110,936,NA,NA +Isidore,2002,9,22,12,21.9,-88.2,hurricane,3,110,934,NA,NA +Isidore,2002,9,22,18,21.6,-88.9,hurricane,3,110,935,NA,NA +Isidore,2002,9,22,21,21.3,-89.3,hurricane,3,110,936,NA,NA +Isidore,2002,9,23,0,21,-89.4,hurricane,3,100,950,NA,NA +Isidore,2002,9,23,6,20.6,-89.6,hurricane,1,70,952,NA,NA +Isidore,2002,9,23,12,20.1,-89.6,tropical storm,NA,60,960,NA,NA +Isidore,2002,9,23,18,20.3,-89.4,tropical storm,NA,50,968,NA,NA +Isidore,2002,9,24,0,20.5,-89.3,tropical storm,NA,35,980,NA,NA +Isidore,2002,9,24,6,21,-89.5,tropical storm,NA,45,985,NA,NA +Isidore,2002,9,24,12,21.7,-89.7,tropical storm,NA,50,987,NA,NA +Isidore,2002,9,24,18,22.1,-89.8,tropical storm,NA,50,988,NA,NA +Isidore,2002,9,25,0,23,-89.7,tropical storm,NA,50,987,NA,NA +Isidore,2002,9,25,6,24.2,-89.7,tropical storm,NA,50,987,NA,NA +Isidore,2002,9,25,12,25.4,-90.2,tropical storm,NA,50,990,NA,NA +Isidore,2002,9,25,18,26.3,-90.4,tropical storm,NA,55,988,NA,NA +Isidore,2002,9,26,0,27.5,-90.3,tropical storm,NA,55,989,NA,NA +Isidore,2002,9,26,6,29.1,-90.3,tropical storm,NA,55,984,NA,NA +Isidore,2002,9,26,12,30,-89.9,tropical storm,NA,55,985,NA,NA +Isidore,2002,9,26,18,32.2,-89.8,tropical storm,NA,40,988,NA,NA +Isidore,2002,9,27,0,33,-89,tropical depression,NA,20,992,NA,NA +Isidore,2002,9,27,6,35,-86.5,tropical depression,NA,20,995,NA,NA +Isidore,2002,9,27,12,39.1,-82.9,tropical depression,NA,20,998,NA,NA +Isidore,2002,9,27,18,40.9,-79.5,extratropical,NA,20,999,NA,NA +Josephine,2002,9,17,12,32.7,-52.4,tropical depression,NA,30,1016,NA,NA +Josephine,2002,9,17,18,33.2,-52.7,tropical depression,NA,30,1015,NA,NA +Josephine,2002,9,18,0,33.7,-52.7,tropical depression,NA,30,1014,NA,NA +Josephine,2002,9,18,6,34.7,-52.7,tropical storm,NA,35,1009,NA,NA +Josephine,2002,9,18,12,35.5,-52,tropical storm,NA,35,1009,NA,NA +Josephine,2002,9,18,18,36.6,-50.5,tropical storm,NA,35,1009,NA,NA +Josephine,2002,9,19,0,38,-48.8,tropical storm,NA,35,1009,NA,NA +Josephine,2002,9,19,6,39.5,-46.7,tropical storm,NA,35,1009,NA,NA +Josephine,2002,9,19,12,41.5,-43.3,extratropical,NA,50,1004,NA,NA +Kyle,2002,9,20,18,28.3,-51.8,subtropical depression,NA,25,1007,NA,NA +Kyle,2002,9,21,0,29.3,-51.4,subtropical depression,NA,30,1007,NA,NA +Kyle,2002,9,21,6,30.4,-51.6,subtropical storm,NA,35,1007,NA,NA +Kyle,2002,9,21,12,31,-51.6,subtropical storm,NA,35,1007,NA,NA +Kyle,2002,9,21,18,31.7,-51.3,subtropical storm,NA,40,1006,NA,NA +Kyle,2002,9,22,0,32.4,-50.9,subtropical storm,NA,45,1004,NA,NA +Kyle,2002,9,22,6,32.8,-50.5,subtropical storm,NA,40,1006,NA,NA +Kyle,2002,9,22,12,33.2,-49.9,subtropical storm,NA,40,1006,NA,NA +Kyle,2002,9,22,18,33.3,-49.5,subtropical storm,NA,40,1006,NA,NA +Kyle,2002,9,23,0,33.2,-49.1,tropical storm,NA,35,1007,NA,NA +Kyle,2002,9,23,6,32.7,-49.4,tropical storm,NA,35,1007,NA,NA +Kyle,2002,9,23,12,32.3,-49.5,tropical storm,NA,35,1005,NA,NA +Kyle,2002,9,23,18,31.9,-49.6,tropical storm,NA,40,1003,NA,NA +Kyle,2002,9,24,0,31.4,-50,tropical storm,NA,40,1003,NA,NA +Kyle,2002,9,24,6,31,-50.4,tropical storm,NA,45,1000,NA,NA +Kyle,2002,9,24,12,30.6,-50.7,tropical storm,NA,50,997,NA,NA +Kyle,2002,9,24,18,30.3,-51.1,tropical storm,NA,55,994,NA,NA +Kyle,2002,9,25,0,30,-52.1,tropical storm,NA,55,994,NA,NA +Kyle,2002,9,25,6,29.7,-53.7,tropical storm,NA,55,994,NA,NA +Kyle,2002,9,25,12,29.3,-54.4,tropical storm,NA,60,990,NA,NA +Kyle,2002,9,25,18,29,-55.3,hurricane,1,65,987,NA,NA +Kyle,2002,9,26,0,28.6,-56.6,hurricane,1,65,987,NA,NA +Kyle,2002,9,26,6,28.2,-57.5,hurricane,1,70,984,NA,NA +Kyle,2002,9,26,12,27.9,-58.3,hurricane,1,75,982,NA,NA +Kyle,2002,9,26,18,27.8,-59,hurricane,1,75,981,NA,NA +Kyle,2002,9,27,0,27.5,-59.5,hurricane,1,75,980,NA,NA +Kyle,2002,9,27,6,27.1,-60,hurricane,1,75,982,NA,NA +Kyle,2002,9,27,12,27,-60.4,hurricane,1,75,982,NA,NA +Kyle,2002,9,27,18,26.8,-60.8,hurricane,1,70,984,NA,NA +Kyle,2002,9,28,0,26.5,-61.4,hurricane,1,70,984,NA,NA +Kyle,2002,9,28,6,26.3,-62.3,hurricane,1,65,987,NA,NA +Kyle,2002,9,28,12,26.5,-62.9,tropical storm,NA,60,990,NA,NA +Kyle,2002,9,28,18,26.7,-63.2,tropical storm,NA,50,997,NA,NA +Kyle,2002,9,29,0,27.1,-63.7,tropical storm,NA,45,1000,NA,NA +Kyle,2002,9,29,6,27.2,-64.4,tropical storm,NA,40,1002,NA,NA +Kyle,2002,9,29,12,27.7,-64.7,tropical storm,NA,40,1002,NA,NA +Kyle,2002,9,29,18,28.1,-64.7,tropical storm,NA,40,1002,NA,NA +Kyle,2002,9,30,0,28.7,-64.6,tropical storm,NA,40,1002,NA,NA +Kyle,2002,9,30,6,29.1,-64.7,tropical storm,NA,35,1003,NA,NA +Kyle,2002,9,30,12,29,-65.5,tropical storm,NA,35,1004,NA,NA +Kyle,2002,9,30,18,27.8,-66.7,tropical depression,NA,30,1005,NA,NA +Kyle,2002,10,1,0,28.2,-66.8,tropical depression,NA,30,1005,NA,NA +Kyle,2002,10,1,6,28.5,-66.8,tropical depression,NA,30,1008,NA,NA +Kyle,2002,10,1,12,28.5,-67.2,tropical storm,NA,35,1005,NA,NA +Kyle,2002,10,1,18,28.5,-67.5,tropical storm,NA,40,1002,NA,NA +Kyle,2002,10,2,0,28.4,-67.7,tropical storm,NA,45,1000,NA,NA +Kyle,2002,10,2,6,28.5,-67.8,tropical storm,NA,45,1000,NA,NA +Kyle,2002,10,2,12,28.8,-67.6,tropical storm,NA,50,997,NA,NA +Kyle,2002,10,2,18,29,-66.9,tropical storm,NA,55,994,NA,NA +Kyle,2002,10,3,0,29.1,-66.7,tropical storm,NA,55,994,NA,NA +Kyle,2002,10,3,6,29,-66.6,tropical storm,NA,55,994,NA,NA +Kyle,2002,10,3,12,29,-67.2,tropical storm,NA,50,1000,NA,NA +Kyle,2002,10,3,18,29.3,-67.7,tropical storm,NA,45,1000,NA,NA +Kyle,2002,10,4,0,29.4,-68,tropical storm,NA,45,1000,NA,NA +Kyle,2002,10,4,6,29.6,-68.4,tropical storm,NA,35,1000,NA,NA +Kyle,2002,10,4,12,30.1,-69.5,tropical storm,NA,35,1004,NA,NA +Kyle,2002,10,4,18,30.6,-70.2,tropical storm,NA,35,1004,NA,NA +Kyle,2002,10,5,0,31.1,-70.9,tropical storm,NA,35,1004,NA,NA +Kyle,2002,10,5,6,31.6,-71.6,tropical depression,NA,30,1006,NA,NA +Kyle,2002,10,5,12,32.3,-71.3,tropical depression,NA,30,1005,NA,NA +Kyle,2002,10,5,18,32.9,-70.8,tropical depression,NA,30,1005,NA,NA +Kyle,2002,10,6,0,33.2,-70.1,tropical depression,NA,30,1006,NA,NA +Kyle,2002,10,6,6,33.6,-69.7,tropical depression,NA,30,1008,NA,NA +Kyle,2002,10,6,12,33.3,-69.7,tropical storm,NA,35,1007,NA,NA +Kyle,2002,10,6,18,32.8,-69.7,tropical storm,NA,35,1006,NA,NA +Kyle,2002,10,7,0,32.6,-69.7,tropical storm,NA,35,1006,NA,NA +Kyle,2002,10,7,6,32.6,-70.4,tropical storm,NA,35,1006,NA,NA +Kyle,2002,10,7,12,32.6,-70.8,tropical storm,NA,35,1006,NA,NA +Kyle,2002,10,7,18,32.7,-70.9,tropical storm,NA,35,1006,NA,NA +Kyle,2002,10,8,0,32.6,-71,tropical storm,NA,35,1006,NA,NA +Kyle,2002,10,8,6,32.1,-71.2,tropical storm,NA,35,1006,NA,NA +Kyle,2002,10,8,12,31.4,-71.3,tropical storm,NA,35,1006,NA,NA +Kyle,2002,10,8,18,30.7,-71.9,tropical depression,NA,30,1009,NA,NA +Kyle,2002,10,9,0,29.8,-72.4,tropical depression,NA,30,1010,NA,NA +Kyle,2002,10,9,6,29,-73.3,tropical depression,NA,30,1009,NA,NA +Kyle,2002,10,9,12,28.7,-74,tropical depression,NA,30,1010,NA,NA +Kyle,2002,10,9,18,28.5,-74.8,tropical depression,NA,25,1011,NA,NA +Kyle,2002,10,10,0,28.4,-75.8,tropical depression,NA,25,1010,NA,NA +Kyle,2002,10,10,6,28.3,-77,tropical depression,NA,25,1010,NA,NA +Kyle,2002,10,10,12,28.4,-78.1,tropical depression,NA,25,1010,NA,NA +Kyle,2002,10,10,18,28.9,-79.5,tropical depression,NA,30,1010,NA,NA +Kyle,2002,10,11,0,29.8,-80.2,tropical depression,NA,30,1009,NA,NA +Kyle,2002,10,11,6,30.7,-80.8,tropical storm,NA,35,1008,NA,NA +Kyle,2002,10,11,12,31.8,-80.7,tropical storm,NA,35,1008,NA,NA +Kyle,2002,10,11,17,33,-79.5,tropical storm,NA,35,1011,NA,NA +Kyle,2002,10,11,18,33.2,-79.3,tropical storm,NA,35,1011,NA,NA +Kyle,2002,10,11,22,33.9,-78.4,tropical storm,NA,35,1011,NA,NA +Kyle,2002,10,12,0,34.2,-78,tropical depression,NA,30,1012,NA,NA +Kyle,2002,10,12,6,35.4,-75.9,tropical storm,NA,40,1009,NA,NA +Kyle,2002,10,12,12,36.7,-74.1,tropical storm,NA,40,1009,NA,NA +Lili,2002,9,21,18,10.2,-44.6,tropical depression,NA,25,1009,NA,NA +Lili,2002,9,22,0,10.3,-46.5,tropical depression,NA,30,1007,NA,NA +Lili,2002,9,22,6,10.8,-48.5,tropical depression,NA,30,1006,NA,NA +Lili,2002,9,22,12,11.2,-50.4,tropical depression,NA,30,1006,NA,NA +Lili,2002,9,22,18,11.8,-52.2,tropical depression,NA,30,1005,NA,NA +Lili,2002,9,23,0,12.1,-54.6,tropical storm,NA,35,1005,NA,NA +Lili,2002,9,23,6,12.2,-56.8,tropical storm,NA,40,1005,NA,NA +Lili,2002,9,23,12,12.4,-58.7,tropical storm,NA,45,1004,NA,NA +Lili,2002,9,23,18,12.5,-60.4,tropical storm,NA,50,1005,NA,NA +Lili,2002,9,24,0,12.7,-62.1,tropical storm,NA,50,1006,NA,NA +Lili,2002,9,24,6,12.8,-63.7,tropical storm,NA,50,1006,NA,NA +Lili,2002,9,24,12,13,-64.9,tropical storm,NA,60,1004,NA,NA +Lili,2002,9,24,18,13.2,-66,tropical storm,NA,50,1007,NA,NA +Lili,2002,9,25,0,13.5,-66.9,tropical storm,NA,35,1008,NA,NA +Lili,2002,9,25,6,13.7,-67.5,tropical storm,NA,35,1008,NA,NA +Lili,2002,9,25,12,14,-68.2,tropical wave,NA,40,1008,NA,NA +Lili,2002,9,25,18,14.2,-68.9,tropical wave,NA,40,1007,NA,NA +Lili,2002,9,26,0,14.5,-69.8,tropical wave,NA,35,1007,NA,NA +Lili,2002,9,26,6,14.9,-71,tropical wave,NA,35,1007,NA,NA +Lili,2002,9,26,12,15.3,-72.2,tropical wave,NA,30,1007,NA,NA +Lili,2002,9,26,18,15.6,-73,tropical wave,NA,30,1006,NA,NA +Lili,2002,9,27,0,15.7,-73.5,tropical depression,NA,30,1006,NA,NA +Lili,2002,9,27,6,15.9,-74,tropical depression,NA,30,1006,NA,NA +Lili,2002,9,27,12,16.1,-74.6,tropical storm,NA,35,1003,NA,NA +Lili,2002,9,27,18,16.7,-75,tropical storm,NA,40,1004,NA,NA +Lili,2002,9,28,0,17.4,-75.1,tropical storm,NA,45,999,NA,NA +Lili,2002,9,28,6,17.5,-75.6,tropical storm,NA,45,999,NA,NA +Lili,2002,9,28,12,18.1,-75.4,tropical storm,NA,45,1002,NA,NA +Lili,2002,9,28,18,18.5,-75.7,tropical storm,NA,45,1003,NA,NA +Lili,2002,9,29,0,18.8,-76.1,tropical storm,NA,45,1001,NA,NA +Lili,2002,9,29,6,18.8,-76.8,tropical storm,NA,40,999,NA,NA +Lili,2002,9,29,12,18.7,-77.2,tropical storm,NA,45,994,NA,NA +Lili,2002,9,29,18,18.7,-77.6,tropical storm,NA,50,994,NA,NA +Lili,2002,9,30,0,19,-78.1,tropical storm,NA,55,993,NA,NA +Lili,2002,9,30,6,19.1,-78.7,tropical storm,NA,60,990,NA,NA +Lili,2002,9,30,12,19.6,-79.6,hurricane,1,65,986,NA,NA +Lili,2002,9,30,14,19.7,-79.8,hurricane,1,65,986,NA,NA +Lili,2002,9,30,18,20,-80.3,hurricane,1,65,984,NA,NA +Lili,2002,10,1,0,20.5,-81.1,hurricane,1,70,978,NA,NA +Lili,2002,10,1,6,21,-82.2,hurricane,1,75,970,NA,NA +Lili,2002,10,1,11,21.3,-83,hurricane,2,90,971,NA,NA +Lili,2002,10,1,12,21.6,-83.2,hurricane,2,90,971,NA,NA +Lili,2002,10,1,14,22.1,-84,hurricane,2,90,971,NA,NA +Lili,2002,10,1,18,22.4,-84.4,hurricane,2,90,971,NA,NA +Lili,2002,10,2,0,23,-85.7,hurricane,2,90,967,NA,NA +Lili,2002,10,2,6,23.6,-87.2,hurricane,3,100,962,NA,NA +Lili,2002,10,2,12,24.4,-88.3,hurricane,3,110,952,NA,NA +Lili,2002,10,2,18,25.4,-89.5,hurricane,4,120,941,NA,NA +Lili,2002,10,2,20,25.9,-89.9,hurricane,4,125,938,NA,NA +Lili,2002,10,3,0,26.7,-90.3,hurricane,4,125,940,NA,NA +Lili,2002,10,3,6,28.1,-91.4,hurricane,3,105,957,NA,NA +Lili,2002,10,3,12,29.2,-92.1,hurricane,1,80,962,NA,NA +Lili,2002,10,3,13,29.5,-92.2,hurricane,1,80,963,NA,NA +Lili,2002,10,3,18,30.5,-92.4,tropical storm,NA,60,976,NA,NA +Lili,2002,10,4,0,31.9,-92.1,tropical storm,NA,40,985,NA,NA +Lili,2002,10,4,6,33.5,-91.4,tropical depression,NA,30,994,NA,NA +Lili,2002,10,4,12,35.8,-90,tropical depression,NA,25,997,NA,NA +AL142002,2002,10,14,12,16.9,-82.6,tropical depression,NA,30,1008,NA,NA +AL142002,2002,10,14,18,17.2,-83.1,tropical depression,NA,30,1005,NA,NA +AL142002,2002,10,15,0,17.1,-83.2,tropical depression,NA,30,1004,NA,NA +AL142002,2002,10,15,6,17.5,-83,tropical depression,NA,30,1004,NA,NA +AL142002,2002,10,15,12,17.9,-82.8,tropical depression,NA,30,1004,NA,NA +AL142002,2002,10,15,18,18.6,-82.5,tropical depression,NA,30,1002,NA,NA +AL142002,2002,10,16,0,19.7,-82.2,tropical depression,NA,30,1003,NA,NA +AL142002,2002,10,16,6,20.5,-81.6,tropical depression,NA,30,1003,NA,NA +AL142002,2002,10,16,12,21.5,-81,tropical depression,NA,30,1005,NA,NA +AL142002,2002,10,16,16,22,-80.7,tropical depression,NA,25,1006,NA,NA +AL142002,2002,10,16,18,22.4,-80.5,tropical depression,NA,25,1006,NA,NA +Ana,2003,4,18,0,29.1,-66.2,extratropical,NA,30,1008,NA,NA +Ana,2003,4,18,6,29.9,-66,extratropical,NA,30,1008,NA,NA +Ana,2003,4,18,12,30.8,-65.8,extratropical,NA,30,1008,NA,NA +Ana,2003,4,18,18,31.9,-66.3,extratropical,NA,30,1007,NA,NA +Ana,2003,4,19,0,33,-66.9,extratropical,NA,30,1007,NA,NA +Ana,2003,4,19,6,33.8,-67.6,extratropical,NA,35,1006,NA,NA +Ana,2003,4,19,12,34.5,-68.6,extratropical,NA,35,1006,NA,NA +Ana,2003,4,19,18,34.3,-69.1,extratropical,NA,35,1006,NA,NA +Ana,2003,4,20,0,33.6,-69,extratropical,NA,40,1005,NA,NA +Ana,2003,4,20,6,32.7,-68.9,subtropical storm,NA,40,1003,NA,NA +Ana,2003,4,20,12,32,-68.2,subtropical storm,NA,45,1000,NA,NA +Ana,2003,4,20,18,31.7,-67.3,subtropical storm,NA,45,998,NA,NA +Ana,2003,4,21,0,31.4,-66.4,tropical storm,NA,50,995,NA,NA +Ana,2003,4,21,6,30.6,-65.8,tropical storm,NA,50,995,NA,NA +Ana,2003,4,21,12,30,-64.8,tropical storm,NA,50,995,NA,NA +Ana,2003,4,21,18,29.4,-63.1,tropical storm,NA,50,994,NA,NA +Ana,2003,4,22,0,29.4,-61.5,tropical storm,NA,50,994,NA,NA +Ana,2003,4,22,6,29.5,-60.1,tropical storm,NA,50,994,NA,NA +Ana,2003,4,22,12,29.6,-58.5,tropical storm,NA,45,995,NA,NA +Ana,2003,4,22,18,29.7,-56.6,tropical storm,NA,45,996,NA,NA +Ana,2003,4,23,0,30,-54.7,tropical storm,NA,40,998,NA,NA +Ana,2003,4,23,6,30.6,-53,tropical storm,NA,40,1000,NA,NA +Ana,2003,4,23,12,31.4,-51.5,tropical storm,NA,40,1000,NA,NA +Ana,2003,4,23,18,31.9,-50.6,tropical storm,NA,35,1001,NA,NA +Ana,2003,4,24,0,32.1,-49.6,tropical storm,NA,35,1003,NA,NA +Ana,2003,4,24,6,32,-48.7,extratropical,NA,35,1004,NA,NA +Ana,2003,4,24,12,31.8,-47.8,extratropical,NA,35,1005,NA,NA +Ana,2003,4,24,18,31.5,-46.6,extratropical,NA,35,1005,NA,NA +Ana,2003,4,25,0,31.5,-45.4,extratropical,NA,35,1005,NA,NA +Ana,2003,4,25,6,31.6,-44.2,extratropical,NA,35,1004,NA,NA +Ana,2003,4,25,12,31.7,-43.1,extratropical,NA,30,1003,NA,NA +Ana,2003,4,25,18,31.8,-42.1,extratropical,NA,30,1004,NA,NA +Ana,2003,4,26,0,31.9,-40.8,extratropical,NA,30,1005,NA,NA +Ana,2003,4,26,6,32.3,-38.4,extratropical,NA,35,1002,NA,NA +Ana,2003,4,26,12,32.9,-35.6,extratropical,NA,35,1002,NA,NA +Ana,2003,4,26,18,33.6,-32.8,extratropical,NA,40,1002,NA,NA +Ana,2003,4,27,0,34.4,-29.2,extratropical,NA,40,1002,NA,NA +Ana,2003,4,27,6,35.3,-25.8,extratropical,NA,40,999,NA,NA +Ana,2003,4,27,12,36.1,-22.4,extratropical,NA,40,1000,NA,NA +AL022003,2003,6,11,0,9.5,-40.8,tropical depression,NA,30,1009,NA,NA +AL022003,2003,6,11,6,9.6,-42.5,tropical depression,NA,30,1008,NA,NA +AL022003,2003,6,11,12,9.7,-44.2,tropical depression,NA,30,1008,NA,NA +AL022003,2003,6,11,18,9.7,-45.9,tropical depression,NA,30,1010,NA,NA +Bill,2003,6,28,6,19.5,-89,other low,NA,20,1009,NA,NA +Bill,2003,6,28,12,20,-89.3,other low,NA,20,1008,NA,NA +Bill,2003,6,28,18,20.3,-89.4,other low,NA,20,1008,NA,NA +Bill,2003,6,29,0,21,-89.8,other low,NA,20,1008,NA,NA +Bill,2003,6,29,6,22,-90,tropical depression,NA,30,1007,NA,NA +Bill,2003,6,29,12,23.4,-90.5,tropical storm,NA,35,1007,NA,NA +Bill,2003,6,29,18,24.6,-91.1,tropical storm,NA,40,1009,NA,NA +Bill,2003,6,30,0,25.9,-91.3,tropical storm,NA,45,1008,NA,NA +Bill,2003,6,30,6,27.1,-91.5,tropical storm,NA,45,1007,NA,NA +Bill,2003,6,30,12,28.2,-91.5,tropical storm,NA,50,1002,NA,NA +Bill,2003,6,30,18,29.1,-91,tropical storm,NA,50,997,NA,NA +Bill,2003,6,30,19,29.3,-91,tropical storm,NA,50,997,NA,NA +Bill,2003,7,1,0,30.4,-90.3,tropical storm,NA,45,998,NA,NA +Bill,2003,7,1,6,31.6,-89.3,tropical depression,NA,30,1003,NA,NA +Bill,2003,7,1,12,32.7,-88.4,tropical depression,NA,25,1004,NA,NA +Bill,2003,7,1,18,33.6,-87,tropical depression,NA,20,1007,NA,NA +Bill,2003,7,2,0,34.1,-86,tropical depression,NA,20,1007,NA,NA +Bill,2003,7,2,6,35,-84.5,tropical depression,NA,20,1007,NA,NA +Bill,2003,7,2,12,35.6,-83.5,tropical depression,NA,20,1009,NA,NA +Bill,2003,7,2,18,36.5,-82,extratropical,NA,20,1009,NA,NA +Bill,2003,7,3,0,37.3,-79.5,extratropical,NA,20,1009,NA,NA +Claudette,2003,7,7,0,11.1,-53.5,tropical wave,NA,25,1010,NA,NA +Claudette,2003,7,7,6,11.8,-55.3,tropical wave,NA,30,1010,NA,NA +Claudette,2003,7,7,12,12.6,-57.5,tropical wave,NA,30,1010,NA,NA +Claudette,2003,7,7,18,13.2,-59.8,tropical wave,NA,35,1010,NA,NA +Claudette,2003,7,8,0,13.7,-62,tropical wave,NA,35,1009,NA,NA +Claudette,2003,7,8,6,14,-64.8,tropical wave,NA,40,1009,NA,NA +Claudette,2003,7,8,12,14.4,-67.6,tropical wave,NA,40,1009,NA,NA +Claudette,2003,7,8,18,14.8,-70,tropical storm,NA,45,1006,NA,NA +Claudette,2003,7,9,0,15,-72,tropical storm,NA,50,1001,NA,NA +Claudette,2003,7,9,6,15.1,-74.4,tropical storm,NA,60,1003,NA,NA +Claudette,2003,7,9,12,15.3,-76.5,tropical storm,NA,55,1004,NA,NA +Claudette,2003,7,9,18,15.8,-78.6,tropical storm,NA,55,1002,NA,NA +Claudette,2003,7,10,0,16.1,-80.3,tropical storm,NA,55,1002,NA,NA +Claudette,2003,7,10,6,16.6,-81.7,tropical storm,NA,55,998,NA,NA +Claudette,2003,7,10,12,17.5,-82.8,hurricane,1,70,988,NA,NA +Claudette,2003,7,10,18,18.6,-84.1,tropical storm,NA,55,1003,NA,NA +Claudette,2003,7,11,0,19.7,-85.5,tropical storm,NA,50,1010,NA,NA +Claudette,2003,7,11,6,20.4,-86.3,tropical storm,NA,50,1009,NA,NA +Claudette,2003,7,11,10,20.8,-86.9,tropical storm,NA,50,1009,NA,NA +Claudette,2003,7,11,12,21.1,-87.2,tropical storm,NA,50,1009,NA,NA +Claudette,2003,7,11,18,21.8,-88.2,tropical storm,NA,45,1009,NA,NA +Claudette,2003,7,12,0,22.6,-89.2,tropical storm,NA,45,1008,NA,NA +Claudette,2003,7,12,6,23.3,-90.2,tropical storm,NA,45,1007,NA,NA +Claudette,2003,7,12,12,23.9,-90.7,tropical storm,NA,45,1006,NA,NA +Claudette,2003,7,12,18,24.6,-90.9,tropical storm,NA,45,1008,NA,NA +Claudette,2003,7,13,0,24.9,-91.5,tropical storm,NA,45,1003,NA,NA +Claudette,2003,7,13,6,24.9,-91.9,tropical storm,NA,45,1005,NA,NA +Claudette,2003,7,13,12,25.1,-92.1,tropical storm,NA,50,999,NA,NA +Claudette,2003,7,13,18,25.3,-92.2,tropical storm,NA,50,995,NA,NA +Claudette,2003,7,14,0,25.6,-92.2,tropical storm,NA,55,991,NA,NA +Claudette,2003,7,14,6,26,-92.3,tropical storm,NA,55,993,NA,NA +Claudette,2003,7,14,12,26.7,-92.6,tropical storm,NA,55,991,NA,NA +Claudette,2003,7,14,18,27.3,-93,tropical storm,NA,60,989,NA,NA +Claudette,2003,7,15,0,27.7,-93.6,tropical storm,NA,60,988,NA,NA +Claudette,2003,7,15,6,27.9,-94.6,hurricane,1,65,987,NA,NA +Claudette,2003,7,15,12,28.3,-95.5,hurricane,1,75,982,NA,NA +Claudette,2003,7,15,15,28.3,-96.2,hurricane,1,80,979,NA,NA +Claudette,2003,7,15,18,28.6,-96.9,hurricane,1,70,984,NA,NA +Claudette,2003,7,16,0,28.5,-98.2,tropical storm,NA,50,995,NA,NA +Claudette,2003,7,16,6,28.5,-99.4,tropical storm,NA,40,999,NA,NA +Claudette,2003,7,16,12,28.8,-100.8,tropical storm,NA,35,1003,NA,NA +Claudette,2003,7,16,18,29.3,-102.6,tropical storm,NA,35,1007,NA,NA +Claudette,2003,7,17,0,29.9,-104.3,tropical depression,NA,30,1014,NA,NA +Claudette,2003,7,17,6,30.5,-106,other low,NA,25,1016,NA,NA +Claudette,2003,7,17,12,30.9,-107.7,other low,NA,25,1016,NA,NA +Danny,2003,7,16,12,30.8,-54.1,tropical depression,NA,25,1017,NA,NA +Danny,2003,7,16,18,31.7,-54.7,tropical depression,NA,30,1015,NA,NA +Danny,2003,7,17,0,32.5,-55.2,tropical storm,NA,35,1013,NA,NA +Danny,2003,7,17,6,33.4,-55.6,tropical storm,NA,45,1011,NA,NA +Danny,2003,7,17,12,34.4,-56.4,tropical storm,NA,50,1009,NA,NA +Danny,2003,7,17,18,35.3,-56.6,tropical storm,NA,55,1008,NA,NA +Danny,2003,7,18,0,36.2,-56.4,tropical storm,NA,55,1007,NA,NA +Danny,2003,7,18,6,37.1,-56,tropical storm,NA,55,1006,NA,NA +Danny,2003,7,18,12,38.1,-54.9,tropical storm,NA,60,1003,NA,NA +Danny,2003,7,18,18,39.2,-53.4,hurricane,1,65,1002,NA,NA +Danny,2003,7,19,0,40.1,-51.7,hurricane,1,65,1001,NA,NA +Danny,2003,7,19,6,41.1,-50,hurricane,1,65,1000,NA,NA +Danny,2003,7,19,12,42.1,-47.8,hurricane,1,65,1001,NA,NA +Danny,2003,7,19,18,42.7,-45.8,tropical storm,NA,60,1003,NA,NA +Danny,2003,7,20,0,42.7,-44,tropical storm,NA,55,1005,NA,NA +Danny,2003,7,20,6,42.5,-42.4,tropical storm,NA,45,1007,NA,NA +Danny,2003,7,20,12,41.9,-40.7,tropical storm,NA,40,1008,NA,NA +Danny,2003,7,20,18,40.9,-39.2,tropical depression,NA,30,1009,NA,NA +Danny,2003,7,21,0,39.8,-37.9,tropical depression,NA,30,1009,NA,NA +Danny,2003,7,21,6,38.8,-36.8,other low,NA,30,1010,NA,NA +Danny,2003,7,21,12,37.9,-36.3,other low,NA,25,1011,NA,NA +Danny,2003,7,21,18,37.1,-35.9,other low,NA,25,1013,NA,NA +Danny,2003,7,22,0,36.3,-35.8,other low,NA,25,1015,NA,NA +Danny,2003,7,22,6,35.7,-36.2,other low,NA,25,1017,NA,NA +Danny,2003,7,22,12,35.3,-36.7,other low,NA,25,1018,NA,NA +Danny,2003,7,22,18,35.1,-37.2,other low,NA,25,1019,NA,NA +Danny,2003,7,23,0,35,-37.8,other low,NA,20,1020,NA,NA +Danny,2003,7,23,6,34.9,-38.6,other low,NA,20,1020,NA,NA +Danny,2003,7,23,12,35.5,-39,other low,NA,20,1020,NA,NA +Danny,2003,7,23,18,36,-40,other low,NA,20,1020,NA,NA +Danny,2003,7,24,0,36,-40.5,other low,NA,20,1021,NA,NA +Danny,2003,7,24,6,36.6,-40.5,other low,NA,20,1021,NA,NA +Danny,2003,7,24,12,36.5,-40,other low,NA,20,1021,NA,NA +Danny,2003,7,24,18,36.4,-39.5,other low,NA,20,1021,NA,NA +Danny,2003,7,25,0,36.5,-38.9,other low,NA,20,1022,NA,NA +Danny,2003,7,25,6,36.3,-39.2,other low,NA,20,1022,NA,NA +Danny,2003,7,25,12,36,-39,other low,NA,20,1022,NA,NA +Danny,2003,7,25,18,35.5,-39,other low,NA,20,1022,NA,NA +Danny,2003,7,26,0,34.5,-39.5,other low,NA,20,1023,NA,NA +Danny,2003,7,26,6,33.8,-40,other low,NA,20,1023,NA,NA +Danny,2003,7,26,12,33,-40.5,other low,NA,20,1023,NA,NA +Danny,2003,7,26,18,32,-41,other low,NA,20,1023,NA,NA +Danny,2003,7,27,0,31,-42,other low,NA,20,1024,NA,NA +Danny,2003,7,27,6,31,-43.5,other low,NA,20,1024,NA,NA +AL062003,2003,7,19,18,12.3,-43.5,tropical depression,NA,30,1010,NA,NA +AL062003,2003,7,20,0,12.5,-45.2,tropical depression,NA,30,1010,NA,NA +AL062003,2003,7,20,6,12.7,-47,tropical depression,NA,30,1011,NA,NA +AL062003,2003,7,20,12,12.9,-48.8,tropical depression,NA,30,1011,NA,NA +AL062003,2003,7,20,18,13.2,-50.9,tropical depression,NA,30,1012,NA,NA +AL062003,2003,7,21,0,13.5,-53,tropical depression,NA,30,1012,NA,NA +AL062003,2003,7,21,6,13.8,-55.1,tropical depression,NA,30,1013,NA,NA +AL062003,2003,7,21,12,14,-57.4,tropical depression,NA,30,1012,NA,NA +AL072003,2003,7,25,12,29.3,-80.1,tropical depression,NA,25,1017,NA,NA +AL072003,2003,7,25,18,30.1,-80.5,tropical depression,NA,25,1017,NA,NA +AL072003,2003,7,26,0,30.7,-80.8,tropical depression,NA,30,1016,NA,NA +AL072003,2003,7,26,6,31.5,-81.3,tropical depression,NA,25,1018,NA,NA +AL072003,2003,7,26,12,32.3,-82,tropical depression,NA,20,1022,NA,NA +AL072003,2003,7,26,18,32.8,-82.6,tropical depression,NA,15,1022,NA,NA +AL072003,2003,7,27,0,33,-83,tropical depression,NA,15,1022,NA,NA +Erika,2003,8,14,18,26.4,-83.3,tropical storm,NA,35,1011,NA,NA +Erika,2003,8,15,0,26.6,-85.7,tropical storm,NA,40,1008,NA,NA +Erika,2003,8,15,6,26.4,-88.3,tropical storm,NA,40,1008,NA,NA +Erika,2003,8,15,12,26.1,-90.5,tropical storm,NA,45,1007,NA,NA +Erika,2003,8,15,18,26,-92.5,tropical storm,NA,50,1001,NA,NA +Erika,2003,8,16,0,25.9,-94.4,tropical storm,NA,55,995,NA,NA +Erika,2003,8,16,6,25.6,-96.2,tropical storm,NA,60,988,NA,NA +Erika,2003,8,16,10,25.3,-97.4,hurricane,1,65,986,NA,NA +Erika,2003,8,16,12,25.2,-97.6,hurricane,1,65,988,NA,NA +Erika,2003,8,16,18,24.8,-98.9,tropical storm,NA,35,1003,NA,NA +Erika,2003,8,17,0,24.7,-100.3,tropical depression,NA,25,1008,NA,NA +AL092003,2003,8,21,18,14.5,-65.5,tropical depression,NA,30,1009,NA,NA +AL092003,2003,8,22,0,15.2,-66.5,tropical depression,NA,30,1007,NA,NA +AL092003,2003,8,22,6,15.7,-67.5,tropical depression,NA,30,1008,NA,NA +AL092003,2003,8,22,12,16.2,-68.2,tropical depression,NA,30,1008,NA,NA +Fabian,2003,8,27,18,14.6,-30.7,tropical depression,NA,25,1009,NA,NA +Fabian,2003,8,28,0,14.7,-32.3,tropical depression,NA,30,1008,NA,NA +Fabian,2003,8,28,6,14.9,-34.2,tropical depression,NA,30,1008,NA,NA +Fabian,2003,8,28,12,15,-36.2,tropical storm,NA,35,1006,NA,NA +Fabian,2003,8,28,18,15.1,-38.2,tropical storm,NA,40,1004,NA,NA +Fabian,2003,8,29,0,15.2,-40.1,tropical storm,NA,45,1000,NA,NA +Fabian,2003,8,29,6,15.4,-41.8,tropical storm,NA,50,997,NA,NA +Fabian,2003,8,29,12,15.5,-43.1,tropical storm,NA,50,997,NA,NA +Fabian,2003,8,29,18,15.8,-44.3,tropical storm,NA,60,990,NA,NA +Fabian,2003,8,30,0,16.3,-45.6,hurricane,1,65,987,NA,NA +Fabian,2003,8,30,6,16.7,-46.9,hurricane,1,70,984,NA,NA +Fabian,2003,8,30,12,17,-48,hurricane,2,85,973,NA,NA +Fabian,2003,8,30,18,17.3,-49.2,hurricane,3,100,960,NA,NA +Fabian,2003,8,31,0,17.6,-50.3,hurricane,3,110,952,NA,NA +Fabian,2003,8,31,6,17.8,-51.4,hurricane,3,110,952,NA,NA +Fabian,2003,8,31,12,18,-52.5,hurricane,3,110,952,NA,NA +Fabian,2003,8,31,18,18.2,-53.5,hurricane,4,115,948,NA,NA +Fabian,2003,9,1,0,18.3,-54.3,hurricane,4,120,945,NA,NA +Fabian,2003,9,1,6,18.5,-55.3,hurricane,4,120,949,NA,NA +Fabian,2003,9,1,12,18.7,-56.3,hurricane,4,120,949,NA,NA +Fabian,2003,9,1,18,19,-57.3,hurricane,4,125,944,NA,NA +Fabian,2003,9,2,0,19.3,-58.3,hurricane,4,125,943,NA,NA +Fabian,2003,9,2,6,19.6,-59.2,hurricane,4,120,945,NA,NA +Fabian,2003,9,2,12,20.1,-59.9,hurricane,4,120,945,NA,NA +Fabian,2003,9,2,18,20.5,-60.7,hurricane,4,120,946,NA,NA +Fabian,2003,9,3,0,20.9,-61.3,hurricane,4,115,945,NA,NA +Fabian,2003,9,3,6,21.3,-61.8,hurricane,3,110,945,NA,NA +Fabian,2003,9,3,12,21.9,-62.3,hurricane,3,110,945,NA,NA +Fabian,2003,9,3,18,22.5,-62.8,hurricane,3,110,944,NA,NA +Fabian,2003,9,4,0,23.2,-63,hurricane,4,115,939,NA,NA +Fabian,2003,9,4,6,23.8,-63.3,hurricane,3,105,944,NA,NA +Fabian,2003,9,4,12,24.8,-63.8,hurricane,3,105,944,NA,NA +Fabian,2003,9,4,18,25.8,-64.3,hurricane,3,110,941,NA,NA +Fabian,2003,9,5,0,27.1,-64.6,hurricane,4,115,940,NA,NA +Fabian,2003,9,5,6,28.6,-65.1,hurricane,3,105,946,NA,NA +Fabian,2003,9,5,12,30.1,-65.3,hurricane,3,105,951,NA,NA +Fabian,2003,9,5,18,31.8,-65.3,hurricane,3,105,950,NA,NA +Fabian,2003,9,6,0,33.4,-64.7,hurricane,3,100,953,NA,NA +Fabian,2003,9,6,6,34.9,-64,hurricane,3,100,956,NA,NA +Fabian,2003,9,6,12,36,-62.4,hurricane,3,100,957,NA,NA +Fabian,2003,9,6,18,36.9,-60.4,hurricane,3,100,958,NA,NA +Fabian,2003,9,7,0,37.9,-58.2,hurricane,2,90,962,NA,NA +Fabian,2003,9,7,6,39.1,-55.7,hurricane,2,85,965,NA,NA +Fabian,2003,9,7,12,40.6,-53.4,hurricane,1,80,967,NA,NA +Fabian,2003,9,7,18,42.3,-50.7,hurricane,1,75,972,NA,NA +Fabian,2003,9,8,0,44.3,-47.9,hurricane,1,70,975,NA,NA +Fabian,2003,9,8,6,46.3,-44.7,hurricane,1,70,977,NA,NA +Fabian,2003,9,8,12,48.7,-40.8,hurricane,1,65,980,NA,NA +Fabian,2003,9,8,18,51.7,-36,extratropical,NA,65,980,NA,NA +Fabian,2003,9,9,0,54,-32,extratropical,NA,60,980,NA,NA +Fabian,2003,9,9,6,56,-29,extratropical,NA,50,982,NA,NA +Fabian,2003,9,9,12,58,-27,extratropical,NA,50,982,NA,NA +Fabian,2003,9,9,18,60,-27,extratropical,NA,40,990,NA,NA +Grace,2003,8,30,12,24.3,-92.4,tropical depression,NA,30,1008,NA,NA +Grace,2003,8,30,18,24.9,-93.3,tropical storm,NA,35,1009,NA,NA +Grace,2003,8,31,0,25.8,-94.3,tropical storm,NA,35,1009,NA,NA +Grace,2003,8,31,6,27.2,-94.9,tropical storm,NA,35,1008,NA,NA +Grace,2003,8,31,11,29.4,-95.1,tropical storm,NA,35,1007,NA,NA +Grace,2003,8,31,12,29.4,-95.2,tropical storm,NA,35,1007,NA,NA +Grace,2003,8,31,18,30.1,-95.6,tropical depression,NA,30,1009,NA,NA +Grace,2003,9,1,0,30.9,-96.4,tropical depression,NA,25,1009,NA,NA +Grace,2003,9,1,6,31.9,-96.6,tropical depression,NA,20,1010,NA,NA +Grace,2003,9,1,12,32.6,-96.5,tropical depression,NA,20,1010,NA,NA +Grace,2003,9,1,18,33.6,-95.7,tropical depression,NA,20,1011,NA,NA +Grace,2003,9,2,0,34.1,-95,tropical depression,NA,15,1011,NA,NA +Grace,2003,9,2,6,34.6,-94.5,tropical depression,NA,15,1013,NA,NA +Henri,2003,9,3,18,27.4,-87.7,tropical depression,NA,25,1013,NA,NA +Henri,2003,9,4,0,27.6,-87.8,tropical depression,NA,25,1011,NA,NA +Henri,2003,9,4,6,27.8,-87.6,tropical depression,NA,25,1009,NA,NA +Henri,2003,9,4,12,27.8,-87.2,tropical depression,NA,30,1010,NA,NA +Henri,2003,9,4,18,27.8,-86.3,tropical depression,NA,30,1002,NA,NA +Henri,2003,9,5,0,27.6,-85.8,tropical depression,NA,30,1004,NA,NA +Henri,2003,9,5,6,27.7,-85.1,tropical storm,NA,35,1000,NA,NA +Henri,2003,9,5,12,28.1,-84.4,tropical storm,NA,40,997,NA,NA +Henri,2003,9,5,18,28.3,-84.2,tropical storm,NA,50,997,NA,NA +Henri,2003,9,6,0,27.9,-83.9,tropical depression,NA,30,1002,NA,NA +Henri,2003,9,6,6,27.7,-83.5,tropical depression,NA,30,1005,NA,NA +Henri,2003,9,6,9,27.9,-82.8,tropical depression,NA,30,1006,NA,NA +Henri,2003,9,6,12,28.4,-81.8,tropical depression,NA,25,1007,NA,NA +Henri,2003,9,6,18,29.2,-80.4,tropical depression,NA,25,1006,NA,NA +Henri,2003,9,7,0,30,-79.5,tropical depression,NA,30,1006,NA,NA +Henri,2003,9,7,6,30.5,-79.2,tropical depression,NA,30,1008,NA,NA +Henri,2003,9,7,12,30.8,-78.5,tropical depression,NA,30,1006,NA,NA +Henri,2003,9,7,18,31.3,-77.9,tropical depression,NA,30,1006,NA,NA +Henri,2003,9,8,0,31.7,-77.1,tropical depression,NA,30,1006,NA,NA +Henri,2003,9,8,6,32.1,-76.5,tropical depression,NA,30,1007,NA,NA +Henri,2003,9,8,12,32.5,-75.9,tropical depression,NA,30,1006,NA,NA +Henri,2003,9,8,18,32.9,-75.3,extratropical,NA,25,1006,NA,NA +Isabel,2003,9,6,0,13.8,-31.4,tropical depression,NA,30,1009,NA,NA +Isabel,2003,9,6,6,13.9,-32.7,tropical storm,NA,35,1005,NA,NA +Isabel,2003,9,6,12,13.6,-33.9,tropical storm,NA,40,1003,NA,NA +Isabel,2003,9,6,18,13.4,-34.9,tropical storm,NA,45,1000,NA,NA +Isabel,2003,9,7,0,13.5,-35.8,tropical storm,NA,55,994,NA,NA +Isabel,2003,9,7,6,13.9,-36.5,tropical storm,NA,60,991,NA,NA +Isabel,2003,9,7,12,14.4,-37.3,hurricane,1,65,987,NA,NA +Isabel,2003,9,7,18,15.2,-38.5,hurricane,1,70,984,NA,NA +Isabel,2003,9,8,0,15.8,-39.7,hurricane,1,80,976,NA,NA +Isabel,2003,9,8,6,16.5,-40.9,hurricane,2,95,966,NA,NA +Isabel,2003,9,8,12,17.1,-42,hurricane,3,110,952,NA,NA +Isabel,2003,9,8,18,17.6,-43.1,hurricane,3,110,952,NA,NA +Isabel,2003,9,9,0,18.2,-44.1,hurricane,4,115,948,NA,NA +Isabel,2003,9,9,6,18.9,-45.2,hurricane,4,115,948,NA,NA +Isabel,2003,9,9,12,19.4,-46.3,hurricane,4,115,948,NA,NA +Isabel,2003,9,9,18,20,-47.3,hurricane,4,115,948,NA,NA +Isabel,2003,9,10,0,20.5,-48.3,hurricane,3,110,952,NA,NA +Isabel,2003,9,10,6,20.9,-49.4,hurricane,3,110,952,NA,NA +Isabel,2003,9,10,12,21.1,-50.4,hurricane,4,115,948,NA,NA +Isabel,2003,9,10,18,21.1,-51.4,hurricane,4,120,942,NA,NA +Isabel,2003,9,11,0,21.2,-52.3,hurricane,4,125,935,NA,NA +Isabel,2003,9,11,6,21.3,-53.2,hurricane,4,125,935,NA,NA +Isabel,2003,9,11,12,21.4,-54,hurricane,4,135,925,NA,NA +Isabel,2003,9,11,18,21.5,-54.8,hurricane,5,145,915,NA,NA +Isabel,2003,9,12,0,21.6,-55.7,hurricane,5,140,920,NA,NA +Isabel,2003,9,12,6,21.7,-56.6,hurricane,5,140,920,NA,NA +Isabel,2003,9,12,12,21.6,-57.4,hurricane,5,140,920,NA,NA +Isabel,2003,9,12,18,21.7,-58.2,hurricane,5,140,920,NA,NA +Isabel,2003,9,13,0,21.8,-59.1,hurricane,4,135,925,NA,NA +Isabel,2003,9,13,6,21.9,-60.1,hurricane,4,130,935,NA,NA +Isabel,2003,9,13,12,22.1,-61,hurricane,4,135,935,NA,NA +Isabel,2003,9,13,18,22.5,-62.1,hurricane,5,140,932,NA,NA +Isabel,2003,9,14,0,22.9,-63.3,hurricane,4,135,935,NA,NA +Isabel,2003,9,14,6,23.2,-64.6,hurricane,4,135,939,NA,NA +Isabel,2003,9,14,12,23.5,-65.8,hurricane,4,135,935,NA,NA +Isabel,2003,9,14,18,23.9,-67,hurricane,5,140,933,NA,NA +Isabel,2003,9,15,0,24.3,-67.9,hurricane,4,130,937,NA,NA +Isabel,2003,9,15,6,24.5,-68.8,hurricane,4,125,940,NA,NA +Isabel,2003,9,15,12,24.8,-69.4,hurricane,4,120,946,NA,NA +Isabel,2003,9,15,18,25.3,-69.8,hurricane,4,115,949,NA,NA +Isabel,2003,9,16,0,25.7,-70.2,hurricane,3,105,952,NA,NA +Isabel,2003,9,16,6,26.3,-70.5,hurricane,3,100,955,NA,NA +Isabel,2003,9,16,12,26.8,-70.9,hurricane,2,95,959,NA,NA +Isabel,2003,9,16,18,27.4,-71.2,hurricane,2,95,959,NA,NA +Isabel,2003,9,17,0,28.1,-71.5,hurricane,2,95,957,NA,NA +Isabel,2003,9,17,6,28.9,-71.9,hurricane,2,95,957,NA,NA +Isabel,2003,9,17,12,29.7,-72.5,hurricane,2,90,957,NA,NA +Isabel,2003,9,17,18,30.6,-73,hurricane,2,90,955,NA,NA +Isabel,2003,9,18,0,31.5,-73.5,hurricane,2,90,953,NA,NA +Isabel,2003,9,18,6,32.5,-74.3,hurricane,2,90,956,NA,NA +Isabel,2003,9,18,12,33.7,-75.2,hurricane,2,90,956,NA,NA +Isabel,2003,9,18,17,34.9,-76.2,hurricane,2,90,957,NA,NA +Isabel,2003,9,18,18,35.1,-76.4,hurricane,2,85,958,NA,NA +Isabel,2003,9,19,0,36.7,-77.7,hurricane,1,65,969,NA,NA +Isabel,2003,9,19,6,38.6,-78.9,tropical storm,NA,50,988,NA,NA +Isabel,2003,9,19,12,40.9,-80.3,extratropical,NA,35,997,NA,NA +Isabel,2003,9,19,18,43.9,-80.9,extratropical,NA,30,1000,NA,NA +Isabel,2003,9,20,0,48,-81,extratropical,NA,25,1000,NA,NA +AL142003,2003,9,8,6,11.6,-21.7,tropical depression,NA,25,1009,NA,NA +AL142003,2003,9,8,12,11.4,-22.2,tropical depression,NA,25,1009,NA,NA +AL142003,2003,9,8,18,11.2,-22.6,tropical depression,NA,25,1009,NA,NA +AL142003,2003,9,9,0,11.2,-23,tropical depression,NA,25,1008,NA,NA +AL142003,2003,9,9,6,11.6,-23.6,tropical depression,NA,25,1007,NA,NA +AL142003,2003,9,9,12,12.4,-24.4,tropical depression,NA,30,1007,NA,NA +AL142003,2003,9,9,18,13.6,-24.9,tropical depression,NA,30,1007,NA,NA +AL142003,2003,9,10,0,14.6,-25,tropical depression,NA,25,1008,NA,NA +AL142003,2003,9,10,6,15.3,-25.1,tropical depression,NA,25,1009,NA,NA +AL142003,2003,9,10,12,15.9,-25.2,tropical depression,NA,25,1010,NA,NA +Juan,2003,9,24,12,28.2,-62.4,tropical depression,NA,25,1009,NA,NA +Juan,2003,9,24,18,28.3,-62.2,tropical depression,NA,30,1007,NA,NA +Juan,2003,9,25,0,28.4,-62,tropical storm,NA,35,1006,NA,NA +Juan,2003,9,25,6,28.8,-61.7,tropical storm,NA,40,1002,NA,NA +Juan,2003,9,25,12,29.2,-61.4,tropical storm,NA,45,1000,NA,NA +Juan,2003,9,25,18,30.4,-61.6,tropical storm,NA,50,996,NA,NA +Juan,2003,9,26,0,30.9,-61.8,tropical storm,NA,55,992,NA,NA +Juan,2003,9,26,6,31.1,-61.8,tropical storm,NA,60,990,NA,NA +Juan,2003,9,26,12,31.8,-62,hurricane,1,65,987,NA,NA +Juan,2003,9,26,18,32.5,-62,hurricane,1,70,987,NA,NA +Juan,2003,9,27,0,33.3,-62,hurricane,1,75,984,NA,NA +Juan,2003,9,27,6,34.4,-62.2,hurricane,1,75,981,NA,NA +Juan,2003,9,27,12,35.2,-62.8,hurricane,1,75,979,NA,NA +Juan,2003,9,27,18,35.5,-63.2,hurricane,2,90,969,NA,NA +Juan,2003,9,28,0,36.3,-63.6,hurricane,2,90,970,NA,NA +Juan,2003,9,28,6,37.1,-64,hurricane,2,90,970,NA,NA +Juan,2003,9,28,12,38.5,-64.1,hurricane,2,90,970,NA,NA +Juan,2003,9,28,18,40.2,-64.1,hurricane,2,90,970,NA,NA +Juan,2003,9,29,0,42.8,-63.9,hurricane,2,85,972,NA,NA +Juan,2003,9,29,3,44.4,-63.8,hurricane,2,85,973,NA,NA +Juan,2003,9,29,6,46,-63.8,hurricane,1,65,982,NA,NA +Juan,2003,9,29,12,49.8,-62.4,tropical storm,NA,45,995,NA,NA +Kate,2003,9,25,18,11.8,-37.7,tropical depression,NA,30,1008,NA,NA +Kate,2003,9,26,0,12.8,-38.5,tropical depression,NA,30,1008,NA,NA +Kate,2003,9,26,6,14,-39.4,tropical depression,NA,30,1008,NA,NA +Kate,2003,9,26,12,15.2,-40.2,tropical depression,NA,30,1007,NA,NA +Kate,2003,9,26,18,16.6,-41,tropical depression,NA,30,1007,NA,NA +Kate,2003,9,27,0,18,-41.8,tropical depression,NA,30,1007,NA,NA +Kate,2003,9,27,6,19.2,-43,tropical depression,NA,30,1007,NA,NA +Kate,2003,9,27,12,20,-43.8,tropical depression,NA,30,1007,NA,NA +Kate,2003,9,27,18,21,-44.2,tropical storm,NA,35,1005,NA,NA +Kate,2003,9,28,0,22,-44.5,tropical storm,NA,45,1000,NA,NA +Kate,2003,9,28,6,23,-44.3,tropical storm,NA,50,997,NA,NA +Kate,2003,9,28,12,23.9,-43.6,tropical storm,NA,50,997,NA,NA +Kate,2003,9,28,18,24.8,-42.6,tropical storm,NA,50,997,NA,NA +Kate,2003,9,29,0,26.1,-41.3,tropical storm,NA,50,997,NA,NA +Kate,2003,9,29,6,27.2,-39.9,tropical storm,NA,55,994,NA,NA +Kate,2003,9,29,12,28.3,-38.2,tropical storm,NA,55,991,NA,NA +Kate,2003,9,29,18,29.2,-36.8,hurricane,1,65,987,NA,NA +Kate,2003,9,30,0,30,-35.4,hurricane,1,65,987,NA,NA +Kate,2003,9,30,6,30.8,-34.8,tropical storm,NA,55,992,NA,NA +Kate,2003,9,30,12,31.8,-35.1,tropical storm,NA,55,992,NA,NA +Kate,2003,9,30,18,32.6,-36,tropical storm,NA,50,996,NA,NA +Kate,2003,10,1,0,32.5,-37.1,tropical storm,NA,50,997,NA,NA +Kate,2003,10,1,6,32.4,-38.3,tropical storm,NA,50,997,NA,NA +Kate,2003,10,1,12,32.2,-39.6,tropical storm,NA,55,994,NA,NA +Kate,2003,10,1,18,31.7,-40.9,hurricane,1,65,987,NA,NA +Kate,2003,10,2,0,31.1,-42.1,hurricane,1,65,987,NA,NA +Kate,2003,10,2,6,30.3,-43,hurricane,1,75,979,NA,NA +Kate,2003,10,2,12,30.1,-43.6,hurricane,1,75,979,NA,NA +Kate,2003,10,2,18,29.9,-44.7,hurricane,1,80,976,NA,NA +Kate,2003,10,3,0,29.6,-45.8,hurricane,1,80,976,NA,NA +Kate,2003,10,3,6,29.4,-46.9,hurricane,2,90,970,NA,NA +Kate,2003,10,3,12,29.4,-47.8,hurricane,2,90,970,NA,NA +Kate,2003,10,3,18,29.6,-49.1,hurricane,3,100,962,NA,NA +Kate,2003,10,4,0,29.9,-50.3,hurricane,3,100,962,NA,NA +Kate,2003,10,4,6,30.1,-51.6,hurricane,3,100,962,NA,NA +Kate,2003,10,4,12,30.1,-52.8,hurricane,3,105,956,NA,NA +Kate,2003,10,4,18,30.2,-54,hurricane,3,110,952,NA,NA +Kate,2003,10,5,0,30.3,-54.7,hurricane,3,100,962,NA,NA +Kate,2003,10,5,6,30.4,-55.5,hurricane,2,95,968,NA,NA +Kate,2003,10,5,12,30.7,-56.1,hurricane,2,90,973,NA,NA +Kate,2003,10,5,18,31.4,-56.4,hurricane,2,85,975,NA,NA +Kate,2003,10,6,0,32.3,-56.2,hurricane,1,80,977,NA,NA +Kate,2003,10,6,6,33.5,-56,hurricane,1,80,977,NA,NA +Kate,2003,10,6,12,35.2,-55.6,hurricane,1,75,979,NA,NA +Kate,2003,10,6,18,36.9,-55,hurricane,1,70,983,NA,NA +Kate,2003,10,7,0,38.6,-54,hurricane,1,65,987,NA,NA +Kate,2003,10,7,6,40.5,-52.1,tropical storm,NA,60,987,NA,NA +Kate,2003,10,7,12,43.8,-49.5,tropical storm,NA,60,987,NA,NA +Kate,2003,10,7,18,47.5,-47.2,tropical storm,NA,60,980,NA,NA +Kate,2003,10,8,0,52,-44,extratropical,NA,60,978,NA,NA +Kate,2003,10,8,6,56.5,-40.5,extratropical,NA,65,974,NA,NA +Kate,2003,10,8,12,59.5,-37,extratropical,NA,65,974,NA,NA +Kate,2003,10,8,18,61.1,-33.4,extratropical,NA,65,970,NA,NA +Kate,2003,10,9,0,62.1,-28.7,extratropical,NA,60,970,NA,NA +Kate,2003,10,9,6,62.5,-24,extratropical,NA,55,972,NA,NA +Kate,2003,10,9,12,62.6,-19,extratropical,NA,55,973,NA,NA +Kate,2003,10,9,18,62.5,-12.6,extratropical,NA,50,976,NA,NA +Kate,2003,10,10,0,63,-6,extratropical,NA,50,980,NA,NA +Larry,2003,9,27,18,18.5,-84.7,other low,NA,15,1009,NA,NA +Larry,2003,9,28,0,18.7,-84.9,other low,NA,15,1009,NA,NA +Larry,2003,9,28,6,19,-85.3,other low,NA,20,1008,NA,NA +Larry,2003,9,28,12,19.3,-86,other low,NA,20,1008,NA,NA +Larry,2003,9,28,18,19.7,-86.9,other low,NA,20,1008,NA,NA +Larry,2003,9,29,0,20,-87.5,other low,NA,20,1007,NA,NA +Larry,2003,9,29,6,20.3,-88.2,other low,NA,20,1007,NA,NA +Larry,2003,9,29,12,20.6,-88.9,other low,NA,20,1007,NA,NA +Larry,2003,9,29,18,21,-89.6,other low,NA,20,1007,NA,NA +Larry,2003,9,30,0,21.2,-90.5,extratropical,NA,25,1007,NA,NA +Larry,2003,9,30,6,21.4,-91.5,extratropical,NA,25,1007,NA,NA +Larry,2003,9,30,12,21.3,-92.1,extratropical,NA,30,1007,NA,NA +Larry,2003,9,30,18,21.2,-92.5,extratropical,NA,35,1006,NA,NA +Larry,2003,10,1,0,20.9,-92.9,extratropical,NA,40,1006,NA,NA +Larry,2003,10,1,6,20.9,-92.9,extratropical,NA,40,1005,NA,NA +Larry,2003,10,1,12,21,-93,extratropical,NA,40,1004,NA,NA +Larry,2003,10,1,18,21,-93.2,tropical storm,NA,45,1003,NA,NA +Larry,2003,10,2,0,20.9,-93.4,tropical storm,NA,45,1002,NA,NA +Larry,2003,10,2,6,20.7,-93.4,tropical storm,NA,45,1000,NA,NA +Larry,2003,10,2,12,20.5,-93.4,tropical storm,NA,45,998,NA,NA +Larry,2003,10,2,18,20.4,-93.6,tropical storm,NA,50,996,NA,NA +Larry,2003,10,3,0,20.5,-94,tropical storm,NA,55,993,NA,NA +Larry,2003,10,3,6,20.3,-94.3,tropical storm,NA,50,994,NA,NA +Larry,2003,10,3,12,20.1,-94.5,tropical storm,NA,50,994,NA,NA +Larry,2003,10,3,18,19.9,-94.7,tropical storm,NA,50,995,NA,NA +Larry,2003,10,4,0,19.6,-94.5,tropical storm,NA,50,995,NA,NA +Larry,2003,10,4,6,19.5,-94,tropical storm,NA,50,994,NA,NA +Larry,2003,10,4,12,19.3,-93.8,tropical storm,NA,50,994,NA,NA +Larry,2003,10,4,18,18.8,-93.8,tropical storm,NA,50,996,NA,NA +Larry,2003,10,5,0,18.6,-93.6,tropical storm,NA,50,996,NA,NA +Larry,2003,10,5,6,18.5,-93.5,tropical storm,NA,50,996,NA,NA +Larry,2003,10,5,10,18.4,-93.5,tropical storm,NA,50,996,NA,NA +Larry,2003,10,5,12,18.4,-93.5,tropical storm,NA,50,997,NA,NA +Larry,2003,10,5,18,18.2,-93.7,tropical storm,NA,40,1000,NA,NA +Larry,2003,10,6,0,17.9,-93.8,tropical storm,NA,35,1003,NA,NA +Larry,2003,10,6,6,17.5,-93.9,tropical depression,NA,25,1005,NA,NA +Larry,2003,10,6,12,17.2,-94.1,other low,NA,20,1006,NA,NA +Larry,2003,10,6,18,16.9,-94.3,other low,NA,20,1006,NA,NA +Larry,2003,10,7,0,16.6,-94.5,other low,NA,15,1007,NA,NA +Larry,2003,10,7,6,16.3,-94.7,other low,NA,15,1007,NA,NA +Larry,2003,10,7,12,16,-95,other low,NA,15,1008,NA,NA +Larry,2003,10,7,18,15.8,-95.3,other low,NA,15,1009,NA,NA +Mindy,2003,10,10,18,19.1,-68.8,tropical storm,NA,40,1004,NA,NA +Mindy,2003,10,11,0,20.1,-69.7,tropical storm,NA,40,1002,NA,NA +Mindy,2003,10,11,6,20.9,-70.4,tropical storm,NA,40,1003,NA,NA +Mindy,2003,10,11,12,21.8,-71.3,tropical storm,NA,35,1007,NA,NA +Mindy,2003,10,11,18,22.7,-71.5,tropical storm,NA,35,1007,NA,NA +Mindy,2003,10,12,0,23.6,-71.9,tropical storm,NA,35,1006,NA,NA +Mindy,2003,10,12,6,24,-72.4,tropical depression,NA,30,1007,NA,NA +Mindy,2003,10,12,12,24.7,-72.2,tropical depression,NA,30,1008,NA,NA +Mindy,2003,10,12,18,25.5,-72,tropical depression,NA,30,1008,NA,NA +Mindy,2003,10,13,0,25.6,-71,tropical depression,NA,30,1008,NA,NA +Mindy,2003,10,13,6,25.7,-70.3,tropical depression,NA,30,1008,NA,NA +Mindy,2003,10,13,12,25.8,-69.3,tropical depression,NA,30,1008,NA,NA +Mindy,2003,10,13,18,25.9,-68.3,tropical depression,NA,30,1007,NA,NA +Mindy,2003,10,14,0,25.9,-67.7,tropical depression,NA,25,1008,NA,NA +Nicholas,2003,10,13,0,9.5,-37,tropical depression,NA,25,1009,NA,NA +Nicholas,2003,10,13,6,9.5,-37.7,tropical depression,NA,25,1008,NA,NA +Nicholas,2003,10,13,12,9.6,-38.4,tropical depression,NA,25,1008,NA,NA +Nicholas,2003,10,13,18,9.9,-38.9,tropical depression,NA,30,1007,NA,NA +Nicholas,2003,10,14,0,10.2,-39.5,tropical depression,NA,30,1006,NA,NA +Nicholas,2003,10,14,6,10.5,-40.3,tropical depression,NA,30,1006,NA,NA +Nicholas,2003,10,14,12,10.7,-41.1,tropical depression,NA,30,1006,NA,NA +Nicholas,2003,10,14,18,10.9,-41.9,tropical storm,NA,35,1005,NA,NA +Nicholas,2003,10,15,0,11.2,-42.5,tropical storm,NA,40,1003,NA,NA +Nicholas,2003,10,15,6,11.5,-43.1,tropical storm,NA,45,1000,NA,NA +Nicholas,2003,10,15,12,11.8,-43.7,tropical storm,NA,45,1000,NA,NA +Nicholas,2003,10,15,18,12.2,-44.3,tropical storm,NA,45,1000,NA,NA +Nicholas,2003,10,16,0,12.6,-45,tropical storm,NA,45,1000,NA,NA +Nicholas,2003,10,16,6,13.1,-45.6,tropical storm,NA,45,1000,NA,NA +Nicholas,2003,10,16,12,13.5,-46,tropical storm,NA,50,997,NA,NA +Nicholas,2003,10,16,18,14,-46.6,tropical storm,NA,55,994,NA,NA +Nicholas,2003,10,17,0,14.4,-47.2,tropical storm,NA,55,995,NA,NA +Nicholas,2003,10,17,6,15,-47.6,tropical storm,NA,55,994,NA,NA +Nicholas,2003,10,17,12,15.5,-48,tropical storm,NA,60,990,NA,NA +Nicholas,2003,10,17,18,16.1,-48.1,tropical storm,NA,55,994,NA,NA +Nicholas,2003,10,18,0,16.3,-48.1,tropical storm,NA,55,994,NA,NA +Nicholas,2003,10,18,6,16.3,-47.9,tropical storm,NA,55,994,NA,NA +Nicholas,2003,10,18,12,16.5,-47.8,tropical storm,NA,55,994,NA,NA +Nicholas,2003,10,18,18,16.7,-47.7,tropical storm,NA,50,997,NA,NA +Nicholas,2003,10,19,0,17,-47.6,tropical storm,NA,50,997,NA,NA +Nicholas,2003,10,19,6,17.3,-47.4,tropical storm,NA,50,997,NA,NA +Nicholas,2003,10,19,12,17.6,-47.3,tropical storm,NA,50,997,NA,NA +Nicholas,2003,10,19,18,17.6,-47.5,tropical storm,NA,45,1000,NA,NA +Nicholas,2003,10,20,0,17.4,-47.7,tropical storm,NA,45,1000,NA,NA +Nicholas,2003,10,20,6,17.6,-47.9,tropical storm,NA,45,1000,NA,NA +Nicholas,2003,10,20,12,17.8,-48.1,tropical storm,NA,40,1002,NA,NA +Nicholas,2003,10,20,18,18.1,-48.9,tropical storm,NA,35,1005,NA,NA +Nicholas,2003,10,21,0,18.4,-49.7,tropical storm,NA,35,1005,NA,NA +Nicholas,2003,10,21,6,18.6,-50.3,tropical storm,NA,40,1002,NA,NA +Nicholas,2003,10,21,12,18.7,-51,tropical storm,NA,45,1000,NA,NA +Nicholas,2003,10,21,18,18.6,-52,tropical storm,NA,45,1000,NA,NA +Nicholas,2003,10,22,0,18.5,-52.9,tropical storm,NA,40,1002,NA,NA +Nicholas,2003,10,22,6,18.5,-53.6,tropical storm,NA,35,1005,NA,NA +Nicholas,2003,10,22,12,18.8,-54.1,tropical storm,NA,35,1005,NA,NA +Nicholas,2003,10,22,18,19.5,-54.6,tropical storm,NA,35,1005,NA,NA +Nicholas,2003,10,23,0,20.4,-55.4,tropical storm,NA,35,1005,NA,NA +Nicholas,2003,10,23,6,21.5,-56,tropical depression,NA,30,1006,NA,NA +Nicholas,2003,10,23,12,22.5,-56.4,tropical depression,NA,30,1007,NA,NA +Nicholas,2003,10,23,18,23.6,-56.9,tropical depression,NA,30,1008,NA,NA +Nicholas,2003,10,24,0,25.1,-56.7,other low,NA,25,1009,NA,NA +Nicholas,2003,10,24,6,27.1,-56.4,other low,NA,25,1010,NA,NA +Nicholas,2003,10,24,12,28.8,-56.1,other low,NA,25,1011,NA,NA +Nicholas,2003,10,24,18,30.2,-55.7,extratropical,NA,25,1012,NA,NA +Nicholas,2003,10,25,0,31.4,-54.8,extratropical,NA,20,1013,NA,NA +Nicholas,2003,10,25,6,32.2,-53.5,extratropical,NA,20,1014,NA,NA +Nicholas,2003,10,25,12,32.4,-52,extratropical,NA,20,1014,NA,NA +Nicholas,2003,10,25,18,32.5,-50.5,extratropical,NA,20,1013,NA,NA +Nicholas,2003,10,26,0,31.9,-49.5,extratropical,NA,20,1013,NA,NA +Nicholas,2003,10,26,6,30.7,-49.1,extratropical,NA,25,1012,NA,NA +Nicholas,2003,10,26,12,29.3,-49,extratropical,NA,30,1010,NA,NA +Nicholas,2003,10,26,18,28.3,-49.6,extratropical,NA,30,1008,NA,NA +Nicholas,2003,10,27,0,27.4,-50.5,extratropical,NA,30,1007,NA,NA +Nicholas,2003,10,27,6,26.7,-52,extratropical,NA,35,1007,NA,NA +Nicholas,2003,10,27,12,26.4,-53.7,extratropical,NA,35,1007,NA,NA +Nicholas,2003,10,27,18,26.6,-55.5,extratropical,NA,35,1007,NA,NA +Nicholas,2003,10,28,0,27.1,-57.3,extratropical,NA,30,1008,NA,NA +Nicholas,2003,10,28,6,27.9,-59.1,extratropical,NA,30,1009,NA,NA +Nicholas,2003,10,28,12,28.9,-60.8,extratropical,NA,30,1009,NA,NA +Nicholas,2003,10,28,18,29.5,-62.8,extratropical,NA,30,1009,NA,NA +Nicholas,2003,10,29,0,29.4,-65.1,extratropical,NA,25,1009,NA,NA +Nicholas,2003,10,29,6,29.3,-67.1,extratropical,NA,25,1009,NA,NA +Nicholas,2003,10,29,12,29.5,-68,extratropical,NA,25,1009,NA,NA +Nicholas,2003,10,29,18,30.1,-68,extratropical,NA,25,1009,NA,NA +Nicholas,2003,10,30,0,30.4,-67.2,extratropical,NA,25,1009,NA,NA +Nicholas,2003,10,30,6,30.4,-66.4,extratropical,NA,25,1009,NA,NA +Nicholas,2003,10,30,12,30,-65.8,extratropical,NA,30,1008,NA,NA +Nicholas,2003,10,30,18,29.3,-65.3,extratropical,NA,30,1008,NA,NA +Nicholas,2003,10,31,0,28.7,-65.5,extratropical,NA,30,1008,NA,NA +Nicholas,2003,10,31,6,28.3,-66,other low,NA,30,1008,NA,NA +Nicholas,2003,10,31,12,27.7,-66.3,other low,NA,30,1007,NA,NA +Nicholas,2003,10,31,18,27,-66.4,other low,NA,30,1006,NA,NA +Nicholas,2003,11,1,0,26.4,-66.3,other low,NA,30,1005,NA,NA +Nicholas,2003,11,1,6,26.5,-66,other low,NA,30,1005,NA,NA +Nicholas,2003,11,1,12,27,-66.3,other low,NA,30,1005,NA,NA +Nicholas,2003,11,1,18,27.7,-67,other low,NA,30,1005,NA,NA +Odette,2003,12,4,12,12.9,-76.2,tropical depression,NA,30,1005,NA,NA +Odette,2003,12,4,18,13.3,-75.7,tropical storm,NA,35,1003,NA,NA +Odette,2003,12,5,0,13.7,-75.2,tropical storm,NA,45,1000,NA,NA +Odette,2003,12,5,6,13.9,-74.8,tropical storm,NA,50,993,NA,NA +Odette,2003,12,5,12,14.1,-74.4,tropical storm,NA,50,993,NA,NA +Odette,2003,12,5,18,14.3,-73.8,tropical storm,NA,50,995,NA,NA +Odette,2003,12,6,0,15,-73,tropical storm,NA,50,995,NA,NA +Odette,2003,12,6,6,15.9,-72.5,tropical storm,NA,55,995,NA,NA +Odette,2003,12,6,12,16.6,-72.2,tropical storm,NA,55,995,NA,NA +Odette,2003,12,6,18,17.2,-72,tropical storm,NA,55,994,NA,NA +Odette,2003,12,6,23,17.8,-71.5,tropical storm,NA,50,995,NA,NA +Odette,2003,12,7,0,17.9,-71.4,tropical storm,NA,45,997,NA,NA +Odette,2003,12,7,6,18.9,-70.6,tropical storm,NA,40,1000,NA,NA +Odette,2003,12,7,12,20.5,-69.5,tropical storm,NA,40,1003,NA,NA +Odette,2003,12,7,18,22.4,-68.1,extratropical,NA,45,1002,NA,NA +Odette,2003,12,8,0,23.5,-65.9,extratropical,NA,45,1002,NA,NA +Odette,2003,12,8,6,24.4,-63.7,extratropical,NA,45,1004,NA,NA +Odette,2003,12,8,12,25.4,-61.6,extratropical,NA,40,1005,NA,NA +Odette,2003,12,8,18,26.3,-59.5,extratropical,NA,40,1005,NA,NA +Odette,2003,12,9,0,27.4,-57.1,extratropical,NA,40,1005,NA,NA +Odette,2003,12,9,6,28.9,-54.2,extratropical,NA,40,1006,NA,NA +Odette,2003,12,9,12,30.4,-51.1,extratropical,NA,40,1006,NA,NA +Odette,2003,12,9,18,31.9,-47.7,extratropical,NA,40,1006,NA,NA +Peter,2003,12,7,18,27.5,-34.5,subtropical storm,NA,40,1005,NA,NA +Peter,2003,12,8,0,26.1,-34.8,subtropical storm,NA,40,1004,NA,NA +Peter,2003,12,8,6,24.1,-35.8,subtropical storm,NA,40,1004,NA,NA +Peter,2003,12,8,12,22.4,-36.8,subtropical storm,NA,40,1004,NA,NA +Peter,2003,12,8,18,20.7,-37.9,subtropical storm,NA,40,1004,NA,NA +Peter,2003,12,9,0,20.4,-37.7,subtropical storm,NA,40,1002,NA,NA +Peter,2003,12,9,6,20,-37.4,tropical storm,NA,40,998,NA,NA +Peter,2003,12,9,12,19.5,-37.2,tropical storm,NA,50,992,NA,NA +Peter,2003,12,9,18,21,-37,tropical storm,NA,60,990,NA,NA +Peter,2003,12,10,0,22.2,-37,tropical storm,NA,45,1000,NA,NA +Peter,2003,12,10,6,23.1,-37.1,tropical storm,NA,35,1005,NA,NA +Peter,2003,12,10,12,23.8,-37.1,tropical depression,NA,30,1005,NA,NA +Peter,2003,12,10,18,25,-36.7,tropical depression,NA,30,1005,NA,NA +Peter,2003,12,11,0,26,-36.2,tropical depression,NA,30,1005,NA,NA +Peter,2003,12,11,6,27.5,-35,extratropical,NA,30,1009,NA,NA +Alex,2004,7,31,18,30.3,-78.3,tropical depression,NA,25,1010,0,0 +Alex,2004,8,1,0,31,-78.8,tropical depression,NA,25,1009,0,0 +Alex,2004,8,1,6,31.5,-79,tropical depression,NA,25,1009,0,0 +Alex,2004,8,1,12,31.6,-79.1,tropical depression,NA,30,1009,0,0 +Alex,2004,8,1,18,31.6,-79.2,tropical storm,NA,35,1009,50,0 +Alex,2004,8,2,0,31.5,-79.3,tropical storm,NA,35,1007,50,0 +Alex,2004,8,2,6,31.4,-79.4,tropical storm,NA,40,1005,150,0 +Alex,2004,8,2,12,31.3,-79,tropical storm,NA,50,992,135,0 +Alex,2004,8,2,18,31.8,-78.7,tropical storm,NA,50,993,125,0 +Alex,2004,8,3,0,32.4,-78.2,tropical storm,NA,60,987,125,0 +Alex,2004,8,3,6,33,-77.4,hurricane,1,70,983,130,40 +Alex,2004,8,3,12,34.2,-76.4,hurricane,2,85,974,130,40 +Alex,2004,8,3,18,35.3,-75.2,hurricane,2,85,972,165,50 +Alex,2004,8,4,0,36,-73.7,hurricane,1,80,974,155,55 +Alex,2004,8,4,6,36.8,-72.1,hurricane,1,80,973,195,65 +Alex,2004,8,4,12,37.3,-70.2,hurricane,2,85,973,195,65 +Alex,2004,8,4,18,37.8,-68.3,hurricane,2,95,965,225,65 +Alex,2004,8,5,0,38.5,-66,hurricane,3,105,957,225,70 +Alex,2004,8,5,6,39.5,-63.1,hurricane,3,105,957,300,70 +Alex,2004,8,5,12,40.8,-59.6,hurricane,3,100,962,380,70 +Alex,2004,8,5,18,42.7,-55,hurricane,2,90,970,375,50 +Alex,2004,8,6,0,44.5,-49.3,hurricane,1,75,978,375,50 +Alex,2004,8,6,6,46.1,-44.2,hurricane,1,65,984,375,50 +Alex,2004,8,6,12,47,-37.5,tropical storm,NA,50,987,375,0 +Alex,2004,8,6,18,47.4,-32.7,extratropical,NA,30,992,0,0 +Bonnie,2004,8,3,12,12.9,-53.6,tropical depression,NA,25,1010,0,0 +Bonnie,2004,8,3,18,13.2,-55.4,tropical depression,NA,25,1010,0,0 +Bonnie,2004,8,4,0,13.5,-57.4,tropical depression,NA,30,1010,0,0 +Bonnie,2004,8,4,6,13.6,-59.5,tropical depression,NA,30,1010,0,0 +Bonnie,2004,8,4,12,13.6,-61.6,tropical depression,NA,30,1010,0,0 +Bonnie,2004,8,4,18,13.7,-63.7,tropical wave,NA,30,1010,0,0 +Bonnie,2004,8,5,0,14,-65.7,tropical wave,NA,25,1010,0,0 +Bonnie,2004,8,5,6,14.9,-67.7,tropical wave,NA,25,1010,0,0 +Bonnie,2004,8,5,12,16,-69.7,tropical wave,NA,25,1011,0,0 +Bonnie,2004,8,5,18,16.5,-71.5,tropical wave,NA,25,1011,0,0 +Bonnie,2004,8,6,0,17,-73,tropical wave,NA,25,1011,0,0 +Bonnie,2004,8,6,6,17.1,-74.6,tropical wave,NA,25,1011,0,0 +Bonnie,2004,8,6,12,17.2,-76.2,tropical wave,NA,25,1011,0,0 +Bonnie,2004,8,6,18,17,-77.2,tropical wave,NA,25,1011,0,0 +Bonnie,2004,8,7,0,17.1,-78.2,tropical wave,NA,25,1011,0,0 +Bonnie,2004,8,7,6,17.4,-79.2,tropical wave,NA,20,1013,0,0 +Bonnie,2004,8,7,12,17.8,-80.2,tropical wave,NA,20,1013,0,0 +Bonnie,2004,8,7,18,18.4,-81.1,tropical wave,NA,20,1013,0,0 +Bonnie,2004,8,8,0,19,-81.9,tropical wave,NA,20,1012,0,0 +Bonnie,2004,8,8,6,19.7,-82.7,tropical wave,NA,25,1010,0,0 +Bonnie,2004,8,8,12,20.3,-83.5,tropical depression,NA,25,1009,0,0 +Bonnie,2004,8,8,18,20.9,-84.3,tropical depression,NA,25,1008,0,0 +Bonnie,2004,8,9,0,21.5,-85.5,tropical depression,NA,25,1008,0,0 +Bonnie,2004,8,9,6,22,-86.6,tropical depression,NA,30,1008,0,0 +Bonnie,2004,8,9,12,22.5,-87.6,tropical storm,NA,35,1008,50,0 +Bonnie,2004,8,9,18,22.9,-88.3,tropical storm,NA,40,1007,50,0 +Bonnie,2004,8,10,0,23.1,-89,tropical storm,NA,45,1006,50,0 +Bonnie,2004,8,10,6,23.4,-89.8,tropical storm,NA,45,1005,50,0 +Bonnie,2004,8,10,12,24,-90.6,tropical storm,NA,50,1002,50,0 +Bonnie,2004,8,10,18,24.4,-90.6,tropical storm,NA,45,1003,65,0 +Bonnie,2004,8,11,0,24.7,-90.6,tropical storm,NA,40,1003,50,0 +Bonnie,2004,8,11,6,25.2,-90.6,tropical storm,NA,40,1003,70,0 +Bonnie,2004,8,11,12,25.7,-90.4,tropical storm,NA,45,1001,85,0 +Bonnie,2004,8,11,18,26.4,-89.6,tropical storm,NA,55,1001,85,0 +Bonnie,2004,8,12,0,27,-88.8,tropical storm,NA,50,1007,85,0 +Bonnie,2004,8,12,6,27.7,-88.1,tropical storm,NA,45,1008,85,0 +Bonnie,2004,8,12,12,29,-86.1,tropical storm,NA,45,1002,85,0 +Bonnie,2004,8,12,14,29.6,-85.1,tropical storm,NA,40,1002,NA,NA +Bonnie,2004,8,12,18,30.2,-84,tropical depression,NA,30,1006,0,0 +Bonnie,2004,8,13,0,31.9,-81.3,tropical depression,NA,25,1008,0,0 +Bonnie,2004,8,13,6,33.5,-79,tropical depression,NA,25,1008,0,0 +Bonnie,2004,8,13,12,35.5,-76.5,tropical depression,NA,25,1008,0,0 +Bonnie,2004,8,13,18,37.1,-74.9,tropical depression,NA,25,1008,0,0 +Bonnie,2004,8,14,0,39,-73.5,other low,NA,20,1012,0,0 +Charley,2004,8,9,12,11.4,-59.2,tropical depression,NA,30,1010,0,0 +Charley,2004,8,9,18,11.7,-61.1,tropical depression,NA,30,1009,0,0 +Charley,2004,8,10,0,12.2,-63.2,tropical depression,NA,30,1009,0,0 +Charley,2004,8,10,6,12.9,-65.3,tropical storm,NA,35,1007,75,0 +Charley,2004,8,10,12,13.8,-67.6,tropical storm,NA,40,1004,125,0 +Charley,2004,8,10,18,14.9,-69.8,tropical storm,NA,45,1000,125,0 +Charley,2004,8,11,0,15.6,-71.8,tropical storm,NA,55,999,125,0 +Charley,2004,8,11,6,16,-73.7,tropical storm,NA,55,999,125,0 +Charley,2004,8,11,12,16.3,-75.4,tropical storm,NA,60,995,150,0 +Charley,2004,8,11,18,16.7,-76.8,hurricane,1,65,993,150,25 +Charley,2004,8,12,0,17.4,-78.1,hurricane,1,65,992,150,25 +Charley,2004,8,12,6,18.2,-79.3,hurricane,1,75,988,150,20 +Charley,2004,8,12,12,19.2,-80.7,hurricane,1,80,984,165,35 +Charley,2004,8,12,18,20.5,-81.6,hurricane,2,90,980,180,40 +Charley,2004,8,13,0,21.7,-82.2,hurricane,2,90,976,180,40 +Charley,2004,8,13,4,22.7,-82.6,hurricane,3,105,966,NA,NA +Charley,2004,8,13,6,23,-82.6,hurricane,3,105,966,180,40 +Charley,2004,8,13,12,24.4,-82.9,hurricane,2,95,969,165,40 +Charley,2004,8,13,18,26.1,-82.4,hurricane,4,125,947,125,30 +Charley,2004,8,13,19,26.6,-82.2,hurricane,4,130,941,NA,NA +Charley,2004,8,13,20,26.9,-82.1,hurricane,4,125,942,NA,NA +Charley,2004,8,14,0,28.1,-81.6,hurricane,1,75,970,115,40 +Charley,2004,8,14,6,30.1,-80.8,hurricane,1,75,993,140,60 +Charley,2004,8,14,12,32.3,-79.7,hurricane,1,65,988,140,40 +Charley,2004,8,14,14,33,-79.4,hurricane,1,70,992,NA,NA +Charley,2004,8,14,16,33.8,-78.7,hurricane,1,65,997,NA,NA +Charley,2004,8,14,18,34.5,-78.1,tropical storm,NA,60,1000,105,0 +Charley,2004,8,15,0,36.9,-75.9,extratropical,NA,40,1012,95,0 +Charley,2004,8,15,6,39.3,-73.8,extratropical,NA,35,1014,95,0 +Charley,2004,8,15,12,41.2,-71.1,extratropical,NA,30,1018,0,0 +Danielle,2004,8,13,12,12.3,-21.8,tropical depression,NA,30,1009,0,0 +Danielle,2004,8,13,18,12.4,-23,tropical depression,NA,30,1009,0,0 +Danielle,2004,8,14,0,12.6,-24.2,tropical storm,NA,35,1009,90,0 +Danielle,2004,8,14,6,12.9,-25.5,tropical storm,NA,40,1004,100,0 +Danielle,2004,8,14,12,13.2,-26.8,tropical storm,NA,45,1004,110,0 +Danielle,2004,8,14,18,13.5,-28.1,tropical storm,NA,55,994,165,0 +Danielle,2004,8,15,0,13.8,-29.3,hurricane,1,65,987,195,40 +Danielle,2004,8,15,6,14.1,-30.8,hurricane,1,75,981,195,45 +Danielle,2004,8,15,12,14.7,-32.1,hurricane,1,80,978,195,45 +Danielle,2004,8,15,18,15.2,-33.5,hurricane,2,85,975,195,50 +Danielle,2004,8,16,0,16,-34.8,hurricane,2,90,970,190,40 +Danielle,2004,8,16,6,16.8,-36,hurricane,2,90,970,180,40 +Danielle,2004,8,16,12,17.7,-37.2,hurricane,2,90,970,165,40 +Danielle,2004,8,16,18,19,-38.2,hurricane,2,95,964,150,45 +Danielle,2004,8,17,0,20.3,-38.9,hurricane,2,95,965,150,45 +Danielle,2004,8,17,6,21.7,-39.6,hurricane,2,90,970,150,40 +Danielle,2004,8,17,12,23.3,-40,hurricane,2,90,970,150,35 +Danielle,2004,8,17,18,24.6,-40.3,hurricane,2,85,974,150,40 +Danielle,2004,8,18,0,25.9,-40.6,hurricane,1,75,981,150,40 +Danielle,2004,8,18,6,27.3,-40.3,hurricane,1,65,985,130,20 +Danielle,2004,8,18,12,28.1,-39.8,tropical storm,NA,55,994,120,0 +Danielle,2004,8,18,18,28.9,-38.9,tropical storm,NA,45,1005,90,0 +Danielle,2004,8,19,0,29.3,-37.8,tropical storm,NA,40,1007,120,0 +Danielle,2004,8,19,6,29.7,-37.7,tropical storm,NA,40,1007,90,0 +Danielle,2004,8,19,12,29.9,-37.7,tropical storm,NA,35,1007,90,0 +Danielle,2004,8,19,18,29.9,-37.2,tropical storm,NA,35,1007,90,0 +Danielle,2004,8,20,0,29.8,-36.8,tropical storm,NA,35,1009,90,0 +Danielle,2004,8,20,6,30.2,-37,tropical storm,NA,35,1010,90,0 +Danielle,2004,8,20,12,30.5,-37.2,tropical storm,NA,35,1011,90,0 +Danielle,2004,8,20,18,30.9,-37.6,tropical depression,NA,30,1012,0,0 +Danielle,2004,8,21,0,30.9,-38,tropical depression,NA,30,1012,0,0 +Danielle,2004,8,21,6,30.6,-38.6,tropical depression,NA,30,1013,0,0 +Danielle,2004,8,21,12,30.7,-38.9,tropical depression,NA,25,1014,0,0 +Danielle,2004,8,21,18,30.5,-39.2,other low,NA,25,1014,0,0 +Danielle,2004,8,22,0,30.3,-39.8,other low,NA,25,1015,0,0 +Danielle,2004,8,22,6,30.2,-40.3,other low,NA,25,1015,0,0 +Danielle,2004,8,22,12,30.3,-40.8,other low,NA,25,1015,0,0 +Danielle,2004,8,22,18,30.4,-41.2,other low,NA,25,1016,0,0 +Danielle,2004,8,23,0,30.8,-42,other low,NA,25,1016,0,0 +Danielle,2004,8,23,6,31.7,-42.5,other low,NA,25,1017,0,0 +Danielle,2004,8,23,12,32.3,-43.3,other low,NA,25,1017,0,0 +Danielle,2004,8,23,18,33.1,-43.8,other low,NA,25,1017,0,0 +Danielle,2004,8,24,0,33.9,-44.2,other low,NA,20,1018,0,0 +Danielle,2004,8,24,6,34.7,-44.6,other low,NA,20,1018,0,0 +Danielle,2004,8,24,12,35.5,-45,other low,NA,20,1019,0,0 +Danielle,2004,8,24,18,36.4,-45.2,other low,NA,20,1019,0,0 +Earl,2004,8,13,18,9,-45.6,tropical depression,NA,30,1011,0,0 +Earl,2004,8,14,0,9.2,-47.4,tropical depression,NA,30,1011,0,0 +Earl,2004,8,14,6,9.6,-49.2,tropical depression,NA,30,1011,0,0 +Earl,2004,8,14,12,10.1,-51.4,tropical depression,NA,30,1011,0,0 +Earl,2004,8,14,18,10.5,-53.5,tropical storm,NA,35,1010,75,0 +Earl,2004,8,15,0,11,-55.9,tropical storm,NA,35,1010,75,0 +Earl,2004,8,15,6,11.5,-58.3,tropical storm,NA,45,1009,90,0 +Earl,2004,8,15,12,11.8,-60.8,tropical storm,NA,45,1009,90,0 +Earl,2004,8,15,18,12.1,-62.8,tropical storm,NA,35,1010,75,0 +Frances,2004,8,25,0,11.1,-35.2,tropical depression,NA,25,1009,0,0 +Frances,2004,8,25,6,11.2,-36.8,tropical depression,NA,30,1008,0,0 +Frances,2004,8,25,12,11.3,-38.3,tropical depression,NA,30,1007,0,0 +Frances,2004,8,25,18,11.5,-39.8,tropical storm,NA,35,1005,60,0 +Frances,2004,8,26,0,11.9,-41.5,tropical storm,NA,40,1003,80,0 +Frances,2004,8,26,6,12.3,-42.9,tropical storm,NA,45,1000,100,0 +Frances,2004,8,26,12,12.8,-44.5,tropical storm,NA,55,994,115,0 +Frances,2004,8,26,18,13.3,-45.8,hurricane,1,65,987,125,15 +Frances,2004,8,27,0,13.7,-46.8,hurricane,1,70,984,135,15 +Frances,2004,8,27,6,14.2,-47.8,hurricane,1,75,980,135,30 +Frances,2004,8,27,12,14.7,-48.5,hurricane,2,90,970,145,35 +Frances,2004,8,27,18,15.4,-49.3,hurricane,3,100,962,170,40 +Frances,2004,8,28,0,15.9,-50,hurricane,3,100,962,170,40 +Frances,2004,8,28,6,16.6,-50.9,hurricane,3,100,962,180,40 +Frances,2004,8,28,12,17.2,-51.6,hurricane,3,105,958,180,50 +Frances,2004,8,28,18,17.7,-52.3,hurricane,4,115,948,190,60 +Frances,2004,8,29,0,18.1,-52.9,hurricane,4,115,948,210,60 +Frances,2004,8,29,6,18.4,-53.6,hurricane,4,115,948,220,65 +Frances,2004,8,29,12,18.6,-54.4,hurricane,4,115,948,245,70 +Frances,2004,8,29,18,18.8,-55,hurricane,3,110,948,260,70 +Frances,2004,8,30,0,18.9,-55.8,hurricane,3,105,954,260,70 +Frances,2004,8,30,6,19,-56.8,hurricane,3,100,958,260,70 +Frances,2004,8,30,12,19.2,-58.1,hurricane,3,100,956,270,75 +Frances,2004,8,30,18,19.4,-59.3,hurricane,3,110,948,280,90 +Frances,2004,8,31,0,19.6,-60.7,hurricane,3,110,946,290,90 +Frances,2004,8,31,6,19.8,-62.1,hurricane,4,115,950,290,100 +Frances,2004,8,31,12,20,-63.5,hurricane,4,120,949,290,100 +Frances,2004,8,31,18,20.3,-65,hurricane,4,125,942,290,105 +Frances,2004,9,1,0,20.6,-66.4,hurricane,4,120,941,290,110 +Frances,2004,9,1,6,21,-67.9,hurricane,4,120,939,290,115 +Frances,2004,9,1,7,21.1,-68.1,hurricane,4,120,935,NA,NA +Frances,2004,9,1,12,21.4,-69.1,hurricane,4,120,937,290,115 +Frances,2004,9,1,18,21.8,-70.4,hurricane,4,120,941,290,115 +Frances,2004,9,2,0,22.2,-71.4,hurricane,4,120,939,290,120 +Frances,2004,9,2,6,22.7,-72.5,hurricane,4,125,937,290,120 +Frances,2004,9,2,7,22.8,-72.8,hurricane,4,125,936,NA,NA +Frances,2004,9,2,12,23.2,-73.5,hurricane,4,120,939,290,120 +Frances,2004,9,2,18,23.8,-74.3,hurricane,4,115,948,300,120 +Frances,2004,9,2,19,24,-74.5,hurricane,3,110,948,NA,NA +Frances,2004,9,3,0,24.2,-75,hurricane,3,105,948,310,120 +Frances,2004,9,3,5,24.6,-75.6,hurricane,3,100,954,NA,NA +Frances,2004,9,3,6,24.7,-75.7,hurricane,3,100,954,300,130 +Frances,2004,9,3,10,25.1,-76.1,hurricane,2,95,956,NA,NA +Frances,2004,9,3,12,25.3,-76.3,hurricane,2,95,958,310,140 +Frances,2004,9,3,18,25.7,-77.1,hurricane,2,90,960,310,150 +Frances,2004,9,4,0,26,-77.5,hurricane,2,85,960,320,145 +Frances,2004,9,4,6,26.4,-77.9,hurricane,2,85,960,320,135 +Frances,2004,9,4,10,26.6,-78.2,hurricane,2,90,961,NA,NA +Frances,2004,9,4,12,26.8,-78.5,hurricane,2,90,962,320,135 +Frances,2004,9,4,18,26.8,-79.1,hurricane,2,90,962,320,135 +Frances,2004,9,5,0,27,-79.4,hurricane,2,95,958,320,135 +Frances,2004,9,5,4,27.2,-80.2,hurricane,2,90,960,NA,NA +Frances,2004,9,5,6,27.2,-80.2,hurricane,2,90,960,320,120 +Frances,2004,9,5,12,27.4,-80.7,hurricane,1,80,969,300,90 +Frances,2004,9,5,18,27.8,-81.7,tropical storm,NA,60,975,300,0 +Frances,2004,9,6,0,28.1,-82.3,tropical storm,NA,55,978,300,0 +Frances,2004,9,6,6,28.6,-83.3,tropical storm,NA,55,981,300,0 +Frances,2004,9,6,12,29.2,-83.7,tropical storm,NA,55,982,165,0 +Frances,2004,9,6,18,30.1,-84,tropical storm,NA,50,982,150,0 +Frances,2004,9,7,0,31,-84.6,tropical storm,NA,35,984,90,0 +Frances,2004,9,7,6,31.5,-85,tropical depression,NA,30,988,0,0 +Frances,2004,9,7,12,32,-85.2,tropical depression,NA,25,992,0,0 +Frances,2004,9,7,18,32.5,-85.1,tropical depression,NA,25,996,0,0 +Frances,2004,9,8,0,33.4,-84.7,tropical depression,NA,25,998,0,0 +Frances,2004,9,8,6,34.3,-84.3,tropical depression,NA,25,1000,0,0 +Frances,2004,9,8,12,36.1,-83.2,tropical depression,NA,25,1001,0,0 +Frances,2004,9,8,18,37.8,-82.1,tropical depression,NA,25,1002,0,0 +Frances,2004,9,9,0,38.7,-81.3,extratropical,NA,25,1001,0,0 +Frances,2004,9,9,6,40.5,-80,extratropical,NA,30,1001,0,0 +Frances,2004,9,9,12,42.8,-77.7,extratropical,NA,35,1001,75,0 +Frances,2004,9,9,18,44.3,-75.7,extratropical,NA,30,1002,0,0 +Frances,2004,9,10,0,45.3,-73.3,extratropical,NA,25,1003,0,0 +Frances,2004,9,10,6,46.2,-70.5,extratropical,NA,20,1004,0,0 +Frances,2004,9,10,12,46.6,-67.3,extratropical,NA,20,1005,0,0 +Frances,2004,9,10,18,47.2,-64.2,extratropical,NA,20,1005,0,0 +Gaston,2004,8,27,12,31.8,-78.1,tropical depression,NA,25,1015,0,0 +Gaston,2004,8,27,18,31.6,-78,tropical depression,NA,25,1014,0,0 +Gaston,2004,8,28,0,31.4,-78,tropical depression,NA,30,1011,0,0 +Gaston,2004,8,28,6,31.3,-78.2,tropical storm,NA,35,1005,50,0 +Gaston,2004,8,28,12,31.3,-78.5,tropical storm,NA,45,1000,50,0 +Gaston,2004,8,28,18,31.3,-78.8,tropical storm,NA,50,997,115,0 +Gaston,2004,8,29,0,31.5,-79.1,tropical storm,NA,55,994,100,0 +Gaston,2004,8,29,6,32.1,-79.4,tropical storm,NA,60,991,100,0 +Gaston,2004,8,29,12,32.8,-79.5,hurricane,1,65,986,80,10 +Gaston,2004,8,29,14,33,-79.6,hurricane,1,65,985,NA,NA +Gaston,2004,8,29,18,33.5,-79.6,tropical storm,NA,45,992,60,0 +Gaston,2004,8,30,0,34.2,-79.4,tropical depression,NA,30,995,0,0 +Gaston,2004,8,30,6,34.9,-79.1,tropical depression,NA,30,998,0,0 +Gaston,2004,8,30,12,35.6,-78.7,tropical depression,NA,25,1000,0,0 +Gaston,2004,8,30,18,36.4,-77.8,tropical depression,NA,30,1002,0,0 +Gaston,2004,8,31,0,37.2,-76.6,tropical storm,NA,35,1001,45,0 +Gaston,2004,8,31,6,38.1,-74.8,tropical storm,NA,35,1001,45,0 +Gaston,2004,8,31,12,39.1,-72.9,tropical storm,NA,35,1001,45,0 +Gaston,2004,8,31,18,40.2,-70.5,tropical storm,NA,35,999,120,0 +Gaston,2004,9,1,0,41,-67.5,tropical storm,NA,40,999,150,0 +Gaston,2004,9,1,6,41.7,-63.5,tropical storm,NA,45,999,180,0 +Gaston,2004,9,1,12,43,-59.6,extratropical,NA,45,999,180,0 +Gaston,2004,9,1,18,45,-55,extratropical,NA,45,998,330,0 +Gaston,2004,9,2,0,47,-50,extratropical,NA,45,997,240,0 +Gaston,2004,9,2,6,48.5,-44,extratropical,NA,45,996,240,0 +Gaston,2004,9,2,12,50,-38,extratropical,NA,45,994,240,0 +Gaston,2004,9,2,18,51.1,-32,extratropical,NA,40,994,240,0 +Gaston,2004,9,3,0,52,-28.9,extratropical,NA,35,998,240,0 +Hermine,2004,8,27,18,29,-65.2,tropical depression,NA,25,1016,0,0 +Hermine,2004,8,28,0,29,-65.7,tropical depression,NA,25,1016,0,0 +Hermine,2004,8,28,6,29.1,-66.2,tropical depression,NA,25,1016,0,0 +Hermine,2004,8,28,12,29.2,-66.6,tropical depression,NA,30,1015,0,0 +Hermine,2004,8,28,18,29.7,-67.2,tropical depression,NA,30,1015,0,0 +Hermine,2004,8,29,0,30.1,-68.4,tropical depression,NA,30,1014,0,0 +Hermine,2004,8,29,6,30.5,-69.2,tropical depression,NA,30,1014,0,0 +Hermine,2004,8,29,12,31.1,-69.8,tropical storm,NA,35,1012,75,0 +Hermine,2004,8,29,18,31.8,-70.5,tropical storm,NA,40,1005,75,0 +Hermine,2004,8,30,0,32.6,-71.1,tropical storm,NA,40,1005,100,0 +Hermine,2004,8,30,6,33.8,-71.5,tropical storm,NA,50,1002,90,0 +Hermine,2004,8,30,12,35.8,-71.5,tropical storm,NA,45,1007,100,0 +Hermine,2004,8,30,18,37.6,-71.4,tropical storm,NA,45,1008,125,0 +Hermine,2004,8,31,0,39.9,-71.3,tropical storm,NA,35,1011,40,0 +Hermine,2004,8,31,6,41.5,-70.9,tropical storm,NA,35,1012,25,0 +Hermine,2004,8,31,12,43.1,-70.5,extratropical,NA,25,1014,0,0 +Ivan,2004,9,2,18,9.7,-27.6,tropical depression,NA,25,1009,0,0 +Ivan,2004,9,3,0,9.7,-28.7,tropical depression,NA,30,1007,0,0 +Ivan,2004,9,3,6,9.7,-30.3,tropical storm,NA,35,1005,50,0 +Ivan,2004,9,3,12,9.5,-32.1,tropical storm,NA,40,1003,50,0 +Ivan,2004,9,3,18,9.3,-33.6,tropical storm,NA,45,1000,185,0 +Ivan,2004,9,4,0,9.1,-35,tropical storm,NA,45,999,185,0 +Ivan,2004,9,4,6,8.9,-36.5,tropical storm,NA,50,997,160,0 +Ivan,2004,9,4,12,8.9,-38.2,tropical storm,NA,50,997,160,0 +Ivan,2004,9,4,18,9,-39.9,tropical storm,NA,55,994,160,0 +Ivan,2004,9,5,0,9.3,-41.4,tropical storm,NA,60,991,190,0 +Ivan,2004,9,5,6,9.5,-43.4,hurricane,1,65,987,180,40 +Ivan,2004,9,5,12,9.8,-45.1,hurricane,2,85,977,200,40 +Ivan,2004,9,5,18,10.2,-46.8,hurricane,3,110,955,200,40 +Ivan,2004,9,6,0,10.6,-48.5,hurricane,4,115,948,220,60 +Ivan,2004,9,6,6,10.8,-50.5,hurricane,3,110,950,220,60 +Ivan,2004,9,6,12,11,-52.5,hurricane,3,110,955,240,60 +Ivan,2004,9,6,18,11.3,-54.4,hurricane,2,90,969,170,45 +Ivan,2004,9,7,0,11.2,-56.1,hurricane,2,90,964,190,60 +Ivan,2004,9,7,6,11.3,-57.8,hurricane,2,95,965,200,75 +Ivan,2004,9,7,12,11.6,-59.4,hurricane,3,100,963,200,75 +Ivan,2004,9,7,18,11.8,-61.1,hurricane,3,105,956,265,75 +Ivan,2004,9,7,21,11.9,-61.8,hurricane,3,110,952,NA,NA +Ivan,2004,9,8,0,12,-62.6,hurricane,4,115,950,265,80 +Ivan,2004,9,8,6,12.3,-64.1,hurricane,4,120,946,265,80 +Ivan,2004,9,8,12,12.6,-65.5,hurricane,4,120,955,265,80 +Ivan,2004,9,8,18,13,-67,hurricane,4,120,950,265,80 +Ivan,2004,9,9,0,13.3,-68.3,hurricane,4,130,938,265,75 +Ivan,2004,9,9,6,13.7,-69.5,hurricane,5,140,925,265,75 +Ivan,2004,9,9,12,14.2,-70.8,hurricane,5,140,919,265,75 +Ivan,2004,9,9,18,14.7,-71.9,hurricane,4,130,921,215,60 +Ivan,2004,9,10,0,15.2,-72.8,hurricane,4,130,923,240,80 +Ivan,2004,9,10,6,15.7,-73.8,hurricane,4,125,930,240,80 +Ivan,2004,9,10,12,16.2,-74.7,hurricane,4,125,934,240,75 +Ivan,2004,9,10,18,16.8,-75.8,hurricane,4,120,940,240,75 +Ivan,2004,9,11,0,17.3,-76.5,hurricane,4,135,926,240,80 +Ivan,2004,9,11,3,17.4,-77.2,hurricane,4,130,924,NA,NA +Ivan,2004,9,11,6,17.4,-77.6,hurricane,4,130,923,250,70 +Ivan,2004,9,11,12,17.7,-78.4,hurricane,4,125,925,250,70 +Ivan,2004,9,11,18,18,-79,hurricane,5,145,920,250,90 +Ivan,2004,9,12,0,18.2,-79.6,hurricane,5,145,910,250,120 +Ivan,2004,9,12,6,18.4,-80.4,hurricane,4,135,915,250,105 +Ivan,2004,9,12,12,18.8,-81.2,hurricane,4,135,919,270,125 +Ivan,2004,9,12,14,18.9,-81.5,hurricane,4,130,920,NA,NA +Ivan,2004,9,12,18,19.1,-82.1,hurricane,4,130,920,270,125 +Ivan,2004,9,13,0,19.5,-82.8,hurricane,5,140,916,300,130 +Ivan,2004,9,13,6,19.9,-83.5,hurricane,5,140,920,300,130 +Ivan,2004,9,13,12,20.4,-84.1,hurricane,5,140,915,305,130 +Ivan,2004,9,13,18,20.9,-84.7,hurricane,5,140,912,330,170 +Ivan,2004,9,13,21,21.2,-84.8,hurricane,5,140,910,NA,NA +Ivan,2004,9,14,0,21.6,-85.1,hurricane,5,140,914,325,160 +Ivan,2004,9,14,1,21.7,-85.2,hurricane,5,140,916,NA,NA +Ivan,2004,9,14,6,22.4,-85.6,hurricane,5,140,924,325,160 +Ivan,2004,9,14,12,23,-86,hurricane,4,125,930,375,160 +Ivan,2004,9,14,18,23.7,-86.5,hurricane,4,120,931,375,165 +Ivan,2004,9,15,0,24.7,-87,hurricane,4,120,928,375,165 +Ivan,2004,9,15,6,25.6,-87.4,hurricane,4,120,935,375,165 +Ivan,2004,9,15,12,26.7,-87.9,hurricane,4,115,939,425,165 +Ivan,2004,9,15,18,27.9,-88.2,hurricane,4,115,937,400,165 +Ivan,2004,9,16,0,28.9,-88.2,hurricane,3,110,931,400,165 +Ivan,2004,9,16,6,30,-87.9,hurricane,3,105,943,350,165 +Ivan,2004,9,16,6,30.2,-87.9,hurricane,3,105,946,NA,NA +Ivan,2004,9,16,12,31.4,-87.7,hurricane,1,70,965,325,80 +Ivan,2004,9,16,18,32.5,-87.4,tropical storm,NA,50,975,100,0 +Ivan,2004,9,17,0,33.8,-86.5,tropical depression,NA,30,986,0,0 +Ivan,2004,9,17,6,34.7,-85.7,tropical depression,NA,25,991,0,0 +Ivan,2004,9,17,12,35.4,-84,tropical depression,NA,20,994,0,0 +Ivan,2004,9,17,18,36.2,-82.3,tropical depression,NA,20,996,0,0 +Ivan,2004,9,18,0,37,-80.5,tropical depression,NA,20,999,0,0 +Ivan,2004,9,18,6,37.7,-78.5,tropical depression,NA,15,998,0,0 +Ivan,2004,9,18,12,38.4,-76.7,tropical depression,NA,15,1000,0,0 +Ivan,2004,9,18,18,38,-75.5,extratropical,NA,25,1002,0,0 +Ivan,2004,9,19,0,37.5,-74,extratropical,NA,35,1003,60,0 +Ivan,2004,9,19,6,36,-74,extratropical,NA,35,1005,75,0 +Ivan,2004,9,19,12,34.5,-74.5,extratropical,NA,35,1008,75,0 +Ivan,2004,9,19,18,32.8,-75.8,extratropical,NA,35,1008,75,0 +Ivan,2004,9,20,0,31,-77.5,extratropical,NA,35,1008,75,0 +Ivan,2004,9,20,6,29,-78.5,extratropical,NA,35,1008,60,0 +Ivan,2004,9,20,12,27.5,-78.7,extratropical,NA,30,1009,0,0 +Ivan,2004,9,20,18,26.4,-79.1,extratropical,NA,25,1009,0,0 +Ivan,2004,9,21,0,26.1,-79.7,extratropical,NA,25,1009,0,0 +Ivan,2004,9,21,6,25.9,-80.6,extratropical,NA,25,1009,0,0 +Ivan,2004,9,21,12,25.8,-81.7,extratropical,NA,25,1009,0,0 +Ivan,2004,9,21,18,25.2,-82.8,other low,NA,25,1010,0,0 +Ivan,2004,9,22,0,24.8,-84.1,other low,NA,25,1010,0,0 +Ivan,2004,9,22,6,25.1,-86.1,other low,NA,25,1010,0,0 +Ivan,2004,9,22,12,26,-87.3,other low,NA,25,1010,0,0 +Ivan,2004,9,22,18,26.5,-88.6,tropical depression,NA,30,1008,0,0 +Ivan,2004,9,23,0,27.1,-89.5,tropical storm,NA,35,1007,75,0 +Ivan,2004,9,23,6,27.9,-91,tropical storm,NA,35,1007,75,0 +Ivan,2004,9,23,12,28.9,-92.2,tropical storm,NA,50,998,100,0 +Ivan,2004,9,23,18,29.2,-92.7,tropical storm,NA,40,1003,90,0 +Ivan,2004,9,24,0,29.6,-93.2,tropical depression,NA,30,1003,0,0 +Ivan,2004,9,24,2,29.8,-93.6,tropical depression,NA,30,1004,0,0 +Ivan,2004,9,24,6,30.1,-94.2,tropical depression,NA,25,1009,0,0 +AL102004,2004,9,7,12,31.5,-39.7,tropical depression,NA,25,1009,0,0 +AL102004,2004,9,7,18,31.7,-39.3,tropical depression,NA,25,1009,0,0 +AL102004,2004,9,8,0,32,-38.7,tropical depression,NA,25,1010,0,0 +AL102004,2004,9,8,6,32.3,-38.1,tropical depression,NA,25,1011,0,0 +AL102004,2004,9,8,12,32.8,-37.1,tropical depression,NA,25,1012,0,0 +AL102004,2004,9,8,18,33.8,-36,tropical depression,NA,25,1012,0,0 +AL102004,2004,9,9,0,35.3,-35,tropical depression,NA,30,1012,0,0 +AL102004,2004,9,9,6,36.2,-34.3,tropical depression,NA,30,1013,0,0 +AL102004,2004,9,9,12,36.5,-33.6,other low,NA,30,1013,0,0 +AL102004,2004,9,9,18,36,-33.4,other low,NA,30,1014,0,0 +AL102004,2004,9,10,0,35.7,-32.3,other low,NA,30,1014,0,0 +AL102004,2004,9,10,6,35.5,-31,other low,NA,25,1015,0,0 +AL102004,2004,9,10,12,35.3,-29.5,other low,NA,20,1016,0,0 +Jeanne,2004,9,13,18,15.9,-60,tropical depression,NA,25,1010,0,0 +Jeanne,2004,9,14,0,16,-60.7,tropical depression,NA,25,1010,0,0 +Jeanne,2004,9,14,4,16.2,-61.3,tropical depression,NA,30,1009,0,0 +Jeanne,2004,9,14,6,16.3,-61.5,tropical depression,NA,30,1009,0,0 +Jeanne,2004,9,14,12,16.4,-62.6,tropical storm,NA,35,1006,45,0 +Jeanne,2004,9,14,18,16.7,-63.5,tropical storm,NA,50,996,70,0 +Jeanne,2004,9,15,0,17.1,-64,tropical storm,NA,55,996,70,0 +Jeanne,2004,9,15,6,17.2,-64.8,tropical storm,NA,55,994,70,0 +Jeanne,2004,9,15,12,17.6,-65.4,tropical storm,NA,60,991,100,0 +Jeanne,2004,9,15,16,18,-66,tropical storm,NA,60,991,NA,NA +Jeanne,2004,9,15,18,18.1,-66.2,tropical storm,NA,60,991,120,0 +Jeanne,2004,9,16,0,18.5,-67.1,tropical storm,NA,60,993,120,0 +Jeanne,2004,9,16,6,18.6,-67.8,tropical storm,NA,60,992,55,0 +Jeanne,2004,9,16,11,18.6,-68.3,hurricane,1,70,985,NA,NA +Jeanne,2004,9,16,12,18.6,-68.5,hurricane,1,70,984,55,20 +Jeanne,2004,9,16,18,18.8,-69,hurricane,1,65,988,120,20 +Jeanne,2004,9,17,0,19.2,-69.4,tropical storm,NA,60,990,120,0 +Jeanne,2004,9,17,6,19.4,-69.9,tropical storm,NA,55,990,120,0 +Jeanne,2004,9,17,12,19.7,-70.7,tropical storm,NA,50,990,225,0 +Jeanne,2004,9,17,18,20,-71.6,tropical depression,NA,30,1002,0,0 +Jeanne,2004,9,18,0,20.2,-72,tropical storm,NA,40,1000,15,0 +Jeanne,2004,9,18,6,20.4,-72.5,tropical storm,NA,45,1000,75,0 +Jeanne,2004,9,18,12,21.2,-72.8,tropical storm,NA,45,1000,75,0 +Jeanne,2004,9,18,18,21.7,-72.3,tropical storm,NA,40,1005,75,0 +Jeanne,2004,9,19,0,22.2,-72.2,tropical storm,NA,40,1002,75,0 +Jeanne,2004,9,19,6,22.8,-72.3,tropical storm,NA,40,1002,75,0 +Jeanne,2004,9,19,12,23.5,-72.5,tropical storm,NA,40,1000,75,0 +Jeanne,2004,9,19,18,24.2,-72.3,tropical storm,NA,45,996,150,0 +Jeanne,2004,9,20,0,24.8,-72.1,tropical storm,NA,50,994,150,0 +Jeanne,2004,9,20,6,25.5,-72,tropical storm,NA,55,992,165,0 +Jeanne,2004,9,20,12,26.6,-71.7,tropical storm,NA,60,989,170,0 +Jeanne,2004,9,20,18,27.2,-71.4,hurricane,1,75,984,170,40 +Jeanne,2004,9,21,0,27.4,-70.8,hurricane,1,75,982,180,40 +Jeanne,2004,9,21,6,27.6,-70.2,hurricane,1,75,972,195,75 +Jeanne,2004,9,21,12,27.6,-69.5,hurricane,1,75,972,195,70 +Jeanne,2004,9,21,18,27.4,-69.2,hurricane,1,75,972,195,70 +Jeanne,2004,9,22,0,27.2,-68.9,hurricane,1,80,972,190,70 +Jeanne,2004,9,22,6,26.8,-68.7,hurricane,2,85,968,210,70 +Jeanne,2004,9,22,12,26.5,-68.5,hurricane,2,85,968,220,70 +Jeanne,2004,9,22,18,26.2,-68.8,hurricane,2,85,967,220,70 +Jeanne,2004,9,23,0,25.7,-69,hurricane,2,85,966,220,70 +Jeanne,2004,9,23,6,25.5,-69.3,hurricane,2,85,966,220,70 +Jeanne,2004,9,23,12,25.5,-69.6,hurricane,1,80,966,220,70 +Jeanne,2004,9,23,18,25.8,-70,hurricane,1,75,966,220,70 +Jeanne,2004,9,24,0,26,-70.4,hurricane,1,70,966,220,70 +Jeanne,2004,9,24,6,26.1,-71.2,hurricane,1,75,969,225,70 +Jeanne,2004,9,24,12,26.2,-72.2,hurricane,1,80,969,235,75 +Jeanne,2004,9,24,18,26.4,-73.1,hurricane,2,85,968,235,75 +Jeanne,2004,9,25,0,26.4,-74.3,hurricane,2,85,964,285,105 +Jeanne,2004,9,25,6,26.5,-75.6,hurricane,2,90,960,285,105 +Jeanne,2004,9,25,12,26.6,-76.9,hurricane,3,100,957,255,105 +Jeanne,2004,9,25,14,26.7,-77.3,hurricane,3,100,956,NA,NA +Jeanne,2004,9,25,18,26.9,-78.2,hurricane,3,105,952,270,105 +Jeanne,2004,9,26,0,27.1,-79.4,hurricane,3,105,951,305,120 +Jeanne,2004,9,26,4,27.2,-80.2,hurricane,3,105,950,NA,NA +Jeanne,2004,9,26,6,27.3,-80.6,hurricane,2,95,953,305,100 +Jeanne,2004,9,26,12,27.7,-81.6,hurricane,1,75,965,275,30 +Jeanne,2004,9,26,18,28.3,-82.3,tropical storm,NA,55,970,275,0 +Jeanne,2004,9,27,0,29.3,-82.7,tropical storm,NA,45,978,225,0 +Jeanne,2004,9,27,6,30.1,-83.3,tropical storm,NA,40,981,265,0 +Jeanne,2004,9,27,12,31.1,-83.9,tropical storm,NA,35,987,265,0 +Jeanne,2004,9,27,18,32.5,-83.6,tropical depression,NA,30,993,0,0 +Jeanne,2004,9,28,0,33.2,-83.2,tropical depression,NA,25,998,0,0 +Jeanne,2004,9,28,6,34.1,-82.4,tropical depression,NA,20,999,0,0 +Jeanne,2004,9,28,12,35.4,-81,tropical depression,NA,20,1000,0,0 +Jeanne,2004,9,28,18,37.3,-78.4,tropical depression,NA,25,999,0,0 +Jeanne,2004,9,29,0,38.3,-76.4,extratropical,NA,25,999,0,0 +Jeanne,2004,9,29,6,38.8,-74.7,extratropical,NA,35,999,175,0 +Jeanne,2004,9,29,12,38.5,-72.5,extratropical,NA,35,999,150,0 +Karl,2004,9,16,6,11.2,-29.2,tropical depression,NA,30,1008,0,0 +Karl,2004,9,16,12,11.2,-30.7,tropical depression,NA,30,1007,0,0 +Karl,2004,9,16,18,11.2,-32.1,tropical storm,NA,35,1005,60,0 +Karl,2004,9,17,0,11.2,-33.3,tropical storm,NA,40,1002,80,0 +Karl,2004,9,17,6,11.6,-34.4,tropical storm,NA,50,997,110,0 +Karl,2004,9,17,12,12.1,-35.3,tropical storm,NA,55,994,120,0 +Karl,2004,9,17,18,13,-36,tropical storm,NA,55,992,150,0 +Karl,2004,9,18,0,13.9,-37,hurricane,1,70,984,150,25 +Karl,2004,9,18,6,14.5,-38,hurricane,2,85,975,170,35 +Karl,2004,9,18,12,15,-38.8,hurricane,2,90,970,210,35 +Karl,2004,9,18,18,15.6,-39.7,hurricane,2,95,965,210,45 +Karl,2004,9,19,0,15.9,-40.8,hurricane,2,95,965,210,45 +Karl,2004,9,19,6,16,-41.6,hurricane,3,100,960,225,55 +Karl,2004,9,19,12,16.3,-42.4,hurricane,3,105,955,210,55 +Karl,2004,9,19,18,16.7,-43.4,hurricane,3,110,951,240,60 +Karl,2004,9,20,0,16.8,-44.5,hurricane,3,110,951,240,60 +Karl,2004,9,20,6,17,-45.2,hurricane,4,115,948,270,70 +Karl,2004,9,20,12,17.5,-46,hurricane,3,110,951,310,90 +Karl,2004,9,20,18,18.1,-46.5,hurricane,3,110,951,325,105 +Karl,2004,9,21,0,18.7,-47,hurricane,4,120,943,375,105 +Karl,2004,9,21,6,19.6,-47.3,hurricane,4,125,938,425,120 +Karl,2004,9,21,12,20.8,-47.8,hurricane,4,120,943,450,135 +Karl,2004,9,21,18,22.3,-48.3,hurricane,3,105,948,450,150 +Karl,2004,9,22,0,23.7,-48.8,hurricane,3,100,955,450,150 +Karl,2004,9,22,6,24.9,-49.4,hurricane,2,95,962,450,150 +Karl,2004,9,22,12,26.2,-49.5,hurricane,2,90,967,450,150 +Karl,2004,9,22,18,27.5,-48.7,hurricane,2,90,970,450,150 +Karl,2004,9,23,0,29,-47.7,hurricane,2,95,965,475,125 +Karl,2004,9,23,6,30.7,-46.3,hurricane,3,110,951,500,125 +Karl,2004,9,23,12,32.5,-44.4,hurricane,3,105,953,525,125 +Karl,2004,9,23,18,34.5,-43,hurricane,2,90,955,550,125 +Karl,2004,9,24,0,36.8,-41.9,hurricane,1,80,957,550,125 +Karl,2004,9,24,6,39.5,-41.2,hurricane,1,75,959,575,125 +Karl,2004,9,24,12,42.6,-40.5,hurricane,1,70,961,600,140 +Karl,2004,9,24,18,45.5,-40.5,hurricane,1,65,962,675,140 +Karl,2004,9,25,0,48.1,-40.5,extratropical,NA,55,963,675,0 +Karl,2004,9,25,6,50.4,-38.9,extratropical,NA,55,967,675,0 +Karl,2004,9,25,12,53,-36.5,extratropical,NA,55,973,675,0 +Karl,2004,9,25,18,56.1,-32,extratropical,NA,55,980,675,0 +Karl,2004,9,26,0,59.5,-26,extratropical,NA,55,986,675,0 +Karl,2004,9,26,6,62,-17,extratropical,NA,55,983,675,0 +Karl,2004,9,26,12,63.5,-8,extratropical,NA,60,976,675,0 +Karl,2004,9,26,18,64,-2,extratropical,NA,60,976,675,0 +Karl,2004,9,27,0,64,2.5,extratropical,NA,55,980,510,0 +Karl,2004,9,27,6,64.5,7,extratropical,NA,45,980,380,0 +Karl,2004,9,27,12,65,10.5,extratropical,NA,40,986,180,0 +Karl,2004,9,27,18,65.3,12,extratropical,NA,35,989,180,0 +Karl,2004,9,28,0,65.5,13.5,extratropical,NA,30,992,0,0 +Lisa,2004,9,19,18,13.3,-32.4,tropical depression,NA,30,1004,0,0 +Lisa,2004,9,20,0,13.3,-33.3,tropical depression,NA,30,1004,0,0 +Lisa,2004,9,20,6,13.4,-34.3,tropical depression,NA,30,1004,0,0 +Lisa,2004,9,20,12,13.5,-35.4,tropical storm,NA,40,1002,80,0 +Lisa,2004,9,20,18,13.7,-36.4,tropical storm,NA,50,997,90,0 +Lisa,2004,9,21,0,13.7,-37.4,tropical storm,NA,55,994,90,0 +Lisa,2004,9,21,6,13.9,-38.3,tropical storm,NA,60,990,90,0 +Lisa,2004,9,21,12,14.1,-39.1,tropical storm,NA,60,990,90,0 +Lisa,2004,9,21,18,14.3,-39.7,tropical storm,NA,60,990,90,0 +Lisa,2004,9,22,0,14.4,-40.2,tropical storm,NA,55,994,100,0 +Lisa,2004,9,22,6,14.4,-40.6,tropical storm,NA,50,997,100,0 +Lisa,2004,9,22,12,14.2,-41.1,tropical storm,NA,45,1000,80,0 +Lisa,2004,9,22,18,13.9,-41.5,tropical storm,NA,45,1000,80,0 +Lisa,2004,9,23,0,13.2,-41.4,tropical storm,NA,45,1000,80,0 +Lisa,2004,9,23,6,13,-40.6,tropical storm,NA,40,1002,100,0 +Lisa,2004,9,23,12,13.1,-40,tropical storm,NA,35,1003,100,0 +Lisa,2004,9,23,18,14.3,-40.5,tropical depression,NA,30,1005,0,0 +Lisa,2004,9,24,0,14.3,-41.7,tropical depression,NA,30,1005,0,0 +Lisa,2004,9,24,6,13.8,-42.4,tropical storm,NA,40,1002,60,0 +Lisa,2004,9,24,12,13.9,-43.2,tropical storm,NA,35,1003,60,0 +Lisa,2004,9,24,18,14,-43.8,tropical depression,NA,30,1005,0,0 +Lisa,2004,9,25,0,14.3,-44.4,tropical depression,NA,30,1005,0,0 +Lisa,2004,9,25,6,14.9,-44.9,tropical storm,NA,35,1003,75,0 +Lisa,2004,9,25,12,15.7,-45.4,tropical storm,NA,45,1000,75,0 +Lisa,2004,9,25,18,16.7,-45.7,tropical storm,NA,45,1000,75,0 +Lisa,2004,9,26,0,17.4,-45.8,tropical storm,NA,45,1000,100,0 +Lisa,2004,9,26,6,18,-45.9,tropical storm,NA,50,997,150,0 +Lisa,2004,9,26,12,18.7,-46,tropical storm,NA,55,994,150,0 +Lisa,2004,9,26,18,19.2,-46,tropical storm,NA,50,997,150,0 +Lisa,2004,9,27,0,19.6,-46,tropical storm,NA,45,1000,175,0 +Lisa,2004,9,27,6,20,-46.1,tropical storm,NA,45,1000,200,0 +Lisa,2004,9,27,12,20.6,-46.2,tropical storm,NA,45,1000,150,0 +Lisa,2004,9,27,18,21.3,-46.2,tropical storm,NA,40,1002,75,0 +Lisa,2004,9,28,0,22,-46.4,tropical storm,NA,40,1002,125,0 +Lisa,2004,9,28,6,23,-46.5,tropical storm,NA,40,1002,125,0 +Lisa,2004,9,28,12,24.3,-46.5,tropical storm,NA,45,1000,125,0 +Lisa,2004,9,28,18,25.4,-46.5,tropical storm,NA,55,994,125,0 +Lisa,2004,9,29,0,26.4,-46.4,tropical storm,NA,60,990,150,0 +Lisa,2004,9,29,6,27.5,-46.2,tropical storm,NA,60,990,250,0 +Lisa,2004,9,29,12,28.9,-45.8,tropical storm,NA,60,990,275,0 +Lisa,2004,9,29,18,30.1,-45.8,tropical storm,NA,60,990,275,0 +Lisa,2004,9,30,0,31.1,-46.1,tropical storm,NA,60,990,350,0 +Lisa,2004,9,30,6,32,-46.7,tropical storm,NA,55,994,350,0 +Lisa,2004,9,30,12,32.4,-47.3,tropical storm,NA,50,997,230,0 +Lisa,2004,9,30,18,33.1,-47.8,tropical storm,NA,45,1000,185,0 +Lisa,2004,10,1,0,34.1,-47.8,tropical storm,NA,50,997,185,0 +Lisa,2004,10,1,6,35.1,-47.6,tropical storm,NA,55,994,185,0 +Lisa,2004,10,1,12,36.3,-47,tropical storm,NA,60,990,150,0 +Lisa,2004,10,1,18,37.7,-45.8,tropical storm,NA,60,990,130,0 +Lisa,2004,10,2,0,38.9,-43.8,tropical storm,NA,60,990,130,0 +Lisa,2004,10,2,6,40.3,-41.6,hurricane,1,65,987,130,20 +Lisa,2004,10,2,12,41.6,-39.1,hurricane,1,65,987,130,20 +Lisa,2004,10,2,18,42.8,-36,tropical storm,NA,55,994,125,0 +Lisa,2004,10,3,0,43.8,-33,tropical storm,NA,50,997,125,0 +Lisa,2004,10,3,6,44.5,-30,extratropical,NA,45,1000,125,0 +Matthew,2004,10,8,12,24,-95.4,tropical depression,NA,30,1007,0,0 +Matthew,2004,10,8,18,24.1,-94.2,tropical storm,NA,35,1004,150,0 +Matthew,2004,10,9,0,24.6,-93.7,tropical storm,NA,40,1000,150,0 +Matthew,2004,10,9,6,25.3,-93.2,tropical storm,NA,35,1002,100,0 +Matthew,2004,10,9,12,26.3,-92.8,tropical storm,NA,35,1002,100,0 +Matthew,2004,10,9,18,26.8,-92,tropical storm,NA,40,997,120,0 +Matthew,2004,10,10,0,27.3,-91.4,tropical storm,NA,40,998,120,0 +Matthew,2004,10,10,6,28.1,-91.2,tropical storm,NA,40,999,100,0 +Matthew,2004,10,10,11,29.2,-91,tropical storm,NA,35,999,NA,NA +Matthew,2004,10,10,12,29.4,-90.9,tropical depression,NA,30,1000,0,0 +Matthew,2004,10,10,18,30.4,-90.9,tropical depression,NA,25,1002,0,0 +Matthew,2004,10,11,0,32,-91,extratropical,NA,25,1003,0,0 +Matthew,2004,10,11,6,33.6,-91.9,extratropical,NA,20,1005,0,0 +Otto,2004,11,26,0,28,-40,extratropical,NA,30,1009,0,0 +Otto,2004,11,26,6,27.3,-41,extratropical,NA,35,1006,300,0 +Otto,2004,11,26,12,26.5,-41.9,extratropical,NA,35,1002,350,0 +Otto,2004,11,26,18,26.8,-42.5,extratropical,NA,35,1000,550,0 +Otto,2004,11,27,0,26.8,-43.2,extratropical,NA,35,1000,600,0 +Otto,2004,11,27,6,26.7,-43.8,extratropical,NA,35,1000,600,0 +Otto,2004,11,27,12,26.4,-44.3,extratropical,NA,35,1000,600,0 +Otto,2004,11,27,18,26.2,-44.4,extratropical,NA,35,1000,500,0 +Otto,2004,11,28,0,26.3,-44.1,extratropical,NA,35,1000,400,0 +Otto,2004,11,28,6,27.4,-43.9,extratropical,NA,35,1000,660,0 +Otto,2004,11,28,12,28.2,-44,extratropical,NA,35,1000,360,0 +Otto,2004,11,28,18,28.7,-45.1,extratropical,NA,35,999,360,0 +Otto,2004,11,29,0,28.8,-46.5,extratropical,NA,35,998,360,0 +Otto,2004,11,29,6,29,-47.8,extratropical,NA,40,998,330,0 +Otto,2004,11,29,12,29.6,-47.9,subtropical storm,NA,40,998,300,0 +Otto,2004,11,29,18,30.2,-48.8,subtropical storm,NA,45,998,275,0 +Otto,2004,11,30,0,30.7,-49.7,subtropical storm,NA,45,997,250,0 +Otto,2004,11,30,6,30.9,-50.5,subtropical storm,NA,45,997,225,0 +Otto,2004,11,30,12,31.3,-51,subtropical storm,NA,40,997,200,0 +Otto,2004,11,30,18,31.7,-51,tropical storm,NA,40,997,175,0 +Otto,2004,12,1,0,31.8,-50.9,tropical storm,NA,40,997,210,0 +Otto,2004,12,1,6,31.9,-50.8,tropical storm,NA,40,997,210,0 +Otto,2004,12,1,12,31.6,-50.4,tropical storm,NA,40,997,160,0 +Otto,2004,12,1,18,31,-50.1,tropical storm,NA,35,997,120,0 +Otto,2004,12,2,0,30.5,-49.9,tropical storm,NA,35,997,90,0 +Otto,2004,12,2,6,29.9,-50.1,tropical storm,NA,35,996,65,0 +Otto,2004,12,2,12,29.1,-50.4,tropical depression,NA,30,995,0,0 +Otto,2004,12,2,18,28.5,-50.1,tropical depression,NA,30,996,0,0 +Otto,2004,12,3,0,27.9,-50.1,tropical depression,NA,30,997,0,0 +Otto,2004,12,3,6,27.2,-50.2,other low,NA,30,998,0,0 +Otto,2004,12,3,12,26.5,-50.3,other low,NA,30,1000,0,0 +Otto,2004,12,3,18,26.2,-50.6,other low,NA,25,1002,0,0 +Otto,2004,12,4,0,25.8,-50.2,other low,NA,25,1005,0,0 +Otto,2004,12,4,6,25.4,-50.1,other low,NA,25,1008,0,0 +Otto,2004,12,4,12,25,-50.4,other low,NA,25,1010,0,0 +Otto,2004,12,4,18,25.1,-50.9,other low,NA,25,1011,0,0 +Otto,2004,12,5,0,25.5,-51.1,other low,NA,20,1012,0,0 +Otto,2004,12,5,6,25.9,-51.1,other low,NA,20,1013,0,0 +Otto,2004,12,5,12,26.1,-51.4,other low,NA,20,1014,0,0 +Arlene,2005,6,8,18,16.9,-84,tropical depression,NA,25,1004,0,0 +Arlene,2005,6,9,0,17.4,-83.9,tropical depression,NA,30,1003,0,0 +Arlene,2005,6,9,6,18.2,-83.9,tropical storm,NA,35,1003,130,0 +Arlene,2005,6,9,12,19,-84,tropical storm,NA,35,1002,130,0 +Arlene,2005,6,9,18,19.7,-84.1,tropical storm,NA,35,1002,120,0 +Arlene,2005,6,10,0,20.4,-84.2,tropical storm,NA,40,1001,100,0 +Arlene,2005,6,10,6,21.2,-84.4,tropical storm,NA,45,1000,120,0 +Arlene,2005,6,10,8,21.8,-84.5,tropical storm,NA,45,1000,NA,NA +Arlene,2005,6,10,12,23,-84.7,tropical storm,NA,50,1000,190,0 +Arlene,2005,6,10,18,24.9,-85.1,tropical storm,NA,55,995,140,0 +Arlene,2005,6,11,0,26.5,-85.6,tropical storm,NA,60,990,195,0 +Arlene,2005,6,11,1,26.5,-85.6,tropical storm,NA,60,989,NA,NA +Arlene,2005,6,11,6,27.7,-86.8,tropical storm,NA,60,993,195,0 +Arlene,2005,6,11,12,28.9,-87.2,tropical storm,NA,55,990,195,0 +Arlene,2005,6,11,18,30.1,-87.5,tropical storm,NA,50,991,100,0 +Arlene,2005,6,11,19,30.3,-87.5,tropical storm,NA,50,991,NA,NA +Arlene,2005,6,12,0,31.4,-87.6,tropical depression,NA,30,994,0,0 +Arlene,2005,6,12,6,32.7,-87.7,tropical depression,NA,25,998,0,0 +Arlene,2005,6,12,12,35,-88,tropical depression,NA,20,1003,0,0 +Arlene,2005,6,12,18,37,-87.8,tropical depression,NA,20,1005,0,0 +Arlene,2005,6,13,0,38.5,-87.5,tropical depression,NA,20,1006,0,0 +Arlene,2005,6,13,6,40.5,-86,tropical depression,NA,20,1006,0,0 +Arlene,2005,6,13,12,42,-85,other low,NA,20,1005,0,0 +Arlene,2005,6,13,18,43,-84,extratropical,NA,20,1005,0,0 +Arlene,2005,6,14,0,43.7,-81.1,extratropical,NA,20,1003,0,0 +Arlene,2005,6,14,6,44.8,-77.6,extratropical,NA,20,1001,0,0 +Bret,2005,6,28,18,19.7,-95.4,tropical depression,NA,30,1006,0,0 +Bret,2005,6,28,22,19.9,-95.7,tropical storm,NA,35,1002,NA,NA +Bret,2005,6,29,0,20,-95.8,tropical storm,NA,35,1005,50,0 +Bret,2005,6,29,6,20.4,-96.4,tropical storm,NA,35,1005,60,0 +Bret,2005,6,29,12,20.8,-97.3,tropical storm,NA,35,1005,60,0 +Bret,2005,6,29,18,21.4,-98.1,tropical depression,NA,25,1007,0,0 +Bret,2005,6,30,0,22,-98.5,tropical depression,NA,25,1008,0,0 +Cindy,2005,7,3,18,18.3,-86.7,tropical depression,NA,30,1009,0,0 +Cindy,2005,7,4,0,18.6,-87.2,tropical depression,NA,30,1007,0,0 +Cindy,2005,7,4,3,19,-87.6,tropical depression,NA,30,1007,0,0 +Cindy,2005,7,4,6,19.3,-87.9,tropical depression,NA,30,1007,0,0 +Cindy,2005,7,4,12,20.9,-88.5,tropical depression,NA,25,1011,0,0 +Cindy,2005,7,4,18,22.3,-89,tropical depression,NA,30,1010,0,0 +Cindy,2005,7,5,0,23.9,-89.7,tropical depression,NA,30,1009,0,0 +Cindy,2005,7,5,6,25.1,-90.2,tropical storm,NA,35,1009,75,0 +Cindy,2005,7,5,12,26.4,-90.4,tropical storm,NA,45,1002,110,0 +Cindy,2005,7,5,18,27.6,-90.5,tropical storm,NA,60,997,150,0 +Cindy,2005,7,6,0,28.5,-90.3,hurricane,1,65,992,150,20 +Cindy,2005,7,6,3,29.2,-90.1,hurricane,1,65,991,NA,NA +Cindy,2005,7,6,6,29.6,-90,tropical storm,NA,50,994,150,0 +Cindy,2005,7,6,9,30.2,-89.5,tropical storm,NA,45,995,NA,NA +Cindy,2005,7,6,12,30.8,-88.9,tropical storm,NA,40,998,70,0 +Cindy,2005,7,6,18,31.6,-88.1,tropical depression,NA,30,1000,0,0 +Cindy,2005,7,7,0,32.4,-87.2,tropical depression,NA,25,1004,0,0 +Cindy,2005,7,7,6,33.2,-86.2,tropical depression,NA,20,1008,0,0 +Cindy,2005,7,7,12,34.6,-84.1,extratropical,NA,20,1009,0,0 +Cindy,2005,7,7,18,35.6,-81.8,extratropical,NA,20,1010,0,0 +Cindy,2005,7,8,0,37.1,-80,extratropical,NA,20,1010,0,0 +Cindy,2005,7,8,6,37.8,-78.3,extratropical,NA,20,1010,0,0 +Cindy,2005,7,8,12,38.4,-76.7,extratropical,NA,25,1009,0,0 +Cindy,2005,7,8,18,39.1,-74.8,extratropical,NA,25,1009,0,0 +Cindy,2005,7,9,0,39.5,-72,extratropical,NA,25,1009,0,0 +Cindy,2005,7,9,6,40.8,-70.7,extratropical,NA,25,1009,0,0 +Cindy,2005,7,9,12,41.6,-69.8,extratropical,NA,30,1007,0,0 +Cindy,2005,7,9,18,43.5,-69.6,extratropical,NA,30,1006,0,0 +Cindy,2005,7,10,0,44.9,-69.8,extratropical,NA,30,1006,0,0 +Cindy,2005,7,10,6,45.5,-70,extratropical,NA,30,1006,0,0 +Cindy,2005,7,10,12,46.5,-67.6,extratropical,NA,25,1006,0,0 +Cindy,2005,7,10,18,48,-66.4,extratropical,NA,20,1006,0,0 +Cindy,2005,7,11,0,48.5,-64.5,extratropical,NA,20,1006,0,0 +Cindy,2005,7,11,6,48.5,-62.5,extratropical,NA,20,1006,0,0 +Dennis,2005,7,4,18,12,-60.8,tropical depression,NA,25,1010,0,0 +Dennis,2005,7,4,21,12.1,-61.6,tropical depression,NA,30,1010,0,0 +Dennis,2005,7,5,0,12.2,-62.5,tropical depression,NA,30,1009,0,0 +Dennis,2005,7,5,6,12.5,-64.2,tropical depression,NA,30,1008,0,0 +Dennis,2005,7,5,12,13,-65.9,tropical storm,NA,35,1007,90,0 +Dennis,2005,7,5,18,13.6,-67.3,tropical storm,NA,40,1005,90,0 +Dennis,2005,7,6,0,14.3,-68.5,tropical storm,NA,45,1000,90,0 +Dennis,2005,7,6,6,14.7,-69.7,tropical storm,NA,50,995,150,0 +Dennis,2005,7,6,12,15.1,-70.9,tropical storm,NA,55,991,150,0 +Dennis,2005,7,6,18,15.6,-71.9,tropical storm,NA,60,989,155,0 +Dennis,2005,7,7,0,16.2,-73,hurricane,1,70,982,180,20 +Dennis,2005,7,7,6,16.7,-74.1,hurricane,1,80,972,190,20 +Dennis,2005,7,7,12,17.6,-74.9,hurricane,2,90,967,205,40 +Dennis,2005,7,7,18,18.5,-76.1,hurricane,3,100,957,210,60 +Dennis,2005,7,8,0,19.4,-77.1,hurricane,4,120,951,210,65 +Dennis,2005,7,8,2,19.9,-77.6,hurricane,4,120,956,NA,NA +Dennis,2005,7,8,6,20.3,-78.4,hurricane,3,110,953,210,65 +Dennis,2005,7,8,12,20.9,-79.5,hurricane,4,130,938,220,65 +Dennis,2005,7,8,18,22,-80.6,hurricane,4,120,941,260,75 +Dennis,2005,7,8,18,22.1,-80.7,hurricane,4,120,941,NA,NA +Dennis,2005,7,9,0,22.7,-81.6,hurricane,3,100,960,290,75 +Dennis,2005,7,9,6,23.4,-82.5,hurricane,1,75,973,290,75 +Dennis,2005,7,9,12,24.3,-83.4,hurricane,1,80,967,290,60 +Dennis,2005,7,9,18,25.2,-84.2,hurricane,2,90,962,325,50 +Dennis,2005,7,10,0,26.1,-85,hurricane,3,110,942,350,50 +Dennis,2005,7,10,6,27.2,-85.8,hurricane,4,125,935,350,50 +Dennis,2005,7,10,12,28.5,-86.3,hurricane,4,120,930,315,50 +Dennis,2005,7,10,18,29.9,-86.9,hurricane,3,110,942,250,40 +Dennis,2005,7,10,19,30.4,-87.1,hurricane,3,105,946,NA,NA +Dennis,2005,7,11,0,31.5,-87.7,tropical storm,NA,45,970,120,0 +Dennis,2005,7,11,6,32.6,-88.5,tropical depression,NA,30,991,0,0 +Dennis,2005,7,11,12,33.9,-88.8,tropical depression,NA,25,997,0,0 +Dennis,2005,7,11,18,35.3,-89.1,tropical depression,NA,20,1002,0,0 +Dennis,2005,7,12,0,36.4,-89.2,tropical depression,NA,20,1003,0,0 +Dennis,2005,7,12,6,37.1,-89,tropical depression,NA,15,1005,0,0 +Dennis,2005,7,12,12,37.7,-88.7,tropical depression,NA,15,1007,0,0 +Dennis,2005,7,12,18,38.1,-88.3,tropical depression,NA,15,1008,0,0 +Dennis,2005,7,13,0,38.5,-87.8,tropical depression,NA,15,1009,0,0 +Dennis,2005,7,13,6,38.9,-87.2,tropical depression,NA,15,1010,0,0 +Dennis,2005,7,13,12,39.2,-86.5,other low,NA,15,1010,0,0 +Dennis,2005,7,13,18,39.2,-85.8,other low,NA,15,1010,0,0 +Dennis,2005,7,14,0,39.2,-85.7,other low,NA,10,1009,0,0 +Dennis,2005,7,14,6,39,-85.6,other low,NA,10,1009,0,0 +Dennis,2005,7,14,12,38.7,-85.6,other low,NA,10,1010,0,0 +Dennis,2005,7,14,18,38.4,-85.6,other low,NA,10,1010,0,0 +Dennis,2005,7,15,0,38.1,-85.8,other low,NA,10,1009,0,0 +Dennis,2005,7,15,6,37.9,-86.2,other low,NA,10,1010,0,0 +Dennis,2005,7,15,12,38.1,-86.4,other low,NA,10,1012,0,0 +Dennis,2005,7,15,18,38.4,-86.6,other low,NA,10,1012,0,0 +Dennis,2005,7,16,0,38.6,-86.8,other low,NA,10,1011,0,0 +Dennis,2005,7,16,6,39.4,-86.5,other low,NA,10,1013,0,0 +Dennis,2005,7,16,12,40.2,-86.2,other low,NA,10,1013,0,0 +Dennis,2005,7,16,18,40.8,-85.2,other low,NA,10,1014,0,0 +Dennis,2005,7,17,0,41.3,-84.1,other low,NA,10,1013,0,0 +Dennis,2005,7,17,6,42.2,-83.2,other low,NA,10,1013,0,0 +Dennis,2005,7,17,12,43.1,-82.3,other low,NA,10,1013,0,0 +Dennis,2005,7,17,18,43.9,-81.4,other low,NA,10,1012,0,0 +Dennis,2005,7,18,0,44.6,-80.5,other low,NA,10,1010,0,0 +Dennis,2005,7,18,6,45.8,-79.8,other low,NA,10,1009,0,0 +Emily,2005,7,11,0,10.7,-42.4,tropical depression,NA,25,1010,0,0 +Emily,2005,7,11,6,10.8,-43.4,tropical depression,NA,30,1009,0,0 +Emily,2005,7,11,12,10.9,-44.4,tropical depression,NA,30,1009,0,0 +Emily,2005,7,11,18,11,-45.4,tropical depression,NA,30,1007,0,0 +Emily,2005,7,12,0,11,-46.8,tropical storm,NA,35,1006,50,0 +Emily,2005,7,12,6,11,-48.5,tropical storm,NA,40,1005,50,0 +Emily,2005,7,12,12,11,-50.2,tropical storm,NA,45,1004,65,0 +Emily,2005,7,12,18,11,-52,tropical storm,NA,45,1004,65,0 +Emily,2005,7,13,0,11,-53.7,tropical storm,NA,45,1003,100,0 +Emily,2005,7,13,6,11.1,-55.4,tropical storm,NA,45,1003,125,0 +Emily,2005,7,13,12,11.2,-57.2,tropical storm,NA,50,1003,130,0 +Emily,2005,7,13,18,11.4,-58.9,tropical storm,NA,55,1003,190,0 +Emily,2005,7,14,0,11.6,-60.2,hurricane,1,70,999,190,20 +Emily,2005,7,14,6,11.9,-61.5,hurricane,1,75,991,190,25 +Emily,2005,7,14,7,12,-61.8,hurricane,1,75,989,NA,NA +Emily,2005,7,14,12,12.4,-63.2,hurricane,2,85,980,180,40 +Emily,2005,7,14,18,12.9,-64.9,hurricane,3,100,971,165,40 +Emily,2005,7,15,0,13.3,-66.7,hurricane,3,110,959,185,40 +Emily,2005,7,15,6,13.7,-68.4,hurricane,4,115,952,190,50 +Emily,2005,7,15,12,14.1,-70.1,hurricane,4,115,964,200,50 +Emily,2005,7,15,18,14.5,-71.8,hurricane,2,95,969,200,40 +Emily,2005,7,16,0,14.9,-73.4,hurricane,3,110,958,180,50 +Emily,2005,7,16,6,15.4,-75,hurricane,4,120,953,180,70 +Emily,2005,7,16,12,15.9,-76.5,hurricane,4,130,944,180,75 +Emily,2005,7,16,18,16.4,-78,hurricane,4,135,937,190,65 +Emily,2005,7,17,0,17.1,-79.5,hurricane,5,140,929,190,65 +Emily,2005,7,17,6,17.7,-81.2,hurricane,4,135,940,190,65 +Emily,2005,7,17,12,18.3,-82.8,hurricane,4,130,946,190,65 +Emily,2005,7,17,18,18.9,-84.3,hurricane,4,125,948,190,65 +Emily,2005,7,18,0,19.5,-85.8,hurricane,4,120,951,210,65 +Emily,2005,7,18,6,20.3,-87.3,hurricane,4,115,955,235,65 +Emily,2005,7,18,6,20.3,-87.4,hurricane,4,115,955,NA,NA +Emily,2005,7,18,12,21.3,-88.9,hurricane,1,65,975,215,30 +Emily,2005,7,18,18,22,-90.3,hurricane,1,65,984,150,30 +Emily,2005,7,19,0,22.6,-91.5,hurricane,1,75,981,175,30 +Emily,2005,7,19,6,23.2,-92.8,hurricane,1,80,980,180,50 +Emily,2005,7,19,12,23.7,-94,hurricane,1,80,977,205,55 +Emily,2005,7,19,18,24.1,-95.1,hurricane,2,85,959,220,70 +Emily,2005,7,20,0,24.4,-96.1,hurricane,3,110,948,230,85 +Emily,2005,7,20,6,24.6,-96.9,hurricane,3,110,944,230,85 +Emily,2005,7,20,12,24.8,-97.6,hurricane,3,110,944,215,85 +Emily,2005,7,20,18,25,-98.7,tropical storm,NA,70,975,190,60 +Emily,2005,7,21,0,25,-99.7,tropical storm,NA,45,995,120,0 +Emily,2005,7,21,6,25,-100.5,tropical depression,NA,30,1000,0,0 +Emily,2005,7,21,12,25,-101.1,tropical depression,NA,25,1007,0,0 +Franklin,2005,7,21,18,25,-75,tropical depression,NA,30,1010,0,0 +Franklin,2005,7,22,0,25.7,-75.9,tropical storm,NA,40,1009,35,0 +Franklin,2005,7,22,6,26.2,-76.4,tropical storm,NA,40,1008,35,0 +Franklin,2005,7,22,12,26.6,-76.8,tropical storm,NA,45,1007,30,0 +Franklin,2005,7,22,18,27.4,-76.7,tropical storm,NA,45,1006,45,0 +Franklin,2005,7,23,0,28.1,-76.6,tropical storm,NA,45,1003,75,0 +Franklin,2005,7,23,6,28.7,-76.1,tropical storm,NA,50,1001,100,0 +Franklin,2005,7,23,12,29.2,-75.4,tropical storm,NA,60,1001,115,0 +Franklin,2005,7,23,18,29.7,-74.7,tropical storm,NA,60,1001,120,0 +Franklin,2005,7,24,0,30.1,-73.5,tropical storm,NA,55,1001,105,0 +Franklin,2005,7,24,6,30.3,-72.6,tropical storm,NA,55,1001,90,0 +Franklin,2005,7,24,12,30.7,-71.9,tropical storm,NA,45,1001,90,0 +Franklin,2005,7,24,18,31.1,-71.2,tropical storm,NA,45,1000,90,0 +Franklin,2005,7,25,0,31.1,-71.2,tropical storm,NA,40,1000,105,0 +Franklin,2005,7,25,6,31,-70.5,tropical storm,NA,40,1000,120,0 +Franklin,2005,7,25,12,30.9,-69.8,tropical storm,NA,40,999,150,0 +Franklin,2005,7,25,18,30.9,-69.6,tropical storm,NA,40,999,150,0 +Franklin,2005,7,26,0,30.9,-68.6,tropical storm,NA,35,1000,150,0 +Franklin,2005,7,26,6,31.2,-68.2,tropical storm,NA,35,1001,120,0 +Franklin,2005,7,26,12,31.7,-68.1,tropical storm,NA,35,1002,90,0 +Franklin,2005,7,26,18,32.2,-68.3,tropical storm,NA,35,1001,90,0 +Franklin,2005,7,27,0,32.4,-68.5,tropical storm,NA,40,1000,90,0 +Franklin,2005,7,27,6,32.8,-68.8,tropical storm,NA,40,1000,90,0 +Franklin,2005,7,27,12,33.2,-69.1,tropical storm,NA,45,999,90,0 +Franklin,2005,7,27,18,33.6,-69.3,tropical storm,NA,45,999,130,0 +Franklin,2005,7,28,0,34.2,-69.4,tropical storm,NA,50,997,160,0 +Franklin,2005,7,28,6,35,-69.3,tropical storm,NA,50,997,160,0 +Franklin,2005,7,28,12,36,-69.1,tropical storm,NA,45,999,100,0 +Franklin,2005,7,28,18,37.1,-68,tropical storm,NA,50,997,115,0 +Franklin,2005,7,29,0,38.4,-66.6,tropical storm,NA,50,997,125,0 +Franklin,2005,7,29,6,39.6,-64.8,tropical storm,NA,50,997,135,0 +Franklin,2005,7,29,12,40.8,-62.8,tropical storm,NA,50,997,165,0 +Franklin,2005,7,29,18,42.2,-60.2,tropical storm,NA,50,999,160,0 +Franklin,2005,7,30,0,43.5,-57.5,extratropical,NA,50,1001,150,0 +Franklin,2005,7,30,6,44.7,-54.6,extratropical,NA,45,1003,120,0 +Franklin,2005,7,30,12,45.8,-51.7,extratropical,NA,40,1005,130,0 +Franklin,2005,7,30,18,46.4,-48.8,extratropical,NA,40,1006,130,0 +Franklin,2005,7,31,0,47.5,-46,extratropical,NA,40,1006,130,0 +Gert,2005,7,23,18,19.3,-92.9,tropical depression,NA,25,1011,0,0 +Gert,2005,7,24,0,19.8,-93.8,tropical depression,NA,30,1009,0,0 +Gert,2005,7,24,6,20.8,-95,tropical storm,NA,35,1009,50,0 +Gert,2005,7,24,12,21,-95.8,tropical storm,NA,35,1008,100,0 +Gert,2005,7,24,18,21.4,-96.6,tropical storm,NA,35,1007,150,0 +Gert,2005,7,25,0,21.8,-97.6,tropical storm,NA,40,1005,150,0 +Gert,2005,7,25,6,22.3,-98.6,tropical depression,NA,30,1006,0,0 +Gert,2005,7,25,12,22.5,-100,tropical depression,NA,25,1006,0,0 +Gert,2005,7,25,18,22.5,-101.4,other low,NA,20,1007,0,0 +Harvey,2005,8,2,18,28.2,-68.8,tropical depression,NA,30,1006,0,0 +Harvey,2005,8,3,0,28.9,-68.7,tropical depression,NA,30,1005,0,0 +Harvey,2005,8,3,6,29.5,-68.6,tropical storm,NA,40,1003,90,0 +Harvey,2005,8,3,12,30.3,-68.3,tropical storm,NA,45,1001,90,0 +Harvey,2005,8,3,18,30.9,-67.7,tropical storm,NA,50,999,90,0 +Harvey,2005,8,4,0,31.3,-66.4,tropical storm,NA,50,997,90,0 +Harvey,2005,8,4,6,31.6,-65,tropical storm,NA,50,995,90,0 +Harvey,2005,8,4,12,31.9,-63.6,tropical storm,NA,50,995,105,0 +Harvey,2005,8,4,18,32,-62.1,tropical storm,NA,55,994,105,0 +Harvey,2005,8,5,0,32.1,-60.5,tropical storm,NA,55,994,120,0 +Harvey,2005,8,5,6,32.4,-59.4,tropical storm,NA,55,994,120,0 +Harvey,2005,8,5,12,32.5,-58.5,tropical storm,NA,50,995,135,0 +Harvey,2005,8,5,18,32.5,-57.7,tropical storm,NA,45,997,135,0 +Harvey,2005,8,6,0,32.6,-57.1,tropical storm,NA,45,997,150,0 +Harvey,2005,8,6,6,33,-56.8,tropical storm,NA,50,995,150,0 +Harvey,2005,8,6,12,33.5,-56.7,tropical storm,NA,50,995,135,0 +Harvey,2005,8,6,18,33.5,-56.7,tropical storm,NA,50,995,130,0 +Harvey,2005,8,7,0,34.1,-55.5,tropical storm,NA,50,995,130,0 +Harvey,2005,8,7,6,35.1,-54.9,tropical storm,NA,50,995,130,0 +Harvey,2005,8,7,12,36,-54,tropical storm,NA,45,998,130,0 +Harvey,2005,8,7,18,36.8,-52.9,tropical storm,NA,45,998,130,0 +Harvey,2005,8,8,0,37.6,-51.9,tropical storm,NA,45,998,150,0 +Harvey,2005,8,8,6,38.6,-50.7,tropical storm,NA,45,998,150,0 +Harvey,2005,8,8,12,39.6,-48.6,tropical storm,NA,45,998,180,0 +Harvey,2005,8,8,18,40.4,-46.9,tropical storm,NA,45,998,180,0 +Harvey,2005,8,9,0,41.2,-45,extratropical,NA,45,997,195,0 +Harvey,2005,8,9,6,41.8,-43,extratropical,NA,50,995,220,0 +Harvey,2005,8,9,12,42.3,-41.1,extratropical,NA,50,995,220,0 +Harvey,2005,8,9,18,43,-39,extratropical,NA,50,994,240,0 +Harvey,2005,8,10,0,44,-37.1,extratropical,NA,50,994,240,0 +Harvey,2005,8,10,6,44.5,-35.2,extratropical,NA,50,994,290,0 +Harvey,2005,8,10,12,44.5,-34.1,extratropical,NA,50,994,290,0 +Harvey,2005,8,10,18,44.4,-33.1,extratropical,NA,50,994,230,0 +Harvey,2005,8,11,0,44.2,-32.2,extratropical,NA,45,997,195,0 +Harvey,2005,8,11,6,43.9,-31.5,extratropical,NA,40,1000,100,0 +Harvey,2005,8,11,12,43.5,-31,extratropical,NA,35,1003,60,0 +Harvey,2005,8,11,18,43.3,-30.7,extratropical,NA,30,1005,0,0 +Harvey,2005,8,12,0,43,-30.5,extratropical,NA,30,1007,0,0 +Harvey,2005,8,12,6,42.5,-30.8,extratropical,NA,30,1008,0,0 +Harvey,2005,8,12,12,42,-31.4,extratropical,NA,30,1009,0,0 +Harvey,2005,8,12,18,41.3,-31.5,other low,NA,25,1010,0,0 +Harvey,2005,8,13,0,40.7,-31.5,other low,NA,25,1010,0,0 +Harvey,2005,8,13,6,40.5,-31.5,other low,NA,25,1011,0,0 +Harvey,2005,8,13,12,40.5,-31.5,other low,NA,25,1011,0,0 +Harvey,2005,8,13,18,41.2,-32,other low,NA,25,1012,0,0 +Harvey,2005,8,14,0,42,-32.5,other low,NA,25,1015,0,0 +Irene,2005,8,4,18,12.9,-33.5,tropical depression,NA,25,1009,0,0 +Irene,2005,8,5,0,13.6,-34.5,tropical depression,NA,25,1009,0,0 +Irene,2005,8,5,6,14.6,-35.5,tropical depression,NA,25,1009,0,0 +Irene,2005,8,5,12,15.6,-36.8,tropical depression,NA,30,1008,0,0 +Irene,2005,8,5,18,16.6,-38.4,tropical depression,NA,30,1008,0,0 +Irene,2005,8,6,0,17.2,-39.8,tropical depression,NA,30,1008,0,0 +Irene,2005,8,6,6,17.7,-40.5,tropical depression,NA,30,1008,0,0 +Irene,2005,8,6,12,18.2,-41.6,tropical depression,NA,30,1008,0,0 +Irene,2005,8,6,18,18.8,-42.8,tropical depression,NA,30,1008,0,0 +Irene,2005,8,7,0,19.3,-43.5,tropical depression,NA,30,1008,0,0 +Irene,2005,8,7,6,19.7,-44.2,tropical depression,NA,30,1007,0,0 +Irene,2005,8,7,12,20.2,-45,tropical storm,NA,35,1005,40,0 +Irene,2005,8,7,18,20.8,-46,tropical storm,NA,35,1005,40,0 +Irene,2005,8,8,0,21.3,-47.2,tropical storm,NA,35,1005,120,0 +Irene,2005,8,8,6,21.8,-48.3,tropical storm,NA,35,1006,120,0 +Irene,2005,8,8,12,22.2,-49.9,tropical depression,NA,30,1009,0,0 +Irene,2005,8,8,18,22.4,-50.9,tropical depression,NA,30,1009,0,0 +Irene,2005,8,9,0,22.5,-52,tropical depression,NA,30,1009,0,0 +Irene,2005,8,9,6,22.4,-52.9,tropical depression,NA,30,1009,0,0 +Irene,2005,8,9,12,22.4,-53.7,tropical depression,NA,30,1009,0,0 +Irene,2005,8,9,18,22.4,-54.8,tropical depression,NA,30,1009,0,0 +Irene,2005,8,10,0,22.4,-55.7,tropical depression,NA,30,1009,0,0 +Irene,2005,8,10,6,22.3,-56.5,tropical depression,NA,30,1009,0,0 +Irene,2005,8,10,12,22.4,-57.2,tropical depression,NA,30,1009,0,0 +Irene,2005,8,10,18,22.8,-58.1,tropical depression,NA,30,1008,0,0 +Irene,2005,8,11,0,23.3,-59.3,tropical storm,NA,35,1005,80,0 +Irene,2005,8,11,6,23.9,-60.4,tropical storm,NA,40,1003,80,0 +Irene,2005,8,11,12,24.7,-61.7,tropical storm,NA,45,1001,90,0 +Irene,2005,8,11,18,25.4,-62.9,tropical storm,NA,45,1001,90,0 +Irene,2005,8,12,0,26.3,-63.8,tropical storm,NA,45,1001,100,0 +Irene,2005,8,12,6,27.2,-65.1,tropical storm,NA,55,998,100,0 +Irene,2005,8,12,12,27.9,-66.3,tropical storm,NA,55,996,100,0 +Irene,2005,8,12,18,28.4,-67.1,tropical storm,NA,55,995,150,0 +Irene,2005,8,13,0,28.9,-67.7,tropical storm,NA,60,993,150,0 +Irene,2005,8,13,6,29.6,-68.2,tropical storm,NA,60,996,135,0 +Irene,2005,8,13,12,30,-69,tropical storm,NA,60,997,135,0 +Irene,2005,8,13,18,30.8,-69.4,tropical storm,NA,60,1000,150,0 +Irene,2005,8,14,0,31.6,-69.9,tropical storm,NA,60,997,150,0 +Irene,2005,8,14,6,32.1,-70.2,tropical storm,NA,55,999,150,0 +Irene,2005,8,14,12,33.1,-70.1,tropical storm,NA,55,999,150,0 +Irene,2005,8,14,18,34,-70,tropical storm,NA,60,994,130,0 +Irene,2005,8,15,0,34.9,-69.5,hurricane,1,70,989,150,20 +Irene,2005,8,15,6,35.7,-68.7,hurricane,1,75,985,150,20 +Irene,2005,8,15,12,36.3,-67.7,hurricane,1,75,985,170,40 +Irene,2005,8,15,18,36.5,-66.5,hurricane,1,80,980,170,40 +Irene,2005,8,16,0,36.6,-65.1,hurricane,1,80,980,170,40 +Irene,2005,8,16,6,36.6,-64,hurricane,1,80,978,170,40 +Irene,2005,8,16,12,36.6,-63,hurricane,2,85,975,170,40 +Irene,2005,8,16,18,36.5,-62,hurricane,2,90,970,170,40 +Irene,2005,8,17,0,36.5,-61.3,hurricane,1,80,978,170,40 +Irene,2005,8,17,6,36.5,-60.6,hurricane,1,75,983,150,35 +Irene,2005,8,17,12,36.9,-59.1,hurricane,1,65,987,170,40 +Irene,2005,8,17,18,37.6,-57.3,hurricane,1,65,987,170,40 +Irene,2005,8,18,0,38.6,-55,tropical storm,NA,60,990,135,0 +Irene,2005,8,18,6,40.3,-52.3,tropical storm,NA,60,990,135,0 +Irene,2005,8,18,12,43.3,-48.9,tropical storm,NA,50,992,420,0 +Ten,2005,8,13,12,13.3,-43.6,tropical depression,NA,25,1009,0,0 +Ten,2005,8,13,18,13.8,-44.7,tropical depression,NA,30,1008,0,0 +Ten,2005,8,14,0,13.8,-45.7,tropical depression,NA,30,1008,0,0 +Ten,2005,8,14,6,13.4,-46,tropical depression,NA,25,1009,0,0 +Ten,2005,8,14,12,13.5,-46.4,tropical depression,NA,25,1009,0,0 +Ten,2005,8,14,18,13.9,-46.7,other low,NA,25,1010,0,0 +Ten,2005,8,15,0,14.4,-47.4,other low,NA,25,1010,0,0 +Ten,2005,8,15,6,14.5,-48.4,other low,NA,25,1010,0,0 +Ten,2005,8,15,12,14.6,-49.3,other low,NA,25,1010,0,0 +Ten,2005,8,15,18,14.8,-49.9,other low,NA,25,1010,0,0 +Ten,2005,8,16,0,15.1,-50.4,other low,NA,25,1010,0,0 +Ten,2005,8,16,6,15.5,-51.1,other low,NA,25,1010,0,0 +Ten,2005,8,16,12,16,-52,other low,NA,25,1010,0,0 +Ten,2005,8,16,18,16.1,-53.2,other low,NA,25,1010,0,0 +Ten,2005,8,17,0,16.1,-54.1,other low,NA,25,1010,0,0 +Ten,2005,8,17,6,16.1,-54.9,other low,NA,25,1010,0,0 +Ten,2005,8,17,12,16.7,-55.6,other low,NA,25,1010,0,0 +Ten,2005,8,17,18,17.1,-56.6,other low,NA,25,1010,0,0 +Ten,2005,8,18,0,17.3,-57.7,other low,NA,25,1010,0,0 +Ten,2005,8,18,6,17.6,-58.9,other low,NA,25,1012,0,0 +Ten,2005,8,18,12,18,-60.1,other low,NA,25,1014,0,0 +Jose,2005,8,22,12,19.4,-94.5,tropical depression,NA,30,1006,0,0 +Jose,2005,8,22,18,19.6,-95,tropical storm,NA,35,1004,30,0 +Jose,2005,8,23,0,19.7,-95.7,tropical storm,NA,45,1001,70,0 +Jose,2005,8,23,3,19.7,-96.4,tropical storm,NA,50,998,NA,NA +Jose,2005,8,23,6,19.7,-96.7,tropical storm,NA,35,1002,40,0 +Jose,2005,8,23,12,19.7,-97.7,tropical depression,NA,25,1005,0,0 +Katrina,2005,8,23,18,23.1,-75.1,tropical depression,NA,30,1008,0,0 +Katrina,2005,8,24,0,23.4,-75.7,tropical depression,NA,30,1007,0,0 +Katrina,2005,8,24,6,23.8,-76.2,tropical depression,NA,30,1007,0,0 +Katrina,2005,8,24,12,24.5,-76.5,tropical storm,NA,35,1006,60,0 +Katrina,2005,8,24,18,25.4,-76.9,tropical storm,NA,40,1003,60,0 +Katrina,2005,8,25,0,26,-77.7,tropical storm,NA,45,1000,60,0 +Katrina,2005,8,25,6,26.1,-78.4,tropical storm,NA,50,997,60,0 +Katrina,2005,8,25,12,26.2,-79,tropical storm,NA,55,994,110,0 +Katrina,2005,8,25,18,26.2,-79.6,tropical storm,NA,60,988,130,0 +Katrina,2005,8,25,22,26,-80.1,hurricane,1,70,984,NA,NA +Katrina,2005,8,26,0,25.9,-80.3,hurricane,1,70,983,120,20 +Katrina,2005,8,26,6,25.4,-81.3,hurricane,1,65,987,115,20 +Katrina,2005,8,26,12,25.1,-82,hurricane,1,75,979,120,30 +Katrina,2005,8,26,18,24.9,-82.6,hurricane,2,85,968,130,35 +Katrina,2005,8,27,0,24.6,-83.3,hurricane,2,90,959,165,45 +Katrina,2005,8,27,6,24.4,-84,hurricane,2,95,950,220,65 +Katrina,2005,8,27,12,24.4,-84.7,hurricane,3,100,942,220,65 +Katrina,2005,8,27,18,24.5,-85.3,hurricane,3,100,948,230,80 +Katrina,2005,8,28,0,24.8,-85.9,hurricane,3,100,941,240,105 +Katrina,2005,8,28,6,25.2,-86.7,hurricane,4,125,930,300,150 +Katrina,2005,8,28,12,25.7,-87.7,hurricane,5,145,909,320,165 +Katrina,2005,8,28,18,26.3,-88.6,hurricane,5,150,902,360,180 +Katrina,2005,8,29,0,27.2,-89.2,hurricane,5,140,905,380,170 +Katrina,2005,8,29,6,28.2,-89.6,hurricane,4,125,913,350,160 +Katrina,2005,8,29,11,29.3,-89.6,hurricane,3,110,920,NA,NA +Katrina,2005,8,29,12,29.5,-89.6,hurricane,3,110,923,350,150 +Katrina,2005,8,29,14,30.2,-89.6,hurricane,3,105,928,NA,NA +Katrina,2005,8,29,18,31.1,-89.6,hurricane,1,80,948,280,80 +Katrina,2005,8,30,0,32.6,-89.1,tropical storm,NA,50,961,165,0 +Katrina,2005,8,30,6,34.1,-88.6,tropical storm,NA,40,978,150,0 +Katrina,2005,8,30,12,35.6,-88,tropical depression,NA,30,985,0,0 +Katrina,2005,8,30,18,37,-87,tropical depression,NA,30,990,0,0 +Katrina,2005,8,31,0,38.6,-85.3,extratropical,NA,30,994,0,0 +Katrina,2005,8,31,6,40.1,-82.9,extratropical,NA,25,996,0,0 +Lee,2005,8,28,12,14,-45.1,tropical depression,NA,25,1009,0,0 +Lee,2005,8,28,18,14.9,-46.4,tropical depression,NA,25,1007,0,0 +Lee,2005,8,29,0,15.7,-47.6,tropical depression,NA,25,1007,0,0 +Lee,2005,8,29,6,17,-48.9,tropical depression,NA,25,1007,0,0 +Lee,2005,8,29,12,17.7,-50.6,tropical depression,NA,25,1008,0,0 +Lee,2005,8,29,18,18.5,-52.5,other low,NA,20,1009,0,0 +Lee,2005,8,30,0,20.5,-53.2,other low,NA,20,1010,0,0 +Lee,2005,8,30,6,22.1,-53.6,other low,NA,20,1010,0,0 +Lee,2005,8,30,12,24.2,-54.2,other low,NA,20,1010,0,0 +Lee,2005,8,30,18,25.5,-53.6,other low,NA,25,1010,0,0 +Lee,2005,8,31,0,26.9,-52.7,other low,NA,25,1010,0,0 +Lee,2005,8,31,6,28,-51.6,tropical depression,NA,30,1007,0,0 +Lee,2005,8,31,12,29,-50.4,tropical storm,NA,35,1006,60,0 +Lee,2005,8,31,18,30.1,-50.1,tropical storm,NA,35,1007,60,0 +Lee,2005,9,1,0,31.1,-50.3,tropical depression,NA,30,1009,0,0 +Lee,2005,9,1,6,31.9,-51.2,tropical depression,NA,30,1010,0,0 +Lee,2005,9,1,12,31.9,-51.4,tropical depression,NA,30,1010,0,0 +Lee,2005,9,1,18,32.3,-51.5,tropical depression,NA,30,1010,0,0 +Lee,2005,9,2,0,32.4,-52,tropical depression,NA,25,1010,0,0 +Lee,2005,9,2,6,32.6,-52.3,other low,NA,25,1010,0,0 +Lee,2005,9,2,12,33.2,-52.3,other low,NA,25,1010,0,0 +Lee,2005,9,2,18,33.9,-52.7,other low,NA,25,1010,0,0 +Lee,2005,9,3,0,34.7,-53.2,other low,NA,25,1010,0,0 +Lee,2005,9,3,6,35.5,-53.9,other low,NA,25,1010,0,0 +Lee,2005,9,3,12,36.6,-54.2,other low,NA,25,1010,0,0 +Lee,2005,9,3,18,37.4,-53.9,other low,NA,25,1010,0,0 +Maria,2005,9,1,12,18.8,-45.5,tropical depression,NA,30,1008,0,0 +Maria,2005,9,1,18,19.3,-46.2,tropical depression,NA,30,1008,0,0 +Maria,2005,9,2,0,19.9,-47.2,tropical depression,NA,30,1008,0,0 +Maria,2005,9,2,6,20.5,-48.3,tropical depression,NA,30,1008,0,0 +Maria,2005,9,2,12,21.1,-49.4,tropical storm,NA,35,1006,60,0 +Maria,2005,9,2,18,21.5,-50.2,tropical storm,NA,40,1003,60,0 +Maria,2005,9,3,0,22,-51,tropical storm,NA,45,1001,90,0 +Maria,2005,9,3,6,23,-52,tropical storm,NA,45,1000,90,0 +Maria,2005,9,3,12,24.4,-53.1,tropical storm,NA,50,997,100,0 +Maria,2005,9,3,18,25.5,-54,tropical storm,NA,55,994,120,0 +Maria,2005,9,4,0,26.5,-54.6,tropical storm,NA,60,990,130,0 +Maria,2005,9,4,6,27.5,-55.1,hurricane,1,65,987,130,20 +Maria,2005,9,4,12,28.6,-55.5,hurricane,1,65,987,150,30 +Maria,2005,9,4,18,29.6,-56,hurricane,1,75,980,150,30 +Maria,2005,9,5,0,30.2,-56.5,hurricane,1,75,980,150,30 +Maria,2005,9,5,6,30.9,-56.8,hurricane,1,80,977,155,30 +Maria,2005,9,5,12,31.5,-56.8,hurricane,2,85,975,180,40 +Maria,2005,9,5,18,32.1,-56.7,hurricane,2,90,970,180,40 +Maria,2005,9,6,0,32.6,-56.6,hurricane,3,100,962,180,40 +Maria,2005,9,6,6,33,-56.5,hurricane,2,90,970,180,35 +Maria,2005,9,6,12,33.5,-56,hurricane,1,80,975,200,35 +Maria,2005,9,6,18,33.9,-55.4,hurricane,1,75,980,200,35 +Maria,2005,9,7,0,34.4,-54.6,hurricane,1,65,987,200,60 +Maria,2005,9,7,6,34.8,-53.3,hurricane,1,70,983,280,90 +Maria,2005,9,7,12,35.6,-51.8,hurricane,1,75,980,375,150 +Maria,2005,9,7,18,36.5,-50.8,hurricane,1,75,980,375,150 +Maria,2005,9,8,0,37.2,-49.9,hurricane,1,70,982,375,135 +Maria,2005,9,8,6,37.9,-49,hurricane,1,65,985,375,135 +Maria,2005,9,8,12,38.7,-48,hurricane,1,65,985,400,75 +Maria,2005,9,8,18,39.1,-47.2,hurricane,1,65,985,400,75 +Maria,2005,9,9,0,39.4,-46.4,tropical storm,NA,60,987,400,0 +Maria,2005,9,9,6,39.8,-44.9,tropical storm,NA,55,987,375,0 +Maria,2005,9,9,12,40.4,-43.4,tropical storm,NA,55,988,350,0 +Maria,2005,9,9,18,41.1,-42.1,tropical storm,NA,50,988,350,0 +Maria,2005,9,10,0,41.9,-40.6,tropical storm,NA,50,988,350,0 +Maria,2005,9,10,6,42.9,-39.2,tropical storm,NA,50,988,350,0 +Maria,2005,9,10,12,44.5,-37.7,extratropical,NA,50,980,480,0 +Maria,2005,9,10,18,46,-36.3,extratropical,NA,55,975,550,0 +Maria,2005,9,11,0,48,-35,extratropical,NA,60,975,550,0 +Maria,2005,9,11,6,50,-34,extratropical,NA,60,974,550,0 +Maria,2005,9,11,12,52,-32.9,extratropical,NA,65,971,600,250 +Maria,2005,9,11,18,54,-32,extratropical,NA,65,968,600,250 +Maria,2005,9,12,0,55.5,-31,extratropical,NA,65,962,600,250 +Maria,2005,9,12,6,57,-29,extratropical,NA,65,967,600,250 +Maria,2005,9,12,12,58.5,-26,extratropical,NA,65,970,600,250 +Maria,2005,9,12,18,61,-23,extratropical,NA,60,972,550,0 +Maria,2005,9,13,0,62,-21,extratropical,NA,55,974,550,0 +Maria,2005,9,13,6,62.9,-19,extratropical,NA,50,976,550,0 +Maria,2005,9,13,12,63.5,-16,extratropical,NA,45,980,600,0 +Maria,2005,9,13,18,63,-10,extratropical,NA,45,983,700,0 +Maria,2005,9,14,0,63,-0,extratropical,NA,45,984,800,0 +Nate,2005,9,5,18,28.4,-67,tropical depression,NA,30,1008,0,0 +Nate,2005,9,6,0,28.4,-66.6,tropical storm,NA,35,1005,80,0 +Nate,2005,9,6,6,28.5,-66.5,tropical storm,NA,40,1002,80,0 +Nate,2005,9,6,12,28.5,-66.5,tropical storm,NA,50,1000,80,0 +Nate,2005,9,6,18,28.6,-66.4,tropical storm,NA,50,997,120,0 +Nate,2005,9,7,0,28.7,-66.3,tropical storm,NA,55,994,120,0 +Nate,2005,9,7,6,28.7,-66.3,tropical storm,NA,60,990,120,0 +Nate,2005,9,7,12,28.9,-66.2,hurricane,1,65,987,180,40 +Nate,2005,9,7,18,29.3,-66,hurricane,1,70,985,180,40 +Nate,2005,9,8,0,29.6,-65.7,hurricane,1,75,984,180,40 +Nate,2005,9,8,6,30,-65,hurricane,1,75,982,180,40 +Nate,2005,9,8,12,30.5,-63.8,hurricane,1,75,982,180,40 +Nate,2005,9,8,18,31.4,-62.7,hurricane,1,75,982,180,40 +Nate,2005,9,9,0,32.6,-61.1,hurricane,1,80,979,300,45 +Nate,2005,9,9,6,33.4,-59.1,hurricane,1,70,985,330,100 +Nate,2005,9,9,12,34,-55.8,hurricane,1,65,986,330,45 +Nate,2005,9,9,18,34.5,-53.4,tropical storm,NA,55,991,330,0 +Nate,2005,9,10,0,34.7,-50.8,tropical storm,NA,55,997,300,0 +Nate,2005,9,10,6,34.6,-49,tropical storm,NA,45,997,300,0 +Nate,2005,9,10,12,34.5,-45.9,tropical storm,NA,45,997,300,0 +Nate,2005,9,10,18,34.9,-44.1,extratropical,NA,45,997,250,0 +Nate,2005,9,11,0,35.2,-42.1,extratropical,NA,40,999,225,0 +Nate,2005,9,11,6,36,-40.6,extratropical,NA,40,1000,235,0 +Nate,2005,9,11,12,37.4,-38.3,extratropical,NA,40,1001,250,0 +Nate,2005,9,11,18,39.2,-35.6,extratropical,NA,40,1001,300,0 +Nate,2005,9,12,0,41.6,-33.3,extratropical,NA,40,1002,350,0 +Nate,2005,9,12,6,43.5,-32,extratropical,NA,35,1002,400,0 +Nate,2005,9,12,12,44,-28.1,extratropical,NA,35,1003,400,0 +Nate,2005,9,12,18,46,-25,extratropical,NA,35,1003,400,0 +Ophelia,2005,9,6,6,25.8,-78.6,tropical depression,NA,25,1009,0,0 +Ophelia,2005,9,6,12,26.3,-78.3,tropical depression,NA,25,1010,0,0 +Ophelia,2005,9,6,16,26.6,-78.3,tropical depression,NA,25,1010,0,0 +Ophelia,2005,9,6,18,26.8,-78.3,tropical depression,NA,25,1010,0,0 +Ophelia,2005,9,7,0,27.4,-78.5,tropical depression,NA,30,1006,0,0 +Ophelia,2005,9,7,6,27.9,-78.8,tropical storm,NA,35,1003,60,0 +Ophelia,2005,9,7,12,28.7,-79.2,tropical storm,NA,40,1000,60,0 +Ophelia,2005,9,7,18,28.8,-79.3,tropical storm,NA,45,997,90,0 +Ophelia,2005,9,8,0,28.8,-79.3,tropical storm,NA,45,994,90,0 +Ophelia,2005,9,8,6,28.7,-79.6,tropical storm,NA,50,994,100,0 +Ophelia,2005,9,8,12,28.6,-79.6,tropical storm,NA,55,988,100,0 +Ophelia,2005,9,8,18,28.6,-79.5,tropical storm,NA,60,988,140,0 +Ophelia,2005,9,9,0,28.6,-79.3,hurricane,1,65,990,120,20 +Ophelia,2005,9,9,6,28.9,-79.3,tropical storm,NA,55,990,120,0 +Ophelia,2005,9,9,12,29.3,-79.1,tropical storm,NA,55,983,120,0 +Ophelia,2005,9,9,18,29.8,-78.5,hurricane,1,65,983,140,25 +Ophelia,2005,9,10,0,30.2,-77.5,tropical storm,NA,60,983,150,0 +Ophelia,2005,9,10,6,30.9,-76.9,tropical storm,NA,60,984,180,0 +Ophelia,2005,9,10,12,31.5,-76.6,hurricane,1,65,976,225,25 +Ophelia,2005,9,10,18,31.7,-76.2,hurricane,1,70,977,240,25 +Ophelia,2005,9,11,0,31.8,-75.9,hurricane,1,70,977,240,55 +Ophelia,2005,9,11,6,31.7,-75.9,hurricane,1,75,978,260,55 +Ophelia,2005,9,11,12,31.6,-75.7,hurricane,1,70,978,260,55 +Ophelia,2005,9,11,18,31.4,-75.9,hurricane,1,65,978,280,50 +Ophelia,2005,9,12,0,31.2,-76.2,tropical storm,NA,60,980,280,0 +Ophelia,2005,9,12,6,31.2,-76.6,tropical storm,NA,60,985,280,0 +Ophelia,2005,9,12,12,31.5,-76.9,tropical storm,NA,55,988,270,0 +Ophelia,2005,9,12,18,31.7,-77.3,tropical storm,NA,60,989,260,0 +Ophelia,2005,9,13,0,31.8,-77.7,tropical storm,NA,60,989,260,0 +Ophelia,2005,9,13,6,31.9,-77.9,tropical storm,NA,60,990,260,0 +Ophelia,2005,9,13,12,32.1,-78,tropical storm,NA,60,989,240,0 +Ophelia,2005,9,13,18,32.3,-78.1,tropical storm,NA,60,988,240,0 +Ophelia,2005,9,14,0,32.6,-78.1,hurricane,1,65,985,220,75 +Ophelia,2005,9,14,6,32.9,-78,hurricane,1,70,980,220,75 +Ophelia,2005,9,14,12,33.4,-77.7,hurricane,1,75,980,220,75 +Ophelia,2005,9,14,18,33.9,-77.5,hurricane,1,75,979,220,75 +Ophelia,2005,9,15,0,34.2,-76.9,hurricane,1,75,979,220,65 +Ophelia,2005,9,15,6,34.5,-76.3,hurricane,1,70,982,220,65 +Ophelia,2005,9,15,12,34.7,-75.8,hurricane,1,65,984,220,65 +Ophelia,2005,9,15,18,34.7,-75.6,hurricane,1,65,986,220,35 +Ophelia,2005,9,16,0,34.6,-75.1,tropical storm,NA,60,987,200,0 +Ophelia,2005,9,16,6,34.7,-74.8,tropical storm,NA,55,993,175,0 +Ophelia,2005,9,16,12,35.4,-74.4,tropical storm,NA,50,995,175,0 +Ophelia,2005,9,16,18,36.4,-73.6,tropical storm,NA,55,993,175,0 +Ophelia,2005,9,17,0,37.3,-72.7,tropical storm,NA,55,995,190,0 +Ophelia,2005,9,17,6,38.7,-71.4,tropical storm,NA,50,1000,210,0 +Ophelia,2005,9,17,12,40,-69.7,tropical storm,NA,50,997,210,0 +Ophelia,2005,9,17,18,41.6,-67.3,tropical storm,NA,50,995,210,0 +Ophelia,2005,9,18,0,43.2,-64.9,extratropical,NA,45,996,210,0 +Ophelia,2005,9,18,6,44.8,-62.6,extratropical,NA,45,1000,210,0 +Ophelia,2005,9,18,12,46.2,-59.9,extratropical,NA,45,1000,210,0 +Ophelia,2005,9,18,18,47.4,-56.2,extratropical,NA,45,999,210,0 +Ophelia,2005,9,19,0,48.4,-52.3,extratropical,NA,45,1000,210,0 +Ophelia,2005,9,19,6,49,-48.8,extratropical,NA,45,1001,210,0 +Ophelia,2005,9,19,12,49.5,-45.7,extratropical,NA,45,1000,210,0 +Ophelia,2005,9,19,18,50,-42.1,extratropical,NA,45,999,210,0 +Ophelia,2005,9,20,0,50.9,-38.5,extratropical,NA,45,998,210,0 +Ophelia,2005,9,20,6,51.5,-34.7,extratropical,NA,40,1000,210,0 +Ophelia,2005,9,20,12,52.2,-30.5,extratropical,NA,40,1003,210,0 +Ophelia,2005,9,20,18,52.8,-26.5,extratropical,NA,40,1001,210,0 +Ophelia,2005,9,21,0,53.8,-22,extratropical,NA,40,998,210,0 +Ophelia,2005,9,21,6,55.3,-17.7,extratropical,NA,35,998,210,0 +Ophelia,2005,9,21,12,57.6,-14.6,extratropical,NA,35,998,210,0 +Ophelia,2005,9,21,18,59.8,-11.9,extratropical,NA,35,996,210,0 +Ophelia,2005,9,22,0,61.7,-8.4,extratropical,NA,35,993,210,0 +Ophelia,2005,9,22,6,63.6,-4.5,extratropical,NA,35,993,210,0 +Ophelia,2005,9,22,12,65.6,-1,extratropical,NA,35,994,210,0 +Ophelia,2005,9,22,18,67.5,1.9,extratropical,NA,30,995,0,0 +Ophelia,2005,9,23,0,68.8,6.6,extratropical,NA,30,997,0,0 +Philippe,2005,9,17,12,13.3,-54.5,tropical depression,NA,30,1008,0,0 +Philippe,2005,9,17,18,13.5,-54.9,tropical storm,NA,35,1007,75,0 +Philippe,2005,9,18,0,13.9,-55.1,tropical storm,NA,40,1003,90,0 +Philippe,2005,9,18,6,14.4,-55.3,tropical storm,NA,45,1000,90,0 +Philippe,2005,9,18,12,14.9,-55.5,tropical storm,NA,50,996,90,0 +Philippe,2005,9,18,18,15.6,-55.7,tropical storm,NA,55,993,110,0 +Philippe,2005,9,19,0,16.2,-55.8,hurricane,1,65,987,110,15 +Philippe,2005,9,19,6,16.7,-55.9,hurricane,1,65,987,100,15 +Philippe,2005,9,19,12,17.2,-56.2,hurricane,1,65,987,100,15 +Philippe,2005,9,19,18,17.5,-56.4,hurricane,1,65,987,105,15 +Philippe,2005,9,20,0,17.7,-56.6,hurricane,1,70,985,105,15 +Philippe,2005,9,20,6,17.9,-56.8,hurricane,1,65,987,140,15 +Philippe,2005,9,20,12,18.1,-57,tropical storm,NA,60,990,140,0 +Philippe,2005,9,20,18,18.5,-57.2,tropical storm,NA,55,992,120,0 +Philippe,2005,9,21,0,18.9,-57.2,tropical storm,NA,55,994,120,0 +Philippe,2005,9,21,6,19.4,-57.1,tropical storm,NA,50,997,150,0 +Philippe,2005,9,21,12,19.9,-57,tropical storm,NA,45,1000,120,0 +Philippe,2005,9,21,18,20.8,-56.9,tropical storm,NA,40,1001,100,0 +Philippe,2005,9,22,0,22.4,-56.7,tropical storm,NA,35,1002,90,0 +Philippe,2005,9,22,6,23.8,-56.8,tropical storm,NA,35,1003,75,0 +Philippe,2005,9,22,12,25.2,-57.2,tropical storm,NA,35,1003,75,0 +Philippe,2005,9,22,18,26.7,-57.6,tropical storm,NA,35,1003,75,0 +Philippe,2005,9,23,0,28.3,-58.2,tropical storm,NA,35,1003,75,0 +Philippe,2005,9,23,6,30.2,-60.1,tropical storm,NA,35,1003,60,0 +Philippe,2005,9,23,12,30.5,-62.2,tropical depression,NA,30,1003,0,0 +Philippe,2005,9,23,18,30.2,-63.7,other low,NA,30,1003,0,0 +Philippe,2005,9,24,0,29.2,-63.8,other low,NA,30,1003,0,0 +Philippe,2005,9,24,6,28.6,-62.8,other low,NA,25,1004,0,0 +Rita,2005,9,18,0,21.3,-69.9,tropical depression,NA,25,1009,0,0 +Rita,2005,9,18,6,21.6,-70.7,tropical depression,NA,25,1009,0,0 +Rita,2005,9,18,12,21.9,-71.5,tropical depression,NA,30,1007,0,0 +Rita,2005,9,18,18,22.2,-72.3,tropical storm,NA,35,1005,135,0 +Rita,2005,9,19,0,22.4,-73,tropical storm,NA,45,1002,150,0 +Rita,2005,9,19,6,22.6,-73.8,tropical storm,NA,50,999,140,0 +Rita,2005,9,19,12,22.8,-74.7,tropical storm,NA,55,997,170,0 +Rita,2005,9,19,18,23.1,-75.9,tropical storm,NA,60,994,170,0 +Rita,2005,9,20,0,23.3,-77.2,tropical storm,NA,60,992,165,0 +Rita,2005,9,20,6,23.5,-78.8,tropical storm,NA,60,990,165,0 +Rita,2005,9,20,12,23.7,-80.3,hurricane,1,70,985,180,25 +Rita,2005,9,20,18,23.9,-81.6,hurricane,2,85,975,205,65 +Rita,2005,9,21,0,24.1,-82.7,hurricane,2,95,967,205,65 +Rita,2005,9,21,6,24.2,-84,hurricane,3,110,955,205,70 +Rita,2005,9,21,12,24.2,-85.2,hurricane,4,120,941,240,80 +Rita,2005,9,21,18,24.3,-86.2,hurricane,5,145,920,275,100 +Rita,2005,9,22,0,24.5,-86.9,hurricane,5,150,897,300,110 +Rita,2005,9,22,3,24.7,-87.3,hurricane,5,155,895,NA,NA +Rita,2005,9,22,6,24.8,-87.6,hurricane,5,155,897,300,110 +Rita,2005,9,22,12,25.2,-88.3,hurricane,5,140,908,300,150 +Rita,2005,9,22,18,25.6,-89.1,hurricane,4,125,913,280,110 +Rita,2005,9,23,0,26,-89.9,hurricane,4,120,915,290,110 +Rita,2005,9,23,6,26.5,-90.7,hurricane,4,115,924,300,115 +Rita,2005,9,23,12,27.1,-91.5,hurricane,4,115,927,310,120 +Rita,2005,9,23,18,27.8,-92.3,hurricane,3,110,930,310,120 +Rita,2005,9,24,0,28.6,-93,hurricane,3,105,931,300,120 +Rita,2005,9,24,6,29.4,-93.6,hurricane,3,100,935,300,120 +Rita,2005,9,24,7,29.7,-93.7,hurricane,3,100,937,NA,NA +Rita,2005,9,24,12,30.5,-94.1,hurricane,1,65,949,210,60 +Rita,2005,9,24,18,31.6,-94.1,tropical storm,NA,45,974,170,0 +Rita,2005,9,25,0,32.7,-94,tropical storm,NA,35,982,100,0 +Rita,2005,9,25,6,33.7,-93.6,tropical depression,NA,30,989,0,0 +Rita,2005,9,25,12,34.7,-92.5,tropical depression,NA,25,995,0,0 +Rita,2005,9,25,18,35.8,-91.4,tropical depression,NA,25,1000,0,0 +Rita,2005,9,26,0,37,-90.1,tropical depression,NA,20,1003,0,0 +Rita,2005,9,26,6,39.5,-88,other low,NA,20,1006,0,0 +Nineteen,2005,9,30,12,11.8,-32.7,tropical depression,NA,25,1009,0,0 +Nineteen,2005,9,30,18,12.2,-33,tropical depression,NA,30,1007,0,0 +Nineteen,2005,10,1,0,12.7,-33.3,tropical depression,NA,30,1006,0,0 +Nineteen,2005,10,1,6,13.3,-33.5,tropical depression,NA,30,1008,0,0 +Nineteen,2005,10,1,12,13.8,-33.7,tropical depression,NA,30,1008,0,0 +Nineteen,2005,10,1,18,14.4,-33.9,tropical depression,NA,30,1008,0,0 +Nineteen,2005,10,2,0,15,-33.8,tropical depression,NA,30,1008,0,0 +Nineteen,2005,10,2,6,15.7,-34.3,tropical depression,NA,25,1008,0,0 +Nineteen,2005,10,2,12,16.6,-35.3,tropical depression,NA,25,1009,0,0 +Stan,2005,10,1,12,18.9,-85.6,tropical depression,NA,25,1007,0,0 +Stan,2005,10,1,18,19.1,-86.2,tropical depression,NA,30,1005,0,0 +Stan,2005,10,2,0,19.3,-86.7,tropical depression,NA,30,1004,0,0 +Stan,2005,10,2,6,19.5,-87.2,tropical storm,NA,40,1003,90,0 +Stan,2005,10,2,10,19.6,-87.5,tropical storm,NA,35,1003,NA,NA +Stan,2005,10,2,12,19.8,-87.9,tropical storm,NA,35,1003,105,0 +Stan,2005,10,2,18,20.3,-88.8,tropical storm,NA,35,1004,105,0 +Stan,2005,10,3,0,20.5,-89.8,tropical depression,NA,30,1003,0,0 +Stan,2005,10,3,6,20.5,-91,tropical storm,NA,35,1003,100,0 +Stan,2005,10,3,12,20.3,-91.7,tropical storm,NA,40,1000,100,0 +Stan,2005,10,3,18,20.1,-92.2,tropical storm,NA,50,997,120,0 +Stan,2005,10,4,0,19.8,-93.2,tropical storm,NA,55,990,120,0 +Stan,2005,10,4,6,19.2,-94.1,hurricane,1,65,987,165,30 +Stan,2005,10,4,12,18.6,-94.9,hurricane,1,70,977,165,30 +Stan,2005,10,4,18,17.9,-95.6,tropical storm,NA,45,988,90,0 +Stan,2005,10,5,0,17.2,-96.4,tropical depression,NA,30,1000,0,0 +Stan,2005,10,5,6,16.9,-97,tropical depression,NA,25,1004,0,0 +Tammy,2005,10,5,6,27.3,-79.7,tropical storm,NA,35,1006,140,0 +Tammy,2005,10,5,12,28.3,-80.2,tropical storm,NA,40,1004,250,0 +Tammy,2005,10,5,18,29.5,-80.9,tropical storm,NA,45,1001,265,0 +Tammy,2005,10,5,23,30.4,-81.4,tropical storm,NA,45,1002,NA,NA +Tammy,2005,10,6,0,30.5,-81.6,tropical storm,NA,45,1002,230,0 +Tammy,2005,10,6,6,31.3,-82.8,tropical storm,NA,35,1005,230,0 +Tammy,2005,10,6,12,31.8,-84.6,tropical depression,NA,25,1005,0,0 +Tammy,2005,10,6,18,31.2,-85.8,tropical depression,NA,15,1006,0,0 +Tammy,2005,10,7,0,30.3,-85.6,other low,NA,10,1005,0,0 +Vince,2005,10,8,6,32.9,-20.6,subtropical storm,NA,40,1001,130,0 +Vince,2005,10,8,12,33,-20.3,subtropical storm,NA,45,1000,120,0 +Vince,2005,10,8,18,33.1,-20.1,subtropical storm,NA,45,1000,110,0 +Vince,2005,10,9,0,33.2,-20,subtropical storm,NA,45,999,110,0 +Vince,2005,10,9,6,33.4,-19.6,subtropical storm,NA,50,998,100,0 +Vince,2005,10,9,12,33.8,-19.3,tropical storm,NA,55,995,120,0 +Vince,2005,10,9,18,34.1,-18.9,hurricane,1,65,988,140,30 +Vince,2005,10,10,0,34.3,-18.3,tropical storm,NA,60,990,120,0 +Vince,2005,10,10,6,34.5,-17.2,tropical storm,NA,50,992,100,0 +Vince,2005,10,10,12,34.7,-15.3,tropical storm,NA,45,995,100,0 +Vince,2005,10,10,18,35.4,-12.8,tropical storm,NA,35,998,100,0 +Vince,2005,10,11,0,36.1,-10.5,tropical depression,NA,30,1000,0,0 +Vince,2005,10,11,6,36.7,-8.3,tropical depression,NA,30,1002,0,0 +Vince,2005,10,11,9,37.2,-7.1,tropical depression,NA,30,1002,0,0 +Vince,2005,10,11,12,37.7,-6,tropical depression,NA,30,1003,0,0 +Wilma,2005,10,15,18,17.6,-78.5,tropical depression,NA,25,1004,0,0 +Wilma,2005,10,16,0,17.6,-78.8,tropical depression,NA,25,1004,0,0 +Wilma,2005,10,16,6,17.5,-79,tropical depression,NA,30,1003,0,0 +Wilma,2005,10,16,12,17.5,-79.2,tropical depression,NA,30,1003,0,0 +Wilma,2005,10,16,18,17.5,-79.4,tropical depression,NA,30,1002,0,0 +Wilma,2005,10,17,0,17.4,-79.6,tropical depression,NA,30,1001,0,0 +Wilma,2005,10,17,6,16.9,-79.6,tropical storm,NA,35,1000,40,0 +Wilma,2005,10,17,12,16.3,-79.7,tropical storm,NA,40,999,60,0 +Wilma,2005,10,17,18,16,-79.8,tropical storm,NA,45,997,90,0 +Wilma,2005,10,18,0,15.8,-79.9,tropical storm,NA,55,988,120,0 +Wilma,2005,10,18,6,15.7,-79.9,tropical storm,NA,60,982,120,0 +Wilma,2005,10,18,12,16.2,-80.3,hurricane,1,65,979,180,30 +Wilma,2005,10,18,18,16.6,-81.1,hurricane,1,75,975,195,30 +Wilma,2005,10,19,0,16.6,-81.8,hurricane,4,130,946,225,30 +Wilma,2005,10,19,6,17,-82.2,hurricane,5,150,892,230,45 +Wilma,2005,10,19,12,17.3,-82.8,hurricane,5,160,882,265,65 +Wilma,2005,10,19,18,17.4,-83.4,hurricane,5,140,892,350,90 +Wilma,2005,10,20,0,17.9,-84,hurricane,4,135,892,350,100 +Wilma,2005,10,20,6,18.1,-84.7,hurricane,4,130,901,350,100 +Wilma,2005,10,20,12,18.3,-85.2,hurricane,4,130,910,325,150 +Wilma,2005,10,20,18,18.6,-85.5,hurricane,4,130,917,325,150 +Wilma,2005,10,21,0,19.1,-85.8,hurricane,4,130,924,325,150 +Wilma,2005,10,21,6,19.5,-86.1,hurricane,4,130,930,325,150 +Wilma,2005,10,21,12,20.1,-86.4,hurricane,4,125,929,325,150 +Wilma,2005,10,21,18,20.3,-86.7,hurricane,4,120,926,325,150 +Wilma,2005,10,21,21,20.6,-86.8,hurricane,4,130,927,NA,NA +Wilma,2005,10,22,0,20.6,-86.8,hurricane,4,120,930,325,150 +Wilma,2005,10,22,3,20.8,-86.9,hurricane,4,115,933,NA,NA +Wilma,2005,10,22,6,20.8,-87,hurricane,3,110,935,325,150 +Wilma,2005,10,22,12,21,-87.1,hurricane,3,100,947,325,150 +Wilma,2005,10,22,18,21.3,-87.1,hurricane,2,85,958,325,150 +Wilma,2005,10,23,0,21.6,-87,hurricane,2,85,960,325,120 +Wilma,2005,10,23,6,21.8,-86.8,hurricane,2,85,962,350,100 +Wilma,2005,10,23,12,22.4,-86.1,hurricane,2,85,961,375,100 +Wilma,2005,10,23,18,23.1,-85.4,hurricane,2,90,963,350,125 +Wilma,2005,10,24,0,24,-84.3,hurricane,2,95,958,350,125 +Wilma,2005,10,24,6,25,-83.1,hurricane,3,110,953,375,150 +Wilma,2005,10,24,10,25.9,-81.7,hurricane,3,105,950,NA,NA +Wilma,2005,10,24,12,26.2,-81,hurricane,2,95,950,400,150 +Wilma,2005,10,24,18,28,-78.8,hurricane,3,105,955,400,150 +Wilma,2005,10,25,0,30.1,-76,hurricane,3,110,955,450,150 +Wilma,2005,10,25,6,33.3,-72,hurricane,3,100,963,575,135 +Wilma,2005,10,25,12,36.8,-67.9,hurricane,2,90,970,575,135 +Wilma,2005,10,25,18,40.5,-63.5,hurricane,1,75,976,575,120 +Wilma,2005,10,26,0,42.5,-60,extratropical,NA,60,978,575,0 +Wilma,2005,10,26,6,44,-57.5,extratropical,NA,55,982,575,0 +Wilma,2005,10,26,12,45,-55,extratropical,NA,50,986,575,0 +Wilma,2005,10,26,18,45.5,-52,extratropical,NA,40,990,575,0 +Alpha,2005,10,22,12,15.8,-67.5,tropical depression,NA,30,1007,0,0 +Alpha,2005,10,22,18,16.5,-68.5,tropical storm,NA,35,1005,40,0 +Alpha,2005,10,23,0,17.3,-69.6,tropical storm,NA,45,1000,65,0 +Alpha,2005,10,23,6,17.8,-70.5,tropical storm,NA,45,998,40,0 +Alpha,2005,10,23,10,18.3,-71.3,tropical storm,NA,45,1000,NA,NA +Alpha,2005,10,23,12,18.6,-72.2,tropical storm,NA,35,1002,30,0 +Alpha,2005,10,23,18,19.8,-72.7,tropical depression,NA,30,1004,0,0 +Alpha,2005,10,24,0,21.6,-72.9,tropical depression,NA,30,1004,0,0 +Alpha,2005,10,24,6,23.5,-73,tropical depression,NA,30,1004,0,0 +Alpha,2005,10,24,12,25.1,-72.4,tropical depression,NA,30,1004,0,0 +Alpha,2005,10,24,18,27.9,-70.8,tropical depression,NA,30,1004,0,0 +Beta,2005,10,26,18,10.4,-80.9,tropical depression,NA,30,1007,0,0 +Beta,2005,10,27,0,10.7,-81.1,tropical depression,NA,30,1007,0,0 +Beta,2005,10,27,6,11,-81.3,tropical storm,NA,35,1005,50,0 +Beta,2005,10,27,12,11.3,-81.3,tropical storm,NA,45,1000,70,0 +Beta,2005,10,27,18,11.6,-81.3,tropical storm,NA,50,997,70,0 +Beta,2005,10,28,0,11.9,-81.2,tropical storm,NA,50,995,70,0 +Beta,2005,10,28,6,12.3,-81.1,tropical storm,NA,50,994,70,0 +Beta,2005,10,28,12,12.8,-81,tropical storm,NA,50,993,70,0 +Beta,2005,10,28,18,13.2,-81.1,tropical storm,NA,50,991,70,0 +Beta,2005,10,29,0,13.4,-81.2,tropical storm,NA,60,988,80,0 +Beta,2005,10,29,6,13.6,-81.4,hurricane,1,70,985,90,30 +Beta,2005,10,29,12,13.7,-81.6,hurricane,1,75,982,100,30 +Beta,2005,10,29,18,13.7,-82.1,hurricane,1,75,980,100,30 +Beta,2005,10,30,0,13.6,-82.6,hurricane,2,90,970,100,30 +Beta,2005,10,30,6,13.3,-83.1,hurricane,3,100,962,100,30 +Beta,2005,10,30,12,12.9,-83.5,hurricane,2,90,970,100,30 +Beta,2005,10,30,18,12.7,-84.1,tropical storm,NA,55,990,110,0 +Beta,2005,10,31,0,12.7,-84.9,tropical depression,NA,20,1000,0,0 +Gamma,2005,11,14,0,13.2,-62.1,tropical depression,NA,30,1007,0,0 +Gamma,2005,11,14,6,13.6,-62.8,tropical depression,NA,30,1006,0,0 +Gamma,2005,11,14,12,13.8,-63.4,tropical depression,NA,30,1006,0,0 +Gamma,2005,11,14,18,14.1,-64.2,tropical depression,NA,30,1005,0,0 +Gamma,2005,11,15,0,14.2,-65,tropical depression,NA,30,1004,0,0 +Gamma,2005,11,15,6,14.3,-66,tropical storm,NA,35,1004,40,0 +Gamma,2005,11,15,12,14.4,-67.1,tropical storm,NA,35,1004,40,0 +Gamma,2005,11,15,18,14.7,-68.4,tropical depression,NA,30,1005,0,0 +Gamma,2005,11,16,0,14.8,-69.9,tropical depression,NA,30,1006,0,0 +Gamma,2005,11,16,6,14.8,-71.5,tropical depression,NA,30,1006,0,0 +Gamma,2005,11,16,12,14.7,-73.1,tropical depression,NA,25,1006,0,0 +Gamma,2005,11,16,18,14.8,-75.4,tropical wave,NA,25,1006,0,0 +Gamma,2005,11,17,0,15,-77.6,tropical wave,NA,25,1007,0,0 +Gamma,2005,11,17,6,15.3,-79.7,tropical wave,NA,25,1008,0,0 +Gamma,2005,11,17,12,15.6,-81.7,tropical wave,NA,30,1007,0,0 +Gamma,2005,11,17,18,15.8,-83.1,tropical wave,NA,30,1007,0,0 +Gamma,2005,11,18,0,15.8,-84.1,tropical wave,NA,30,1007,0,0 +Gamma,2005,11,18,6,15.7,-84.8,tropical wave,NA,30,1006,0,0 +Gamma,2005,11,18,12,15.5,-85.5,tropical wave,NA,30,1006,0,0 +Gamma,2005,11,18,18,15.7,-85.6,tropical storm,NA,35,1006,75,0 +Gamma,2005,11,19,0,16,-85.6,tropical storm,NA,40,1005,90,0 +Gamma,2005,11,19,6,16.1,-85.6,tropical storm,NA,40,1004,90,0 +Gamma,2005,11,19,12,16.1,-85.4,tropical storm,NA,45,1002,90,0 +Gamma,2005,11,19,18,16.2,-85.2,tropical storm,NA,40,1004,90,0 +Gamma,2005,11,20,0,16.4,-85,tropical storm,NA,40,1005,90,0 +Gamma,2005,11,20,6,16.6,-85,tropical storm,NA,35,1006,90,0 +Gamma,2005,11,20,12,16.7,-85.2,tropical depression,NA,30,1007,0,0 +Gamma,2005,11,20,18,16.9,-85.5,tropical depression,NA,30,1007,0,0 +Gamma,2005,11,21,0,17.1,-85.5,tropical depression,NA,25,1008,0,0 +Gamma,2005,11,21,6,17,-85.2,other low,NA,25,1008,0,0 +Gamma,2005,11,21,12,16.7,-84.8,other low,NA,25,1008,0,0 +Gamma,2005,11,21,18,16.4,-84.3,other low,NA,25,1009,0,0 +Gamma,2005,11,22,0,15.4,-83.5,other low,NA,25,1009,0,0 +Delta,2005,11,19,12,27,-48,extratropical,NA,25,1010,0,0 +Delta,2005,11,19,18,26.7,-47.5,extratropical,NA,25,1009,0,0 +Delta,2005,11,20,0,26.7,-46.7,extratropical,NA,25,1008,0,0 +Delta,2005,11,20,6,27.2,-45.9,extratropical,NA,25,1008,0,0 +Delta,2005,11,20,12,27.7,-44.8,extratropical,NA,30,1007,0,0 +Delta,2005,11,20,18,28,-43.5,extratropical,NA,35,1003,75,0 +Delta,2005,11,21,0,28.3,-42.2,extratropical,NA,35,1000,75,0 +Delta,2005,11,21,6,29,-41.1,extratropical,NA,35,998,225,0 +Delta,2005,11,21,12,29.9,-40.1,extratropical,NA,35,996,250,0 +Delta,2005,11,21,18,30.9,-39.6,extratropical,NA,40,994,250,0 +Delta,2005,11,22,0,31.5,-40.1,extratropical,NA,40,992,250,0 +Delta,2005,11,22,6,31.4,-39.9,extratropical,NA,45,990,275,0 +Delta,2005,11,22,12,31.2,-39.8,extratropical,NA,45,988,325,0 +Delta,2005,11,22,18,30.7,-40.5,subtropical storm,NA,45,986,400,0 +Delta,2005,11,23,0,29.9,-40.9,subtropical storm,NA,45,984,475,0 +Delta,2005,11,23,6,28.8,-41.3,subtropical storm,NA,45,983,475,0 +Delta,2005,11,23,12,27.4,-41.2,tropical storm,NA,50,983,500,0 +Delta,2005,11,23,18,26.4,-40.8,tropical storm,NA,50,983,425,0 +Delta,2005,11,24,0,25.5,-40.2,tropical storm,NA,55,982,375,0 +Delta,2005,11,24,6,25,-39.6,tropical storm,NA,55,981,375,0 +Delta,2005,11,24,12,24.8,-39,tropical storm,NA,60,980,380,0 +Delta,2005,11,24,18,24.6,-38.9,tropical storm,NA,60,980,340,0 +Delta,2005,11,25,0,24.1,-39,tropical storm,NA,60,980,300,0 +Delta,2005,11,25,6,23.8,-39.3,tropical storm,NA,55,982,280,0 +Delta,2005,11,25,12,23.3,-39.6,tropical storm,NA,55,982,260,0 +Delta,2005,11,25,18,22.8,-39.8,tropical storm,NA,50,985,245,0 +Delta,2005,11,26,0,22.3,-39.8,tropical storm,NA,45,989,225,0 +Delta,2005,11,26,6,21.8,-39.4,tropical storm,NA,40,993,225,0 +Delta,2005,11,26,12,22,-38.4,tropical storm,NA,35,997,225,0 +Delta,2005,11,26,18,22.6,-37.3,tropical storm,NA,35,997,215,0 +Delta,2005,11,27,0,23.5,-35.8,tropical storm,NA,35,998,190,0 +Delta,2005,11,27,6,24.8,-34,tropical storm,NA,45,993,190,0 +Delta,2005,11,27,12,26.7,-31.9,tropical storm,NA,60,982,240,0 +Delta,2005,11,27,18,28.3,-29.9,tropical storm,NA,60,982,240,0 +Delta,2005,11,28,0,29.1,-27.5,tropical storm,NA,60,983,240,0 +Delta,2005,11,28,6,29.9,-24.8,tropical storm,NA,60,984,275,0 +Delta,2005,11,28,12,30.2,-21.6,extratropical,NA,60,985,290,0 +Delta,2005,11,28,18,30.2,-18.2,extratropical,NA,60,986,335,0 +Delta,2005,11,29,0,30.2,-14.6,extratropical,NA,55,988,275,0 +Delta,2005,11,29,6,30.7,-10.9,extratropical,NA,50,992,240,0 +Delta,2005,11,29,12,32.6,-6.6,extratropical,NA,35,1000,150,0 +Delta,2005,11,29,18,35.3,-1,extratropical,NA,30,1003,0,0 +Epsilon,2005,11,29,6,31.5,-49.2,tropical storm,NA,45,993,135,0 +Epsilon,2005,11,29,12,31.6,-50,tropical storm,NA,45,993,135,0 +Epsilon,2005,11,29,18,31.4,-50.8,tropical storm,NA,45,993,135,0 +Epsilon,2005,11,30,0,31.4,-51.5,tropical storm,NA,45,993,165,0 +Epsilon,2005,11,30,6,31.1,-52.5,tropical storm,NA,50,992,165,0 +Epsilon,2005,11,30,12,30.8,-53.5,tropical storm,NA,55,991,150,0 +Epsilon,2005,11,30,18,30.1,-54.2,tropical storm,NA,50,991,150,0 +Epsilon,2005,12,1,0,29.7,-53.8,tropical storm,NA,50,992,150,0 +Epsilon,2005,12,1,6,30,-52.7,tropical storm,NA,50,992,150,0 +Epsilon,2005,12,1,12,30.8,-51.9,tropical storm,NA,50,992,150,0 +Epsilon,2005,12,1,18,31.4,-51.3,tropical storm,NA,55,991,180,0 +Epsilon,2005,12,2,0,31.9,-50.6,tropical storm,NA,55,991,180,0 +Epsilon,2005,12,2,6,32.5,-49.8,tropical storm,NA,55,990,165,0 +Epsilon,2005,12,2,12,33.2,-48.9,tropical storm,NA,60,989,165,0 +Epsilon,2005,12,2,18,33.9,-47.9,hurricane,1,65,987,180,30 +Epsilon,2005,12,3,0,34.3,-47.1,hurricane,1,65,987,200,30 +Epsilon,2005,12,3,6,34.5,-46.2,hurricane,1,65,987,200,30 +Epsilon,2005,12,3,12,34.5,-45,hurricane,1,65,987,200,30 +Epsilon,2005,12,3,18,34.5,-43.7,hurricane,1,65,987,200,40 +Epsilon,2005,12,4,0,34.3,-42.3,hurricane,1,65,987,190,25 +Epsilon,2005,12,4,6,34.4,-41.1,hurricane,1,65,987,175,20 +Epsilon,2005,12,4,12,34.3,-39.8,hurricane,1,70,984,175,20 +Epsilon,2005,12,4,18,34.3,-38.8,hurricane,1,70,985,175,20 +Epsilon,2005,12,5,0,34.2,-37.8,hurricane,1,70,985,175,20 +Epsilon,2005,12,5,6,34,-36.7,hurricane,1,75,981,175,20 +Epsilon,2005,12,5,12,33.8,-35.5,hurricane,1,75,981,175,20 +Epsilon,2005,12,5,18,33.7,-34.6,hurricane,1,70,985,175,20 +Epsilon,2005,12,6,0,33.4,-33.8,hurricane,1,65,986,175,20 +Epsilon,2005,12,6,6,33.1,-33.7,hurricane,1,65,986,210,45 +Epsilon,2005,12,6,12,32.3,-33.7,hurricane,1,65,987,220,25 +Epsilon,2005,12,6,18,31.6,-34.2,hurricane,1,65,987,215,30 +Epsilon,2005,12,7,0,30.8,-34.9,hurricane,1,65,987,205,55 +Epsilon,2005,12,7,6,30.1,-36,hurricane,1,65,987,230,50 +Epsilon,2005,12,7,12,29.4,-37.1,hurricane,1,65,987,240,25 +Epsilon,2005,12,7,18,28.7,-38.1,tropical storm,NA,60,991,190,0 +Epsilon,2005,12,8,0,28.2,-38.8,tropical storm,NA,50,997,165,0 +Epsilon,2005,12,8,6,27.4,-39.3,tropical storm,NA,35,1003,100,0 +Epsilon,2005,12,8,12,26.5,-40,tropical depression,NA,30,1005,0,0 +Epsilon,2005,12,8,18,25.9,-40.5,other low,NA,30,1006,0,0 +Epsilon,2005,12,9,0,25.5,-40.6,other low,NA,30,1007,0,0 +Epsilon,2005,12,9,6,25.1,-40.4,other low,NA,25,1008,0,0 +Epsilon,2005,12,9,12,24.7,-40.1,other low,NA,25,1009,0,0 +Epsilon,2005,12,9,18,24.7,-39.2,other low,NA,25,1009,0,0 +Zeta,2005,12,30,0,23.9,-35.6,tropical depression,NA,30,1009,0,0 +Zeta,2005,12,30,6,24.2,-36.1,tropical storm,NA,40,1005,175,0 +Zeta,2005,12,30,12,24.7,-36.6,tropical storm,NA,45,1002,215,0 +Zeta,2005,12,30,18,25.2,-37,tropical storm,NA,45,1000,235,0 +Zeta,2005,12,31,0,25.6,-37.3,tropical storm,NA,45,1000,250,0 +Zeta,2005,12,31,6,25.7,-37.6,tropical storm,NA,50,997,225,0 +Zeta,2005,12,31,12,25.7,-37.9,tropical storm,NA,50,997,195,0 +Zeta,2005,12,31,18,25.7,-38.1,tropical storm,NA,45,1000,195,0 +Zeta,2006,1,1,0,25.6,-38.3,tropical storm,NA,50,997,175,0 +Zeta,2006,1,1,6,25.4,-38.4,tropical storm,NA,50,997,175,0 +Zeta,2006,1,1,12,25.2,-38.5,tropical storm,NA,50,997,200,0 +Zeta,2006,1,1,18,25,-38.6,tropical storm,NA,55,994,170,0 +Zeta,2006,1,2,0,24.6,-38.9,tropical storm,NA,55,994,165,0 +Zeta,2006,1,2,6,24.3,-39.7,tropical storm,NA,50,997,160,0 +Zeta,2006,1,2,12,23.8,-40.4,tropical storm,NA,45,1000,160,0 +Zeta,2006,1,2,18,23.6,-40.8,tropical storm,NA,50,997,160,0 +Zeta,2006,1,3,0,23.4,-41,tropical storm,NA,55,994,175,0 +Zeta,2006,1,3,6,23.3,-41.3,tropical storm,NA,55,994,175,0 +Zeta,2006,1,3,12,23.2,-41.6,tropical storm,NA,55,994,175,0 +Zeta,2006,1,3,18,23,-42.1,tropical storm,NA,55,994,175,0 +Zeta,2006,1,4,0,22.6,-42.4,tropical storm,NA,55,994,200,0 +Zeta,2006,1,4,6,22.1,-42.9,tropical storm,NA,50,997,200,0 +Zeta,2006,1,4,12,21.9,-43.6,tropical storm,NA,45,1000,175,0 +Zeta,2006,1,4,18,21.7,-44.6,tropical storm,NA,40,1002,150,0 +Zeta,2006,1,5,0,21.7,-45.6,tropical storm,NA,35,1005,100,0 +Zeta,2006,1,5,6,21.9,-46.6,tropical storm,NA,35,1005,100,0 +Zeta,2006,1,5,12,22.2,-47.3,tropical storm,NA,35,1006,100,0 +Zeta,2006,1,5,18,22.7,-47.9,tropical storm,NA,35,1007,90,0 +Zeta,2006,1,6,0,23,-48.4,tropical storm,NA,35,1007,75,0 +Zeta,2006,1,6,6,23.1,-49,tropical depression,NA,30,1007,0,0 +Zeta,2006,1,6,12,23.1,-49.6,tropical depression,NA,30,1008,0,0 +Zeta,2006,1,6,18,23.3,-50.2,other low,NA,25,1009,0,0 +Zeta,2006,1,7,0,23.7,-51.4,other low,NA,25,1009,0,0 +Zeta,2006,1,7,6,24.2,-52.7,other low,NA,25,1012,0,0 +Zeta,2006,1,7,12,24.8,-54.2,other low,NA,25,1014,0,0 +Zeta,2006,1,7,18,26.3,-55.7,other low,NA,25,1016,0,0 +Alberto,2006,6,10,6,20,-85,tropical depression,NA,25,1004,0,0 +Alberto,2006,6,10,12,21,-85.3,tropical depression,NA,30,1003,0,0 +Alberto,2006,6,10,18,21.9,-85.7,tropical depression,NA,30,1003,0,0 +Alberto,2006,6,11,0,22.5,-86.3,tropical storm,NA,35,1003,100,0 +Alberto,2006,6,11,6,23.1,-87.1,tropical storm,NA,35,1003,100,0 +Alberto,2006,6,11,12,23.6,-87.8,tropical storm,NA,40,1002,150,0 +Alberto,2006,6,11,18,24.3,-87.8,tropical storm,NA,40,1004,200,0 +Alberto,2006,6,12,0,25,-87.8,tropical storm,NA,40,1004,200,0 +Alberto,2006,6,12,6,25.8,-87.4,tropical storm,NA,45,1004,200,0 +Alberto,2006,6,12,12,26.8,-86.3,tropical storm,NA,60,1000,200,0 +Alberto,2006,6,12,18,27.5,-85.4,tropical storm,NA,60,997,210,0 +Alberto,2006,6,13,0,28,-85,tropical storm,NA,60,995,200,0 +Alberto,2006,6,13,6,28.8,-84.4,tropical storm,NA,55,995,210,0 +Alberto,2006,6,13,12,29.5,-84.1,tropical storm,NA,45,996,160,0 +Alberto,2006,6,13,16,29.9,-83.7,tropical storm,NA,40,998,NA,NA +Alberto,2006,6,13,18,30.3,-83.5,tropical storm,NA,35,997,150,0 +Alberto,2006,6,14,0,31.3,-82.8,tropical storm,NA,35,1001,130,0 +Alberto,2006,6,14,6,32.8,-81.9,tropical depression,NA,30,1003,0,0 +Alberto,2006,6,14,12,34.3,-80.7,extratropical,NA,35,1003,100,0 +Alberto,2006,6,14,18,35.5,-77.5,extratropical,NA,35,1002,125,0 +Alberto,2006,6,15,0,37,-73,extratropical,NA,45,999,200,0 +Alberto,2006,6,15,6,38.8,-69.9,extratropical,NA,45,990,360,0 +Alberto,2006,6,15,12,40.9,-66.8,extratropical,NA,50,979,360,0 +Alberto,2006,6,15,18,42.6,-64.2,extratropical,NA,55,971,515,0 +Alberto,2006,6,16,0,44,-62,extratropical,NA,55,969,515,0 +Alberto,2006,6,16,6,46,-58.5,extratropical,NA,50,972,515,0 +Alberto,2006,6,16,12,47.4,-55,extratropical,NA,45,985,300,0 +Alberto,2006,6,16,18,49.3,-51.5,extratropical,NA,40,990,250,0 +Alberto,2006,6,17,0,50.8,-45.2,extratropical,NA,40,995,250,0 +Alberto,2006,6,17,6,51.5,-39,extratropical,NA,40,995,325,0 +Alberto,2006,6,17,12,53,-34.5,extratropical,NA,40,995,325,0 +Alberto,2006,6,17,18,54,-29,extratropical,NA,35,995,350,0 +Alberto,2006,6,18,0,54.5,-23,extratropical,NA,30,995,0,0 +Alberto,2006,6,18,6,54.5,-16,extratropical,NA,30,995,0,0 +Alberto,2006,6,18,12,54.5,-12,extratropical,NA,30,995,0,0 +Alberto,2006,6,18,18,55,-9,extratropical,NA,30,997,0,0 +Alberto,2006,6,19,0,56.5,-5.5,extratropical,NA,30,999,0,0 +Alberto,2006,6,19,6,57,-3,extratropical,NA,30,999,0,0 +AL022006,2006,7,16,12,37.2,-68.7,extratropical,NA,30,1009,0,0 +AL022006,2006,7,16,18,37.7,-68.2,extratropical,NA,30,1009,0,0 +AL022006,2006,7,17,0,38.3,-67.6,extratropical,NA,30,1009,0,0 +AL022006,2006,7,17,6,39.1,-66.4,tropical depression,NA,30,1008,0,0 +AL022006,2006,7,17,12,40,-65.1,tropical storm,NA,40,1003,60,0 +AL022006,2006,7,17,18,41.1,-63.7,tropical storm,NA,45,998,60,0 +AL022006,2006,7,18,0,42.4,-62.1,tropical storm,NA,40,999,60,0 +AL022006,2006,7,18,6,43.7,-60.1,tropical storm,NA,35,1004,60,0 +AL022006,2006,7,18,12,45.5,-58,other low,NA,30,1007,0,0 +AL022006,2006,7,18,18,47.1,-55.8,other low,NA,25,1009,0,0 +AL022006,2006,7,19,0,48.6,-52.9,other low,NA,25,1012,0,0 +AL022006,2006,7,19,6,49.2,-49.4,other low,NA,25,1012,0,0 +AL022006,2006,7,19,12,49.8,-46.1,other low,NA,25,1014,0,0 +Beryl,2006,7,18,12,32.3,-73.3,tropical depression,NA,30,1010,0,0 +Beryl,2006,7,18,18,33,-73.3,tropical storm,NA,35,1008,40,0 +Beryl,2006,7,19,0,33.8,-73.5,tropical storm,NA,35,1006,60,0 +Beryl,2006,7,19,6,34.5,-73.7,tropical storm,NA,35,1005,60,0 +Beryl,2006,7,19,12,35.2,-73.6,tropical storm,NA,40,1004,120,0 +Beryl,2006,7,19,18,35.9,-73.5,tropical storm,NA,50,1003,125,0 +Beryl,2006,7,20,0,36.6,-73.2,tropical storm,NA,50,1002,170,0 +Beryl,2006,7,20,6,37.4,-73.2,tropical storm,NA,50,1001,180,0 +Beryl,2006,7,20,12,38.3,-73,tropical storm,NA,50,1002,180,0 +Beryl,2006,7,20,18,39.1,-72.5,tropical storm,NA,45,1002,180,0 +Beryl,2006,7,21,0,39.8,-71.8,tropical storm,NA,45,1003,140,0 +Beryl,2006,7,21,6,41,-70.5,tropical storm,NA,45,1000,125,0 +Beryl,2006,7,21,6,41.3,-70.1,tropical storm,NA,45,1000,NA,NA +Beryl,2006,7,21,12,42.4,-68.4,tropical storm,NA,40,1002,175,0 +Beryl,2006,7,21,18,43.8,-66.3,extratropical,NA,35,1000,250,0 +Beryl,2006,7,22,0,45.5,-63.3,extratropical,NA,35,1002,350,0 +Beryl,2006,7,22,6,47.2,-60,extratropical,NA,35,1003,350,0 +Beryl,2006,7,22,12,48.5,-56.5,extratropical,NA,30,1004,0,0 +Chris,2006,8,1,0,16.3,-58.1,tropical depression,NA,30,1011,0,0 +Chris,2006,8,1,6,16.8,-58.9,tropical storm,NA,35,1009,30,0 +Chris,2006,8,1,12,17.2,-59.8,tropical storm,NA,40,1006,30,0 +Chris,2006,8,1,18,17.7,-60.6,tropical storm,NA,50,1004,40,0 +Chris,2006,8,2,0,18.1,-61.4,tropical storm,NA,50,1003,60,0 +Chris,2006,8,2,6,18.5,-62.2,tropical storm,NA,55,1001,90,0 +Chris,2006,8,2,12,19,-63,tropical storm,NA,55,1001,90,0 +Chris,2006,8,2,18,19.6,-63.9,tropical storm,NA,50,1004,70,0 +Chris,2006,8,3,0,19.9,-64.8,tropical storm,NA,50,1007,70,0 +Chris,2006,8,3,6,20.2,-65.8,tropical storm,NA,40,1010,70,0 +Chris,2006,8,3,12,20.4,-66.8,tropical storm,NA,35,1011,70,0 +Chris,2006,8,3,18,20.6,-67.7,tropical depression,NA,30,1011,0,0 +Chris,2006,8,4,0,20.7,-68.7,tropical depression,NA,30,1011,0,0 +Chris,2006,8,4,6,20.8,-70.2,other low,NA,25,1011,0,0 +Chris,2006,8,4,12,21.2,-71.1,other low,NA,25,1011,0,0 +Chris,2006,8,4,18,21.3,-72.2,other low,NA,25,1012,0,0 +Chris,2006,8,5,0,21.5,-73.4,other low,NA,25,1012,0,0 +Chris,2006,8,5,6,21.6,-75,other low,NA,20,1012,0,0 +Chris,2006,8,5,12,21.8,-76.3,other low,NA,20,1012,0,0 +Chris,2006,8,5,18,22.1,-77.6,other low,NA,20,1012,0,0 +Chris,2006,8,6,0,22.4,-78.9,other low,NA,20,1012,0,0 +Chris,2006,8,6,6,22.8,-80.2,other low,NA,20,1013,0,0 +Chris,2006,8,6,12,23.2,-81.7,other low,NA,15,1013,0,0 +Debby,2006,8,21,18,11.6,-21.7,tropical depression,NA,30,1007,0,0 +Debby,2006,8,22,0,12,-22.7,tropical depression,NA,30,1007,0,0 +Debby,2006,8,22,6,12.6,-23.9,tropical depression,NA,30,1007,0,0 +Debby,2006,8,22,12,13.4,-25.3,tropical depression,NA,30,1007,0,0 +Debby,2006,8,22,18,14.2,-26.7,tropical depression,NA,30,1005,0,0 +Debby,2006,8,23,0,14.9,-28.1,tropical storm,NA,35,1003,60,0 +Debby,2006,8,23,6,15.7,-29.5,tropical storm,NA,40,1002,75,0 +Debby,2006,8,23,12,16.7,-31,tropical storm,NA,45,1001,80,0 +Debby,2006,8,23,18,17.6,-32.4,tropical storm,NA,45,1001,70,0 +Debby,2006,8,24,0,18.4,-33.9,tropical storm,NA,45,1000,70,0 +Debby,2006,8,24,6,19.2,-35.5,tropical storm,NA,45,999,70,0 +Debby,2006,8,24,12,20.1,-37.1,tropical storm,NA,45,1000,70,0 +Debby,2006,8,24,18,20.9,-38.7,tropical storm,NA,45,1000,70,0 +Debby,2006,8,25,0,21.7,-40.2,tropical storm,NA,45,1000,70,0 +Debby,2006,8,25,6,22.6,-41.5,tropical storm,NA,45,1001,60,0 +Debby,2006,8,25,12,23.6,-42.7,tropical storm,NA,40,1002,75,0 +Debby,2006,8,25,18,24.4,-44.1,tropical storm,NA,35,1005,90,0 +Debby,2006,8,26,0,24.8,-45.1,tropical storm,NA,35,1008,90,0 +Debby,2006,8,26,6,25.2,-46.1,tropical depression,NA,30,1009,0,0 +Debby,2006,8,26,12,25.7,-46.9,other low,NA,25,1010,0,0 +Debby,2006,8,26,18,26.5,-47.5,other low,NA,25,1011,0,0 +Debby,2006,8,27,0,27.3,-48.1,other low,NA,25,1012,0,0 +Debby,2006,8,27,6,28.3,-48.8,other low,NA,25,1012,0,0 +Debby,2006,8,27,12,29.4,-49.1,other low,NA,25,1012,0,0 +Debby,2006,8,27,18,30.6,-48.9,other low,NA,25,1012,0,0 +Debby,2006,8,28,0,32.1,-48.3,other low,NA,25,1012,0,0 +Ernesto,2006,8,24,18,12.7,-61.6,tropical depression,NA,30,1008,0,0 +Ernesto,2006,8,25,0,13,-63,tropical depression,NA,30,1007,0,0 +Ernesto,2006,8,25,6,13.3,-64.4,tropical depression,NA,30,1005,0,0 +Ernesto,2006,8,25,12,13.7,-65.8,tropical storm,NA,35,1005,80,0 +Ernesto,2006,8,25,18,14,-67.1,tropical storm,NA,35,1004,80,0 +Ernesto,2006,8,26,0,14.3,-68.3,tropical storm,NA,40,1002,80,0 +Ernesto,2006,8,26,6,14.6,-69.5,tropical storm,NA,45,999,100,0 +Ernesto,2006,8,26,12,15.1,-70.4,tropical storm,NA,50,997,100,0 +Ernesto,2006,8,26,18,15.7,-71.2,tropical storm,NA,55,997,100,0 +Ernesto,2006,8,27,0,16.3,-72,tropical storm,NA,55,995,100,0 +Ernesto,2006,8,27,6,16.9,-72.7,hurricane,1,65,992,120,10 +Ernesto,2006,8,27,12,17.4,-73.4,tropical storm,NA,55,997,110,0 +Ernesto,2006,8,27,18,17.8,-74,tropical storm,NA,45,1002,100,0 +Ernesto,2006,8,28,0,18.3,-74.6,tropical storm,NA,40,1003,60,0 +Ernesto,2006,8,28,6,19.1,-75.2,tropical storm,NA,40,1004,60,0 +Ernesto,2006,8,28,11,19.9,-75.5,tropical storm,NA,35,1005,NA,NA +Ernesto,2006,8,28,12,20,-75.6,tropical storm,NA,35,1005,90,0 +Ernesto,2006,8,28,18,20.8,-76.4,tropical storm,NA,35,1007,120,0 +Ernesto,2006,8,29,0,21.6,-77.4,tropical storm,NA,35,1007,90,0 +Ernesto,2006,8,29,6,22.4,-78.5,tropical storm,NA,40,1006,75,0 +Ernesto,2006,8,29,12,23.2,-79.3,tropical storm,NA,40,1006,75,0 +Ernesto,2006,8,29,18,23.9,-79.9,tropical storm,NA,40,1005,100,0 +Ernesto,2006,8,30,0,24.7,-80.4,tropical storm,NA,40,1004,115,0 +Ernesto,2006,8,30,3,24.9,-80.6,tropical storm,NA,40,1003,NA,NA +Ernesto,2006,8,30,5,25.2,-80.7,tropical storm,NA,40,1003,NA,NA +Ernesto,2006,8,30,6,25.3,-80.8,tropical storm,NA,40,1003,115,0 +Ernesto,2006,8,30,12,26.1,-81,tropical storm,NA,35,1002,60,0 +Ernesto,2006,8,30,18,27,-80.9,tropical storm,NA,35,1001,20,0 +Ernesto,2006,8,31,0,28.1,-80.7,tropical storm,NA,35,1000,50,0 +Ernesto,2006,8,31,6,29.4,-80.4,tropical storm,NA,45,999,75,0 +Ernesto,2006,8,31,12,30.6,-79.9,tropical storm,NA,55,995,90,0 +Ernesto,2006,8,31,18,31.9,-79.2,tropical storm,NA,60,993,160,0 +Ernesto,2006,9,1,0,33.2,-78.4,tropical storm,NA,60,988,170,0 +Ernesto,2006,9,1,3,33.9,-78.1,tropical storm,NA,60,985,NA,NA +Ernesto,2006,9,1,6,34.5,-78,tropical storm,NA,50,985,140,0 +Ernesto,2006,9,1,12,35.8,-77.6,tropical depression,NA,30,991,0,0 +Ernesto,2006,9,1,18,36.6,-77.2,extratropical,NA,40,997,100,0 +Ernesto,2006,9,2,0,37.1,-77,extratropical,NA,40,1002,150,0 +Ernesto,2006,9,2,6,37.6,-76.8,extratropical,NA,40,1005,150,0 +Ernesto,2006,9,2,12,38.2,-76.7,extratropical,NA,40,1007,150,0 +Ernesto,2006,9,2,18,38.9,-76.7,extratropical,NA,40,1010,150,0 +Ernesto,2006,9,3,0,39.9,-76.7,extratropical,NA,35,1012,150,0 +Ernesto,2006,9,3,6,41.3,-77.1,extratropical,NA,25,1014,0,0 +Ernesto,2006,9,3,12,43.1,-77.5,extratropical,NA,20,1014,0,0 +Ernesto,2006,9,3,18,44.5,-77,extratropical,NA,20,1015,0,0 +Ernesto,2006,9,4,0,45.6,-75.8,extratropical,NA,20,1015,0,0 +Ernesto,2006,9,4,6,46.5,-74.4,extratropical,NA,20,1014,0,0 +Florence,2006,9,3,18,14.1,-39.4,tropical depression,NA,30,1007,0,0 +Florence,2006,9,4,0,14.7,-40,tropical depression,NA,30,1007,0,0 +Florence,2006,9,4,6,15.4,-41,tropical depression,NA,30,1007,0,0 +Florence,2006,9,4,12,16,-42.3,tropical depression,NA,30,1007,0,0 +Florence,2006,9,4,18,16.4,-43.5,tropical depression,NA,30,1007,0,0 +Florence,2006,9,5,0,16.6,-44.8,tropical depression,NA,30,1007,0,0 +Florence,2006,9,5,6,16.8,-46.1,tropical storm,NA,35,1007,100,0 +Florence,2006,9,5,12,17,-46.9,tropical storm,NA,35,1005,100,0 +Florence,2006,9,5,18,17.3,-47.8,tropical storm,NA,40,1003,110,0 +Florence,2006,9,6,0,17.6,-48.6,tropical storm,NA,40,1003,125,0 +Florence,2006,9,6,6,18.1,-49.7,tropical storm,NA,40,1003,175,0 +Florence,2006,9,6,12,18.5,-50.6,tropical storm,NA,45,1003,225,0 +Florence,2006,9,6,18,19,-51.3,tropical storm,NA,45,1000,285,0 +Florence,2006,9,7,0,19.3,-51.9,tropical storm,NA,45,1000,350,0 +Florence,2006,9,7,6,19.6,-52.6,tropical storm,NA,45,1000,425,0 +Florence,2006,9,7,12,19.9,-53.3,tropical storm,NA,40,1002,500,0 +Florence,2006,9,7,18,20.3,-54.3,tropical storm,NA,40,1002,500,0 +Florence,2006,9,8,0,20.9,-55.7,tropical storm,NA,40,1002,500,0 +Florence,2006,9,8,6,21.5,-57.1,tropical storm,NA,40,1002,500,0 +Florence,2006,9,8,12,21.7,-58.8,tropical storm,NA,40,1002,500,0 +Florence,2006,9,8,18,21.9,-60.1,tropical storm,NA,45,1000,500,0 +Florence,2006,9,9,0,22.7,-61,tropical storm,NA,50,997,450,0 +Florence,2006,9,9,6,23.8,-62.3,tropical storm,NA,50,993,450,0 +Florence,2006,9,9,12,24.4,-63.2,tropical storm,NA,50,992,450,0 +Florence,2006,9,9,18,25.1,-64,tropical storm,NA,50,991,450,0 +Florence,2006,9,10,0,26.2,-64.6,tropical storm,NA,60,987,385,0 +Florence,2006,9,10,6,27.1,-65.3,hurricane,1,70,980,345,40 +Florence,2006,9,10,12,28.1,-65.9,hurricane,1,75,978,360,40 +Florence,2006,9,10,18,29.3,-66.1,hurricane,1,80,976,380,55 +Florence,2006,9,11,0,30.4,-66.2,hurricane,1,80,975,400,75 +Florence,2006,9,11,6,31.3,-66.2,hurricane,1,70,977,350,85 +Florence,2006,9,11,12,32.4,-65.7,hurricane,1,75,974,350,90 +Florence,2006,9,11,18,33.6,-65,hurricane,1,75,974,475,90 +Florence,2006,9,12,0,34.9,-64.1,hurricane,1,70,975,600,90 +Florence,2006,9,12,6,36.3,-63.2,hurricane,1,65,976,630,90 +Florence,2006,9,12,12,37.4,-61.9,hurricane,1,65,976,660,90 +Florence,2006,9,12,18,38.5,-60.2,hurricane,1,65,977,600,120 +Florence,2006,9,13,0,40.6,-57.9,extratropical,NA,70,978,680,120 +Florence,2006,9,13,6,43.1,-56.3,extratropical,NA,70,972,700,120 +Florence,2006,9,13,12,45.5,-55.6,extratropical,NA,70,967,720,120 +Florence,2006,9,13,18,46.4,-54,extratropical,NA,70,963,720,135 +Florence,2006,9,14,0,47.6,-51.3,extratropical,NA,65,965,720,150 +Florence,2006,9,14,6,48.6,-48.3,extratropical,NA,60,967,720,0 +Florence,2006,9,14,12,49.2,-45.2,extratropical,NA,55,970,720,0 +Florence,2006,9,14,18,49.8,-42.6,extratropical,NA,50,976,720,0 +Florence,2006,9,15,0,50,-39.6,extratropical,NA,45,981,720,0 +Florence,2006,9,15,6,49.7,-35.8,extratropical,NA,45,982,690,0 +Florence,2006,9,15,12,49.5,-31.7,extratropical,NA,45,984,720,0 +Florence,2006,9,15,18,49.8,-27.5,extratropical,NA,40,986,630,0 +Florence,2006,9,16,0,50.6,-23.9,extratropical,NA,40,987,540,0 +Florence,2006,9,16,6,52.5,-21,extratropical,NA,40,987,540,0 +Florence,2006,9,16,12,54.6,-20.5,extratropical,NA,40,985,540,0 +Florence,2006,9,16,18,56.6,-20.5,extratropical,NA,40,983,540,0 +Florence,2006,9,17,0,58.2,-20.5,extratropical,NA,40,980,540,0 +Florence,2006,9,17,6,59.6,-20.6,extratropical,NA,40,980,540,0 +Florence,2006,9,17,12,60.9,-21.2,extratropical,NA,40,979,510,0 +Florence,2006,9,17,18,62,-22.5,extratropical,NA,45,978,480,0 +Florence,2006,9,18,0,62.6,-24.5,extratropical,NA,50,976,600,0 +Florence,2006,9,18,6,63,-26.5,extratropical,NA,50,977,420,0 +Florence,2006,9,18,12,63,-29,extratropical,NA,50,978,420,0 +Florence,2006,9,18,18,63,-31.4,extratropical,NA,50,979,420,0 +Florence,2006,9,19,0,62,-34,extratropical,NA,50,982,420,0 +Gordon,2006,9,10,18,20.2,-53.8,tropical depression,NA,25,1012,0,0 +Gordon,2006,9,11,0,20.3,-54.5,tropical depression,NA,30,1011,0,0 +Gordon,2006,9,11,6,20.6,-55.3,tropical depression,NA,30,1010,0,0 +Gordon,2006,9,11,12,20.9,-56.3,tropical storm,NA,35,1008,40,0 +Gordon,2006,9,11,18,21.4,-57.1,tropical storm,NA,40,1005,40,0 +Gordon,2006,9,12,0,21.8,-57.6,tropical storm,NA,50,1003,75,0 +Gordon,2006,9,12,6,22.3,-58,tropical storm,NA,50,1000,75,0 +Gordon,2006,9,12,12,22.8,-58.2,tropical storm,NA,50,998,75,0 +Gordon,2006,9,12,18,23.4,-58.2,tropical storm,NA,55,994,90,0 +Gordon,2006,9,13,0,24,-58.1,hurricane,1,65,987,100,20 +Gordon,2006,9,13,6,24.7,-58,hurricane,1,70,984,125,20 +Gordon,2006,9,13,12,25.6,-57.9,hurricane,1,80,980,160,40 +Gordon,2006,9,13,18,26.5,-57.7,hurricane,2,95,965,175,50 +Gordon,2006,9,14,0,27.3,-57.4,hurricane,3,105,955,205,50 +Gordon,2006,9,14,6,28.2,-56.8,hurricane,3,105,956,205,50 +Gordon,2006,9,14,12,29.1,-56.2,hurricane,3,105,956,210,50 +Gordon,2006,9,14,18,29.8,-55.4,hurricane,3,105,958,210,50 +Gordon,2006,9,15,0,30.3,-54.6,hurricane,3,100,960,210,50 +Gordon,2006,9,15,6,30.8,-53.8,hurricane,2,95,965,195,50 +Gordon,2006,9,15,12,31.1,-53.5,hurricane,2,85,973,180,50 +Gordon,2006,9,15,18,31.1,-53.5,hurricane,1,80,976,180,50 +Gordon,2006,9,16,0,31.1,-53.5,hurricane,1,75,980,180,40 +Gordon,2006,9,16,6,31.2,-53.6,hurricane,1,70,983,180,40 +Gordon,2006,9,16,12,31.3,-53.8,hurricane,1,65,987,180,40 +Gordon,2006,9,16,18,31.5,-53.9,hurricane,1,65,987,180,40 +Gordon,2006,9,17,0,31.9,-53.8,hurricane,1,65,987,190,40 +Gordon,2006,9,17,6,32.4,-53.7,hurricane,1,65,987,190,40 +Gordon,2006,9,17,12,33.3,-53.3,hurricane,1,70,983,180,40 +Gordon,2006,9,17,18,34.1,-52.9,hurricane,1,70,983,180,40 +Gordon,2006,9,18,0,35,-52.1,hurricane,1,75,981,160,40 +Gordon,2006,9,18,6,36.1,-50.6,hurricane,1,75,979,160,40 +Gordon,2006,9,18,12,36.9,-48.7,hurricane,1,80,976,160,50 +Gordon,2006,9,18,18,37.5,-46.3,hurricane,2,85,972,160,55 +Gordon,2006,9,19,0,38,-43.3,hurricane,2,85,972,160,60 +Gordon,2006,9,19,6,38.1,-40.2,hurricane,2,90,970,210,60 +Gordon,2006,9,19,12,38,-37,hurricane,1,80,977,250,60 +Gordon,2006,9,19,18,37.8,-33.5,hurricane,1,75,979,250,60 +Gordon,2006,9,20,0,37.7,-29.9,hurricane,1,70,980,225,60 +Gordon,2006,9,20,6,37.6,-26.1,hurricane,1,70,980,270,55 +Gordon,2006,9,20,12,37.8,-22.6,hurricane,1,65,983,270,60 +Gordon,2006,9,20,18,38.5,-18.5,hurricane,1,65,983,270,70 +Gordon,2006,9,21,0,40.1,-14,extratropical,NA,60,984,360,0 +Gordon,2006,9,21,6,43.8,-10.4,extratropical,NA,55,986,300,0 +Gordon,2006,9,21,12,48.5,-9,extratropical,NA,55,982,295,0 +Gordon,2006,9,21,18,52.5,-9.5,extratropical,NA,55,978,300,0 +Gordon,2006,9,22,0,54.5,-10.5,extratropical,NA,60,975,480,0 +Gordon,2006,9,22,6,57,-14,extratropical,NA,65,974,840,120 +Gordon,2006,9,22,12,56.5,-18.5,extratropical,NA,55,976,560,0 +Gordon,2006,9,22,18,56,-19.5,extratropical,NA,45,980,420,0 +Gordon,2006,9,23,0,54.5,-20,extratropical,NA,45,982,360,0 +Gordon,2006,9,23,6,52.5,-20,extratropical,NA,40,986,300,0 +Gordon,2006,9,23,12,50.7,-17.7,extratropical,NA,35,993,300,0 +Gordon,2006,9,23,18,49,-14.5,extratropical,NA,35,994,600,0 +Gordon,2006,9,24,0,48,-10,extratropical,NA,30,995,0,0 +Gordon,2006,9,24,6,48.5,-8.5,extratropical,NA,30,996,0,0 +Gordon,2006,9,24,12,49,-8,extratropical,NA,30,998,0,0 +Gordon,2006,9,24,18,50.5,-7.5,extratropical,NA,25,1001,0,0 +Helene,2006,9,12,12,11.9,-22,tropical depression,NA,25,1007,0,0 +Helene,2006,9,12,18,11.9,-23.2,tropical depression,NA,30,1007,0,0 +Helene,2006,9,13,0,11.9,-24.6,tropical depression,NA,30,1007,0,0 +Helene,2006,9,13,6,12,-26.1,tropical depression,NA,30,1007,0,0 +Helene,2006,9,13,12,12.2,-28,tropical depression,NA,30,1007,0,0 +Helene,2006,9,13,18,12.5,-30,tropical depression,NA,30,1006,0,0 +Helene,2006,9,14,0,12.9,-31.9,tropical storm,NA,35,1005,60,0 +Helene,2006,9,14,6,13.2,-33.8,tropical storm,NA,35,1005,75,0 +Helene,2006,9,14,12,13.6,-35.6,tropical storm,NA,40,1003,75,0 +Helene,2006,9,14,18,14,-37,tropical storm,NA,40,1003,135,0 +Helene,2006,9,15,0,14.4,-38.3,tropical storm,NA,40,1002,135,0 +Helene,2006,9,15,6,14.8,-39.6,tropical storm,NA,45,1000,135,0 +Helene,2006,9,15,12,15.5,-40.8,tropical storm,NA,50,997,150,0 +Helene,2006,9,15,18,16.2,-42.1,tropical storm,NA,55,995,175,0 +Helene,2006,9,16,0,17,-43.3,tropical storm,NA,60,992,210,0 +Helene,2006,9,16,6,17.7,-44.3,tropical storm,NA,60,990,235,0 +Helene,2006,9,16,12,18.4,-45.3,hurricane,1,65,987,250,25 +Helene,2006,9,16,18,18.9,-46.2,hurricane,1,65,986,250,25 +Helene,2006,9,17,0,19.4,-47.1,hurricane,1,70,983,250,40 +Helene,2006,9,17,6,19.9,-47.9,hurricane,1,75,979,250,40 +Helene,2006,9,17,12,20.3,-48.4,hurricane,1,80,976,250,60 +Helene,2006,9,17,18,20.8,-48.8,hurricane,2,90,970,250,65 +Helene,2006,9,18,0,21.4,-49.1,hurricane,3,100,962,275,75 +Helene,2006,9,18,6,22,-49.4,hurricane,3,105,955,275,75 +Helene,2006,9,18,12,22.7,-49.7,hurricane,3,105,958,275,75 +Helene,2006,9,18,18,23.6,-50.4,hurricane,2,95,962,300,90 +Helene,2006,9,19,0,24,-51,hurricane,2,95,962,300,100 +Helene,2006,9,19,6,24.3,-51.7,hurricane,2,95,960,350,100 +Helene,2006,9,19,12,24.4,-52.5,hurricane,2,95,958,350,100 +Helene,2006,9,19,18,24.4,-53.5,hurricane,2,90,956,350,80 +Helene,2006,9,20,0,24.5,-54.4,hurricane,2,90,958,350,70 +Helene,2006,9,20,6,24.9,-55.2,hurricane,2,90,958,350,70 +Helene,2006,9,20,12,25.4,-56,hurricane,2,90,959,350,70 +Helene,2006,9,20,18,25.9,-56.7,hurricane,1,80,960,350,70 +Helene,2006,9,21,0,26.8,-57,hurricane,1,80,962,350,70 +Helene,2006,9,21,6,27.8,-57,hurricane,1,75,964,355,70 +Helene,2006,9,21,12,29,-57,hurricane,1,75,968,360,55 +Helene,2006,9,21,18,30.2,-57,hurricane,1,75,970,380,55 +Helene,2006,9,22,0,31.4,-56.6,hurricane,1,75,970,380,65 +Helene,2006,9,22,6,32.5,-55.9,hurricane,1,70,970,380,65 +Helene,2006,9,22,12,33.6,-55.1,hurricane,1,70,970,425,75 +Helene,2006,9,22,18,34.9,-53.7,hurricane,1,70,968,425,80 +Helene,2006,9,23,0,35.7,-51.7,hurricane,1,75,964,475,105 +Helene,2006,9,23,6,36.4,-49.6,hurricane,1,80,962,525,135 +Helene,2006,9,23,12,37.1,-47.5,hurricane,1,80,962,525,190 +Helene,2006,9,23,18,37.7,-45.4,hurricane,1,75,963,525,190 +Helene,2006,9,24,0,38.6,-43.2,hurricane,1,70,964,575,180 +Helene,2006,9,24,6,39.5,-40.9,hurricane,1,65,964,625,180 +Helene,2006,9,24,12,40.6,-38.2,hurricane,1,65,964,650,180 +Helene,2006,9,24,18,42,-35.9,extratropical,NA,65,964,650,190 +Helene,2006,9,25,0,43.2,-34.7,extratropical,NA,65,964,650,200 +Helene,2006,9,25,6,44.1,-33.3,extratropical,NA,65,966,600,200 +Helene,2006,9,25,12,44.7,-31.7,extratropical,NA,60,968,600,0 +Helene,2006,9,25,18,44.9,-29.8,extratropical,NA,55,972,575,0 +Helene,2006,9,26,0,45,-27.6,extratropical,NA,50,977,500,0 +Helene,2006,9,26,6,45.5,-25.2,extratropical,NA,50,980,500,0 +Helene,2006,9,26,12,46,-22.7,extratropical,NA,50,984,420,0 +Helene,2006,9,26,18,47.2,-20.1,extratropical,NA,45,986,400,0 +Helene,2006,9,27,0,49,-17,extratropical,NA,45,988,300,0 +Helene,2006,9,27,6,51.3,-13.3,extratropical,NA,45,988,275,0 +Helene,2006,9,27,12,53.9,-10.1,extratropical,NA,40,988,240,0 +Helene,2006,9,27,18,56.3,-7.6,extratropical,NA,40,988,240,0 +Isaac,2006,9,27,18,26.1,-52.6,tropical depression,NA,30,1012,0,0 +Isaac,2006,9,28,0,26.8,-53.4,tropical depression,NA,30,1012,0,0 +Isaac,2006,9,28,6,27.4,-54,tropical storm,NA,35,1008,100,0 +Isaac,2006,9,28,12,28,-54.4,tropical storm,NA,40,1006,100,0 +Isaac,2006,9,28,18,28.6,-54.6,tropical storm,NA,40,1006,145,0 +Isaac,2006,9,29,0,28.9,-54.9,tropical storm,NA,40,1006,185,0 +Isaac,2006,9,29,6,29,-55.4,tropical storm,NA,40,1006,185,0 +Isaac,2006,9,29,12,29.2,-55.8,tropical storm,NA,45,1003,175,0 +Isaac,2006,9,29,18,29.5,-56.5,tropical storm,NA,50,1000,175,0 +Isaac,2006,9,30,0,29.8,-57.1,tropical storm,NA,60,997,175,0 +Isaac,2006,9,30,6,30.1,-57.7,tropical storm,NA,60,995,175,0 +Isaac,2006,9,30,12,30.6,-58.5,hurricane,1,65,992,180,60 +Isaac,2006,9,30,18,31.3,-59.2,hurricane,1,70,989,180,60 +Isaac,2006,10,1,0,32,-59.8,hurricane,1,75,987,190,50 +Isaac,2006,10,1,6,32.8,-60.2,hurricane,1,75,985,190,40 +Isaac,2006,10,1,12,33.8,-60.3,hurricane,1,70,986,210,40 +Isaac,2006,10,1,18,35.2,-60.3,hurricane,1,70,987,210,40 +Isaac,2006,10,2,0,37.2,-59.6,hurricane,1,65,988,250,40 +Isaac,2006,10,2,6,39.8,-58,hurricane,1,65,989,275,20 +Isaac,2006,10,2,12,42.5,-56.2,tropical storm,NA,60,990,300,0 +Isaac,2006,10,2,18,45.5,-53.7,tropical storm,NA,55,995,300,0 +Isaac,2006,10,3,0,47.6,-51,extratropical,NA,55,996,275,0 +Isaac,2006,10,3,6,48.6,-49,extratropical,NA,45,998,200,0 +Isaac,2006,10,3,12,49.5,-47,extratropical,NA,35,1000,115,0 +Barry,2007,5,31,0,18.1,-87,other low,NA,25,1008,0,0 +Barry,2007,5,31,6,18.7,-86.9,other low,NA,25,1007,0,0 +Barry,2007,5,31,12,19.1,-86.8,other low,NA,25,1006,0,0 +Barry,2007,5,31,18,19.6,-86.6,other low,NA,25,1005,0,0 +Barry,2007,6,1,0,20.1,-86,other low,NA,25,1005,0,0 +Barry,2007,6,1,6,21.2,-85.8,other low,NA,25,1005,0,0 +Barry,2007,6,1,12,22.3,-85.8,tropical depression,NA,30,1004,0,0 +Barry,2007,6,1,18,23.6,-85.7,tropical storm,NA,40,1000,110,0 +Barry,2007,6,2,0,24.3,-85.2,tropical storm,NA,50,997,110,0 +Barry,2007,6,2,6,25.1,-84.6,tropical storm,NA,45,998,120,0 +Barry,2007,6,2,12,27,-83.2,tropical storm,NA,40,1000,120,0 +Barry,2007,6,2,14,27.5,-82.7,tropical depression,NA,30,1000,0,0 +Barry,2007,6,2,18,29.7,-82.1,tropical depression,NA,30,1001,0,0 +Barry,2007,6,3,0,31.4,-81.4,extratropical,NA,35,997,120,0 +Barry,2007,6,3,6,32.1,-81,extratropical,NA,40,994,120,0 +Barry,2007,6,3,12,32.8,-80,extratropical,NA,40,994,250,0 +Barry,2007,6,3,18,33.7,-78.4,extratropical,NA,40,994,300,0 +Barry,2007,6,4,0,35.3,-76,extratropical,NA,40,992,300,0 +Barry,2007,6,4,6,37.2,-74.6,extratropical,NA,40,990,300,0 +Barry,2007,6,4,12,39,-73.2,extratropical,NA,40,990,300,0 +Barry,2007,6,4,18,40.7,-72.1,extratropical,NA,35,991,300,0 +Barry,2007,6,5,0,42.4,-70.8,extratropical,NA,35,992,300,0 +Barry,2007,6,5,6,44.6,-69.5,extratropical,NA,30,992,0,0 +Barry,2007,6,5,12,47.5,-68.5,extratropical,NA,30,992,0,0 +Chantal,2007,7,31,0,35.5,-66.5,tropical depression,NA,30,1007,0,0 +Chantal,2007,7,31,6,37.1,-65.5,tropical storm,NA,35,1004,60,0 +Chantal,2007,7,31,12,39.1,-64.2,tropical storm,NA,45,999,240,0 +Chantal,2007,7,31,18,40.7,-62.3,tropical storm,NA,45,999,265,0 +Chantal,2007,8,1,0,42.5,-60,tropical storm,NA,45,994,235,0 +Chantal,2007,8,1,6,44,-57.5,extratropical,NA,45,992,235,0 +Chantal,2007,8,1,12,46,-54.5,extratropical,NA,55,990,235,0 +Chantal,2007,8,1,18,49,-49.5,extratropical,NA,60,988,360,0 +Chantal,2007,8,2,0,53,-43,extratropical,NA,60,985,400,0 +Chantal,2007,8,2,6,55.5,-38.5,extratropical,NA,50,975,550,0 +Chantal,2007,8,2,12,57.5,-35.4,extratropical,NA,50,970,550,0 +Chantal,2007,8,2,18,58.6,-33.9,extratropical,NA,55,967,550,0 +Chantal,2007,8,3,0,58.9,-32.1,extratropical,NA,60,964,550,0 +Chantal,2007,8,3,6,58.9,-30.4,extratropical,NA,60,964,550,0 +Chantal,2007,8,3,12,58.9,-28,extratropical,NA,60,964,550,0 +Chantal,2007,8,3,18,58.9,-25.2,extratropical,NA,55,967,650,0 +Chantal,2007,8,4,0,59.1,-22.6,extratropical,NA,55,967,650,0 +Chantal,2007,8,4,6,59.5,-19.1,extratropical,NA,50,970,600,0 +Chantal,2007,8,4,12,60.7,-16.3,extratropical,NA,50,975,600,0 +Chantal,2007,8,4,18,61.7,-14,extratropical,NA,45,978,550,0 +Chantal,2007,8,5,0,62.7,-12,extratropical,NA,45,980,550,0 +Chantal,2007,8,5,6,64,-9.5,extratropical,NA,45,982,500,0 +Chantal,2007,8,5,12,66,-7,extratropical,NA,35,985,500,0 +Dean,2007,8,13,6,12.2,-28.9,tropical depression,NA,30,1006,0,0 +Dean,2007,8,13,12,12.1,-30.7,tropical depression,NA,30,1005,0,0 +Dean,2007,8,13,18,12,-32.4,tropical depression,NA,30,1005,0,0 +Dean,2007,8,14,0,11.9,-34.5,tropical depression,NA,30,1005,0,0 +Dean,2007,8,14,6,11.8,-36.5,tropical depression,NA,30,1005,0,0 +Dean,2007,8,14,12,11.8,-38.3,tropical storm,NA,35,1004,30,0 +Dean,2007,8,14,18,11.8,-40.1,tropical storm,NA,40,1002,75,0 +Dean,2007,8,15,0,11.9,-41.7,tropical storm,NA,50,997,90,0 +Dean,2007,8,15,6,12,-43.4,tropical storm,NA,50,997,90,0 +Dean,2007,8,15,12,12.3,-45.1,tropical storm,NA,50,997,90,0 +Dean,2007,8,15,18,12.8,-47,tropical storm,NA,55,994,90,0 +Dean,2007,8,16,0,13,-49.2,tropical storm,NA,60,991,90,0 +Dean,2007,8,16,6,13.2,-51.3,hurricane,1,70,984,105,20 +Dean,2007,8,16,12,13.5,-53.3,hurricane,1,80,972,150,30 +Dean,2007,8,16,18,13.8,-55.5,hurricane,1,80,972,195,40 +Dean,2007,8,17,0,14,-57.7,hurricane,1,80,976,195,40 +Dean,2007,8,17,6,14.2,-59.8,hurricane,1,80,975,210,40 +Dean,2007,8,17,12,14.4,-61.7,hurricane,2,90,967,260,40 +Dean,2007,8,17,18,14.8,-63.5,hurricane,3,110,961,280,45 +Dean,2007,8,18,0,14.9,-65.1,hurricane,4,125,944,300,80 +Dean,2007,8,18,6,15,-66.6,hurricane,5,145,929,300,80 +Dean,2007,8,18,12,15.4,-68,hurricane,5,145,923,300,85 +Dean,2007,8,18,18,15.9,-69.5,hurricane,4,130,930,300,90 +Dean,2007,8,19,0,16.1,-71,hurricane,4,120,920,280,90 +Dean,2007,8,19,6,16.4,-72.6,hurricane,4,120,921,280,90 +Dean,2007,8,19,12,16.8,-74.3,hurricane,4,125,923,300,90 +Dean,2007,8,19,18,17.1,-76,hurricane,4,125,930,270,100 +Dean,2007,8,20,0,17.5,-77.8,hurricane,4,125,926,270,100 +Dean,2007,8,20,6,17.6,-79.8,hurricane,4,130,926,270,90 +Dean,2007,8,20,12,17.8,-81.5,hurricane,4,130,926,270,90 +Dean,2007,8,20,18,18,-83.3,hurricane,4,135,924,270,90 +Dean,2007,8,21,0,18.2,-85.1,hurricane,5,145,914,275,90 +Dean,2007,8,21,6,18.6,-86.9,hurricane,5,150,907,305,90 +Dean,2007,8,21,8,18.7,-87.7,hurricane,5,150,905,NA,NA +Dean,2007,8,21,12,18.9,-88.7,hurricane,3,110,935,300,70 +Dean,2007,8,21,18,19.2,-90.5,hurricane,1,75,960,240,60 +Dean,2007,8,22,0,19.7,-92.2,hurricane,1,65,979,250,60 +Dean,2007,8,22,6,20.1,-94,hurricane,1,70,979,275,60 +Dean,2007,8,22,12,20.5,-95.5,hurricane,1,80,976,290,60 +Dean,2007,8,22,16,20.5,-97,hurricane,2,85,974,NA,NA +Dean,2007,8,22,18,20.5,-97.3,hurricane,1,75,974,290,30 +Dean,2007,8,23,0,20.5,-99,tropical depression,NA,30,998,0,0 +Erin,2007,8,15,0,23.7,-90.7,tropical depression,NA,25,1006,0,0 +Erin,2007,8,15,6,24.5,-91.8,tropical depression,NA,25,1006,0,0 +Erin,2007,8,15,12,25.2,-92.9,tropical depression,NA,30,1005,0,0 +Erin,2007,8,15,18,25.8,-94,tropical storm,NA,35,1004,60,0 +Erin,2007,8,16,0,26.3,-95.2,tropical storm,NA,35,1003,75,0 +Erin,2007,8,16,6,27.2,-96.2,tropical storm,NA,35,1005,75,0 +Erin,2007,8,16,10,28,-96.9,tropical depression,NA,30,1006,0,0 +Erin,2007,8,16,12,28.1,-97.1,tropical depression,NA,30,1006,0,0 +Erin,2007,8,16,18,28.8,-97.8,tropical depression,NA,25,1006,0,0 +Erin,2007,8,17,0,29.4,-98.6,tropical depression,NA,25,1006,0,0 +Erin,2007,8,17,6,30,-99.5,tropical depression,NA,25,1007,0,0 +Erin,2007,8,17,12,30.5,-100.6,other low,NA,20,1008,0,0 +Erin,2007,8,17,18,31.1,-101.4,other low,NA,20,1008,0,0 +Erin,2007,8,18,0,31.8,-101.8,other low,NA,20,1008,0,0 +Erin,2007,8,18,6,32.5,-101.8,other low,NA,20,1008,0,0 +Erin,2007,8,18,12,33.2,-101.5,other low,NA,20,1008,0,0 +Erin,2007,8,18,18,34,-101,other low,NA,20,1007,0,0 +Erin,2007,8,19,0,34.8,-100.1,other low,NA,25,1004,0,0 +Erin,2007,8,19,6,35.6,-98.8,other low,NA,50,995,45,0 +Erin,2007,8,19,12,35.6,-97.7,other low,NA,35,1002,10,0 +Erin,2007,8,19,18,35.9,-96.5,other low,NA,20,1007,0,0 +Felix,2007,8,31,12,11.5,-56.6,tropical depression,NA,25,1009,0,0 +Felix,2007,8,31,18,11.5,-58,tropical depression,NA,30,1008,0,0 +Felix,2007,9,1,0,12.1,-59.4,tropical storm,NA,35,1007,15,0 +Felix,2007,9,1,6,12.1,-61.1,tropical storm,NA,40,1005,30,0 +Felix,2007,9,1,8,12.1,-61.7,tropical storm,NA,45,1001,NA,NA +Felix,2007,9,1,12,12.2,-62.8,tropical storm,NA,50,1001,70,0 +Felix,2007,9,1,18,12.4,-64.5,tropical storm,NA,60,999,140,0 +Felix,2007,9,2,0,12.6,-66.1,hurricane,1,65,992,140,15 +Felix,2007,9,2,6,12.7,-67.8,hurricane,2,85,985,165,25 +Felix,2007,9,2,12,13,-69.4,hurricane,2,90,980,165,35 +Felix,2007,9,2,18,13.4,-71.1,hurricane,4,115,962,175,45 +Felix,2007,9,3,0,13.8,-73,hurricane,5,150,935,175,45 +Felix,2007,9,3,6,14,-75,hurricane,5,150,930,160,40 +Felix,2007,9,3,7,14,-75.3,hurricane,5,150,929,NA,NA +Felix,2007,9,3,12,14.2,-76.9,hurricane,5,140,937,140,40 +Felix,2007,9,3,18,14.3,-78.7,hurricane,4,115,951,140,40 +Felix,2007,9,4,0,14.4,-80.4,hurricane,4,115,950,135,50 +Felix,2007,9,4,6,14.3,-81.9,hurricane,4,135,939,150,60 +Felix,2007,9,4,12,14.3,-83.2,hurricane,5,140,934,160,60 +Felix,2007,9,4,18,14.3,-84.4,hurricane,2,85,962,115,40 +Felix,2007,9,5,0,14.6,-85.4,tropical storm,NA,50,982,65,0 +Felix,2007,9,5,6,15,-86.4,tropical depression,NA,25,1004,0,0 +Felix,2007,9,5,12,15.5,-87.3,other low,NA,20,1006,0,0 +Felix,2007,9,5,18,16.1,-88.3,other low,NA,20,1007,0,0 +Felix,2007,9,6,0,16.5,-89.5,other low,NA,20,1007,0,0 +Felix,2007,9,6,6,16.7,-90.8,other low,NA,20,1007,0,0 +Felix,2007,9,6,12,17.2,-92.4,other low,NA,20,1007,0,0 +Felix,2007,9,6,18,17.7,-93.8,other low,NA,15,1010,0,0 +Gabrielle,2007,9,8,0,30.1,-71.8,subtropical storm,NA,40,1011,125,0 +Gabrielle,2007,9,8,6,30.5,-72.8,subtropical storm,NA,40,1010,100,0 +Gabrielle,2007,9,8,12,31.1,-73.8,subtropical storm,NA,35,1010,100,0 +Gabrielle,2007,9,8,18,31.8,-74.6,tropical storm,NA,35,1009,90,0 +Gabrielle,2007,9,9,0,32.6,-75.4,tropical storm,NA,40,1007,95,0 +Gabrielle,2007,9,9,6,33.5,-76,tropical storm,NA,45,1004,70,0 +Gabrielle,2007,9,9,12,34.3,-76.4,tropical storm,NA,50,1004,70,0 +Gabrielle,2007,9,9,15,34.8,-76.4,tropical storm,NA,50,1005,NA,NA +Gabrielle,2007,9,9,18,35.2,-76.3,tropical storm,NA,45,1006,85,0 +Gabrielle,2007,9,10,0,36,-75.8,tropical storm,NA,40,1007,105,0 +Gabrielle,2007,9,10,6,36.7,-75,tropical depression,NA,30,1008,0,0 +Gabrielle,2007,9,10,12,37.1,-73.8,tropical depression,NA,30,1009,0,0 +Gabrielle,2007,9,10,18,37.5,-72,tropical depression,NA,30,1010,0,0 +Gabrielle,2007,9,11,0,37.9,-70,tropical depression,NA,30,1010,0,0 +Gabrielle,2007,9,11,6,38.4,-68,tropical depression,NA,30,1010,0,0 +Ingrid,2007,9,12,6,13,-43.6,tropical depression,NA,25,1009,0,0 +Ingrid,2007,9,12,12,13,-44.3,tropical depression,NA,30,1008,0,0 +Ingrid,2007,9,12,18,13.1,-45.1,tropical depression,NA,30,1007,0,0 +Ingrid,2007,9,13,0,13.4,-45.9,tropical depression,NA,30,1006,0,0 +Ingrid,2007,9,13,6,13.7,-46.7,tropical storm,NA,35,1005,45,0 +Ingrid,2007,9,13,12,14.1,-47.5,tropical storm,NA,35,1005,45,0 +Ingrid,2007,9,13,18,14.4,-48.1,tropical storm,NA,35,1004,45,0 +Ingrid,2007,9,14,0,14.7,-48.6,tropical storm,NA,35,1002,90,0 +Ingrid,2007,9,14,6,15,-49.3,tropical storm,NA,35,1003,90,0 +Ingrid,2007,9,14,12,15.3,-49.9,tropical storm,NA,40,1004,90,0 +Ingrid,2007,9,14,18,15.6,-50.5,tropical storm,NA,40,1004,90,0 +Ingrid,2007,9,15,0,15.9,-51.2,tropical storm,NA,35,1005,80,0 +Ingrid,2007,9,15,6,16.2,-52.2,tropical storm,NA,35,1005,80,0 +Ingrid,2007,9,15,12,16.3,-53.3,tropical storm,NA,35,1005,35,0 +Ingrid,2007,9,15,18,16.5,-54.4,tropical depression,NA,30,1006,0,0 +Ingrid,2007,9,16,0,16.7,-55.4,tropical depression,NA,30,1006,0,0 +Ingrid,2007,9,16,6,16.9,-56.3,tropical depression,NA,30,1006,0,0 +Ingrid,2007,9,16,12,17.1,-57.2,tropical depression,NA,30,1006,0,0 +Ingrid,2007,9,16,18,17.2,-58.1,tropical depression,NA,30,1007,0,0 +Ingrid,2007,9,17,0,17.3,-59,tropical depression,NA,25,1009,0,0 +Ingrid,2007,9,17,6,17.5,-59.9,other low,NA,25,1010,0,0 +Ingrid,2007,9,17,12,18,-60.6,other low,NA,25,1010,0,0 +Ingrid,2007,9,17,18,18.4,-61,other low,NA,25,1010,0,0 +Ingrid,2007,9,18,0,18.8,-61.4,other low,NA,20,1011,0,0 +Ingrid,2007,9,18,6,19,-61.7,other low,NA,20,1011,0,0 +Ingrid,2007,9,18,12,19.1,-62,other low,NA,20,1011,0,0 +Humberto,2007,9,12,6,27.3,-95,other low,NA,25,1009,0,0 +Humberto,2007,9,12,12,27.8,-95.1,tropical storm,NA,35,1006,40,0 +Humberto,2007,9,12,18,28.3,-95,tropical storm,NA,45,1001,70,0 +Humberto,2007,9,13,0,28.8,-94.8,tropical storm,NA,55,997,70,0 +Humberto,2007,9,13,6,29.5,-94.4,hurricane,1,80,985,75,15 +Humberto,2007,9,13,7,29.6,-94.3,hurricane,1,80,985,NA,NA +Humberto,2007,9,13,12,30.3,-93.6,hurricane,1,65,989,55,15 +Humberto,2007,9,13,18,31,-92.9,tropical storm,NA,35,1000,45,0 +Humberto,2007,9,14,0,31.7,-92.3,tropical depression,NA,25,1006,0,0 +Humberto,2007,9,14,6,32.4,-91.3,other low,NA,20,1009,0,0 +Humberto,2007,9,14,12,32.7,-90.2,other low,NA,20,1012,0,0 +Ten,2007,9,21,12,29.1,-85.4,subtropical depression,NA,30,1005,0,0 +Ten,2007,9,21,18,29.7,-86.1,tropical depression,NA,30,1005,0,0 +Ten,2007,9,22,0,30.4,-86.7,tropical depression,NA,25,1006,0,0 +Ten,2007,9,22,6,30.7,-87.7,other low,NA,20,1007,0,0 +Jerry,2007,9,23,0,36.2,-46.1,subtropical depression,NA,30,1008,0,0 +Jerry,2007,9,23,6,36.2,-46.1,subtropical storm,NA,35,1007,165,0 +Jerry,2007,9,23,12,36,-46.3,subtropical storm,NA,35,1004,165,0 +Jerry,2007,9,23,18,36.5,-46.3,subtropical storm,NA,35,1004,165,0 +Jerry,2007,9,24,0,37.1,-46.3,tropical storm,NA,35,1003,120,0 +Jerry,2007,9,24,6,38.1,-45.9,tropical storm,NA,35,1004,150,0 +Jerry,2007,9,24,12,39.3,-44.7,tropical storm,NA,35,1004,90,0 +Jerry,2007,9,24,18,41,-43.5,tropical depression,NA,30,1004,0,0 +Karen,2007,9,25,0,10,-35.9,tropical depression,NA,30,1006,0,0 +Karen,2007,9,25,6,10.3,-37,tropical storm,NA,35,1005,70,0 +Karen,2007,9,25,12,10.6,-38,tropical storm,NA,35,1005,70,0 +Karen,2007,9,25,18,10.8,-39.2,tropical storm,NA,35,1005,70,0 +Karen,2007,9,26,0,10.9,-40.4,tropical storm,NA,40,1003,70,0 +Karen,2007,9,26,6,11.2,-41.5,tropical storm,NA,50,997,70,0 +Karen,2007,9,26,12,11.7,-42.4,hurricane,1,65,988,130,45 +Karen,2007,9,26,18,12.3,-43.3,hurricane,1,65,990,180,50 +Karen,2007,9,27,0,12.8,-44.6,tropical storm,NA,60,995,300,0 +Karen,2007,9,27,6,13.2,-45.7,tropical storm,NA,55,998,300,0 +Karen,2007,9,27,12,13.5,-46.8,tropical storm,NA,55,1002,240,0 +Karen,2007,9,27,18,14.1,-47.9,tropical storm,NA,50,1005,220,0 +Karen,2007,9,28,0,14.1,-48.8,tropical storm,NA,50,1005,220,0 +Karen,2007,9,28,6,14.3,-49,tropical storm,NA,40,1007,190,0 +Karen,2007,9,28,12,14.6,-49,tropical storm,NA,35,1008,160,0 +Karen,2007,9,28,18,15.8,-49.4,tropical storm,NA,35,1008,170,0 +Karen,2007,9,29,0,16.1,-51,tropical storm,NA,35,1008,180,0 +Karen,2007,9,29,6,16.3,-52.6,tropical depression,NA,30,1008,0,0 +Karen,2007,9,29,12,16.8,-54.2,other low,NA,30,1009,0,0 +Lorenzo,2007,9,25,18,21.8,-94.8,tropical depression,NA,25,1009,0,0 +Lorenzo,2007,9,26,0,21.7,-95.2,tropical depression,NA,25,1008,0,0 +Lorenzo,2007,9,26,6,21.2,-95,tropical depression,NA,25,1007,0,0 +Lorenzo,2007,9,26,12,21,-94.7,tropical depression,NA,30,1008,0,0 +Lorenzo,2007,9,26,18,21.2,-94.4,tropical depression,NA,30,1009,0,0 +Lorenzo,2007,9,27,0,21.2,-94.7,tropical depression,NA,30,1008,0,0 +Lorenzo,2007,9,27,6,20.8,-94.8,tropical depression,NA,30,1009,0,0 +Lorenzo,2007,9,27,12,20.6,-95.1,tropical storm,NA,45,1006,60,0 +Lorenzo,2007,9,27,18,20.5,-95.7,tropical storm,NA,60,1001,90,0 +Lorenzo,2007,9,28,0,20.5,-96.3,hurricane,1,70,990,100,30 +Lorenzo,2007,9,28,5,20.5,-97,hurricane,1,65,993,NA,NA +Lorenzo,2007,9,28,6,20.5,-97.1,hurricane,1,65,993,100,30 +Lorenzo,2007,9,28,12,20.5,-98,tropical depression,NA,30,1002,0,0 +Lorenzo,2007,9,28,18,20.7,-98.7,tropical depression,NA,20,1008,0,0 +Melissa,2007,9,28,6,14,-25.8,tropical depression,NA,25,1010,0,0 +Melissa,2007,9,28,12,14,-26.2,tropical depression,NA,30,1009,0,0 +Melissa,2007,9,28,18,14,-26.6,tropical depression,NA,30,1008,0,0 +Melissa,2007,9,29,0,14.2,-27,tropical depression,NA,30,1007,0,0 +Melissa,2007,9,29,6,14.5,-27.4,tropical storm,NA,35,1006,120,0 +Melissa,2007,9,29,12,15,-28.1,tropical storm,NA,35,1005,120,0 +Melissa,2007,9,29,18,15.3,-29,tropical storm,NA,35,1005,120,0 +Melissa,2007,9,30,0,15.6,-29.9,tropical storm,NA,35,1005,120,0 +Melissa,2007,9,30,6,15.8,-30.9,tropical depression,NA,30,1006,0,0 +Melissa,2007,9,30,12,15.9,-32,tropical depression,NA,25,1007,0,0 +Melissa,2007,9,30,18,16.1,-33.3,other low,NA,25,1007,0,0 +Melissa,2007,10,1,0,16.2,-34.8,other low,NA,25,1007,0,0 +Melissa,2007,10,1,6,16.3,-36,other low,NA,25,1007,0,0 +Melissa,2007,10,1,12,16.5,-37.2,other low,NA,25,1008,0,0 +Melissa,2007,10,1,18,16.9,-38.6,other low,NA,25,1008,0,0 +Melissa,2007,10,2,0,17.2,-40.1,other low,NA,25,1009,0,0 +Melissa,2007,10,2,6,17.5,-41.5,other low,NA,20,1010,0,0 +Melissa,2007,10,2,12,18.2,-42.6,other low,NA,20,1010,0,0 +Melissa,2007,10,2,18,18.9,-43.5,other low,NA,25,1010,0,0 +Melissa,2007,10,3,0,19.5,-44.5,other low,NA,25,1010,0,0 +Melissa,2007,10,3,6,20.1,-45.5,other low,NA,25,1010,0,0 +Melissa,2007,10,3,12,20.7,-46.5,other low,NA,25,1010,0,0 +Melissa,2007,10,3,18,21.3,-47.5,other low,NA,30,1010,0,0 +Melissa,2007,10,4,0,21.7,-48.7,other low,NA,25,1010,0,0 +Melissa,2007,10,4,6,22,-49.7,other low,NA,25,1010,0,0 +Melissa,2007,10,4,12,22.4,-50.7,other low,NA,25,1010,0,0 +Melissa,2007,10,4,18,23.1,-51.3,other low,NA,25,1010,0,0 +Melissa,2007,10,5,0,23.7,-51.9,other low,NA,25,1010,0,0 +Melissa,2007,10,5,6,24.3,-52.5,other low,NA,25,1010,0,0 +Melissa,2007,10,5,12,24.5,-53,other low,NA,20,1011,0,0 +Melissa,2007,10,5,18,24.6,-53.5,other low,NA,20,1011,0,0 +Fifteen,2007,10,11,12,29.5,-52.6,tropical depression,NA,30,1011,0,0 +Fifteen,2007,10,11,18,30.1,-51,tropical depression,NA,30,1011,0,0 +Fifteen,2007,10,12,0,30,-50,tropical depression,NA,30,1011,0,0 +Fifteen,2007,10,12,6,30.1,-49.6,tropical depression,NA,30,1011,0,0 +Fifteen,2007,10,12,12,30.2,-49.4,tropical depression,NA,25,1011,0,0 +Fifteen,2007,10,12,18,30.5,-49.4,tropical depression,NA,25,1012,0,0 +Fifteen,2007,10,13,0,30.9,-49.9,other low,NA,25,1012,0,0 +Fifteen,2007,10,13,6,31.3,-50.3,other low,NA,25,1012,0,0 +Fifteen,2007,10,13,12,31.8,-50.3,other low,NA,25,1013,0,0 +Fifteen,2007,10,13,18,32.5,-50,other low,NA,25,1012,0,0 +Fifteen,2007,10,14,0,33.1,-49.2,other low,NA,25,1012,0,0 +Fifteen,2007,10,14,6,33.7,-48.3,other low,NA,25,1012,0,0 +Fifteen,2007,10,14,12,34.6,-46.8,extratropical,NA,25,1010,0,0 +Fifteen,2007,10,14,18,35.6,-44.7,extratropical,NA,25,1010,0,0 +Fifteen,2007,10,15,0,36,-43,extratropical,NA,25,1009,0,0 +Fifteen,2007,10,15,6,36.1,-41.4,extratropical,NA,30,1006,0,0 +Fifteen,2007,10,15,12,36.1,-39.9,extratropical,NA,30,1005,0,0 +Fifteen,2007,10,15,18,36.3,-38.8,extratropical,NA,30,1004,0,0 +Fifteen,2007,10,16,0,37.4,-37,extratropical,NA,30,1003,0,0 +Fifteen,2007,10,16,6,38.6,-35.2,extratropical,NA,30,1000,0,0 +Fifteen,2007,10,16,12,39.8,-33.5,extratropical,NA,35,999,180,0 +Fifteen,2007,10,16,18,40.8,-31.8,extratropical,NA,40,996,180,0 +Fifteen,2007,10,17,0,41.9,-30.1,extratropical,NA,45,996,150,0 +Fifteen,2007,10,17,6,43.7,-28.4,extratropical,NA,45,997,150,0 +Fifteen,2007,10,17,12,45.8,-26.7,extratropical,NA,45,998,150,0 +Fifteen,2007,10,17,18,48.7,-25.2,extratropical,NA,40,999,150,0 +Noel,2007,10,24,0,18,-60.2,other low,NA,20,1010,0,0 +Noel,2007,10,24,6,18,-60.7,other low,NA,25,1009,0,0 +Noel,2007,10,24,12,18.1,-61.2,other low,NA,25,1009,0,0 +Noel,2007,10,24,18,18.4,-61.7,other low,NA,25,1009,0,0 +Noel,2007,10,25,0,18.8,-62.3,other low,NA,25,1009,0,0 +Noel,2007,10,25,6,19.1,-62.9,other low,NA,25,1007,0,0 +Noel,2007,10,25,12,19.2,-63.5,other low,NA,25,1007,0,0 +Noel,2007,10,25,18,19.1,-64.1,other low,NA,25,1006,0,0 +Noel,2007,10,26,0,18.8,-64.8,other low,NA,25,1005,0,0 +Noel,2007,10,26,6,18,-65.7,other low,NA,25,1005,0,0 +Noel,2007,10,26,12,17.2,-66.7,other low,NA,25,1004,0,0 +Noel,2007,10,26,18,16.5,-67.7,other low,NA,25,1004,0,0 +Noel,2007,10,27,0,16.1,-68.5,other low,NA,25,1004,0,0 +Noel,2007,10,27,6,15.7,-69.3,other low,NA,25,1004,0,0 +Noel,2007,10,27,12,15.3,-70.1,other low,NA,25,1004,0,0 +Noel,2007,10,27,18,15.4,-71,other low,NA,25,1004,0,0 +Noel,2007,10,28,0,15.7,-71.2,tropical depression,NA,30,1003,0,0 +Noel,2007,10,28,6,16,-71.4,tropical depression,NA,30,1002,0,0 +Noel,2007,10,28,12,16.3,-71.6,tropical storm,NA,40,999,100,0 +Noel,2007,10,28,18,16.6,-71.8,tropical storm,NA,50,996,135,0 +Noel,2007,10,29,0,17.1,-72.1,tropical storm,NA,50,999,165,0 +Noel,2007,10,29,6,18,-72.4,tropical storm,NA,45,1002,225,0 +Noel,2007,10,29,7,18.1,-72.5,tropical storm,NA,45,1002,NA,NA +Noel,2007,10,29,12,19.2,-72.9,tropical storm,NA,40,1002,240,0 +Noel,2007,10,29,18,20.2,-73.6,tropical storm,NA,45,1001,250,0 +Noel,2007,10,30,0,21,-74.6,tropical storm,NA,45,999,250,0 +Noel,2007,10,30,6,21.1,-75.8,tropical storm,NA,50,997,250,0 +Noel,2007,10,30,12,20.8,-76.8,tropical storm,NA,40,999,175,0 +Noel,2007,10,30,18,20.8,-77.4,tropical storm,NA,35,1000,150,0 +Noel,2007,10,31,0,21.2,-77.8,tropical storm,NA,35,1000,150,0 +Noel,2007,10,31,6,21.8,-78.1,tropical storm,NA,35,1000,150,0 +Noel,2007,10,31,12,22.5,-78.3,tropical storm,NA,45,995,160,0 +Noel,2007,10,31,18,22.6,-78.8,tropical storm,NA,45,995,200,0 +Noel,2007,11,1,0,22.9,-78.6,tropical storm,NA,50,995,215,0 +Noel,2007,11,1,6,23.4,-78.3,tropical storm,NA,50,993,215,0 +Noel,2007,11,1,12,23.9,-78,tropical storm,NA,50,993,200,0 +Noel,2007,11,1,13,24.1,-77.9,tropical storm,NA,50,993,NA,NA +Noel,2007,11,1,17,25,-77.4,tropical storm,NA,55,992,NA,NA +Noel,2007,11,1,18,25.1,-77.3,tropical storm,NA,55,992,225,0 +Noel,2007,11,2,0,26.4,-76.5,hurricane,1,70,981,275,40 +Noel,2007,11,2,6,27.7,-75.6,hurricane,1,70,981,370,65 +Noel,2007,11,2,12,28.7,-74.4,hurricane,1,70,981,420,90 +Noel,2007,11,2,18,30.3,-73.3,hurricane,1,70,980,420,90 +Noel,2007,11,3,0,32.3,-72.4,extratropical,NA,70,980,630,135 +Noel,2007,11,3,6,34.3,-71.7,extratropical,NA,70,980,690,190 +Noel,2007,11,3,12,36.4,-70.9,extratropical,NA,75,974,780,220 +Noel,2007,11,3,18,38.8,-69.7,extratropical,NA,75,970,780,210 +Noel,2007,11,4,0,41.1,-68.2,extratropical,NA,70,968,780,180 +Noel,2007,11,4,6,43.6,-66.2,extratropical,NA,65,965,820,90 +Noel,2007,11,4,12,47.5,-64.3,extratropical,NA,60,966,700,0 +Noel,2007,11,4,18,51.2,-62.2,extratropical,NA,60,966,700,0 +Noel,2007,11,5,0,54.8,-59.6,extratropical,NA,60,967,700,0 +Noel,2007,11,5,6,57.9,-57.6,extratropical,NA,55,967,700,0 +Noel,2007,11,5,12,60.4,-55.4,extratropical,NA,55,968,670,0 +Noel,2007,11,5,18,62.3,-53.3,extratropical,NA,55,974,670,0 +Noel,2007,11,6,0,64.2,-50.4,extratropical,NA,45,983,540,0 +Olga,2007,12,10,12,18.3,-61.8,other low,NA,35,1009,175,0 +Olga,2007,12,10,18,18.3,-63.2,other low,NA,35,1008,175,0 +Olga,2007,12,11,0,18.4,-64.7,subtropical storm,NA,35,1007,175,0 +Olga,2007,12,11,6,18.5,-66.3,subtropical storm,NA,40,1005,200,0 +Olga,2007,12,11,7,18.4,-66.5,subtropical storm,NA,40,1005,NA,NA +Olga,2007,12,11,12,18.3,-67.4,subtropical storm,NA,45,1004,225,0 +Olga,2007,12,11,18,18.5,-68.4,tropical storm,NA,50,1003,225,0 +Olga,2007,12,12,0,19,-70,tropical storm,NA,50,1003,250,0 +Olga,2007,12,12,6,19.1,-71.9,tropical storm,NA,40,1005,300,0 +Olga,2007,12,12,12,19.1,-73.8,tropical storm,NA,35,1008,300,0 +Olga,2007,12,12,18,19,-75.7,tropical depression,NA,30,1008,0,0 +Olga,2007,12,13,0,18.9,-77.2,other low,NA,30,1008,0,0 +Olga,2007,12,13,6,19,-78.7,other low,NA,30,1007,0,0 +Olga,2007,12,13,12,19.4,-80.1,other low,NA,30,1007,0,0 +Olga,2007,12,13,18,19.6,-81.3,other low,NA,30,1007,0,0 +Olga,2007,12,14,0,19.7,-82.3,other low,NA,30,1007,0,0 +Olga,2007,12,14,6,19.7,-83.3,other low,NA,30,1007,0,0 +Olga,2007,12,14,12,19.6,-84.2,other low,NA,30,1007,0,0 +Olga,2007,12,14,18,19.5,-85.1,other low,NA,30,1007,0,0 +Olga,2007,12,15,0,20,-85.8,other low,NA,30,1006,0,0 +Olga,2007,12,15,6,20.6,-86.5,other low,NA,30,1006,0,0 +Olga,2007,12,15,12,21.7,-87.4,other low,NA,30,1007,0,0 +Olga,2007,12,15,18,23.3,-88.2,other low,NA,30,1007,0,0 +Olga,2007,12,16,0,25,-87.2,other low,NA,30,1005,0,0 +Olga,2007,12,16,6,26.3,-85.2,other low,NA,25,1006,0,0 +Arthur,2008,5,31,0,17.5,-87.5,tropical storm,NA,35,1005,150,0 +Arthur,2008,5,31,6,17.8,-88,tropical storm,NA,40,1004,175,0 +Arthur,2008,5,31,9,17.9,-88.2,tropical storm,NA,40,1004,200,0 +Arthur,2008,5,31,12,18,-88.4,tropical storm,NA,35,1005,225,0 +Arthur,2008,5,31,18,18.2,-88.8,tropical storm,NA,35,1005,225,0 +Arthur,2008,6,1,0,18.3,-89.2,tropical storm,NA,35,1006,150,0 +Arthur,2008,6,1,6,18.2,-89.8,tropical storm,NA,35,1006,200,0 +Arthur,2008,6,1,12,18,-90.4,tropical depression,NA,30,1006,0,0 +Arthur,2008,6,1,18,17.8,-90.8,tropical depression,NA,30,1006,0,0 +Arthur,2008,6,2,0,17.6,-91.1,other low,NA,25,1006,0,0 +Bertha,2008,7,3,6,12.7,-22.9,tropical depression,NA,30,1008,0,0 +Bertha,2008,7,3,12,13.1,-24,tropical storm,NA,35,1006,60,0 +Bertha,2008,7,3,18,13.2,-25.2,tropical storm,NA,35,1006,60,0 +Bertha,2008,7,4,0,13.4,-26.5,tropical storm,NA,40,1006,90,0 +Bertha,2008,7,4,6,14,-27.8,tropical storm,NA,40,1003,90,0 +Bertha,2008,7,4,12,14.8,-29.2,tropical storm,NA,45,1000,105,0 +Bertha,2008,7,4,18,15.4,-30.8,tropical storm,NA,45,1000,105,0 +Bertha,2008,7,5,0,15.8,-32.6,tropical storm,NA,45,1000,105,0 +Bertha,2008,7,5,6,16.3,-34.4,tropical storm,NA,45,1000,105,0 +Bertha,2008,7,5,12,16.4,-36.4,tropical storm,NA,45,1000,105,0 +Bertha,2008,7,5,18,16.6,-38.4,tropical storm,NA,45,1000,105,0 +Bertha,2008,7,6,0,16.8,-40.3,tropical storm,NA,45,1000,105,0 +Bertha,2008,7,6,6,17,-42.3,tropical storm,NA,45,1000,105,0 +Bertha,2008,7,6,12,17.6,-44.3,tropical storm,NA,45,1000,105,0 +Bertha,2008,7,6,18,18.4,-46.2,tropical storm,NA,45,1000,105,0 +Bertha,2008,7,7,0,18.8,-47.9,tropical storm,NA,55,994,105,0 +Bertha,2008,7,7,6,19.1,-49.4,hurricane,1,65,987,160,20 +Bertha,2008,7,7,12,19.4,-50.7,hurricane,1,80,975,160,20 +Bertha,2008,7,7,18,19.9,-51.6,hurricane,3,100,960,160,20 +Bertha,2008,7,7,21,20.3,-51.9,hurricane,3,110,952,160,20 +Bertha,2008,7,8,0,20.6,-52.2,hurricane,3,105,955,160,20 +Bertha,2008,7,8,6,21.1,-52.9,hurricane,3,105,955,160,40 +Bertha,2008,7,8,12,21.8,-53.5,hurricane,2,90,970,160,40 +Bertha,2008,7,8,18,22.4,-54.4,hurricane,1,75,980,135,40 +Bertha,2008,7,9,0,22.7,-55.2,hurricane,1,70,985,135,40 +Bertha,2008,7,9,6,23.2,-56.1,hurricane,1,65,987,135,40 +Bertha,2008,7,9,12,23.8,-57,hurricane,1,65,987,165,40 +Bertha,2008,7,9,18,24.5,-57.8,hurricane,2,85,974,180,40 +Bertha,2008,7,10,0,25.2,-58.6,hurricane,2,90,970,180,40 +Bertha,2008,7,10,6,25.7,-59.1,hurricane,2,90,970,195,40 +Bertha,2008,7,10,12,26.3,-59.8,hurricane,1,80,977,195,40 +Bertha,2008,7,10,18,26.9,-60.5,hurricane,1,75,980,195,40 +Bertha,2008,7,11,0,27.4,-61,hurricane,1,75,980,210,40 +Bertha,2008,7,11,6,27.8,-61.5,hurricane,1,75,980,210,40 +Bertha,2008,7,11,12,28.3,-61.8,hurricane,1,75,980,210,40 +Bertha,2008,7,11,18,28.8,-62.1,hurricane,1,80,976,240,75 +Bertha,2008,7,12,0,29.3,-62.3,hurricane,1,80,976,240,60 +Bertha,2008,7,12,6,29.5,-62.5,hurricane,1,80,976,220,60 +Bertha,2008,7,12,12,29.7,-62.5,hurricane,1,75,976,300,60 +Bertha,2008,7,12,18,29.9,-62.5,hurricane,1,65,983,330,30 +Bertha,2008,7,13,0,29.9,-62.4,hurricane,1,65,984,270,30 +Bertha,2008,7,13,6,29.8,-62.5,hurricane,1,65,985,270,30 +Bertha,2008,7,13,12,29.9,-62.7,tropical storm,NA,60,988,270,0 +Bertha,2008,7,13,18,30.1,-62.9,tropical storm,NA,55,991,250,0 +Bertha,2008,7,14,0,30.5,-63.1,tropical storm,NA,55,990,250,0 +Bertha,2008,7,14,6,31,-63.5,tropical storm,NA,55,990,250,0 +Bertha,2008,7,14,12,31.6,-63.8,tropical storm,NA,55,994,250,0 +Bertha,2008,7,14,18,32.5,-64.1,tropical storm,NA,60,995,240,0 +Bertha,2008,7,15,0,33.5,-63.8,tropical storm,NA,60,995,240,0 +Bertha,2008,7,15,6,34.3,-63.5,tropical storm,NA,60,995,220,0 +Bertha,2008,7,15,12,35.3,-63,tropical storm,NA,60,995,220,0 +Bertha,2008,7,15,18,36.2,-62.5,tropical storm,NA,60,995,220,0 +Bertha,2008,7,16,0,36.7,-61.8,tropical storm,NA,60,995,220,0 +Bertha,2008,7,16,6,36.8,-61.3,tropical storm,NA,60,995,220,0 +Bertha,2008,7,16,12,36.8,-60.9,tropical storm,NA,60,995,220,0 +Bertha,2008,7,16,18,36.3,-60.7,tropical storm,NA,60,995,220,0 +Bertha,2008,7,17,0,35.7,-60.3,tropical storm,NA,55,996,240,0 +Bertha,2008,7,17,6,34.9,-59.7,tropical storm,NA,50,997,240,0 +Bertha,2008,7,17,12,34.3,-58.9,tropical storm,NA,50,997,210,0 +Bertha,2008,7,17,18,33.9,-57.8,tropical storm,NA,50,997,210,0 +Bertha,2008,7,18,0,33.7,-56,tropical storm,NA,50,997,210,0 +Bertha,2008,7,18,6,34.4,-54.4,tropical storm,NA,55,995,210,0 +Bertha,2008,7,18,12,35.5,-53,tropical storm,NA,55,995,225,0 +Bertha,2008,7,18,18,36.9,-51.5,hurricane,1,65,989,225,40 +Bertha,2008,7,19,0,38.6,-49.7,hurricane,1,65,989,225,40 +Bertha,2008,7,19,6,40.4,-48,hurricane,1,65,989,225,40 +Bertha,2008,7,19,12,42.1,-46.3,hurricane,1,65,989,285,40 +Bertha,2008,7,19,18,43.7,-44.3,hurricane,1,65,989,285,40 +Bertha,2008,7,20,0,45.3,-42.4,tropical storm,NA,60,990,275,0 +Bertha,2008,7,20,6,47.6,-40,tropical storm,NA,60,985,275,0 +Bertha,2008,7,20,12,50,-37,extratropical,NA,60,985,350,0 +Bertha,2008,7,20,18,53,-34,extratropical,NA,55,990,330,0 +Bertha,2008,7,21,0,55.1,-31,extratropical,NA,50,990,330,0 +Bertha,2008,7,21,6,58.5,-27,extratropical,NA,45,990,360,0 +Cristobal,2008,7,19,0,31.7,-79.8,tropical depression,NA,25,1010,0,0 +Cristobal,2008,7,19,6,32.2,-79.4,tropical depression,NA,25,1009,0,0 +Cristobal,2008,7,19,12,32.4,-78.8,tropical storm,NA,35,1007,75,0 +Cristobal,2008,7,19,18,32.8,-78.2,tropical storm,NA,45,1006,75,0 +Cristobal,2008,7,20,0,33.2,-77.8,tropical storm,NA,45,1006,75,0 +Cristobal,2008,7,20,6,33.7,-77.4,tropical storm,NA,45,1006,75,0 +Cristobal,2008,7,20,12,34.1,-76.7,tropical storm,NA,45,1006,100,0 +Cristobal,2008,7,20,18,34.5,-76.1,tropical storm,NA,45,1007,100,0 +Cristobal,2008,7,21,0,34.9,-75.4,tropical storm,NA,45,1005,100,0 +Cristobal,2008,7,21,6,35.6,-74.3,tropical storm,NA,50,1004,110,0 +Cristobal,2008,7,21,12,36.2,-73.2,tropical storm,NA,55,1000,120,0 +Cristobal,2008,7,21,18,36.8,-72,tropical storm,NA,55,1000,120,0 +Cristobal,2008,7,22,0,37.4,-70.7,tropical storm,NA,55,1000,120,0 +Cristobal,2008,7,22,6,38.4,-69.2,tropical storm,NA,55,1000,120,0 +Cristobal,2008,7,22,12,40,-67,tropical storm,NA,55,998,120,0 +Cristobal,2008,7,22,18,41.7,-64.2,tropical storm,NA,50,1000,105,0 +Cristobal,2008,7,23,0,43.3,-60.7,tropical storm,NA,45,1001,105,0 +Cristobal,2008,7,23,6,44.4,-57.5,tropical storm,NA,40,1004,120,0 +Dolly,2008,7,20,12,17.8,-83.6,tropical storm,NA,40,1008,150,0 +Dolly,2008,7,20,18,18.6,-84.6,tropical storm,NA,40,1008,300,0 +Dolly,2008,7,21,0,19.8,-85.8,tropical storm,NA,45,1007,300,0 +Dolly,2008,7,21,5,20.8,-87,tropical storm,NA,45,1007,300,0 +Dolly,2008,7,21,6,20.9,-87.2,tropical storm,NA,45,1007,300,0 +Dolly,2008,7,21,12,21.8,-88.8,tropical storm,NA,45,1005,300,0 +Dolly,2008,7,21,18,22.8,-90.4,tropical storm,NA,45,1005,240,0 +Dolly,2008,7,22,0,23,-92,tropical storm,NA,45,1000,240,0 +Dolly,2008,7,22,6,23.2,-93.3,tropical storm,NA,45,999,240,0 +Dolly,2008,7,22,12,23.7,-94.1,tropical storm,NA,55,993,240,0 +Dolly,2008,7,22,18,24.3,-94.9,tropical storm,NA,60,990,240,0 +Dolly,2008,7,23,0,24.9,-95.7,hurricane,1,65,982,220,40 +Dolly,2008,7,23,6,25.4,-96.2,hurricane,1,70,982,220,40 +Dolly,2008,7,23,12,25.9,-96.7,hurricane,2,85,967,220,40 +Dolly,2008,7,23,14,26,-96.8,hurricane,2,85,963,220,40 +Dolly,2008,7,23,18,26.4,-97.2,hurricane,1,75,967,165,50 +Dolly,2008,7,23,18,26.4,-97.2,hurricane,1,75,967,165,50 +Dolly,2008,7,23,20,26.4,-97.4,hurricane,1,70,967,165,50 +Dolly,2008,7,24,0,26.5,-97.8,hurricane,1,65,976,145,30 +Dolly,2008,7,24,6,26.7,-98.3,tropical storm,NA,55,986,115,0 +Dolly,2008,7,24,12,27.2,-98.9,tropical storm,NA,45,992,115,0 +Dolly,2008,7,24,18,27.9,-100,tropical storm,NA,35,995,115,0 +Dolly,2008,7,25,0,28.3,-101.4,tropical depression,NA,25,1000,0,0 +Dolly,2008,7,25,6,28.5,-102.7,tropical depression,NA,25,1004,0,0 +Dolly,2008,7,25,12,28.8,-104,tropical depression,NA,25,1008,0,0 +Dolly,2008,7,25,18,29.4,-105,tropical depression,NA,25,1009,0,0 +Dolly,2008,7,26,0,30,-105.7,other low,NA,20,1012,0,0 +Dolly,2008,7,26,6,30.5,-106,other low,NA,20,1011,0,0 +Dolly,2008,7,26,12,31,-106.3,other low,NA,20,1010,0,0 +Dolly,2008,7,26,18,31.9,-106.7,other low,NA,20,1014,0,0 +Dolly,2008,7,27,0,32.9,-106.3,other low,NA,20,1016,0,0 +Edouard,2008,8,3,12,28.1,-87.4,tropical depression,NA,25,1010,0,0 +Edouard,2008,8,3,18,28.1,-87.8,tropical depression,NA,30,1009,0,0 +Edouard,2008,8,4,0,28.1,-88.5,tropical storm,NA,45,1002,30,0 +Edouard,2008,8,4,6,28.1,-89.6,tropical storm,NA,40,1005,30,0 +Edouard,2008,8,4,12,28.1,-90.3,tropical storm,NA,40,1002,30,0 +Edouard,2008,8,4,18,28.3,-91,tropical storm,NA,40,1001,120,0 +Edouard,2008,8,5,0,28.5,-91.7,tropical storm,NA,50,999,120,0 +Edouard,2008,8,5,6,29,-92.9,tropical storm,NA,55,997,120,0 +Edouard,2008,8,5,12,29.6,-94.2,tropical storm,NA,55,996,105,0 +Edouard,2008,8,5,18,30,-94.8,tropical storm,NA,40,999,60,0 +Edouard,2008,8,6,0,30.6,-95.7,tropical depression,NA,30,1003,0,0 +Edouard,2008,8,6,6,31.4,-97,other low,NA,25,1008,0,0 +Edouard,2008,8,6,12,32,-98,other low,NA,20,1011,0,0 +Edouard,2008,8,6,18,32.7,-98.7,other low,NA,20,1012,0,0 +Fay,2008,8,15,12,18.4,-67.4,tropical depression,NA,30,1011,0,0 +Fay,2008,8,15,14,18.5,-68.4,tropical storm,NA,35,1009,NA,NA +Fay,2008,8,15,18,18.5,-68.8,tropical storm,NA,35,1009,75,0 +Fay,2008,8,16,0,18.6,-70.2,tropical storm,NA,40,1008,135,0 +Fay,2008,8,16,6,18.7,-71.4,tropical storm,NA,40,1008,135,0 +Fay,2008,8,16,11,18.8,-72.8,tropical storm,NA,40,1007,NA,NA +Fay,2008,8,16,12,18.8,-72.9,tropical storm,NA,40,1007,135,0 +Fay,2008,8,16,18,19.1,-74.6,tropical storm,NA,40,1007,90,0 +Fay,2008,8,17,0,19.3,-75.7,tropical storm,NA,45,1005,90,0 +Fay,2008,8,17,6,19.6,-76.9,tropical storm,NA,45,1004,90,0 +Fay,2008,8,17,9,19.9,-77.4,tropical storm,NA,45,1003,NA,NA +Fay,2008,8,17,12,20,-78.1,tropical storm,NA,45,1003,90,0 +Fay,2008,8,17,18,20.7,-79.6,tropical storm,NA,45,1006,90,0 +Fay,2008,8,18,0,21.1,-80.3,tropical storm,NA,45,1001,90,0 +Fay,2008,8,18,6,21.9,-80.8,tropical storm,NA,45,1003,90,0 +Fay,2008,8,18,7,22.1,-80.8,tropical storm,NA,45,1003,NA,NA +Fay,2008,8,18,12,23.2,-81.2,tropical storm,NA,50,1002,100,0 +Fay,2008,8,18,18,24.3,-81.7,tropical storm,NA,50,1000,140,0 +Fay,2008,8,18,20,24.5,-81.8,tropical storm,NA,50,998,NA,NA +Fay,2008,8,19,0,25,-81.9,tropical storm,NA,50,997,140,0 +Fay,2008,8,19,6,25.5,-81.8,tropical storm,NA,55,994,140,0 +Fay,2008,8,19,8,25.9,-81.6,tropical storm,NA,55,991,NA,NA +Fay,2008,8,19,12,26.4,-81.4,tropical storm,NA,55,988,130,0 +Fay,2008,8,19,18,27,-81.1,tropical storm,NA,60,986,180,0 +Fay,2008,8,20,0,27.5,-80.9,tropical storm,NA,55,988,150,0 +Fay,2008,8,20,6,28,-80.6,tropical storm,NA,50,992,150,0 +Fay,2008,8,20,12,28.4,-80.6,tropical storm,NA,45,994,100,0 +Fay,2008,8,20,18,28.7,-80.6,tropical storm,NA,45,997,130,0 +Fay,2008,8,21,0,28.9,-80.5,tropical storm,NA,50,993,200,0 +Fay,2008,8,21,6,29.1,-80.7,tropical storm,NA,50,993,200,0 +Fay,2008,8,21,12,29.2,-80.7,tropical storm,NA,50,993,200,0 +Fay,2008,8,21,18,29.3,-81,tropical storm,NA,55,993,200,0 +Fay,2008,8,21,19,29.3,-81.1,tropical storm,NA,55,993,NA,NA +Fay,2008,8,22,0,29.3,-81.2,tropical storm,NA,50,994,230,0 +Fay,2008,8,22,6,29.5,-81.9,tropical storm,NA,50,995,150,0 +Fay,2008,8,22,12,29.6,-82.4,tropical storm,NA,45,996,120,0 +Fay,2008,8,22,18,29.8,-83,tropical storm,NA,40,997,160,0 +Fay,2008,8,23,0,29.7,-83.8,tropical storm,NA,45,996,80,0 +Fay,2008,8,23,6,29.8,-84.7,tropical storm,NA,45,997,80,0 +Fay,2008,8,23,6,29.8,-84.7,tropical storm,NA,45,997,NA,NA +Fay,2008,8,23,12,30,-85.2,tropical storm,NA,40,998,80,0 +Fay,2008,8,23,18,30.5,-85.9,tropical storm,NA,40,999,80,0 +Fay,2008,8,24,0,30.8,-86.7,tropical depression,NA,30,999,0,0 +Fay,2008,8,24,6,31.1,-87.7,tropical depression,NA,30,999,0,0 +Fay,2008,8,24,12,31.8,-88.4,tropical depression,NA,30,1000,0,0 +Fay,2008,8,24,18,31.5,-89.7,tropical depression,NA,30,1001,0,0 +Fay,2008,8,25,0,31.3,-90,tropical depression,NA,30,1001,0,0 +Fay,2008,8,25,6,31.5,-89.9,tropical depression,NA,30,1002,0,0 +Fay,2008,8,25,12,32,-89.4,tropical depression,NA,25,1002,0,0 +Fay,2008,8,25,18,32.4,-89,tropical depression,NA,25,1002,0,0 +Fay,2008,8,26,0,32.7,-88.6,tropical depression,NA,20,1002,0,0 +Fay,2008,8,26,6,33.3,-87.9,tropical depression,NA,20,1003,0,0 +Fay,2008,8,26,12,33.9,-87.2,tropical depression,NA,20,1003,0,0 +Fay,2008,8,26,18,34.6,-86.5,tropical depression,NA,20,1004,0,0 +Fay,2008,8,27,0,35,-85.8,tropical depression,NA,15,1005,0,0 +Fay,2008,8,27,6,35.5,-85.1,extratropical,NA,15,1006,0,0 +Fay,2008,8,27,12,36.1,-84.4,extratropical,NA,15,1007,0,0 +Fay,2008,8,27,18,36.9,-83.6,extratropical,NA,15,1008,0,0 +Fay,2008,8,28,0,37.4,-83.2,extratropical,NA,15,1009,0,0 +Fay,2008,8,28,6,37.7,-82.6,extratropical,NA,15,1010,0,0 +Gustav,2008,8,25,0,13.5,-67.4,tropical depression,NA,25,1008,0,0 +Gustav,2008,8,25,6,14.4,-68.5,tropical depression,NA,30,1005,0,0 +Gustav,2008,8,25,12,15.1,-69.6,tropical storm,NA,35,1002,60,0 +Gustav,2008,8,25,18,15.8,-70.5,tropical storm,NA,50,996,75,0 +Gustav,2008,8,26,0,16.4,-71.2,tropical storm,NA,60,991,75,0 +Gustav,2008,8,26,6,16.9,-71.7,hurricane,1,75,986,90,25 +Gustav,2008,8,26,12,17.5,-72.1,hurricane,1,80,981,90,25 +Gustav,2008,8,26,18,18.1,-72.8,hurricane,1,70,992,75,15 +Gustav,2008,8,27,0,18.4,-73.1,tropical storm,NA,50,995,75,0 +Gustav,2008,8,27,6,18.6,-73.4,tropical storm,NA,45,999,75,0 +Gustav,2008,8,27,12,18.7,-73.7,tropical storm,NA,45,998,45,0 +Gustav,2008,8,27,18,18.9,-74,tropical storm,NA,45,999,45,0 +Gustav,2008,8,28,0,18.8,-75.1,tropical storm,NA,40,999,60,0 +Gustav,2008,8,28,6,18.1,-75.4,tropical storm,NA,45,995,75,0 +Gustav,2008,8,28,12,17.9,-75.7,tropical storm,NA,60,984,100,0 +Gustav,2008,8,28,18,18,-76.2,tropical storm,NA,60,984,100,0 +Gustav,2008,8,29,0,17.8,-77,tropical storm,NA,60,987,130,0 +Gustav,2008,8,29,2,17.9,-77.2,tropical storm,NA,60,987,130,0 +Gustav,2008,8,29,6,18,-77.7,tropical storm,NA,55,990,180,0 +Gustav,2008,8,29,12,18.3,-78.4,tropical storm,NA,50,989,180,0 +Gustav,2008,8,29,18,18.8,-79.2,hurricane,1,65,984,220,25 +Gustav,2008,8,30,0,19.2,-80,hurricane,1,75,975,240,50 +Gustav,2008,8,30,6,19.7,-80.8,hurricane,2,85,968,240,60 +Gustav,2008,8,30,12,20.7,-81.6,hurricane,3,110,955,240,75 +Gustav,2008,8,30,18,21.6,-82.5,hurricane,4,125,943,240,85 +Gustav,2008,8,30,22,22.4,-83.1,hurricane,4,135,941,250,80 +Gustav,2008,8,31,0,22.7,-83.5,hurricane,4,120,950,260,90 +Gustav,2008,8,31,6,23.6,-84.4,hurricane,3,105,960,295,75 +Gustav,2008,8,31,12,24.8,-85.5,hurricane,3,100,961,310,70 +Gustav,2008,8,31,18,25.9,-86.7,hurricane,2,95,960,340,85 +Gustav,2008,9,1,0,26.9,-87.7,hurricane,2,95,953,360,100 +Gustav,2008,9,1,6,27.9,-89,hurricane,2,95,954,360,100 +Gustav,2008,9,1,12,28.8,-90.3,hurricane,2,95,955,350,110 +Gustav,2008,9,1,15,29.2,-90.7,hurricane,2,90,954,315,80 +Gustav,2008,9,1,18,29.8,-91.4,hurricane,2,85,958,290,55 +Gustav,2008,9,2,0,30.7,-92.3,tropical storm,NA,60,971,175,0 +Gustav,2008,9,2,6,31.4,-93.1,tropical storm,NA,40,981,80,0 +Gustav,2008,9,2,12,32.1,-93.5,tropical depression,NA,30,989,0,0 +Gustav,2008,9,2,18,32.7,-93.9,tropical depression,NA,20,993,0,0 +Gustav,2008,9,3,0,33.2,-93.9,tropical depression,NA,20,995,0,0 +Gustav,2008,9,3,6,33.7,-94.3,tropical depression,NA,20,997,0,0 +Gustav,2008,9,3,12,33.8,-94.4,tropical depression,NA,20,997,0,0 +Gustav,2008,9,3,18,34,-94.4,tropical depression,NA,20,998,0,0 +Gustav,2008,9,4,0,34.3,-94.1,tropical depression,NA,15,998,0,0 +Gustav,2008,9,4,6,34.8,-93.4,tropical depression,NA,15,999,0,0 +Gustav,2008,9,4,12,36.2,-92.3,extratropical,NA,15,1000,0,0 +Gustav,2008,9,4,18,38.5,-90.7,extratropical,NA,20,1000,0,0 +Gustav,2008,9,5,0,40.2,-88.7,extratropical,NA,20,1002,0,0 +Gustav,2008,9,5,6,42.2,-86.5,extratropical,NA,20,1002,0,0 +Gustav,2008,9,5,12,43.7,-83.8,extratropical,NA,20,1004,0,0 +Hanna,2008,8,28,0,19.4,-57.3,tropical depression,NA,30,1007,0,0 +Hanna,2008,8,28,6,19.7,-57.8,tropical depression,NA,30,1004,0,0 +Hanna,2008,8,28,12,20.1,-58.6,tropical storm,NA,35,1003,50,0 +Hanna,2008,8,28,18,20.5,-59.6,tropical storm,NA,35,1003,50,0 +Hanna,2008,8,29,0,20.8,-60.5,tropical storm,NA,40,1001,80,0 +Hanna,2008,8,29,6,20.9,-61.5,tropical storm,NA,45,1000,90,0 +Hanna,2008,8,29,12,21.1,-62.4,tropical storm,NA,45,1000,105,0 +Hanna,2008,8,29,18,21.5,-63.4,tropical storm,NA,45,1000,150,0 +Hanna,2008,8,30,0,21.7,-64.5,tropical storm,NA,45,1000,200,0 +Hanna,2008,8,30,6,21.8,-65.5,tropical storm,NA,45,1000,200,0 +Hanna,2008,8,30,12,21.9,-66.2,tropical storm,NA,45,1000,215,0 +Hanna,2008,8,30,18,22.2,-66.9,tropical storm,NA,45,1000,240,0 +Hanna,2008,8,31,0,22.6,-67.5,tropical storm,NA,50,999,280,0 +Hanna,2008,8,31,6,23.1,-68.5,tropical storm,NA,45,999,270,0 +Hanna,2008,8,31,12,23.5,-69.8,tropical storm,NA,40,999,240,0 +Hanna,2008,8,31,18,23.6,-71,tropical storm,NA,40,997,200,0 +Hanna,2008,9,1,0,23.5,-71.7,tropical storm,NA,45,997,200,0 +Hanna,2008,9,1,6,23.2,-72,tropical storm,NA,50,996,220,0 +Hanna,2008,9,1,12,22.8,-72.2,tropical storm,NA,60,990,240,0 +Hanna,2008,9,1,18,22.3,-72.4,hurricane,1,70,985,240,40 +Hanna,2008,9,2,0,21.8,-72.3,hurricane,1,75,977,250,40 +Hanna,2008,9,2,6,21.4,-72.7,hurricane,1,65,980,250,60 +Hanna,2008,9,2,12,21,-73,tropical storm,NA,60,983,250,0 +Hanna,2008,9,2,18,20.6,-72.9,tropical storm,NA,55,985,250,0 +Hanna,2008,9,3,0,20.4,-72.6,tropical storm,NA,55,988,275,0 +Hanna,2008,9,3,6,20.2,-72.4,tropical storm,NA,50,991,325,0 +Hanna,2008,9,3,12,20.6,-71.9,tropical storm,NA,45,996,400,0 +Hanna,2008,9,3,18,21.6,-71.8,tropical storm,NA,50,994,400,0 +Hanna,2008,9,3,19,21.7,-71.8,tropical storm,NA,50,994,400,0 +Hanna,2008,9,4,0,22.7,-71.8,tropical storm,NA,55,989,430,0 +Hanna,2008,9,4,6,23.4,-72.4,tropical storm,NA,60,990,430,0 +Hanna,2008,9,4,12,24.1,-73.2,tropical storm,NA,55,989,430,0 +Hanna,2008,9,4,18,25.1,-74.3,tropical storm,NA,55,989,425,0 +Hanna,2008,9,5,0,26.1,-75.8,tropical storm,NA,55,987,375,0 +Hanna,2008,9,5,6,27.2,-77.3,tropical storm,NA,55,984,345,0 +Hanna,2008,9,5,12,28.2,-78.5,tropical storm,NA,55,980,345,0 +Hanna,2008,9,5,18,29.9,-78.7,tropical storm,NA,60,980,325,0 +Hanna,2008,9,6,0,31.5,-79.3,tropical storm,NA,60,980,275,0 +Hanna,2008,9,6,6,33.4,-78.8,tropical storm,NA,60,981,250,0 +Hanna,2008,9,6,7,33.8,-78.7,tropical storm,NA,60,981,250,0 +Hanna,2008,9,6,12,35.7,-78.1,tropical storm,NA,45,985,175,0 +Hanna,2008,9,6,18,37.8,-76.7,tropical storm,NA,45,993,175,0 +Hanna,2008,9,7,0,40,-74.5,tropical storm,NA,45,994,175,0 +Hanna,2008,9,7,6,41.9,-71.7,extratropical,NA,45,995,175,0 +Hanna,2008,9,7,12,43.8,-68,extratropical,NA,45,995,210,0 +Hanna,2008,9,7,18,45.7,-63.7,extratropical,NA,45,995,210,0 +Hanna,2008,9,8,0,47,-59.1,extratropical,NA,40,996,210,0 +Hanna,2008,9,8,6,47.5,-55.4,extratropical,NA,40,996,210,0 +Hanna,2008,9,8,12,47.8,-52.1,extratropical,NA,35,996,330,0 +Ike,2008,9,1,6,17.2,-37,tropical depression,NA,30,1006,0,0 +Ike,2008,9,1,12,17.3,-38.4,tropical storm,NA,35,1005,135,0 +Ike,2008,9,1,18,17.5,-39.9,tropical storm,NA,45,1003,185,0 +Ike,2008,9,2,0,17.8,-41.3,tropical storm,NA,45,1002,210,0 +Ike,2008,9,2,6,18.2,-42.8,tropical storm,NA,45,1000,240,0 +Ike,2008,9,2,12,18.7,-44.3,tropical storm,NA,50,999,240,0 +Ike,2008,9,2,18,19.3,-45.8,tropical storm,NA,55,996,240,0 +Ike,2008,9,3,0,19.8,-47.3,tropical storm,NA,55,994,235,0 +Ike,2008,9,3,6,20.2,-48.8,tropical storm,NA,55,992,230,0 +Ike,2008,9,3,12,20.6,-50.3,tropical storm,NA,60,989,225,0 +Ike,2008,9,3,18,21.1,-51.9,hurricane,1,75,979,220,30 +Ike,2008,9,4,0,21.8,-53.5,hurricane,3,105,956,220,50 +Ike,2008,9,4,6,22.4,-55,hurricane,4,125,935,220,50 +Ike,2008,9,4,12,23,-56.4,hurricane,4,120,937,200,65 +Ike,2008,9,4,18,23.4,-57.7,hurricane,4,115,940,195,65 +Ike,2008,9,5,0,23.6,-59,hurricane,4,115,944,195,65 +Ike,2008,9,5,6,23.6,-60.4,hurricane,4,115,949,195,70 +Ike,2008,9,5,12,23.5,-61.9,hurricane,3,105,954,195,70 +Ike,2008,9,5,18,23.2,-63.4,hurricane,3,100,959,195,70 +Ike,2008,9,6,0,22.8,-64.9,hurricane,3,100,962,200,70 +Ike,2008,9,6,6,22.4,-66.3,hurricane,3,100,964,205,70 +Ike,2008,9,6,12,21.9,-67.7,hurricane,2,95,965,210,70 +Ike,2008,9,6,18,21.5,-69,hurricane,4,115,950,220,70 +Ike,2008,9,7,0,21.2,-70.3,hurricane,4,115,947,225,75 +Ike,2008,9,7,6,21.1,-71.6,hurricane,4,115,947,235,80 +Ike,2008,9,7,12,21,-72.8,hurricane,3,110,947,245,90 +Ike,2008,9,7,13,21,-73.2,hurricane,3,110,947,245,90 +Ike,2008,9,7,18,21,-74,hurricane,3,105,946,250,90 +Ike,2008,9,8,0,21.1,-75.2,hurricane,4,115,945,265,90 +Ike,2008,9,8,2,21.1,-75.7,hurricane,4,115,945,265,90 +Ike,2008,9,8,6,21.1,-76.5,hurricane,3,100,950,300,90 +Ike,2008,9,8,12,21.1,-77.8,hurricane,2,85,960,305,85 +Ike,2008,9,8,18,21.2,-79.1,hurricane,1,75,964,305,60 +Ike,2008,9,9,0,21.5,-80.3,hurricane,1,70,965,330,60 +Ike,2008,9,9,6,22,-81.4,hurricane,1,70,965,330,60 +Ike,2008,9,9,12,22.4,-82.4,hurricane,1,70,965,325,30 +Ike,2008,9,9,14,22.6,-82.9,hurricane,1,70,965,325,30 +Ike,2008,9,9,18,22.7,-83.3,hurricane,1,65,966,320,30 +Ike,2008,9,10,0,23.1,-84,hurricane,1,65,968,330,30 +Ike,2008,9,10,6,23.4,-84.6,hurricane,1,70,964,330,45 +Ike,2008,9,10,12,23.8,-85.2,hurricane,1,80,959,335,90 +Ike,2008,9,10,18,24.2,-85.8,hurricane,2,85,958,340,120 +Ike,2008,9,11,0,24.7,-86.4,hurricane,2,85,944,350,135 +Ike,2008,9,11,6,25.1,-87.1,hurricane,2,85,945,370,150 +Ike,2008,9,11,12,25.5,-88,hurricane,2,85,946,420,135 +Ike,2008,9,11,18,25.8,-88.9,hurricane,2,85,952,420,135 +Ike,2008,9,12,0,26.1,-90,hurricane,2,85,954,410,160 +Ike,2008,9,12,6,26.4,-91.1,hurricane,2,90,954,395,165 +Ike,2008,9,12,12,26.9,-92.2,hurricane,2,95,954,390,165 +Ike,2008,9,12,18,27.5,-93.2,hurricane,2,95,954,390,165 +Ike,2008,9,13,0,28.3,-94,hurricane,2,95,952,390,170 +Ike,2008,9,13,6,29.1,-94.6,hurricane,2,95,951,350,165 +Ike,2008,9,13,7,29.3,-94.7,hurricane,2,95,950,350,165 +Ike,2008,9,13,12,30.3,-95.2,hurricane,2,85,959,250,80 +Ike,2008,9,13,18,31.7,-95.3,tropical storm,NA,50,974,190,0 +Ike,2008,9,14,0,33.5,-94.9,tropical storm,NA,35,980,90,0 +Ike,2008,9,14,6,35.5,-93.7,tropical storm,NA,35,985,90,0 +Ike,2008,9,14,12,37.6,-91,extratropical,NA,40,987,90,0 +Ike,2008,9,14,18,40.3,-87.2,extratropical,NA,50,988,180,0 +Ike,2008,9,15,0,43.3,-81.5,extratropical,NA,50,988,180,0 +Ike,2008,9,15,6,45.8,-75.3,extratropical,NA,40,986,180,0 +Ike,2008,9,15,12,47.2,-71.1,extratropical,NA,35,986,180,0 +Josephine,2008,9,2,0,12.3,-21.9,tropical depression,NA,30,1007,0,0 +Josephine,2008,9,2,6,12.7,-23.2,tropical storm,NA,35,1005,30,0 +Josephine,2008,9,2,12,13,-24.2,tropical storm,NA,35,1005,30,0 +Josephine,2008,9,2,18,13.3,-25.3,tropical storm,NA,45,1000,80,0 +Josephine,2008,9,3,0,13.5,-26.3,tropical storm,NA,50,997,150,0 +Josephine,2008,9,3,6,13.6,-27.2,tropical storm,NA,55,994,160,0 +Josephine,2008,9,3,12,13.7,-28.2,tropical storm,NA,55,994,180,0 +Josephine,2008,9,3,18,13.8,-29.2,tropical storm,NA,55,994,180,0 +Josephine,2008,9,4,0,13.9,-30,tropical storm,NA,50,997,150,0 +Josephine,2008,9,4,6,14.1,-30.9,tropical storm,NA,50,997,150,0 +Josephine,2008,9,4,12,14.4,-31.9,tropical storm,NA,45,1000,120,0 +Josephine,2008,9,4,18,14.6,-32.7,tropical storm,NA,40,1002,120,0 +Josephine,2008,9,5,0,15,-33.4,tropical storm,NA,40,1002,150,0 +Josephine,2008,9,5,6,15.4,-34,tropical storm,NA,40,1002,150,0 +Josephine,2008,9,5,12,15.6,-34.5,tropical storm,NA,40,1003,120,0 +Josephine,2008,9,5,18,15.8,-34.9,tropical storm,NA,35,1004,90,0 +Josephine,2008,9,6,0,16.2,-35.5,tropical depression,NA,30,1006,0,0 +Josephine,2008,9,6,6,16.5,-36.4,other low,NA,30,1006,0,0 +Josephine,2008,9,6,12,16.7,-37.3,other low,NA,25,1007,0,0 +Josephine,2008,9,6,18,16.8,-38.3,other low,NA,25,1007,0,0 +Josephine,2008,9,7,0,16.9,-39.2,other low,NA,25,1007,0,0 +Josephine,2008,9,7,6,17,-40.1,other low,NA,30,1007,0,0 +Josephine,2008,9,7,12,17.1,-40.9,other low,NA,30,1007,0,0 +Josephine,2008,9,7,18,17.2,-41.6,other low,NA,25,1007,0,0 +Josephine,2008,9,8,0,17.3,-42.4,other low,NA,25,1007,0,0 +Josephine,2008,9,8,6,17.5,-43.3,other low,NA,25,1007,0,0 +Josephine,2008,9,8,12,18,-44.2,other low,NA,25,1009,0,0 +Josephine,2008,9,8,18,18.1,-45.6,other low,NA,25,1010,0,0 +Josephine,2008,9,9,0,17.8,-47.3,other low,NA,25,1010,0,0 +Josephine,2008,9,9,6,16.8,-49.3,other low,NA,25,1010,0,0 +Josephine,2008,9,9,12,16.3,-51.4,other low,NA,25,1010,0,0 +Josephine,2008,9,9,18,16.3,-52.5,other low,NA,25,1010,0,0 +Josephine,2008,9,10,0,16.3,-53.6,other low,NA,20,1011,0,0 +Kyle,2008,9,25,0,21.5,-70,tropical depression,NA,30,1005,0,0 +Kyle,2008,9,25,6,22,-69.4,tropical storm,NA,35,1003,90,0 +Kyle,2008,9,25,12,22.4,-68.7,tropical storm,NA,40,1002,100,0 +Kyle,2008,9,25,18,23.1,-68.4,tropical storm,NA,40,1001,100,0 +Kyle,2008,9,26,0,24,-68,tropical storm,NA,45,998,115,0 +Kyle,2008,9,26,6,25,-68.2,tropical storm,NA,50,996,160,0 +Kyle,2008,9,26,12,26,-68.6,tropical storm,NA,50,998,200,0 +Kyle,2008,9,26,18,26.9,-68.6,tropical storm,NA,50,1000,180,0 +Kyle,2008,9,27,0,28.7,-68.6,tropical storm,NA,55,998,180,0 +Kyle,2008,9,27,6,29.9,-69.3,tropical storm,NA,60,996,250,0 +Kyle,2008,9,27,12,31.2,-69.5,hurricane,1,65,996,250,60 +Kyle,2008,9,27,18,33.3,-69.7,hurricane,1,70,995,250,60 +Kyle,2008,9,28,0,35.3,-69.7,hurricane,1,70,995,250,60 +Kyle,2008,9,28,6,37.4,-69.3,hurricane,1,70,992,250,60 +Kyle,2008,9,28,12,39.4,-68.2,hurricane,1,75,989,290,100 +Kyle,2008,9,28,18,41.6,-66.7,hurricane,1,70,984,310,115 +Kyle,2008,9,29,0,43.8,-66.2,hurricane,1,65,985,320,110 +Kyle,2008,9,29,6,45.6,-65,extratropical,NA,50,990,320,0 +Kyle,2008,9,29,12,47.7,-63.5,extratropical,NA,45,994,320,0 +Kyle,2008,9,29,18,48.2,-62.6,extratropical,NA,40,999,320,0 +Kyle,2008,9,30,0,48.4,-61.5,extratropical,NA,35,1002,320,0 +Kyle,2008,9,30,6,48.2,-61,extratropical,NA,30,1004,0,0 +Kyle,2008,9,30,12,48.1,-60.8,extratropical,NA,25,1005,0,0 +Laura,2008,9,26,0,39,-35,extratropical,NA,40,1011,420,0 +Laura,2008,9,26,6,37.9,-35,extratropical,NA,45,1010,420,0 +Laura,2008,9,26,12,37,-35.5,extratropical,NA,50,1009,360,0 +Laura,2008,9,26,18,36.5,-36,extratropical,NA,55,1007,600,0 +Laura,2008,9,27,0,37,-36.5,extratropical,NA,60,1004,600,0 +Laura,2008,9,27,6,37.4,-37.2,extratropical,NA,65,998,600,180 +Laura,2008,9,27,12,37.5,-38,extratropical,NA,70,992,600,180 +Laura,2008,9,27,18,37.4,-39,extratropical,NA,70,992,600,180 +Laura,2008,9,28,0,37.3,-40,extratropical,NA,60,994,540,0 +Laura,2008,9,28,6,37.2,-41.2,extratropical,NA,55,994,540,0 +Laura,2008,9,28,12,37,-42.5,extratropical,NA,50,995,540,0 +Laura,2008,9,28,18,36.8,-44.1,extratropical,NA,50,995,540,0 +Laura,2008,9,29,0,36.7,-45.7,extratropical,NA,50,995,450,0 +Laura,2008,9,29,6,37,-47,subtropical storm,NA,50,995,470,0 +Laura,2008,9,29,12,37.2,-47.7,subtropical storm,NA,50,995,390,0 +Laura,2008,9,29,18,37.8,-48.2,subtropical storm,NA,50,995,390,0 +Laura,2008,9,30,0,38.6,-48.5,subtropical storm,NA,50,996,420,0 +Laura,2008,9,30,6,39.6,-48.8,subtropical storm,NA,50,996,420,0 +Laura,2008,9,30,12,40.6,-48.9,tropical storm,NA,50,996,410,0 +Laura,2008,9,30,18,41.7,-48.8,tropical storm,NA,50,994,440,0 +Laura,2008,10,1,0,42.9,-48.3,tropical storm,NA,45,995,440,0 +Laura,2008,10,1,6,44.2,-47.7,tropical storm,NA,45,995,440,0 +Laura,2008,10,1,12,45.7,-46.9,other low,NA,40,995,440,0 +Laura,2008,10,1,18,47.5,-46.3,other low,NA,40,995,440,0 +Laura,2008,10,2,0,49.5,-46,other low,NA,35,997,440,0 +Laura,2008,10,2,6,51.5,-46,extratropical,NA,35,996,440,0 +Laura,2008,10,2,12,53.5,-46,extratropical,NA,40,992,440,0 +Laura,2008,10,2,18,55.6,-45.5,extratropical,NA,40,992,440,0 +Laura,2008,10,3,0,56.9,-44,extratropical,NA,50,991,480,0 +Laura,2008,10,3,6,57,-42,extratropical,NA,65,990,570,120 +Laura,2008,10,3,12,57,-40,extratropical,NA,60,992,570,0 +Laura,2008,10,3,18,57,-37,extratropical,NA,55,994,570,0 +Laura,2008,10,4,0,56.5,-31.4,extratropical,NA,45,996,480,0 +Laura,2008,10,4,6,56,-26,extratropical,NA,40,997,480,0 +Marco,2008,10,6,0,18.5,-91.7,tropical depression,NA,25,1006,0,0 +Marco,2008,10,6,6,18.6,-92.7,tropical depression,NA,30,1005,0,0 +Marco,2008,10,6,12,18.9,-93.7,tropical storm,NA,40,1002,20,0 +Marco,2008,10,6,18,19.4,-94.5,tropical storm,NA,50,999,30,0 +Marco,2008,10,7,0,19.7,-95.2,tropical storm,NA,55,998,20,0 +Marco,2008,10,7,6,19.8,-95.9,tropical storm,NA,55,998,20,0 +Marco,2008,10,7,12,19.9,-96.5,tropical storm,NA,55,998,30,0 +Marco,2008,10,7,18,19.9,-96.9,tropical depression,NA,30,1007,0,0 +Nana,2008,10,12,6,15.5,-36.6,tropical depression,NA,30,1007,0,0 +Nana,2008,10,12,12,16,-37.1,tropical storm,NA,35,1006,60,0 +Nana,2008,10,12,18,16.4,-37.7,tropical storm,NA,35,1005,70,0 +Nana,2008,10,13,0,16.5,-38.4,tropical storm,NA,35,1004,85,0 +Nana,2008,10,13,6,16.6,-39,tropical storm,NA,35,1005,100,0 +Nana,2008,10,13,12,16.8,-39.6,tropical depression,NA,30,1006,0,0 +Nana,2008,10,13,18,17.2,-40.3,tropical depression,NA,30,1007,0,0 +Nana,2008,10,14,0,17.6,-41.5,tropical depression,NA,30,1007,0,0 +Nana,2008,10,14,6,18,-42.7,tropical depression,NA,30,1007,0,0 +Nana,2008,10,14,12,18.3,-44,other low,NA,25,1008,0,0 +Nana,2008,10,14,18,18.6,-45,other low,NA,25,1008,0,0 +Nana,2008,10,15,0,19.4,-46.1,other low,NA,25,1009,0,0 +Nana,2008,10,15,6,20.5,-47.1,other low,NA,25,1010,0,0 +Nana,2008,10,15,12,22,-48,other low,NA,20,1011,0,0 +Omar,2008,10,13,6,15.4,-69,tropical depression,NA,25,1005,0,0 +Omar,2008,10,13,12,15.2,-69.6,tropical depression,NA,30,1005,0,0 +Omar,2008,10,13,18,14.8,-69.8,tropical depression,NA,30,1004,0,0 +Omar,2008,10,14,0,14.5,-69.6,tropical storm,NA,35,1001,40,0 +Omar,2008,10,14,6,14.3,-69.3,tropical storm,NA,40,997,90,0 +Omar,2008,10,14,12,14.2,-69.1,tropical storm,NA,50,991,120,0 +Omar,2008,10,14,18,13.9,-68.8,tropical storm,NA,60,983,135,0 +Omar,2008,10,15,0,14.1,-68.3,hurricane,1,65,983,165,30 +Omar,2008,10,15,6,14.4,-68,hurricane,1,70,985,195,30 +Omar,2008,10,15,12,14.9,-67.4,hurricane,1,75,984,195,30 +Omar,2008,10,15,18,15.6,-66.5,hurricane,1,80,977,195,40 +Omar,2008,10,16,0,16.7,-65.2,hurricane,2,95,970,195,45 +Omar,2008,10,16,6,18.2,-63.9,hurricane,4,115,958,195,50 +Omar,2008,10,16,12,19.6,-62.1,hurricane,2,90,975,195,50 +Omar,2008,10,16,18,21.1,-60.4,hurricane,1,70,985,180,50 +Omar,2008,10,17,0,22.8,-58.8,hurricane,1,65,986,180,40 +Omar,2008,10,17,6,25.1,-57.1,hurricane,1,70,984,180,40 +Omar,2008,10,17,12,27.9,-55.7,hurricane,1,75,982,180,40 +Omar,2008,10,17,18,30.1,-54.4,hurricane,1,65,985,165,20 +Omar,2008,10,18,0,31.3,-53.2,tropical storm,NA,55,988,150,0 +Omar,2008,10,18,6,32.4,-52.1,tropical storm,NA,50,991,150,0 +Omar,2008,10,18,12,33,-51.3,other low,NA,40,996,105,0 +Omar,2008,10,18,18,33.5,-50.5,other low,NA,35,1002,60,0 +Omar,2008,10,19,0,34,-49.7,other low,NA,30,1006,0,0 +Omar,2008,10,19,6,34.5,-49,other low,NA,30,1009,0,0 +Omar,2008,10,19,12,35.1,-48.3,other low,NA,25,1011,0,0 +Omar,2008,10,19,18,35.7,-47.5,other low,NA,25,1012,0,0 +Omar,2008,10,20,0,36.4,-46.8,other low,NA,25,1013,0,0 +Omar,2008,10,20,6,37,-46.2,other low,NA,25,1014,0,0 +Omar,2008,10,20,12,37.6,-45.3,other low,NA,25,1015,0,0 +Omar,2008,10,20,18,37.9,-44.3,other low,NA,25,1016,0,0 +Omar,2008,10,21,0,38.3,-43.3,other low,NA,25,1016,0,0 +Sixteen,2008,10,14,12,15.5,-82.8,tropical depression,NA,25,1004,0,0 +Sixteen,2008,10,14,18,15.9,-83.2,tropical depression,NA,25,1005,0,0 +Sixteen,2008,10,15,0,16,-83.6,tropical depression,NA,25,1005,0,0 +Sixteen,2008,10,15,6,16,-84,tropical depression,NA,25,1005,0,0 +Sixteen,2008,10,15,12,15.9,-84.4,tropical depression,NA,25,1005,0,0 +Sixteen,2008,10,15,12,15.9,-84.5,tropical depression,NA,25,1005,0,0 +Sixteen,2008,10,15,18,15.6,-85,tropical depression,NA,25,1006,0,0 +Sixteen,2008,10,16,0,15.3,-85.6,other low,NA,25,1006,0,0 +Paloma,2008,11,5,18,13.7,-81.7,tropical depression,NA,25,1004,0,0 +Paloma,2008,11,6,0,14.2,-82,tropical depression,NA,30,1004,0,0 +Paloma,2008,11,6,6,14.8,-82.1,tropical storm,NA,35,1003,20,0 +Paloma,2008,11,6,12,15.4,-82,tropical storm,NA,40,1000,50,0 +Paloma,2008,11,6,18,16.1,-81.9,tropical storm,NA,55,994,90,0 +Paloma,2008,11,7,0,16.8,-81.8,hurricane,1,65,987,100,25 +Paloma,2008,11,7,6,17.4,-81.7,hurricane,1,65,985,105,25 +Paloma,2008,11,7,12,18,-81.6,hurricane,1,75,979,130,35 +Paloma,2008,11,7,18,18.6,-81.4,hurricane,1,80,975,160,45 +Paloma,2008,11,8,0,19,-81,hurricane,3,100,964,170,50 +Paloma,2008,11,8,6,19.4,-80.4,hurricane,3,110,951,180,50 +Paloma,2008,11,8,12,19.8,-79.6,hurricane,4,125,944,170,50 +Paloma,2008,11,8,18,20.2,-78.8,hurricane,4,125,951,150,50 +Paloma,2008,11,9,0,20.7,-78,hurricane,2,90,968,130,30 +Paloma,2008,11,9,1,20.7,-78,hurricane,2,85,970,130,30 +Paloma,2008,11,9,6,21,-77.7,tropical storm,NA,55,990,60,0 +Paloma,2008,11,9,12,21.3,-77.8,tropical storm,NA,35,1002,30,0 +Paloma,2008,11,9,18,21.6,-77.9,tropical depression,NA,25,1004,0,0 +Paloma,2008,11,10,0,21.8,-77.9,other low,NA,25,1005,0,0 +Paloma,2008,11,10,6,22.1,-77.8,other low,NA,25,1006,0,0 +Paloma,2008,11,10,12,22.4,-77.7,other low,NA,20,1007,0,0 +Paloma,2008,11,10,18,22.5,-77.6,other low,NA,20,1008,0,0 +Paloma,2008,11,11,0,22.4,-77.5,other low,NA,20,1009,0,0 +Paloma,2008,11,11,6,22.1,-77.6,other low,NA,20,1009,0,0 +Paloma,2008,11,11,12,21.8,-77.9,other low,NA,20,1009,0,0 +Paloma,2008,11,11,18,21.3,-78.3,other low,NA,20,1009,0,0 +Paloma,2008,11,12,0,20.9,-78.8,other low,NA,20,1009,0,0 +Paloma,2008,11,12,6,20.8,-79.7,other low,NA,20,1009,0,0 +Paloma,2008,11,12,12,21,-80.7,other low,NA,20,1009,0,0 +Paloma,2008,11,12,18,21.4,-81.7,other low,NA,20,1009,0,0 +Paloma,2008,11,13,0,22.1,-82.8,other low,NA,20,1010,0,0 +Paloma,2008,11,13,6,22.8,-83.8,other low,NA,20,1010,0,0 +Paloma,2008,11,13,12,23.8,-84.7,other low,NA,20,1010,0,0 +Paloma,2008,11,13,18,25,-85.5,other low,NA,20,1010,0,0 +Paloma,2008,11,14,0,26.8,-85.9,other low,NA,20,1010,0,0 +Paloma,2008,11,14,6,28.9,-85.6,other low,NA,20,1010,0,0 +One,2009,5,26,18,30.6,-75.4,other low,NA,25,1010,0,0 +One,2009,5,27,0,31.7,-75.6,other low,NA,25,1010,0,0 +One,2009,5,27,6,32.7,-75.5,other low,NA,25,1010,0,0 +One,2009,5,27,12,33.6,-75.2,other low,NA,25,1009,0,0 +One,2009,5,27,18,34.5,-74.6,other low,NA,25,1008,0,0 +One,2009,5,28,0,35.3,-73.8,other low,NA,25,1007,0,0 +One,2009,5,28,6,36.1,-72.9,tropical depression,NA,25,1007,0,0 +One,2009,5,28,12,36.9,-71.8,tropical depression,NA,25,1007,0,0 +One,2009,5,28,18,37.5,-70.3,tropical depression,NA,30,1006,0,0 +One,2009,5,29,0,38,-68.6,tropical depression,NA,30,1006,0,0 +One,2009,5,29,6,38.6,-66.8,tropical depression,NA,30,1006,0,0 +One,2009,5,29,12,39.3,-65,tropical depression,NA,30,1006,0,0 +One,2009,5,29,18,40,-63.1,tropical depression,NA,25,1007,0,0 +One,2009,5,30,0,40.6,-61,other low,NA,25,1007,0,0 +One,2009,5,30,6,41,-58.6,other low,NA,25,1007,0,0 +Ana,2009,8,10,6,14.3,-24,other low,NA,25,1008,0,0 +Ana,2009,8,10,12,14.4,-24.9,other low,NA,25,1008,0,0 +Ana,2009,8,10,18,14.4,-25.8,other low,NA,25,1008,0,0 +Ana,2009,8,11,0,14.4,-26.8,other low,NA,25,1008,0,0 +Ana,2009,8,11,6,14.4,-27.9,tropical depression,NA,25,1007,0,0 +Ana,2009,8,11,12,14.5,-29,tropical depression,NA,25,1006,0,0 +Ana,2009,8,11,18,14.6,-30,tropical depression,NA,25,1006,0,0 +Ana,2009,8,12,0,14.6,-31,tropical depression,NA,30,1006,0,0 +Ana,2009,8,12,6,14.5,-32.1,tropical depression,NA,30,1006,0,0 +Ana,2009,8,12,12,14.4,-33.3,tropical storm,NA,35,1005,45,0 +Ana,2009,8,12,18,14.3,-34.4,tropical storm,NA,35,1005,45,0 +Ana,2009,8,13,0,14.1,-35.3,tropical depression,NA,30,1006,0,0 +Ana,2009,8,13,6,14,-36.3,other low,NA,30,1007,0,0 +Ana,2009,8,13,12,14,-37.2,other low,NA,25,1008,0,0 +Ana,2009,8,13,18,14.1,-38.2,other low,NA,25,1008,0,0 +Ana,2009,8,14,0,14.3,-39.3,other low,NA,25,1008,0,0 +Ana,2009,8,14,6,14.5,-40.5,other low,NA,25,1008,0,0 +Ana,2009,8,14,12,14.6,-41.8,other low,NA,25,1008,0,0 +Ana,2009,8,14,18,14.6,-43.2,other low,NA,25,1007,0,0 +Ana,2009,8,15,0,14.5,-44.7,tropical depression,NA,30,1005,0,0 +Ana,2009,8,15,6,14.4,-46.1,tropical storm,NA,35,1003,60,0 +Ana,2009,8,15,12,14.4,-47.6,tropical storm,NA,35,1003,60,0 +Ana,2009,8,15,18,14.4,-49.2,tropical storm,NA,35,1003,60,0 +Ana,2009,8,16,0,14.4,-50.7,tropical storm,NA,35,1003,60,0 +Ana,2009,8,16,6,14.5,-52.6,tropical storm,NA,35,1004,60,0 +Ana,2009,8,16,12,14.6,-54.8,tropical depression,NA,30,1006,0,0 +Bill,2009,8,15,6,11.8,-32,tropical depression,NA,30,1007,0,0 +Bill,2009,8,15,12,11.5,-33.3,tropical depression,NA,30,1006,0,0 +Bill,2009,8,15,18,11.2,-34.5,tropical storm,NA,35,1004,50,0 +Bill,2009,8,16,0,11.2,-35.5,tropical storm,NA,35,1004,60,0 +Bill,2009,8,16,6,11.5,-36.5,tropical storm,NA,40,1002,150,0 +Bill,2009,8,16,12,12,-37.8,tropical storm,NA,50,997,210,0 +Bill,2009,8,16,18,12.6,-39.4,tropical storm,NA,55,994,210,0 +Bill,2009,8,17,0,13.1,-41.3,tropical storm,NA,60,990,210,0 +Bill,2009,8,17,6,13.5,-43.2,hurricane,1,65,987,245,45 +Bill,2009,8,17,12,13.9,-44.6,hurricane,1,75,977,230,50 +Bill,2009,8,17,18,14.4,-46,hurricane,1,80,970,230,50 +Bill,2009,8,18,0,14.8,-47.5,hurricane,2,85,967,255,50 +Bill,2009,8,18,6,15.3,-49,hurricane,2,90,965,255,50 +Bill,2009,8,18,12,15.7,-50.3,hurricane,2,95,963,300,70 +Bill,2009,8,18,18,16.2,-51.7,hurricane,3,100,962,300,70 +Bill,2009,8,19,0,16.9,-52.9,hurricane,3,105,955,300,70 +Bill,2009,8,19,6,17.6,-54.2,hurricane,4,115,954,300,70 +Bill,2009,8,19,12,18.3,-55.6,hurricane,4,115,949,300,100 +Bill,2009,8,19,18,19.3,-56.9,hurricane,4,115,947,350,105 +Bill,2009,8,20,0,20.2,-58.2,hurricane,4,115,945,350,105 +Bill,2009,8,20,6,21.1,-59.6,hurricane,4,115,949,350,105 +Bill,2009,8,20,12,22.1,-61,hurricane,3,105,952,400,120 +Bill,2009,8,20,18,23.1,-62.4,hurricane,3,110,948,400,135 +Bill,2009,8,21,0,24.1,-63.7,hurricane,3,110,943,400,135 +Bill,2009,8,21,6,25.5,-64.9,hurricane,3,105,951,400,135 +Bill,2009,8,21,12,27.1,-66,hurricane,3,100,954,400,135 +Bill,2009,8,21,18,28.6,-66.9,hurricane,2,95,956,375,105 +Bill,2009,8,22,0,30.4,-67.6,hurricane,2,90,957,375,105 +Bill,2009,8,22,6,32.3,-68.4,hurricane,2,90,960,375,105 +Bill,2009,8,22,12,34.1,-68.8,hurricane,2,85,961,375,105 +Bill,2009,8,22,18,36,-68.9,hurricane,1,80,961,375,105 +Bill,2009,8,23,0,38.1,-68.4,hurricane,1,80,961,370,105 +Bill,2009,8,23,6,40.1,-67.3,hurricane,1,75,962,425,105 +Bill,2009,8,23,12,42.4,-65.4,hurricane,1,70,965,425,105 +Bill,2009,8,23,18,44.4,-62.5,hurricane,1,65,970,425,80 +Bill,2009,8,24,0,46.3,-57.9,hurricane,1,65,973,465,80 +Bill,2009,8,24,2,46.8,-56.4,tropical storm,NA,60,974,465,0 +Bill,2009,8,24,3,46.9,-56,tropical storm,NA,60,976,465,0 +Bill,2009,8,24,6,48,-53,tropical storm,NA,60,980,465,0 +Bill,2009,8,24,12,49.2,-47.2,extratropical,NA,60,980,465,0 +Bill,2009,8,24,18,50,-41.2,extratropical,NA,60,980,465,0 +Bill,2009,8,25,0,50.3,-35.4,extratropical,NA,60,980,465,0 +Bill,2009,8,25,6,50.7,-29.6,extratropical,NA,60,980,465,0 +Bill,2009,8,25,12,51.2,-23.8,extratropical,NA,60,980,465,0 +Bill,2009,8,25,18,52,-18,extratropical,NA,50,982,465,0 +Bill,2009,8,26,0,53,-13,extratropical,NA,40,985,465,0 +Claudette,2009,8,16,6,27,-83.4,tropical depression,NA,30,1011,0,0 +Claudette,2009,8,16,12,28.2,-84.2,tropical storm,NA,35,1010,40,0 +Claudette,2009,8,16,18,29.1,-85.1,tropical storm,NA,50,1008,90,0 +Claudette,2009,8,17,0,29.8,-85.8,tropical storm,NA,45,1005,90,0 +Claudette,2009,8,17,5,30.4,-86.5,tropical storm,NA,40,1005,NA,NA +Claudette,2009,8,17,6,30.5,-86.6,tropical storm,NA,40,1005,80,0 +Claudette,2009,8,17,12,31.5,-87.5,tropical depression,NA,25,1013,0,0 +Claudette,2009,8,17,18,32.8,-88.3,tropical depression,NA,20,1017,0,0 +Danny,2009,8,26,9,24.3,-69.6,tropical storm,NA,40,1009,240,0 +Danny,2009,8,26,12,24.6,-70.1,tropical storm,NA,40,1009,240,0 +Danny,2009,8,26,18,25.1,-70.7,tropical storm,NA,45,1009,240,0 +Danny,2009,8,27,0,25.9,-71.2,tropical storm,NA,50,1006,255,0 +Danny,2009,8,27,6,27,-71.8,tropical storm,NA,50,1006,255,0 +Danny,2009,8,27,12,27.4,-72.7,tropical storm,NA,50,1006,285,0 +Danny,2009,8,27,18,27.4,-73.3,tropical storm,NA,45,1008,270,0 +Danny,2009,8,28,0,28.1,-73.5,tropical storm,NA,40,1008,240,0 +Danny,2009,8,28,6,29,-74.4,tropical storm,NA,35,1008,150,0 +Danny,2009,8,28,12,29.7,-75.4,tropical storm,NA,35,1008,150,0 +Danny,2009,8,28,18,30.1,-75.7,tropical storm,NA,35,1007,150,0 +Danny,2009,8,29,0,31,-75,tropical storm,NA,35,1006,150,0 +Erika,2009,9,1,18,16.7,-57.3,tropical storm,NA,45,1007,105,0 +Erika,2009,9,2,0,16.8,-58,tropical storm,NA,45,1004,140,0 +Erika,2009,9,2,6,16.5,-58.9,tropical storm,NA,45,1005,140,0 +Erika,2009,9,2,12,16.4,-59.9,tropical storm,NA,35,1008,125,0 +Erika,2009,9,2,18,16.3,-61,tropical storm,NA,35,1008,150,0 +Erika,2009,9,2,18,16.3,-61.3,tropical storm,NA,35,1008,NA,NA +Erika,2009,9,3,0,16.3,-61.9,tropical storm,NA,35,1009,200,0 +Erika,2009,9,3,6,16.4,-62.7,tropical storm,NA,40,1008,200,0 +Erika,2009,9,3,12,16.5,-63.5,tropical storm,NA,40,1008,150,0 +Erika,2009,9,3,18,16.6,-64.5,tropical depression,NA,30,1008,0,0 +Erika,2009,9,4,0,16.8,-65.5,other low,NA,25,1009,0,0 +Erika,2009,9,4,6,17,-66.5,other low,NA,25,1010,0,0 +Fred,2009,9,7,18,11.8,-24,tropical depression,NA,30,1005,0,0 +Fred,2009,9,8,0,11.7,-25.4,tropical storm,NA,35,1004,60,0 +Fred,2009,9,8,6,11.7,-26.8,tropical storm,NA,45,1000,75,0 +Fred,2009,9,8,12,11.8,-28,tropical storm,NA,55,994,75,0 +Fred,2009,9,8,18,11.9,-29.2,tropical storm,NA,60,990,105,0 +Fred,2009,9,9,0,12.4,-30.3,hurricane,1,70,983,135,30 +Fred,2009,9,9,6,13,-31.3,hurricane,2,90,970,165,40 +Fred,2009,9,9,12,13.6,-32.1,hurricane,3,105,958,165,50 +Fred,2009,9,9,18,14.2,-32.8,hurricane,3,100,960,180,50 +Fred,2009,9,10,0,14.8,-33.5,hurricane,2,95,965,180,45 +Fred,2009,9,10,6,15.4,-34.2,hurricane,2,90,970,180,45 +Fred,2009,9,10,12,16.1,-34.6,hurricane,2,85,974,180,45 +Fred,2009,9,10,18,16.7,-34.9,hurricane,1,80,975,180,45 +Fred,2009,9,11,0,17.2,-35.1,hurricane,1,80,975,180,40 +Fred,2009,9,11,6,17.5,-34.8,hurricane,1,75,980,165,40 +Fred,2009,9,11,12,17.6,-34.5,hurricane,1,65,987,165,30 +Fred,2009,9,11,18,17.6,-34.2,tropical storm,NA,55,994,150,0 +Fred,2009,9,12,0,17.6,-33.9,tropical storm,NA,50,998,135,0 +Fred,2009,9,12,6,17.6,-33.6,tropical storm,NA,40,1002,120,0 +Fred,2009,9,12,12,17.5,-33.6,tropical storm,NA,35,1003,75,0 +Fred,2009,9,12,18,17.5,-33.8,other low,NA,30,1004,0,0 +Fred,2009,9,13,0,17.5,-34,other low,NA,30,1006,0,0 +Fred,2009,9,13,6,17.5,-34.3,other low,NA,30,1007,0,0 +Fred,2009,9,13,12,17.9,-34.7,other low,NA,30,1007,0,0 +Fred,2009,9,13,18,18.5,-35.4,other low,NA,30,1007,0,0 +Fred,2009,9,14,0,19,-36.3,other low,NA,30,1007,0,0 +Fred,2009,9,14,6,19.2,-37.5,other low,NA,30,1007,0,0 +Fred,2009,9,14,12,19.2,-38.8,other low,NA,30,1007,0,0 +Fred,2009,9,14,18,19.1,-40.2,other low,NA,25,1008,0,0 +Fred,2009,9,15,0,19.1,-41.6,other low,NA,25,1008,0,0 +Fred,2009,9,15,6,19.3,-43.1,other low,NA,25,1008,0,0 +Fred,2009,9,15,12,19.8,-44.7,other low,NA,25,1008,0,0 +Fred,2009,9,15,18,20.4,-46.4,other low,NA,25,1010,0,0 +Fred,2009,9,16,0,21.1,-48.3,other low,NA,25,1010,0,0 +Fred,2009,9,16,6,21.8,-50.2,other low,NA,25,1010,0,0 +Fred,2009,9,16,12,22.3,-52.1,other low,NA,25,1010,0,0 +Fred,2009,9,16,18,22.8,-54.1,other low,NA,25,1010,0,0 +Fred,2009,9,17,0,23.3,-56,other low,NA,25,1010,0,0 +Fred,2009,9,17,6,23.8,-57.9,other low,NA,25,1010,0,0 +Fred,2009,9,17,12,24.2,-59.9,other low,NA,25,1011,0,0 +Fred,2009,9,17,18,24.6,-61.6,other low,NA,25,1011,0,0 +Fred,2009,9,18,0,24.9,-63.2,other low,NA,25,1012,0,0 +Fred,2009,9,18,6,25.3,-64.7,other low,NA,25,1012,0,0 +Fred,2009,9,18,12,25.6,-66,other low,NA,25,1012,0,0 +Fred,2009,9,18,18,25.9,-67.1,other low,NA,25,1012,0,0 +Fred,2009,9,19,0,26.2,-68.1,other low,NA,25,1012,0,0 +Fred,2009,9,19,6,26.4,-69,other low,NA,25,1012,0,0 +Fred,2009,9,19,12,26.6,-69.8,other low,NA,25,1012,0,0 +Eight,2009,9,25,6,14.8,-29,other low,NA,20,1010,0,0 +Eight,2009,9,25,12,15.4,-30.1,other low,NA,25,1009,0,0 +Eight,2009,9,25,18,16.1,-31.1,tropical depression,NA,30,1008,0,0 +Eight,2009,9,26,0,16.7,-32.2,tropical depression,NA,30,1008,0,0 +Eight,2009,9,26,6,17.2,-33.3,tropical depression,NA,30,1008,0,0 +Eight,2009,9,26,12,17.8,-34.3,tropical depression,NA,30,1008,0,0 +Eight,2009,9,26,18,18.6,-35.2,tropical depression,NA,25,1008,0,0 +Grace,2009,9,27,18,46,-43.2,extratropical,NA,55,995,285,0 +Grace,2009,9,28,0,45.3,-42.9,extratropical,NA,50,994,285,0 +Grace,2009,9,28,6,44.7,-42,extratropical,NA,45,992,360,0 +Grace,2009,9,28,12,44,-40.3,extratropical,NA,45,992,360,0 +Grace,2009,9,28,18,43.8,-38.7,extratropical,NA,40,994,255,0 +Grace,2009,9,29,0,43.6,-37.1,extratropical,NA,40,996,150,0 +Grace,2009,9,29,6,43.4,-35.8,extratropical,NA,35,998,60,0 +Grace,2009,9,29,12,42.9,-35.3,extratropical,NA,35,1000,60,0 +Grace,2009,9,29,18,42.3,-35.2,extratropical,NA,35,999,60,0 +Grace,2009,9,30,0,41.4,-35.4,extratropical,NA,35,998,60,0 +Grace,2009,9,30,6,40.3,-35.3,extratropical,NA,35,997,60,0 +Grace,2009,9,30,12,38.7,-34.6,extratropical,NA,40,996,45,0 +Grace,2009,9,30,18,37.4,-33.2,extratropical,NA,40,995,45,0 +Grace,2009,10,1,0,36.6,-31.5,extratropical,NA,40,995,45,0 +Grace,2009,10,1,6,36.7,-29.7,extratropical,NA,40,995,45,0 +Grace,2009,10,1,12,37.7,-28.7,extratropical,NA,40,996,30,0 +Grace,2009,10,1,18,38.6,-28.5,extratropical,NA,40,996,30,0 +Grace,2009,10,2,0,39.3,-28.8,extratropical,NA,35,997,30,0 +Grace,2009,10,2,6,39.7,-29.4,extratropical,NA,35,997,30,0 +Grace,2009,10,2,12,40.2,-30,extratropical,NA,35,997,30,0 +Grace,2009,10,2,18,40.9,-30.4,extratropical,NA,40,996,30,0 +Grace,2009,10,3,0,41.4,-31,extratropical,NA,40,996,30,0 +Grace,2009,10,3,6,41.4,-31.9,extratropical,NA,35,996,30,0 +Grace,2009,10,3,12,40.8,-32.5,extratropical,NA,35,996,60,0 +Grace,2009,10,3,18,39.9,-32.3,other low,NA,40,995,45,0 +Grace,2009,10,4,0,39.1,-31.3,other low,NA,40,994,90,0 +Grace,2009,10,4,6,38.5,-29.5,tropical storm,NA,40,993,45,0 +Grace,2009,10,4,12,38.3,-26.8,tropical storm,NA,45,992,45,0 +Grace,2009,10,4,18,38.8,-23.9,tropical storm,NA,50,991,90,0 +Grace,2009,10,5,0,40.2,-21.3,tropical storm,NA,55,989,90,0 +Grace,2009,10,5,6,42,-19,tropical storm,NA,55,988,90,0 +Grace,2009,10,5,12,44.3,-17.1,tropical storm,NA,55,987,90,0 +Grace,2009,10,5,18,46.6,-15.5,tropical storm,NA,50,986,90,0 +Grace,2009,10,6,0,48.8,-14.3,tropical storm,NA,45,986,90,0 +Grace,2009,10,6,6,50,-12.7,extratropical,NA,40,989,75,0 +Grace,2009,10,6,12,50.4,-10.6,extratropical,NA,35,993,75,0 +Grace,2009,10,6,18,50.8,-7.7,extratropical,NA,30,997,0,0 +Henri,2009,10,6,0,15.1,-49.2,tropical depression,NA,30,1008,0,0 +Henri,2009,10,6,6,16.1,-50.5,tropical storm,NA,35,1007,45,0 +Henri,2009,10,6,12,17,-51.9,tropical storm,NA,35,1007,45,0 +Henri,2009,10,6,18,17.6,-53.4,tropical storm,NA,35,1007,45,0 +Henri,2009,10,7,0,18,-54.6,tropical storm,NA,40,1006,60,0 +Henri,2009,10,7,6,18.3,-55.7,tropical storm,NA,45,1005,60,0 +Henri,2009,10,7,12,18.7,-56.8,tropical storm,NA,45,1006,60,0 +Henri,2009,10,7,18,19,-57.9,tropical storm,NA,40,1007,90,0 +Henri,2009,10,8,0,19.3,-59.1,tropical storm,NA,35,1008,90,0 +Henri,2009,10,8,6,19.6,-60.3,tropical depression,NA,30,1010,0,0 +Henri,2009,10,8,12,20,-61.4,tropical depression,NA,30,1011,0,0 +Henri,2009,10,8,18,20.3,-62.2,other low,NA,25,1012,0,0 +Henri,2009,10,9,0,20.5,-62.9,other low,NA,25,1012,0,0 +Henri,2009,10,9,6,20.6,-63.5,other low,NA,20,1012,0,0 +Henri,2009,10,9,12,20.7,-64.1,other low,NA,20,1012,0,0 +Henri,2009,10,9,18,20.9,-64.9,other low,NA,20,1012,0,0 +Henri,2009,10,10,0,21,-65.7,other low,NA,20,1012,0,0 +Henri,2009,10,10,6,20.9,-66.7,other low,NA,20,1012,0,0 +Henri,2009,10,10,12,20.6,-67.6,other low,NA,20,1012,0,0 +Henri,2009,10,10,18,20.3,-68.5,other low,NA,20,1012,0,0 +Henri,2009,10,11,0,20.2,-69.4,other low,NA,20,1012,0,0 +Henri,2009,10,11,6,20.1,-70.5,other low,NA,20,1012,0,0 +Henri,2009,10,11,12,20.2,-71.7,other low,NA,20,1013,0,0 +Ida,2009,11,4,6,11,-81.3,tropical depression,NA,30,1007,0,0 +Ida,2009,11,4,12,11.4,-81.8,tropical storm,NA,35,1004,30,0 +Ida,2009,11,4,18,11.8,-82.3,tropical storm,NA,45,998,65,0 +Ida,2009,11,5,0,12.3,-82.8,tropical storm,NA,55,995,65,0 +Ida,2009,11,5,6,12.6,-83.3,hurricane,1,65,987,80,20 +Ida,2009,11,5,12,12.9,-83.6,hurricane,1,70,985,100,20 +Ida,2009,11,5,18,13.2,-83.8,tropical storm,NA,50,996,90,0 +Ida,2009,11,6,0,13.6,-83.9,tropical storm,NA,35,1003,60,0 +Ida,2009,11,6,6,14.1,-84,tropical depression,NA,30,1005,0,0 +Ida,2009,11,6,12,14.7,-83.9,tropical depression,NA,30,1006,0,0 +Ida,2009,11,6,18,15.4,-83.9,tropical depression,NA,30,1007,0,0 +Ida,2009,11,7,0,16.1,-84,tropical depression,NA,30,1006,0,0 +Ida,2009,11,7,6,16.8,-84,tropical storm,NA,35,1004,40,0 +Ida,2009,11,7,12,17.7,-84,tropical storm,NA,55,997,130,0 +Ida,2009,11,7,18,18.7,-84.1,tropical storm,NA,60,990,165,0 +Ida,2009,11,8,0,19.5,-84.5,hurricane,1,70,987,165,15 +Ida,2009,11,8,6,20.1,-85.3,hurricane,1,80,984,165,15 +Ida,2009,11,8,12,20.9,-85.8,hurricane,2,85,983,165,15 +Ida,2009,11,8,18,21.9,-86.2,hurricane,2,85,975,180,45 +Ida,2009,11,9,0,23,-86.5,hurricane,2,90,979,195,45 +Ida,2009,11,9,6,24.4,-87.5,hurricane,1,80,988,220,45 +Ida,2009,11,9,12,26.3,-88.3,tropical storm,NA,60,989,250,0 +Ida,2009,11,9,18,27.9,-88.6,hurricane,1,65,990,250,20 +Ida,2009,11,9,21,28.5,-88.7,hurricane,1,75,990,250,20 +Ida,2009,11,10,0,28.9,-88.7,tropical storm,NA,60,993,250,0 +Ida,2009,11,10,6,29.8,-88.6,tropical storm,NA,50,998,225,0 +Ida,2009,11,10,9,30.1,-88.3,extratropical,NA,45,998,225,0 +Ida,2009,11,10,12,30.3,-88,extratropical,NA,35,999,90,0 +Ida,2009,11,10,18,30.6,-87.2,extratropical,NA,30,1002,0,0 +Ida,2009,11,11,0,30.6,-86.3,extratropical,NA,25,1005,0,0 +Ida,2009,11,11,6,30.8,-85.5,extratropical,NA,25,1006,0,0 +Alex,2010,6,24,18,15.9,-82,other low,NA,25,1007,0,0 +Alex,2010,6,25,0,16,-82.1,other low,NA,25,1006,0,0 +Alex,2010,6,25,6,16.1,-82.3,other low,NA,25,1006,0,0 +Alex,2010,6,25,12,16.2,-82.5,other low,NA,30,1005,0,0 +Alex,2010,6,25,18,16.4,-83.1,tropical depression,NA,30,1005,0,0 +Alex,2010,6,26,0,16.6,-83.9,tropical depression,NA,30,1004,0,0 +Alex,2010,6,26,6,16.7,-84.9,tropical storm,NA,40,1004,90,0 +Alex,2010,6,26,12,16.9,-86.1,tropical storm,NA,40,1004,90,0 +Alex,2010,6,26,18,17.2,-87.2,tropical storm,NA,55,996,130,0 +Alex,2010,6,27,0,17.5,-88.2,tropical storm,NA,55,995,120,0 +Alex,2010,6,27,6,18,-89.1,tropical storm,NA,55,991,120,0 +Alex,2010,6,27,12,18.5,-90,tropical storm,NA,45,992,90,0 +Alex,2010,6,27,18,18.9,-90.7,tropical storm,NA,35,993,60,0 +Alex,2010,6,28,0,19.2,-91.1,tropical storm,NA,40,991,90,0 +Alex,2010,6,28,6,19.5,-91.4,tropical storm,NA,40,991,90,0 +Alex,2010,6,28,12,20,-91.6,tropical storm,NA,50,989,90,0 +Alex,2010,6,28,18,20.3,-91.7,tropical storm,NA,50,990,90,0 +Alex,2010,6,29,0,20.7,-91.7,tropical storm,NA,55,987,120,0 +Alex,2010,6,29,6,21.5,-91.9,tropical storm,NA,55,985,150,0 +Alex,2010,6,29,12,22.4,-92.7,tropical storm,NA,60,983,200,0 +Alex,2010,6,29,18,22.9,-93.6,tropical storm,NA,60,981,200,0 +Alex,2010,6,30,0,23,-94.4,hurricane,1,65,973,280,30 +Alex,2010,6,30,6,23.1,-94.8,hurricane,1,70,966,280,35 +Alex,2010,6,30,12,23.5,-95.2,hurricane,1,75,958,280,65 +Alex,2010,6,30,15,24,-95.5,hurricane,1,75,958,280,65 +Alex,2010,6,30,18,24.3,-96.2,hurricane,1,80,962,310,65 +Alex,2010,7,1,0,24.3,-97.3,hurricane,2,90,948,300,65 +Alex,2010,7,1,2,24.2,-97.7,hurricane,2,95,946,300,65 +Alex,2010,7,1,6,24.1,-98.4,hurricane,1,75,963,300,30 +Alex,2010,7,1,12,23.5,-99.5,tropical storm,NA,60,977,240,0 +Alex,2010,7,1,18,23.1,-100.7,tropical storm,NA,40,987,165,0 +Alex,2010,7,2,0,23.2,-101.9,tropical depression,NA,30,997,0,0 +Two,2010,7,7,6,21.5,-91.1,other low,NA,25,1006,0,0 +Two,2010,7,7,12,22.1,-92,other low,NA,25,1006,0,0 +Two,2010,7,7,18,22.8,-92.8,other low,NA,30,1006,0,0 +Two,2010,7,8,0,23.7,-93.7,tropical depression,NA,30,1005,0,0 +Two,2010,7,8,6,24.7,-95,tropical depression,NA,30,1006,0,0 +Two,2010,7,8,12,26.1,-96.6,tropical depression,NA,30,1006,0,0 +Two,2010,7,8,14,26.1,-97.1,tropical depression,NA,30,1006,0,0 +Two,2010,7,8,18,26.1,-97.8,tropical depression,NA,25,1007,0,0 +Two,2010,7,9,0,25.9,-98.8,tropical depression,NA,25,1007,0,0 +Two,2010,7,9,6,26.1,-99.7,other low,NA,20,1008,0,0 +Two,2010,7,9,12,26.5,-100.6,other low,NA,20,1009,0,0 +Two,2010,7,9,18,27.3,-101.3,other low,NA,20,1010,0,0 +Two,2010,7,10,0,28.1,-102.2,other low,NA,20,1010,0,0 +Bonnie,2010,7,22,6,21.5,-73.8,tropical depression,NA,30,1009,0,0 +Bonnie,2010,7,22,12,21.7,-74.4,tropical depression,NA,30,1008,0,0 +Bonnie,2010,7,22,18,22.2,-74.9,tropical depression,NA,30,1007,0,0 +Bonnie,2010,7,22,23,23,-75.7,tropical storm,NA,35,1006,30,0 +Bonnie,2010,7,23,0,23.1,-75.9,tropical storm,NA,35,1006,40,0 +Bonnie,2010,7,23,5,23.7,-77.5,tropical storm,NA,40,1005,70,0 +Bonnie,2010,7,23,6,23.8,-77.8,tropical storm,NA,40,1005,75,0 +Bonnie,2010,7,23,12,24.8,-79.7,tropical storm,NA,35,1006,90,0 +Bonnie,2010,7,23,14,25.4,-80.2,tropical storm,NA,35,1007,80,0 +Bonnie,2010,7,23,18,25.8,-81.1,tropical depression,NA,30,1008,0,0 +Bonnie,2010,7,24,0,26.3,-82.6,tropical depression,NA,30,1010,0,0 +Bonnie,2010,7,24,6,26.7,-84.4,tropical depression,NA,30,1013,0,0 +Bonnie,2010,7,24,12,27.5,-85.9,tropical depression,NA,25,1013,0,0 +Bonnie,2010,7,24,18,28.1,-87.1,tropical depression,NA,25,1013,0,0 +Bonnie,2010,7,25,0,28.6,-88.3,other low,NA,25,1012,0,0 +Bonnie,2010,7,25,6,29.2,-89.5,other low,NA,25,1012,0,0 +Bonnie,2010,7,25,12,29.8,-90.5,other low,NA,20,1012,0,0 +Bonnie,2010,7,25,18,30.1,-91,other low,NA,15,1014,0,0 +Colin,2010,8,2,12,12.5,-40.7,tropical depression,NA,30,1007,0,0 +Colin,2010,8,2,18,12.9,-42.4,tropical depression,NA,30,1007,0,0 +Colin,2010,8,3,0,13.3,-44.4,tropical depression,NA,30,1007,0,0 +Colin,2010,8,3,6,13.7,-46.6,tropical storm,NA,35,1006,30,0 +Colin,2010,8,3,12,14.3,-49.3,tropical storm,NA,35,1007,30,0 +Colin,2010,8,3,18,15.3,-52.2,disturbance,NA,35,1009,60,0 +Colin,2010,8,4,0,16.1,-54.8,disturbance,NA,35,1009,90,0 +Colin,2010,8,4,6,17,-57.2,disturbance,NA,35,1009,120,0 +Colin,2010,8,4,12,18,-59.5,disturbance,NA,35,1009,150,0 +Colin,2010,8,4,18,19.2,-61.1,disturbance,NA,40,1009,120,0 +Colin,2010,8,5,0,20.4,-62.5,disturbance,NA,40,1009,120,0 +Colin,2010,8,5,6,21.7,-63.7,disturbance,NA,40,1009,120,0 +Colin,2010,8,5,12,23,-64.9,tropical storm,NA,40,1008,90,0 +Colin,2010,8,5,18,24.4,-65.8,tropical storm,NA,45,1007,90,0 +Colin,2010,8,5,21,25,-66.1,tropical storm,NA,50,1005,90,0 +Colin,2010,8,6,0,25.6,-66.6,tropical storm,NA,50,1006,90,0 +Colin,2010,8,6,6,26.4,-67.2,tropical storm,NA,40,1007,90,0 +Colin,2010,8,6,12,27,-67.1,tropical storm,NA,40,1007,90,0 +Colin,2010,8,6,18,27.7,-66.9,tropical storm,NA,40,1008,90,0 +Colin,2010,8,7,0,28.5,-66.6,tropical storm,NA,40,1008,90,0 +Colin,2010,8,7,6,28.9,-66.4,tropical storm,NA,35,1009,90,0 +Colin,2010,8,7,12,29.1,-66.2,tropical storm,NA,35,1010,90,0 +Colin,2010,8,7,18,29.3,-65.9,tropical storm,NA,35,1012,90,0 +Colin,2010,8,8,0,29.7,-65.7,tropical depression,NA,30,1012,0,0 +Colin,2010,8,8,6,30.3,-65.7,tropical depression,NA,30,1013,0,0 +Five,2010,8,10,6,25.7,-83,other low,NA,25,1008,0,0 +Five,2010,8,10,12,25.7,-83.3,other low,NA,25,1008,0,0 +Five,2010,8,10,18,25.9,-83.7,tropical depression,NA,30,1008,0,0 +Five,2010,8,11,0,26.1,-84.1,tropical depression,NA,30,1008,0,0 +Five,2010,8,11,6,26.5,-85,other low,NA,30,1008,0,0 +Five,2010,8,11,12,27.1,-86.1,other low,NA,25,1008,0,0 +Five,2010,8,11,18,28,-87.5,other low,NA,25,1009,0,0 +Five,2010,8,12,0,29,-88.4,other low,NA,25,1009,0,0 +Five,2010,8,12,6,29.4,-88.8,other low,NA,25,1008,0,0 +Five,2010,8,12,12,29.7,-89,other low,NA,25,1008,0,0 +Five,2010,8,12,18,29.8,-89,other low,NA,25,1008,0,0 +Five,2010,8,13,0,30,-88.9,other low,NA,25,1007,0,0 +Five,2010,8,13,6,30.4,-88.8,other low,NA,25,1007,0,0 +Five,2010,8,13,12,30.8,-88.6,other low,NA,25,1008,0,0 +Five,2010,8,13,18,31.4,-88,other low,NA,25,1008,0,0 +Five,2010,8,14,0,32,-87.3,other low,NA,20,1009,0,0 +Five,2010,8,14,6,32.5,-86.5,other low,NA,15,1010,0,0 +Five,2010,8,14,12,32.8,-85.9,other low,NA,15,1011,0,0 +Five,2010,8,14,18,33,-85.4,other low,NA,15,1012,0,0 +Five,2010,8,15,0,32.8,-85,other low,NA,15,1012,0,0 +Five,2010,8,15,6,32.5,-84.9,other low,NA,15,1013,0,0 +Five,2010,8,15,12,32,-85,other low,NA,15,1013,0,0 +Five,2010,8,15,18,31.5,-85.1,other low,NA,20,1013,0,0 +Five,2010,8,16,0,30.8,-85.3,other low,NA,20,1011,0,0 +Five,2010,8,16,6,30,-85.6,other low,NA,20,1010,0,0 +Five,2010,8,16,12,29.3,-86,other low,NA,20,1009,0,0 +Five,2010,8,16,18,29.3,-86.8,other low,NA,25,1008,0,0 +Five,2010,8,17,0,29.6,-87.7,other low,NA,25,1007,0,0 +Five,2010,8,17,6,30,-88.6,other low,NA,25,1008,0,0 +Five,2010,8,17,12,30.7,-89.4,other low,NA,25,1008,0,0 +Five,2010,8,17,18,31.3,-90.3,other low,NA,20,1009,0,0 +Five,2010,8,18,0,31.7,-91,other low,NA,15,1010,0,0 +Danielle,2010,8,21,12,10.7,-31.1,other low,NA,25,1009,0,0 +Danielle,2010,8,21,18,11,-31.7,tropical depression,NA,25,1008,0,0 +Danielle,2010,8,22,0,11.4,-32.4,tropical depression,NA,30,1007,0,0 +Danielle,2010,8,22,6,11.8,-33.1,tropical storm,NA,35,1005,30,0 +Danielle,2010,8,22,12,12.4,-33.9,tropical storm,NA,35,1005,30,0 +Danielle,2010,8,22,18,13.2,-34.8,tropical storm,NA,35,1004,30,0 +Danielle,2010,8,23,0,13.8,-35.9,tropical storm,NA,45,1000,75,0 +Danielle,2010,8,23,6,14.2,-37.4,tropical storm,NA,50,997,105,0 +Danielle,2010,8,23,12,14.7,-39.1,tropical storm,NA,55,994,105,0 +Danielle,2010,8,23,18,15.2,-40.9,hurricane,1,65,987,105,25 +Danielle,2010,8,24,0,15.4,-42.6,hurricane,1,75,982,135,35 +Danielle,2010,8,24,6,15.6,-44.2,hurricane,1,80,977,150,40 +Danielle,2010,8,24,12,16.2,-45.8,hurricane,1,70,984,180,40 +Danielle,2010,8,24,18,17,-47.5,hurricane,1,65,987,180,40 +Danielle,2010,8,25,0,17.7,-49,hurricane,1,70,984,180,40 +Danielle,2010,8,25,6,18.4,-50.4,hurricane,1,70,984,180,40 +Danielle,2010,8,25,12,19.4,-51.6,hurricane,1,70,984,180,40 +Danielle,2010,8,25,18,20.7,-52.6,hurricane,1,75,980,180,40 +Danielle,2010,8,26,0,22,-53.6,hurricane,1,80,977,240,55 +Danielle,2010,8,26,6,23.1,-54.6,hurricane,2,85,973,240,55 +Danielle,2010,8,26,12,24,-55.4,hurricane,2,85,973,240,55 +Danielle,2010,8,26,18,24.8,-56.4,hurricane,2,90,970,240,65 +Danielle,2010,8,27,0,25.6,-57.3,hurricane,2,95,966,285,75 +Danielle,2010,8,27,6,26.2,-58.3,hurricane,3,110,953,285,85 +Danielle,2010,8,27,12,26.5,-59.3,hurricane,3,110,948,285,85 +Danielle,2010,8,27,18,27.1,-60.1,hurricane,4,115,942,310,100 +Danielle,2010,8,28,0,27.7,-60.5,hurricane,3,105,946,310,100 +Danielle,2010,8,28,6,28.3,-61,hurricane,2,95,950,330,100 +Danielle,2010,8,28,12,28.9,-60.8,hurricane,2,95,952,330,100 +Danielle,2010,8,28,18,29.6,-60.2,hurricane,2,90,955,360,115 +Danielle,2010,8,29,0,30.9,-59.2,hurricane,2,85,958,390,115 +Danielle,2010,8,29,6,32.4,-57.9,hurricane,1,80,964,390,115 +Danielle,2010,8,29,12,34.7,-56.2,hurricane,1,75,966,420,100 +Danielle,2010,8,29,18,37.3,-55,hurricane,1,75,968,480,120 +Danielle,2010,8,30,0,38.7,-53.8,hurricane,1,70,969,480,120 +Danielle,2010,8,30,6,40,-52.8,hurricane,1,65,970,510,120 +Danielle,2010,8,30,12,40.6,-51.6,hurricane,1,65,970,480,120 +Danielle,2010,8,30,18,41,-50.2,tropical storm,NA,60,973,480,0 +Danielle,2010,8,31,0,41.1,-48,other low,NA,60,976,540,0 +Danielle,2010,8,31,6,41.2,-44.8,other low,NA,55,981,600,0 +Danielle,2010,8,31,12,41.3,-41,other low,NA,55,985,570,0 +Danielle,2010,8,31,18,42.1,-35.9,extratropical,NA,50,987,420,0 +Danielle,2010,9,1,0,43.5,-30.4,extratropical,NA,45,988,360,0 +Danielle,2010,9,1,6,44.8,-26.3,extratropical,NA,40,990,300,0 +Danielle,2010,9,1,12,46.2,-24,extratropical,NA,40,991,300,0 +Danielle,2010,9,1,18,47.9,-22,extratropical,NA,40,992,300,0 +Danielle,2010,9,2,0,49.5,-20.7,extratropical,NA,40,994,240,0 +Danielle,2010,9,2,6,51.1,-19.9,extratropical,NA,40,995,240,0 +Danielle,2010,9,2,12,53,-20.3,extratropical,NA,35,996,240,0 +Danielle,2010,9,2,18,55,-21.5,extratropical,NA,35,998,180,0 +Danielle,2010,9,3,0,57.5,-23,extratropical,NA,30,998,0,0 +Earl,2010,8,24,0,12.4,-19.3,other low,NA,25,1009,0,0 +Earl,2010,8,24,6,12.8,-20.9,other low,NA,25,1009,0,0 +Earl,2010,8,24,12,13.2,-22.6,other low,NA,30,1008,0,0 +Earl,2010,8,24,18,13.6,-24.3,other low,NA,30,1008,0,0 +Earl,2010,8,25,0,13.9,-26,other low,NA,30,1008,0,0 +Earl,2010,8,25,6,14.1,-27.8,tropical depression,NA,30,1007,0,0 +Earl,2010,8,25,12,14.3,-29.7,tropical storm,NA,35,1006,80,0 +Earl,2010,8,25,18,14.5,-31.5,tropical storm,NA,35,1006,80,0 +Earl,2010,8,26,0,14.7,-33,tropical storm,NA,35,1006,80,0 +Earl,2010,8,26,6,14.9,-34.5,tropical storm,NA,40,1004,80,0 +Earl,2010,8,26,12,15.1,-36,tropical storm,NA,40,1004,125,0 +Earl,2010,8,26,18,15.3,-37.7,tropical storm,NA,40,1004,125,0 +Earl,2010,8,27,0,15.5,-39.4,tropical storm,NA,40,1004,135,0 +Earl,2010,8,27,6,15.7,-41.2,tropical storm,NA,40,1004,135,0 +Earl,2010,8,27,12,15.8,-43.1,tropical storm,NA,40,1004,135,0 +Earl,2010,8,27,18,15.9,-45,tropical storm,NA,40,1004,180,0 +Earl,2010,8,28,0,16,-47,tropical storm,NA,45,1000,180,0 +Earl,2010,8,28,6,16.1,-49,tropical storm,NA,50,996,180,0 +Earl,2010,8,28,12,16.2,-51,tropical storm,NA,50,996,180,0 +Earl,2010,8,28,18,16.3,-53,tropical storm,NA,50,996,180,0 +Earl,2010,8,29,0,16.5,-54.8,tropical storm,NA,55,991,200,0 +Earl,2010,8,29,6,16.7,-56.5,tropical storm,NA,55,991,210,0 +Earl,2010,8,29,12,17,-58,hurricane,1,65,985,210,40 +Earl,2010,8,29,18,17.3,-59.3,hurricane,1,75,978,240,50 +Earl,2010,8,30,0,17.7,-60.6,hurricane,2,85,971,250,60 +Earl,2010,8,30,6,18.1,-61.9,hurricane,2,95,967,250,80 +Earl,2010,8,30,12,18.5,-63.1,hurricane,3,105,965,290,80 +Earl,2010,8,30,18,19,-64.2,hurricane,4,115,954,300,90 +Earl,2010,8,31,0,19.6,-65.3,hurricane,4,115,938,300,90 +Earl,2010,8,31,6,20.2,-66.4,hurricane,4,115,931,320,100 +Earl,2010,8,31,12,20.9,-67.5,hurricane,4,115,935,320,110 +Earl,2010,8,31,18,21.6,-68.4,hurricane,4,115,940,380,120 +Earl,2010,9,1,0,22.5,-69.4,hurricane,3,110,940,380,130 +Earl,2010,9,1,6,23.6,-70.5,hurricane,3,105,941,400,130 +Earl,2010,9,1,12,24.7,-71.6,hurricane,3,110,942,400,130 +Earl,2010,9,1,18,25.9,-72.7,hurricane,4,115,941,400,130 +Earl,2010,9,2,0,27.2,-73.5,hurricane,4,120,932,380,130 +Earl,2010,9,2,6,28.6,-74.3,hurricane,4,125,927,360,130 +Earl,2010,9,2,12,30.1,-74.8,hurricane,4,115,935,360,120 +Earl,2010,9,2,18,31.7,-75.1,hurricane,3,100,943,330,110 +Earl,2010,9,3,0,33,-74.9,hurricane,2,90,949,330,120 +Earl,2010,9,3,6,34.5,-74.2,hurricane,2,85,955,330,110 +Earl,2010,9,3,12,36.1,-73.4,hurricane,1,75,959,330,110 +Earl,2010,9,3,18,37.6,-72.2,hurricane,1,70,960,330,120 +Earl,2010,9,4,0,39.1,-70.6,tropical storm,NA,60,961,330,0 +Earl,2010,9,4,6,40.7,-68.4,tropical storm,NA,60,961,330,0 +Earl,2010,9,4,12,43,-65.7,hurricane,1,65,961,330,60 +Earl,2010,9,4,15,44.3,-64.5,hurricane,1,65,962,330,60 +Earl,2010,9,4,18,45.5,-63.2,hurricane,1,65,965,330,60 +Earl,2010,9,4,19,46,-62.7,tropical storm,NA,60,967,330,0 +Earl,2010,9,5,0,48.4,-60.2,extratropical,NA,55,971,320,0 +Earl,2010,9,5,6,50.6,-57.5,extratropical,NA,50,978,330,0 +Earl,2010,9,5,12,52.4,-55.4,extratropical,NA,45,987,330,0 +Earl,2010,9,5,18,54,-54.1,extratropical,NA,40,992,330,0 +Earl,2010,9,6,0,55.7,-53.5,extratropical,NA,35,994,330,0 +Fiona,2010,8,30,0,14,-41.8,other low,NA,25,1007,0,0 +Fiona,2010,8,30,6,14.1,-43.8,other low,NA,30,1007,0,0 +Fiona,2010,8,30,12,14.4,-45.7,tropical depression,NA,30,1007,0,0 +Fiona,2010,8,30,18,14.9,-47.7,tropical storm,NA,35,1007,105,0 +Fiona,2010,8,31,0,15.5,-50,tropical storm,NA,35,1007,90,0 +Fiona,2010,8,31,6,15.9,-52.5,tropical storm,NA,35,1006,90,0 +Fiona,2010,8,31,12,16.1,-54.8,tropical storm,NA,35,1006,90,0 +Fiona,2010,8,31,18,16.3,-56.9,tropical storm,NA,40,1006,135,0 +Fiona,2010,9,1,0,16.6,-58.5,tropical storm,NA,45,1004,135,0 +Fiona,2010,9,1,6,17.2,-59.8,tropical storm,NA,50,1001,165,0 +Fiona,2010,9,1,12,18.2,-61,tropical storm,NA,50,998,180,0 +Fiona,2010,9,1,18,19.5,-62.5,tropical storm,NA,55,999,180,0 +Fiona,2010,9,2,0,21,-63.8,tropical storm,NA,50,1000,120,0 +Fiona,2010,9,2,6,22.3,-64.9,tropical storm,NA,45,1001,105,0 +Fiona,2010,9,2,12,23.6,-65.9,tropical storm,NA,45,1002,105,0 +Fiona,2010,9,2,18,25,-66.6,tropical storm,NA,45,1003,90,0 +Fiona,2010,9,3,0,26.3,-67,tropical storm,NA,40,1005,90,0 +Fiona,2010,9,3,6,27.5,-67,tropical storm,NA,40,1007,90,0 +Fiona,2010,9,3,12,28.5,-66.7,tropical storm,NA,35,1010,60,0 +Fiona,2010,9,3,18,29.6,-66,tropical storm,NA,35,1011,60,0 +Fiona,2010,9,4,0,30.7,-65,other low,NA,35,1011,45,0 +Fiona,2010,9,4,6,31.8,-63.9,other low,NA,30,1011,0,0 +Fiona,2010,9,4,12,32.9,-62.9,other low,NA,25,1011,0,0 +Fiona,2010,9,4,18,34.1,-62,other low,NA,25,1011,0,0 +Gaston,2010,9,1,0,12.2,-32.2,other low,NA,25,1008,0,0 +Gaston,2010,9,1,6,12.4,-33.6,tropical depression,NA,30,1007,0,0 +Gaston,2010,9,1,12,12.7,-35,tropical storm,NA,35,1005,35,0 +Gaston,2010,9,1,18,12.9,-36.1,tropical storm,NA,35,1005,35,0 +Gaston,2010,9,2,0,13.1,-37.2,tropical depression,NA,30,1006,0,0 +Gaston,2010,9,2,6,13.2,-38,tropical depression,NA,30,1007,0,0 +Gaston,2010,9,2,12,13.3,-38.8,tropical depression,NA,30,1008,0,0 +Gaston,2010,9,2,18,13.5,-39.5,other low,NA,25,1009,0,0 +Gaston,2010,9,3,0,13.8,-40.1,other low,NA,25,1009,0,0 +Gaston,2010,9,3,6,14.1,-40.6,other low,NA,25,1009,0,0 +Gaston,2010,9,3,12,14.5,-41.3,other low,NA,25,1009,0,0 +Gaston,2010,9,3,18,15,-42,other low,NA,25,1008,0,0 +Gaston,2010,9,4,0,15.4,-43,other low,NA,25,1008,0,0 +Gaston,2010,9,4,6,15.9,-44.2,other low,NA,30,1008,0,0 +Gaston,2010,9,4,12,16.3,-45.5,other low,NA,30,1008,0,0 +Gaston,2010,9,4,18,16.5,-46.6,other low,NA,30,1008,0,0 +Gaston,2010,9,5,0,16.7,-47.7,other low,NA,25,1009,0,0 +Gaston,2010,9,5,6,16.8,-48.8,other low,NA,25,1009,0,0 +Gaston,2010,9,5,12,16.9,-50,other low,NA,30,1008,0,0 +Gaston,2010,9,5,18,17,-51.2,other low,NA,30,1008,0,0 +Gaston,2010,9,6,0,17.1,-52.6,other low,NA,30,1008,0,0 +Gaston,2010,9,6,6,17.3,-54,other low,NA,30,1009,0,0 +Gaston,2010,9,6,12,17.4,-55.5,other low,NA,30,1009,0,0 +Gaston,2010,9,6,18,17.5,-57.2,other low,NA,25,1010,0,0 +Gaston,2010,9,7,0,17.4,-59,other low,NA,25,1010,0,0 +Gaston,2010,9,7,6,17.1,-60.8,other low,NA,25,1010,0,0 +Gaston,2010,9,7,12,16.8,-62.7,other low,NA,25,1010,0,0 +Gaston,2010,9,7,18,16.8,-64.6,other low,NA,25,1010,0,0 +Gaston,2010,9,8,0,17,-66.3,other low,NA,25,1010,0,0 +Gaston,2010,9,8,6,17.4,-67.7,other low,NA,25,1010,0,0 +Hermine,2010,9,4,18,17.5,-95.6,other low,NA,20,1006,0,0 +Hermine,2010,9,5,0,18.3,-95.6,other low,NA,20,1006,0,0 +Hermine,2010,9,5,6,19,-95.6,other low,NA,20,1006,0,0 +Hermine,2010,9,5,12,19.5,-95.6,other low,NA,20,1006,0,0 +Hermine,2010,9,5,18,20,-95.5,tropical depression,NA,25,1004,0,0 +Hermine,2010,9,6,0,20.7,-95,tropical depression,NA,30,1002,0,0 +Hermine,2010,9,6,6,21.8,-95.1,tropical storm,NA,40,1001,90,0 +Hermine,2010,9,6,12,23,-95.6,tropical storm,NA,45,998,120,0 +Hermine,2010,9,6,18,24,-96.5,tropical storm,NA,50,995,120,0 +Hermine,2010,9,7,0,24.9,-97.2,tropical storm,NA,55,991,110,0 +Hermine,2010,9,7,2,25.3,-97.4,tropical storm,NA,60,989,110,0 +Hermine,2010,9,7,6,26.2,-97.7,tropical storm,NA,55,990,110,0 +Hermine,2010,9,7,12,27.7,-98.1,tropical storm,NA,45,991,90,0 +Hermine,2010,9,7,18,29.4,-98.6,tropical storm,NA,40,996,40,0 +Hermine,2010,9,8,0,30.6,-99.1,tropical depression,NA,30,1003,0,0 +Hermine,2010,9,8,6,31.6,-99.5,tropical depression,NA,25,1004,0,0 +Hermine,2010,9,8,12,32.7,-99.5,tropical depression,NA,20,1005,0,0 +Hermine,2010,9,8,18,33.7,-98.7,tropical depression,NA,20,1005,0,0 +Hermine,2010,9,9,0,34.7,-97.9,tropical depression,NA,20,1005,0,0 +Hermine,2010,9,9,6,35.5,-97.2,tropical depression,NA,20,1005,0,0 +Hermine,2010,9,9,12,36.3,-96.4,tropical depression,NA,20,1005,0,0 +Hermine,2010,9,9,18,37,-95.5,other low,NA,20,1005,0,0 +Hermine,2010,9,10,0,37.5,-95,other low,NA,20,1005,0,0 +Igor,2010,9,8,6,14,-22.7,tropical depression,NA,30,1006,0,0 +Igor,2010,9,8,12,13.8,-23.3,tropical storm,NA,40,1005,75,0 +Igor,2010,9,8,18,13.8,-23.7,tropical storm,NA,40,1005,75,0 +Igor,2010,9,9,0,13.8,-24.1,tropical storm,NA,40,1005,75,0 +Igor,2010,9,9,6,13.9,-24.8,tropical storm,NA,35,1005,75,0 +Igor,2010,9,9,12,14.2,-25.5,tropical depression,NA,30,1006,0,0 +Igor,2010,9,9,18,14.7,-26.4,tropical depression,NA,30,1006,0,0 +Igor,2010,9,10,0,15.4,-27.5,tropical depression,NA,30,1004,0,0 +Igor,2010,9,10,6,15.9,-28.7,tropical depression,NA,30,1004,0,0 +Igor,2010,9,10,12,16.3,-30.4,tropical storm,NA,35,1004,30,0 +Igor,2010,9,10,18,16.6,-32.5,tropical storm,NA,40,1002,40,0 +Igor,2010,9,11,0,16.9,-34.8,tropical storm,NA,50,999,40,0 +Igor,2010,9,11,6,17.1,-37,tropical storm,NA,60,995,80,0 +Igor,2010,9,11,12,17.3,-38.7,tropical storm,NA,60,995,160,0 +Igor,2010,9,11,18,17.4,-40.4,tropical storm,NA,60,995,160,0 +Igor,2010,9,12,0,17.6,-42,hurricane,1,65,987,160,15 +Igor,2010,9,12,6,17.7,-43.5,hurricane,1,70,985,160,15 +Igor,2010,9,12,12,17.7,-44.9,hurricane,2,90,970,200,45 +Igor,2010,9,12,18,17.7,-46.1,hurricane,4,115,948,240,60 +Igor,2010,9,13,0,17.7,-47.3,hurricane,4,130,935,240,60 +Igor,2010,9,13,6,17.6,-48.3,hurricane,4,130,935,270,60 +Igor,2010,9,13,12,17.6,-49.3,hurricane,4,130,933,270,75 +Igor,2010,9,13,18,17.6,-50.2,hurricane,4,125,937,290,75 +Igor,2010,9,14,0,17.7,-50.9,hurricane,4,125,937,290,75 +Igor,2010,9,14,6,17.9,-51.5,hurricane,4,115,945,290,75 +Igor,2010,9,14,12,18.2,-52.1,hurricane,4,115,945,290,75 +Igor,2010,9,14,18,18.6,-52.8,hurricane,4,125,933,340,75 +Igor,2010,9,15,0,18.9,-53.5,hurricane,4,135,924,340,75 +Igor,2010,9,15,6,19.2,-54.1,hurricane,4,125,935,340,75 +Igor,2010,9,15,12,19.5,-54.7,hurricane,4,115,945,340,75 +Igor,2010,9,15,18,19.8,-55.3,hurricane,4,115,942,350,90 +Igor,2010,9,16,0,20.1,-56,hurricane,4,120,936,420,105 +Igor,2010,9,16,6,20.4,-56.5,hurricane,4,125,929,420,105 +Igor,2010,9,16,12,20.8,-57.1,hurricane,4,120,934,420,105 +Igor,2010,9,16,18,21.4,-57.8,hurricane,4,115,940,435,135 +Igor,2010,9,17,0,21.8,-58.4,hurricane,4,115,935,435,135 +Igor,2010,9,17,6,22.2,-59.1,hurricane,3,110,935,450,135 +Igor,2010,9,17,12,22.8,-59.9,hurricane,3,100,945,450,135 +Igor,2010,9,17,18,23.5,-60.7,hurricane,2,90,947,500,135 +Igor,2010,9,18,0,24.2,-61.6,hurricane,2,90,947,500,135 +Igor,2010,9,18,6,24.9,-62.5,hurricane,2,85,939,500,135 +Igor,2010,9,18,12,25.7,-63.3,hurricane,2,85,939,500,135 +Igor,2010,9,18,18,26.6,-64,hurricane,1,80,945,500,125 +Igor,2010,9,19,0,27.5,-64.6,hurricane,1,80,945,500,125 +Igor,2010,9,19,6,28.4,-65.2,hurricane,1,75,949,500,135 +Igor,2010,9,19,12,29.6,-65.6,hurricane,1,75,949,550,135 +Igor,2010,9,19,18,30.8,-65.9,hurricane,1,70,952,550,135 +Igor,2010,9,20,0,31.9,-65.7,hurricane,1,65,953,550,150 +Igor,2010,9,20,6,33.2,-65.2,hurricane,1,65,957,600,150 +Igor,2010,9,20,12,35.1,-64.2,hurricane,1,65,960,600,150 +Igor,2010,9,20,18,37.2,-62.6,hurricane,1,65,960,600,135 +Igor,2010,9,21,0,39,-60.4,hurricane,1,65,960,700,135 +Igor,2010,9,21,6,41.5,-57,hurricane,1,65,960,700,135 +Igor,2010,9,21,12,44.8,-54.4,hurricane,1,65,955,750,135 +Igor,2010,9,21,15,46.6,-53.2,hurricane,1,75,950,750,135 +Igor,2010,9,21,18,48.5,-52.1,extratropical,NA,75,950,800,150 +Igor,2010,9,22,0,51.5,-50.5,extratropical,NA,75,950,800,150 +Igor,2010,9,22,6,53.5,-49.5,extratropical,NA,70,950,800,150 +Igor,2010,9,22,12,55.5,-49.4,extratropical,NA,70,950,800,150 +Igor,2010,9,22,18,57,-50,extratropical,NA,65,955,800,150 +Igor,2010,9,23,0,58.5,-51,extratropical,NA,60,960,800,0 +Julia,2010,9,12,6,12.9,-20.5,tropical depression,NA,30,1007,0,0 +Julia,2010,9,12,12,13,-21.3,tropical depression,NA,30,1006,0,0 +Julia,2010,9,12,18,13.1,-22.1,tropical storm,NA,35,1005,105,0 +Julia,2010,9,13,0,13.5,-23.1,tropical storm,NA,40,1004,105,0 +Julia,2010,9,13,6,14,-24.2,tropical storm,NA,40,1004,105,0 +Julia,2010,9,13,12,14.5,-25.4,tropical storm,NA,40,1004,105,0 +Julia,2010,9,13,18,15,-26.5,tropical storm,NA,45,1003,105,0 +Julia,2010,9,14,0,15.3,-27.5,tropical storm,NA,45,1002,105,0 +Julia,2010,9,14,6,15.6,-28.4,tropical storm,NA,60,994,105,0 +Julia,2010,9,14,12,15.9,-29.2,hurricane,1,70,987,120,40 +Julia,2010,9,14,18,16.1,-29.9,hurricane,1,80,979,135,40 +Julia,2010,9,15,0,16.4,-30.6,hurricane,2,90,973,150,40 +Julia,2010,9,15,6,16.9,-31.4,hurricane,3,110,956,165,50 +Julia,2010,9,15,12,17.7,-32.2,hurricane,4,120,948,180,50 +Julia,2010,9,15,18,18.8,-33,hurricane,4,115,951,195,50 +Julia,2010,9,16,0,19.9,-34.1,hurricane,3,105,958,195,50 +Julia,2010,9,16,6,20.9,-35.8,hurricane,3,100,962,225,50 +Julia,2010,9,16,12,21.8,-37.7,hurricane,2,90,970,225,50 +Julia,2010,9,16,18,22.7,-40,hurricane,1,80,977,225,50 +Julia,2010,9,17,0,23.1,-42,hurricane,1,75,981,210,50 +Julia,2010,9,17,6,23.5,-44,hurricane,1,75,981,210,50 +Julia,2010,9,17,12,23.9,-45.8,hurricane,1,70,983,210,50 +Julia,2010,9,17,18,24.6,-47.4,hurricane,1,65,986,210,50 +Julia,2010,9,18,0,25.6,-48.7,tropical storm,NA,60,988,225,0 +Julia,2010,9,18,6,26.9,-49.8,tropical storm,NA,55,991,240,0 +Julia,2010,9,18,12,28.3,-50.7,tropical storm,NA,50,994,255,0 +Julia,2010,9,18,18,29.8,-51.4,tropical storm,NA,50,993,270,0 +Julia,2010,9,19,0,31.4,-51.8,tropical storm,NA,55,989,285,0 +Julia,2010,9,19,6,32.8,-52,tropical storm,NA,50,993,285,0 +Julia,2010,9,19,12,33.9,-51.4,tropical storm,NA,45,995,285,0 +Julia,2010,9,19,18,34.6,-50.2,tropical storm,NA,45,995,300,0 +Julia,2010,9,20,0,34.9,-49.2,tropical storm,NA,45,995,315,0 +Julia,2010,9,20,6,34.9,-48,tropical storm,NA,40,997,300,0 +Julia,2010,9,20,12,34.7,-46.9,tropical storm,NA,40,999,300,0 +Julia,2010,9,20,18,34.6,-46,other low,NA,40,1002,270,0 +Julia,2010,9,21,0,34.4,-45.1,other low,NA,40,1003,240,0 +Julia,2010,9,21,6,34.4,-44.1,other low,NA,35,1004,195,0 +Julia,2010,9,21,12,34.5,-43,other low,NA,35,1005,90,0 +Julia,2010,9,21,18,34.5,-41.9,other low,NA,30,1006,0,0 +Julia,2010,9,22,0,34.3,-40.9,other low,NA,30,1007,0,0 +Julia,2010,9,22,6,33.9,-39.9,other low,NA,30,1007,0,0 +Julia,2010,9,22,12,33.6,-38.8,other low,NA,30,1007,0,0 +Julia,2010,9,22,18,33.2,-38,other low,NA,30,1008,0,0 +Julia,2010,9,23,0,33,-37.8,other low,NA,30,1008,0,0 +Julia,2010,9,23,6,32.7,-37.7,other low,NA,30,1009,0,0 +Julia,2010,9,23,12,32.4,-37.8,other low,NA,30,1009,0,0 +Julia,2010,9,23,18,32,-38.6,other low,NA,30,1010,0,0 +Julia,2010,9,24,0,31.5,-40,other low,NA,30,1010,0,0 +Julia,2010,9,24,6,31.2,-41.6,other low,NA,30,1011,0,0 +Julia,2010,9,24,12,30.9,-43.1,other low,NA,30,1011,0,0 +Julia,2010,9,24,18,30.6,-44.3,other low,NA,30,1012,0,0 +Karl,2010,9,13,18,16.3,-78.5,other low,NA,25,1005,0,0 +Karl,2010,9,14,0,16.6,-79.8,other low,NA,25,1004,0,0 +Karl,2010,9,14,6,17,-81.1,other low,NA,25,1003,0,0 +Karl,2010,9,14,12,17.6,-82.3,tropical depression,NA,30,1003,0,0 +Karl,2010,9,14,18,18.1,-83.6,tropical storm,NA,35,1001,10,0 +Karl,2010,9,15,0,18.3,-85,tropical storm,NA,40,999,30,0 +Karl,2010,9,15,6,18.3,-86.2,tropical storm,NA,55,997,70,0 +Karl,2010,9,15,12,18.5,-87.6,tropical storm,NA,55,991,75,0 +Karl,2010,9,15,12,18.5,-87.8,tropical storm,NA,55,991,75,0 +Karl,2010,9,15,18,18.8,-88.8,tropical storm,NA,45,994,55,0 +Karl,2010,9,16,0,19.2,-90.1,tropical storm,NA,40,997,50,0 +Karl,2010,9,16,6,19.4,-91.1,tropical storm,NA,45,994,75,0 +Karl,2010,9,16,12,19.6,-92.2,tropical storm,NA,55,986,105,0 +Karl,2010,9,16,18,19.6,-93.3,hurricane,1,70,982,110,10 +Karl,2010,9,17,0,19.7,-94.1,hurricane,2,85,971,140,15 +Karl,2010,9,17,6,19.7,-94.9,hurricane,2,95,966,160,35 +Karl,2010,9,17,12,19.6,-95.6,hurricane,3,110,956,150,35 +Karl,2010,9,17,15,19.4,-96,hurricane,3,110,970,150,35 +Karl,2010,9,17,16,19.3,-96.2,hurricane,3,100,976,150,35 +Karl,2010,9,17,18,19.2,-96.4,hurricane,2,90,979,150,35 +Karl,2010,9,18,0,18.7,-97.1,tropical storm,NA,60,995,60,0 +Karl,2010,9,18,6,18.6,-97.4,tropical depression,NA,25,1005,0,0 +Lisa,2010,9,20,0,15.2,-32,other low,NA,25,1008,0,0 +Lisa,2010,9,20,6,15.5,-32.1,other low,NA,25,1007,0,0 +Lisa,2010,9,20,12,15.9,-32.1,other low,NA,25,1007,0,0 +Lisa,2010,9,20,18,16.3,-32,tropical depression,NA,30,1006,0,0 +Lisa,2010,9,21,0,16.8,-31.9,tropical storm,NA,35,1005,55,0 +Lisa,2010,9,21,6,17.3,-31.8,tropical storm,NA,40,1003,55,0 +Lisa,2010,9,21,12,17.7,-31.7,tropical storm,NA,40,1002,60,0 +Lisa,2010,9,21,18,17.8,-31.5,tropical storm,NA,40,1002,70,0 +Lisa,2010,9,22,0,17.6,-31.3,tropical storm,NA,35,1003,80,0 +Lisa,2010,9,22,6,17.3,-30.9,tropical storm,NA,35,1003,80,0 +Lisa,2010,9,22,12,17.3,-30.4,tropical storm,NA,35,1003,80,0 +Lisa,2010,9,22,18,17.4,-30,tropical depression,NA,30,1005,0,0 +Lisa,2010,9,23,0,17.5,-29.7,tropical depression,NA,30,1005,0,0 +Lisa,2010,9,23,6,17.5,-29.3,tropical depression,NA,30,1005,0,0 +Lisa,2010,9,23,12,17.5,-28.8,tropical storm,NA,35,1004,80,0 +Lisa,2010,9,23,18,17.6,-28.3,tropical storm,NA,35,1003,80,0 +Lisa,2010,9,24,0,17.9,-28,tropical storm,NA,35,1002,80,0 +Lisa,2010,9,24,6,18.3,-27.7,tropical storm,NA,40,1001,80,0 +Lisa,2010,9,24,12,19,-27.6,tropical storm,NA,50,998,80,0 +Lisa,2010,9,24,18,19.7,-27.7,tropical storm,NA,60,993,80,0 +Lisa,2010,9,24,21,20,-27.7,hurricane,1,65,988,80,20 +Lisa,2010,9,25,0,20.4,-27.8,hurricane,1,75,982,80,20 +Lisa,2010,9,25,6,21.3,-28,hurricane,1,70,986,80,20 +Lisa,2010,9,25,12,22.3,-28.3,tropical storm,NA,60,990,80,0 +Lisa,2010,9,25,18,23.2,-28.6,tropical storm,NA,50,996,80,0 +Lisa,2010,9,26,0,24,-28.8,tropical storm,NA,40,1002,80,0 +Lisa,2010,9,26,6,24.8,-28.9,tropical storm,NA,35,1004,80,0 +Lisa,2010,9,26,12,25.3,-29,tropical depression,NA,30,1006,0,0 +Lisa,2010,9,26,18,25.8,-29.2,other low,NA,30,1007,0,0 +Lisa,2010,9,27,0,26.3,-29.6,other low,NA,30,1008,0,0 +Lisa,2010,9,27,6,26.8,-30.1,other low,NA,30,1009,0,0 +Lisa,2010,9,27,12,27.4,-30.6,other low,NA,30,1011,0,0 +Lisa,2010,9,27,18,28,-31.1,other low,NA,30,1013,0,0 +Lisa,2010,9,28,0,28.6,-31.5,other low,NA,30,1013,0,0 +Lisa,2010,9,28,6,29.1,-31.7,other low,NA,30,1015,0,0 +Lisa,2010,9,28,12,29.5,-31.7,other low,NA,30,1015,0,0 +Lisa,2010,9,28,18,29.9,-31.6,other low,NA,25,1016,0,0 +Lisa,2010,9,29,0,30.2,-31.5,other low,NA,25,1016,0,0 +Matthew,2010,9,23,12,13.7,-74.8,tropical depression,NA,30,1008,0,0 +Matthew,2010,9,23,18,13.9,-76.2,tropical storm,NA,35,1007,90,0 +Matthew,2010,9,24,0,14,-77.7,tropical storm,NA,40,1005,75,0 +Matthew,2010,9,24,6,14,-79.3,tropical storm,NA,45,1003,75,0 +Matthew,2010,9,24,12,14.2,-81.1,tropical storm,NA,45,1001,105,0 +Matthew,2010,9,24,18,14.6,-83,tropical storm,NA,50,998,150,0 +Matthew,2010,9,24,19,14.7,-83.3,tropical storm,NA,50,998,150,0 +Matthew,2010,9,25,0,15.2,-84.6,tropical storm,NA,50,998,195,0 +Matthew,2010,9,25,6,15.8,-86.1,tropical storm,NA,45,998,150,0 +Matthew,2010,9,25,12,16.3,-87.7,tropical storm,NA,35,1000,120,0 +Matthew,2010,9,25,15,16.5,-88.4,tropical storm,NA,35,1000,120,0 +Matthew,2010,9,25,18,16.7,-89.4,tropical depression,NA,30,1000,0,0 +Matthew,2010,9,26,0,17,-90.8,tropical depression,NA,30,1001,0,0 +Matthew,2010,9,26,6,17.3,-91.9,tropical depression,NA,25,1002,0,0 +Matthew,2010,9,26,12,17.5,-92.8,other low,NA,20,1002,0,0 +Matthew,2010,9,26,18,17.2,-93.3,other low,NA,20,1003,0,0 +Nicole,2010,9,28,0,19.4,-84.1,other low,NA,25,1003,0,0 +Nicole,2010,9,28,6,19.8,-83.5,other low,NA,30,1003,0,0 +Nicole,2010,9,28,12,20.4,-83,tropical storm,NA,35,1001,300,0 +Nicole,2010,9,28,18,21,-82.7,tropical storm,NA,40,999,300,0 +Nicole,2010,9,29,0,21.4,-82.2,tropical storm,NA,35,997,300,0 +Nicole,2010,9,29,6,21.7,-81.6,tropical storm,NA,35,996,300,0 +Nicole,2010,9,29,12,21.9,-81,tropical storm,NA,40,995,300,0 +Nicole,2010,9,29,15,22.2,-80.5,other low,NA,40,995,300,0 +Nicole,2010,9,29,18,23.3,-80.1,other low,NA,40,994,300,0 +Nicole,2010,9,30,0,24.7,-79.6,other low,NA,40,994,300,0 +Nicole,2010,9,30,6,26.1,-79,extratropical,NA,40,995,300,0 +Nicole,2010,9,30,12,27.4,-78.5,extratropical,NA,40,996,300,0 +Otto,2010,10,6,6,22,-67.2,subtropical depression,NA,30,1000,0,0 +Otto,2010,10,6,12,22.6,-67.8,subtropical storm,NA,40,995,180,0 +Otto,2010,10,6,18,23,-68.1,subtropical storm,NA,50,991,180,0 +Otto,2010,10,7,0,23.2,-68.2,subtropical storm,NA,55,989,180,0 +Otto,2010,10,7,6,23.4,-68.3,subtropical storm,NA,50,990,180,0 +Otto,2010,10,7,12,23.6,-68.3,tropical storm,NA,45,994,180,0 +Otto,2010,10,7,18,23.8,-67.8,tropical storm,NA,50,992,180,0 +Otto,2010,10,8,0,24,-67,tropical storm,NA,55,989,210,0 +Otto,2010,10,8,6,24.4,-66.1,tropical storm,NA,60,986,210,0 +Otto,2010,10,8,12,25.2,-64.8,hurricane,1,65,983,230,35 +Otto,2010,10,8,18,26.2,-63.3,hurricane,1,70,980,230,35 +Otto,2010,10,9,0,27.2,-61.7,hurricane,1,75,976,260,35 +Otto,2010,10,9,6,28.5,-59.7,hurricane,1,75,978,260,40 +Otto,2010,10,9,12,30,-57.3,hurricane,1,70,981,260,40 +Otto,2010,10,9,18,31.4,-54.3,hurricane,1,65,985,260,40 +Otto,2010,10,10,0,32.7,-50.9,tropical storm,NA,60,988,260,0 +Otto,2010,10,10,6,34.3,-47,extratropical,NA,55,988,300,0 +Otto,2010,10,10,12,36.4,-42.6,extratropical,NA,55,988,300,0 +Otto,2010,10,10,18,38.2,-38.1,extratropical,NA,55,988,320,0 +Otto,2010,10,11,0,40.3,-33.8,extratropical,NA,50,992,360,0 +Otto,2010,10,11,6,42,-30.8,extratropical,NA,45,995,390,0 +Otto,2010,10,11,12,43.1,-28.1,extratropical,NA,40,998,390,0 +Otto,2010,10,11,18,43.5,-26.3,extratropical,NA,40,998,390,0 +Otto,2010,10,12,0,43.4,-25.3,extratropical,NA,35,1002,300,0 +Otto,2010,10,12,6,42.4,-24.6,extratropical,NA,35,1004,250,0 +Otto,2010,10,12,12,41.4,-24,extratropical,NA,35,1004,100,0 +Otto,2010,10,12,18,40.3,-23.5,extratropical,NA,35,1006,100,0 +Otto,2010,10,13,0,39.3,-23,extratropical,NA,35,1004,100,0 +Otto,2010,10,13,6,38.4,-22.7,extratropical,NA,35,1004,100,0 +Otto,2010,10,13,12,37.6,-22.6,extratropical,NA,35,1004,100,0 +Otto,2010,10,13,18,36.7,-22.4,extratropical,NA,35,1004,100,0 +Otto,2010,10,14,0,35.8,-22.2,extratropical,NA,35,1004,100,0 +Otto,2010,10,14,6,35,-22,other low,NA,30,1005,0,0 +Otto,2010,10,14,12,34.4,-21.4,other low,NA,30,1005,0,0 +Otto,2010,10,14,18,34,-20.6,other low,NA,30,1005,0,0 +Otto,2010,10,15,0,33.8,-19.9,other low,NA,30,1006,0,0 +Otto,2010,10,15,6,33.6,-19.2,other low,NA,30,1006,0,0 +Otto,2010,10,15,12,33.4,-18.5,other low,NA,30,1006,0,0 +Otto,2010,10,15,18,33.2,-17.8,other low,NA,30,1006,0,0 +Otto,2010,10,16,0,33,-17.1,other low,NA,25,1006,0,0 +Otto,2010,10,16,6,32.8,-16.5,other low,NA,25,1006,0,0 +Otto,2010,10,16,12,32.6,-15.9,other low,NA,25,1007,0,0 +Otto,2010,10,16,18,32.4,-15.3,other low,NA,25,1007,0,0 +Otto,2010,10,17,0,32.3,-14.7,other low,NA,25,1008,0,0 +Otto,2010,10,17,6,32.1,-14.5,other low,NA,25,1010,0,0 +Otto,2010,10,17,12,31.9,-14.6,other low,NA,20,1010,0,0 +Otto,2010,10,17,18,31.7,-14.7,other low,NA,20,1012,0,0 +Paula,2010,10,11,0,13.9,-81.8,tropical depression,NA,30,1006,0,0 +Paula,2010,10,11,6,14.4,-82.5,tropical storm,NA,35,1005,60,0 +Paula,2010,10,11,12,15,-83.2,tropical storm,NA,45,1004,75,0 +Paula,2010,10,11,18,15.7,-83.8,tropical storm,NA,60,1001,90,0 +Paula,2010,10,12,0,16.5,-84.4,hurricane,1,65,996,90,20 +Paula,2010,10,12,6,17.3,-85,hurricane,1,65,991,90,20 +Paula,2010,10,12,12,18.1,-85.6,hurricane,1,75,986,90,20 +Paula,2010,10,12,18,18.8,-85.9,hurricane,2,90,981,95,35 +Paula,2010,10,13,0,19.6,-86,hurricane,2,90,981,95,35 +Paula,2010,10,13,6,20.3,-86,hurricane,2,85,984,95,25 +Paula,2010,10,13,12,20.9,-85.9,hurricane,2,85,987,95,25 +Paula,2010,10,13,18,21.4,-85.8,hurricane,1,75,990,90,20 +Paula,2010,10,14,0,21.8,-85.6,hurricane,1,75,993,90,20 +Paula,2010,10,14,6,22.2,-85.2,hurricane,1,70,995,90,20 +Paula,2010,10,14,12,22.6,-84.5,tropical storm,NA,60,999,90,0 +Paula,2010,10,14,15,22.7,-83.9,tropical storm,NA,55,1000,90,0 +Paula,2010,10,14,18,22.8,-83.5,tropical storm,NA,50,1001,90,0 +Paula,2010,10,15,0,22.9,-82,tropical storm,NA,40,1004,80,0 +Paula,2010,10,15,6,22.9,-80.9,tropical depression,NA,30,1008,0,0 +Paula,2010,10,15,12,22.9,-79.9,other low,NA,25,1009,0,0 +Paula,2010,10,15,18,23,-79.1,other low,NA,20,1009,0,0 +Richard,2010,10,19,18,17.2,-83.4,other low,NA,30,1008,0,0 +Richard,2010,10,20,0,17.7,-83.2,other low,NA,30,1008,0,0 +Richard,2010,10,20,6,17.8,-82.8,tropical depression,NA,30,1008,0,0 +Richard,2010,10,20,12,17.8,-82.3,tropical depression,NA,30,1008,0,0 +Richard,2010,10,20,18,17.6,-81.8,tropical depression,NA,30,1008,0,0 +Richard,2010,10,21,0,17.3,-81.3,tropical depression,NA,30,1007,0,0 +Richard,2010,10,21,6,17,-80.9,tropical depression,NA,30,1007,0,0 +Richard,2010,10,21,12,16.7,-80.6,tropical storm,NA,35,1006,90,0 +Richard,2010,10,21,18,16.3,-80.4,tropical storm,NA,35,1006,90,0 +Richard,2010,10,22,0,16,-80.5,tropical storm,NA,35,1007,90,0 +Richard,2010,10,22,6,15.9,-80.7,tropical storm,NA,35,1005,90,0 +Richard,2010,10,22,12,15.8,-81,tropical storm,NA,35,1006,90,0 +Richard,2010,10,22,18,15.8,-81.5,tropical storm,NA,40,1006,75,0 +Richard,2010,10,23,0,15.8,-82.1,tropical storm,NA,40,1006,75,0 +Richard,2010,10,23,6,15.8,-82.6,tropical storm,NA,45,1004,75,0 +Richard,2010,10,23,12,15.9,-83.1,tropical storm,NA,50,1000,120,0 +Richard,2010,10,23,18,16,-83.6,tropical storm,NA,55,998,120,0 +Richard,2010,10,24,0,16.2,-84.3,tropical storm,NA,60,995,130,0 +Richard,2010,10,24,6,16.5,-85.2,hurricane,1,65,992,130,10 +Richard,2010,10,24,12,16.8,-86.3,hurricane,1,75,990,140,25 +Richard,2010,10,24,18,17,-87.3,hurricane,1,80,984,140,25 +Richard,2010,10,25,0,17.2,-88.2,hurricane,2,85,977,140,25 +Richard,2010,10,25,0,17.2,-88.3,hurricane,2,85,977,140,25 +Richard,2010,10,25,6,17.4,-89.2,hurricane,1,65,988,110,15 +Richard,2010,10,25,12,17.7,-90,tropical storm,NA,40,997,110,0 +Richard,2010,10,25,18,18,-90.8,tropical depression,NA,30,1000,0,0 +Richard,2010,10,26,0,18.4,-91.5,other low,NA,25,1002,0,0 +Richard,2010,10,26,6,19.1,-92.3,other low,NA,25,1004,0,0 +Richard,2010,10,26,12,20.1,-92.9,other low,NA,20,1004,0,0 +Shary,2010,10,28,18,25.6,-61.2,tropical depression,NA,30,1006,0,0 +Shary,2010,10,29,0,26.8,-63,tropical storm,NA,35,1004,135,0 +Shary,2010,10,29,6,28.1,-64.6,tropical storm,NA,40,1002,135,0 +Shary,2010,10,29,12,29.3,-65.9,tropical storm,NA,50,998,135,0 +Shary,2010,10,29,18,30.2,-65.8,tropical storm,NA,55,993,135,0 +Shary,2010,10,30,0,31.3,-64,hurricane,1,65,990,130,10 +Shary,2010,10,30,6,32.9,-60.9,hurricane,1,65,989,150,10 +Shary,2010,10,30,12,35.1,-57.2,hurricane,1,65,991,150,10 +Shary,2010,10,30,18,37,-53.5,extratropical,NA,55,993,150,0 +Tomas,2010,10,29,6,9,-53.7,tropical depression,NA,30,1006,0,0 +Tomas,2010,10,29,12,9.8,-55.3,tropical storm,NA,35,1003,115,0 +Tomas,2010,10,29,18,10.8,-56.8,tropical storm,NA,45,998,140,0 +Tomas,2010,10,30,0,11.9,-57.8,tropical storm,NA,55,999,140,0 +Tomas,2010,10,30,6,12.7,-58.9,tropical storm,NA,60,997,140,0 +Tomas,2010,10,30,9,13,-59.5,tropical storm,NA,60,997,140,0 +Tomas,2010,10,30,12,13.1,-60.1,hurricane,1,65,993,170,20 +Tomas,2010,10,30,18,13.3,-61,hurricane,1,80,990,170,20 +Tomas,2010,10,30,20,13.4,-61.2,hurricane,2,85,987,170,20 +Tomas,2010,10,31,0,13.5,-61.7,hurricane,2,85,982,170,40 +Tomas,2010,10,31,6,13.8,-62.4,hurricane,2,85,983,170,40 +Tomas,2010,10,31,12,14,-63.3,hurricane,1,80,988,170,40 +Tomas,2010,10,31,18,14.2,-64.4,hurricane,1,65,994,170,15 +Tomas,2010,11,1,0,14.1,-65.8,tropical storm,NA,55,997,200,0 +Tomas,2010,11,1,6,13.9,-67.1,tropical storm,NA,45,1003,180,0 +Tomas,2010,11,1,12,13.6,-68.2,tropical storm,NA,40,1005,140,0 +Tomas,2010,11,1,18,13.5,-69.2,tropical storm,NA,40,1005,120,0 +Tomas,2010,11,2,0,13.5,-70.3,tropical storm,NA,40,1005,100,0 +Tomas,2010,11,2,6,13.5,-71.4,tropical storm,NA,45,1003,100,0 +Tomas,2010,11,2,12,13.5,-72.5,tropical storm,NA,40,1004,100,0 +Tomas,2010,11,2,18,13.6,-73.4,tropical storm,NA,35,1006,90,0 +Tomas,2010,11,3,0,13.8,-73.9,tropical depression,NA,30,1006,0,0 +Tomas,2010,11,3,6,14,-74.3,tropical depression,NA,30,1006,0,0 +Tomas,2010,11,3,12,14.3,-74.7,tropical depression,NA,30,1006,0,0 +Tomas,2010,11,3,18,14.7,-75.1,tropical storm,NA,35,1004,60,0 +Tomas,2010,11,4,0,15.1,-75.5,tropical storm,NA,40,1003,60,0 +Tomas,2010,11,4,6,15.5,-75.9,tropical storm,NA,40,998,75,0 +Tomas,2010,11,4,12,15.9,-76.2,tropical storm,NA,45,996,75,0 +Tomas,2010,11,4,18,16.4,-76.2,tropical storm,NA,50,995,100,0 +Tomas,2010,11,5,0,17,-75.7,tropical storm,NA,60,989,120,0 +Tomas,2010,11,5,6,17.7,-75.2,hurricane,1,70,985,150,15 +Tomas,2010,11,5,12,18.7,-74.7,hurricane,1,75,987,170,30 +Tomas,2010,11,5,18,19.7,-74,hurricane,1,70,992,170,15 +Tomas,2010,11,6,0,20.4,-73.1,tropical storm,NA,60,995,150,0 +Tomas,2010,11,6,6,21.4,-71.8,tropical storm,NA,60,992,150,0 +Tomas,2010,11,6,7,21.7,-71.6,tropical storm,NA,60,992,150,0 +Tomas,2010,11,6,12,22.6,-70.9,tropical storm,NA,60,990,150,0 +Tomas,2010,11,6,18,23.8,-70.3,hurricane,1,65,988,175,20 +Tomas,2010,11,7,0,24.9,-69.8,hurricane,1,70,987,175,20 +Tomas,2010,11,7,6,25.4,-69.6,hurricane,1,65,990,175,20 +Tomas,2010,11,7,12,25.7,-69.5,tropical storm,NA,60,992,225,0 +Tomas,2010,11,7,18,26,-69.3,tropical storm,NA,50,992,225,0 +Tomas,2010,11,8,0,26,-68.5,extratropical,NA,50,992,300,0 +Tomas,2010,11,8,6,25.8,-67.5,extratropical,NA,50,992,300,0 +Tomas,2010,11,8,12,25.6,-66.2,extratropical,NA,50,992,300,0 +Tomas,2010,11,8,18,25.8,-64.5,extratropical,NA,45,993,325,0 +Tomas,2010,11,9,0,26.5,-62.3,extratropical,NA,45,993,325,0 +Tomas,2010,11,9,6,27.9,-60.4,extratropical,NA,45,994,325,0 +Tomas,2010,11,9,12,29.4,-58.6,extratropical,NA,45,994,300,0 +Tomas,2010,11,9,18,31,-56.9,extratropical,NA,45,994,300,0 +Tomas,2010,11,10,0,33.3,-55.4,extratropical,NA,45,994,300,0 +Tomas,2010,11,10,6,36,-54,extratropical,NA,45,994,300,0 +Tomas,2010,11,10,12,39,-53.5,extratropical,NA,35,995,300,0 +Tomas,2010,11,10,18,42,-53.5,extratropical,NA,35,995,300,0 +Arlene,2011,6,28,6,19.9,-92.8,other low,NA,25,1007,0,0 +Arlene,2011,6,28,12,20.3,-93.1,other low,NA,30,1006,0,0 +Arlene,2011,6,28,18,20.7,-93.5,tropical storm,NA,35,1006,100,0 +Arlene,2011,6,29,0,21,-93.9,tropical storm,NA,35,1005,100,0 +Arlene,2011,6,29,6,21.2,-94.5,tropical storm,NA,35,1003,100,0 +Arlene,2011,6,29,12,21.3,-95.3,tropical storm,NA,45,1000,160,0 +Arlene,2011,6,29,18,21.4,-95.6,tropical storm,NA,50,998,190,0 +Arlene,2011,6,30,0,21.6,-96.1,tropical storm,NA,50,996,200,0 +Arlene,2011,6,30,6,21.6,-97,tropical storm,NA,55,994,200,0 +Arlene,2011,6,30,12,21.6,-97.3,tropical storm,NA,55,993,200,0 +Arlene,2011,6,30,13,21.6,-97.4,tropical storm,NA,55,993,200,0 +Arlene,2011,6,30,18,21.5,-98.1,tropical storm,NA,45,998,130,0 +Arlene,2011,7,1,0,21.1,-98.7,tropical depression,NA,30,1002,0,0 +Bret,2011,7,16,6,30.7,-79.7,other low,NA,20,1014,0,0 +Bret,2011,7,16,12,30.3,-79.4,other low,NA,20,1014,0,0 +Bret,2011,7,16,18,29.8,-79.1,other low,NA,20,1014,0,0 +Bret,2011,7,17,0,29.3,-78.8,other low,NA,20,1014,0,0 +Bret,2011,7,17,6,28.8,-78.5,other low,NA,20,1014,0,0 +Bret,2011,7,17,12,28.3,-78.3,other low,NA,25,1013,0,0 +Bret,2011,7,17,18,27.8,-78.2,tropical depression,NA,30,1011,0,0 +Bret,2011,7,18,0,27.5,-78.1,tropical storm,NA,35,1008,60,0 +Bret,2011,7,18,6,27.1,-78,tropical storm,NA,40,1001,70,0 +Bret,2011,7,18,12,27.4,-77.5,tropical storm,NA,45,999,80,0 +Bret,2011,7,18,18,27.8,-77.1,tropical storm,NA,60,995,90,0 +Bret,2011,7,19,0,28.4,-76.8,tropical storm,NA,60,996,90,0 +Bret,2011,7,19,6,29,-76.6,tropical storm,NA,50,999,80,0 +Bret,2011,7,19,12,29.5,-76.2,tropical storm,NA,45,999,80,0 +Bret,2011,7,19,18,30,-75.8,tropical storm,NA,45,999,85,0 +Bret,2011,7,20,0,30.5,-75.3,tropical storm,NA,45,1000,100,0 +Bret,2011,7,20,6,30.9,-74.7,tropical storm,NA,45,1001,105,0 +Bret,2011,7,20,12,31.4,-74.1,tropical storm,NA,45,1002,105,0 +Bret,2011,7,20,18,31.9,-73.4,tropical storm,NA,45,1005,105,0 +Bret,2011,7,21,0,32.4,-72.7,tropical storm,NA,45,1005,105,0 +Bret,2011,7,21,6,33,-72,tropical storm,NA,40,1005,100,0 +Bret,2011,7,21,12,33.5,-71.2,tropical storm,NA,35,1006,90,0 +Bret,2011,7,21,18,34.1,-70.1,tropical storm,NA,35,1007,80,0 +Bret,2011,7,22,0,35.1,-68.9,tropical depression,NA,30,1008,0,0 +Bret,2011,7,22,6,36.2,-67.4,tropical depression,NA,30,1008,0,0 +Bret,2011,7,22,12,37.3,-65.2,other low,NA,30,1009,0,0 +Bret,2011,7,22,18,38.3,-62.8,other low,NA,30,1009,0,0 +Bret,2011,7,23,0,39.2,-60.1,other low,NA,25,1010,0,0 +Bret,2011,7,23,6,39.8,-57,other low,NA,25,1010,0,0 +Cindy,2011,7,20,6,33,-59.5,tropical depression,NA,30,1010,0,0 +Cindy,2011,7,20,12,33.4,-57,tropical storm,NA,35,1008,120,0 +Cindy,2011,7,20,18,34.5,-54.7,tropical storm,NA,40,1006,120,0 +Cindy,2011,7,21,0,35.8,-52.5,tropical storm,NA,45,1003,120,0 +Cindy,2011,7,21,6,37.4,-50.5,tropical storm,NA,50,999,120,0 +Cindy,2011,7,21,12,39.4,-48.4,tropical storm,NA,55,996,120,0 +Cindy,2011,7,21,18,41.3,-46.1,tropical storm,NA,60,994,120,0 +Cindy,2011,7,22,0,42.6,-43.7,tropical storm,NA,55,995,135,0 +Cindy,2011,7,22,6,43.8,-41.2,tropical storm,NA,50,997,135,0 +Cindy,2011,7,22,12,45.1,-38.6,tropical storm,NA,45,999,135,0 +Cindy,2011,7,22,18,46.7,-35.6,tropical storm,NA,40,1001,130,0 +Cindy,2011,7,23,0,48.4,-32.1,other low,NA,40,1003,110,0 +Cindy,2011,7,23,6,50,-27.8,other low,NA,35,1005,110,0 +Don,2011,7,27,6,21.6,-85.7,tropical depression,NA,30,1007,0,0 +Don,2011,7,27,12,21.8,-86.2,tropical depression,NA,30,1006,0,0 +Don,2011,7,27,18,22,-86.7,tropical storm,NA,35,1003,40,0 +Don,2011,7,28,0,22.3,-87.4,tropical storm,NA,35,1000,40,0 +Don,2011,7,28,6,22.9,-88.4,tropical storm,NA,35,1000,60,0 +Don,2011,7,28,12,23.7,-89.5,tropical storm,NA,40,1001,60,0 +Don,2011,7,28,18,24.2,-90.7,tropical storm,NA,40,1004,60,0 +Don,2011,7,29,0,24.6,-91.9,tropical storm,NA,45,997,60,0 +Don,2011,7,29,6,25.1,-93.1,tropical storm,NA,45,1000,60,0 +Don,2011,7,29,12,25.8,-94.3,tropical storm,NA,45,1002,60,0 +Don,2011,7,29,18,26.4,-95.5,tropical storm,NA,45,1004,60,0 +Don,2011,7,30,0,27,-96.9,tropical storm,NA,35,1006,60,0 +Don,2011,7,30,2,27.3,-97.4,tropical depression,NA,30,1007,0,0 +Don,2011,7,30,6,27.8,-98.1,other low,NA,25,1009,0,0 +Emily,2011,8,2,0,14.9,-61.4,tropical storm,NA,40,1007,75,0 +Emily,2011,8,2,6,15.1,-62.5,tropical storm,NA,40,1007,75,0 +Emily,2011,8,2,12,15.4,-63.6,tropical storm,NA,40,1006,75,0 +Emily,2011,8,2,18,15.7,-64.8,tropical storm,NA,40,1005,75,0 +Emily,2011,8,3,0,16,-66.2,tropical storm,NA,45,1004,135,0 +Emily,2011,8,3,6,16.3,-67.7,tropical storm,NA,45,1003,135,0 +Emily,2011,8,3,12,16.6,-69.1,tropical storm,NA,45,1003,105,0 +Emily,2011,8,3,18,16.8,-70.3,tropical storm,NA,45,1003,105,0 +Emily,2011,8,4,0,16.9,-70.7,tropical storm,NA,45,1003,100,0 +Emily,2011,8,4,6,16.9,-71.3,tropical storm,NA,45,1004,100,0 +Emily,2011,8,4,12,17.3,-72.2,tropical storm,NA,45,1006,100,0 +Emily,2011,8,4,18,17.9,-73.4,tropical wave,NA,30,1009,0,0 +Emily,2011,8,5,0,18.8,-74.6,tropical wave,NA,25,1010,0,0 +Emily,2011,8,5,6,19.8,-75.5,tropical wave,NA,25,1011,0,0 +Emily,2011,8,5,12,21,-76.3,tropical wave,NA,25,1011,0,0 +Emily,2011,8,5,18,22.4,-76.9,tropical wave,NA,25,1012,0,0 +Emily,2011,8,6,0,23.6,-77.4,tropical wave,NA,25,1012,0,0 +Emily,2011,8,6,6,24.6,-77.9,tropical wave,NA,25,1012,0,0 +Emily,2011,8,6,12,25.6,-78.1,other low,NA,25,1011,0,0 +Emily,2011,8,6,18,26.4,-78.2,tropical depression,NA,30,1011,0,0 +Emily,2011,8,7,0,27.2,-78.1,tropical storm,NA,35,1010,60,0 +Emily,2011,8,7,6,28.4,-77.4,tropical storm,NA,35,1009,60,0 +Emily,2011,8,7,12,29.7,-76.4,other low,NA,30,1009,0,0 +Emily,2011,8,7,18,30.7,-74.8,other low,NA,30,1009,0,0 +Franklin,2011,8,12,12,34.7,-66,other low,NA,25,1011,0,0 +Franklin,2011,8,12,18,35.6,-64.7,tropical depression,NA,30,1009,0,0 +Franklin,2011,8,13,0,36.6,-63,tropical depression,NA,30,1008,0,0 +Franklin,2011,8,13,6,37.6,-61.1,tropical storm,NA,35,1006,60,0 +Franklin,2011,8,13,12,38.6,-59,tropical storm,NA,40,1004,60,0 +Franklin,2011,8,13,18,39.6,-56.3,extratropical,NA,40,1004,70,0 +Franklin,2011,8,14,0,40.2,-53.2,extratropical,NA,35,1005,70,0 +Franklin,2011,8,14,6,40.4,-49.9,extratropical,NA,35,1007,70,0 +Franklin,2011,8,14,12,40,-47,extratropical,NA,30,1009,0,0 +Franklin,2011,8,14,18,39.4,-44.6,extratropical,NA,30,1010,0,0 +Franklin,2011,8,15,0,38.8,-42.5,extratropical,NA,30,1011,0,0 +Franklin,2011,8,15,6,38.1,-40.8,extratropical,NA,25,1013,0,0 +Franklin,2011,8,15,12,37.3,-39.2,extratropical,NA,25,1014,0,0 +Franklin,2011,8,15,18,36.6,-38.2,extratropical,NA,25,1015,0,0 +Franklin,2011,8,16,0,35.6,-37.9,extratropical,NA,25,1016,0,0 +Gert,2011,8,13,6,26.2,-58,other low,NA,30,1013,0,0 +Gert,2011,8,13,12,26.9,-59.4,other low,NA,30,1012,0,0 +Gert,2011,8,13,18,27.3,-60.6,tropical depression,NA,30,1011,0,0 +Gert,2011,8,14,0,27.5,-61.5,tropical depression,NA,30,1011,0,0 +Gert,2011,8,14,6,27.7,-62.3,tropical storm,NA,35,1011,60,0 +Gert,2011,8,14,12,28.1,-62.9,tropical storm,NA,40,1010,60,0 +Gert,2011,8,14,18,28.8,-63.1,tropical storm,NA,40,1009,60,0 +Gert,2011,8,15,0,29.6,-63.3,tropical storm,NA,45,1006,60,0 +Gert,2011,8,15,6,30.6,-63.4,tropical storm,NA,50,1003,90,0 +Gert,2011,8,15,12,31.6,-63.2,tropical storm,NA,55,1000,105,0 +Gert,2011,8,15,18,32.9,-62.7,tropical storm,NA,50,1003,105,0 +Gert,2011,8,16,0,34.2,-61.6,tropical storm,NA,45,1005,90,0 +Gert,2011,8,16,6,35.6,-60.3,tropical storm,NA,45,1007,90,0 +Gert,2011,8,16,12,37.1,-58.1,other low,NA,40,1008,60,0 +Gert,2011,8,16,18,38.6,-55.8,other low,NA,40,1008,60,0 +Gert,2011,8,17,0,40.1,-53.4,other low,NA,35,1010,30,0 +Gert,2011,8,17,6,41.5,-50.9,other low,NA,30,1012,0,0 +Gert,2011,8,17,12,42.9,-48.3,other low,NA,30,1014,0,0 +Gert,2011,8,17,18,44.9,-44.8,other low,NA,30,1015,0,0 +Harvey,2011,8,19,0,15.4,-82,tropical depression,NA,30,1006,0,0 +Harvey,2011,8,19,6,15.7,-82.7,tropical depression,NA,30,1005,0,0 +Harvey,2011,8,19,12,15.9,-83.4,tropical storm,NA,35,1003,30,0 +Harvey,2011,8,19,18,16,-84.1,tropical storm,NA,40,1001,35,0 +Harvey,2011,8,20,0,16.1,-84.9,tropical storm,NA,45,995,35,0 +Harvey,2011,8,20,6,16.3,-85.8,tropical storm,NA,50,994,55,0 +Harvey,2011,8,20,12,16.6,-87,tropical storm,NA,50,998,60,0 +Harvey,2011,8,20,17,17,-88.3,tropical storm,NA,55,995,NA,NA +Harvey,2011,8,20,18,17,-88.3,tropical storm,NA,55,995,60,0 +Harvey,2011,8,21,0,17.3,-89.6,tropical storm,NA,35,1003,30,0 +Harvey,2011,8,21,6,17.6,-90.8,tropical depression,NA,30,1005,0,0 +Harvey,2011,8,21,12,18,-92,tropical depression,NA,30,1005,0,0 +Harvey,2011,8,21,18,18.5,-93.3,tropical depression,NA,30,1005,0,0 +Harvey,2011,8,22,0,18.7,-94.8,tropical storm,NA,35,1005,70,0 +Harvey,2011,8,22,2,18.7,-95.2,tropical storm,NA,35,1005,70,0 +Harvey,2011,8,22,6,18.6,-96.2,tropical depression,NA,25,1006,0,0 +Harvey,2011,8,22,12,18.1,-97.2,tropical depression,NA,20,1007,0,0 +Irene,2011,8,21,0,15,-59,tropical storm,NA,45,1006,105,0 +Irene,2011,8,21,6,16,-60.6,tropical storm,NA,45,1006,130,0 +Irene,2011,8,21,12,16.8,-62.2,tropical storm,NA,45,1005,130,0 +Irene,2011,8,21,18,17.5,-63.7,tropical storm,NA,50,999,130,0 +Irene,2011,8,21,23,17.8,-64.6,tropical storm,NA,60,993,NA,NA +Irene,2011,8,22,0,17.9,-65,tropical storm,NA,60,993,160,0 +Irene,2011,8,22,5,18.1,-65.8,tropical storm,NA,60,990,NA,NA +Irene,2011,8,22,6,18.2,-65.9,hurricane,1,65,990,190,25 +Irene,2011,8,22,12,18.9,-67,hurricane,1,70,989,220,25 +Irene,2011,8,22,18,19.3,-68,hurricane,1,75,988,200,25 +Irene,2011,8,23,0,19.7,-68.8,hurricane,1,80,981,210,35 +Irene,2011,8,23,6,20.1,-69.7,hurricane,1,80,978,270,65 +Irene,2011,8,23,12,20.4,-70.6,hurricane,1,80,978,270,65 +Irene,2011,8,23,18,20.7,-71.2,hurricane,1,80,977,270,65 +Irene,2011,8,24,0,21,-71.9,hurricane,1,80,969,300,65 +Irene,2011,8,24,6,21.3,-72.5,hurricane,2,95,965,300,65 +Irene,2011,8,24,12,21.9,-73.3,hurricane,3,105,957,300,80 +Irene,2011,8,24,16,22.4,-74,hurricane,3,100,955,NA,NA +Irene,2011,8,24,18,22.7,-74.3,hurricane,3,100,954,330,85 +Irene,2011,8,25,0,23.5,-75.1,hurricane,2,95,952,330,110 +Irene,2011,8,25,6,24.1,-75.9,hurricane,2,95,950,330,110 +Irene,2011,8,25,9,24.7,-76.2,hurricane,2,90,950,NA,NA +Irene,2011,8,25,12,25.4,-76.6,hurricane,2,90,950,360,110 +Irene,2011,8,25,18,26.5,-77.2,hurricane,2,90,950,375,110 +Irene,2011,8,26,0,27.7,-77.3,hurricane,2,90,946,375,110 +Irene,2011,8,26,6,28.8,-77.3,hurricane,2,90,942,380,130 +Irene,2011,8,26,12,30,-77.4,hurricane,2,85,947,380,130 +Irene,2011,8,26,18,31.1,-77.5,hurricane,1,80,950,400,130 +Irene,2011,8,27,0,32.1,-77.1,hurricane,1,75,952,365,120 +Irene,2011,8,27,6,33.4,-76.8,hurricane,1,75,952,365,120 +Irene,2011,8,27,12,34.7,-76.6,hurricane,1,75,952,375,120 +Irene,2011,8,27,18,35.5,-76.3,hurricane,1,65,950,360,110 +Irene,2011,8,28,0,36.7,-75.7,hurricane,1,65,951,360,75 +Irene,2011,8,28,6,38.1,-75,hurricane,1,65,958,390,75 +Irene,2011,8,28,9,39.4,-74.4,tropical storm,NA,60,959,390,0 +Irene,2011,8,28,12,40.3,-74.1,tropical storm,NA,55,963,360,0 +Irene,2011,8,28,13,40.6,-74,tropical storm,NA,55,965,360,0 +Irene,2011,8,28,18,42.5,-73.1,tropical storm,NA,50,970,410,0 +Irene,2011,8,29,0,44.2,-72.1,extratropical,NA,45,979,480,0 +Irene,2011,8,29,6,46.5,-69.5,extratropical,NA,40,983,720,0 +Irene,2011,8,29,12,49.1,-66.7,extratropical,NA,40,985,660,0 +Irene,2011,8,29,18,51.3,-63.8,extratropical,NA,40,987,360,0 +Irene,2011,8,30,0,53,-60,extratropical,NA,40,991,270,0 +Ten,2011,8,25,0,12.3,-29,tropical depression,NA,30,1006,0,0 +Ten,2011,8,25,6,12.7,-30.1,tropical depression,NA,30,1006,0,0 +Ten,2011,8,25,12,13.1,-31.2,tropical depression,NA,30,1008,0,0 +Ten,2011,8,25,18,13.5,-32.1,tropical depression,NA,30,1008,0,0 +Ten,2011,8,26,0,13.9,-32.9,tropical depression,NA,30,1009,0,0 +Ten,2011,8,26,6,14.4,-33.3,tropical depression,NA,30,1009,0,0 +Ten,2011,8,26,12,14.8,-33.5,tropical depression,NA,30,1009,0,0 +Ten,2011,8,26,18,15.3,-33.7,tropical depression,NA,30,1009,0,0 +Ten,2011,8,27,0,15.8,-33.9,other low,NA,25,1010,0,0 +Jose,2011,8,26,12,27.3,-59,other low,NA,30,1016,0,0 +Jose,2011,8,26,18,27.4,-60.2,other low,NA,30,1014,0,0 +Jose,2011,8,27,0,27.5,-61.3,other low,NA,30,1013,0,0 +Jose,2011,8,27,6,27.7,-62.4,tropical depression,NA,30,1011,0,0 +Jose,2011,8,27,12,27.9,-63.4,tropical storm,NA,35,1008,15,0 +Jose,2011,8,27,18,28.3,-64.3,tropical storm,NA,35,1008,40,0 +Jose,2011,8,28,0,29.1,-64.9,tropical storm,NA,35,1008,35,0 +Jose,2011,8,28,6,29.8,-65.5,tropical storm,NA,40,1007,45,0 +Jose,2011,8,28,12,30.9,-65.7,tropical storm,NA,40,1006,45,0 +Jose,2011,8,28,18,32.4,-65.8,tropical storm,NA,40,1006,45,0 +Jose,2011,8,29,0,34.2,-65.6,other low,NA,40,1007,45,0 +Jose,2011,8,29,6,36.2,-65.1,other low,NA,35,1009,35,0 +Jose,2011,8,29,12,38.3,-63.8,other low,NA,30,1012,0,0 +Katia,2011,8,28,0,9.5,-19,other low,NA,20,1012,0,0 +Katia,2011,8,28,6,9.4,-20.3,other low,NA,20,1011,0,0 +Katia,2011,8,28,12,9.3,-21.6,other low,NA,25,1010,0,0 +Katia,2011,8,28,18,9.3,-22.9,other low,NA,25,1009,0,0 +Katia,2011,8,29,0,9.3,-24.2,other low,NA,25,1009,0,0 +Katia,2011,8,29,6,9.5,-25.6,tropical depression,NA,25,1009,0,0 +Katia,2011,8,29,12,9.9,-27,tropical depression,NA,30,1008,0,0 +Katia,2011,8,29,18,10.6,-28.2,tropical depression,NA,30,1008,0,0 +Katia,2011,8,30,0,11,-29.6,tropical storm,NA,35,1006,30,0 +Katia,2011,8,30,6,11.5,-31.1,tropical storm,NA,40,1004,30,0 +Katia,2011,8,30,12,12,-32.9,tropical storm,NA,45,1001,80,0 +Katia,2011,8,30,18,12.6,-34.6,tropical storm,NA,50,997,100,0 +Katia,2011,8,31,0,13.1,-36.4,tropical storm,NA,50,997,110,0 +Katia,2011,8,31,6,13.6,-38.2,tropical storm,NA,55,994,120,0 +Katia,2011,8,31,12,14,-40,tropical storm,NA,55,994,140,0 +Katia,2011,8,31,18,14.4,-41.8,tropical storm,NA,60,990,175,0 +Katia,2011,9,1,0,14.8,-43.5,hurricane,1,65,988,190,20 +Katia,2011,9,1,6,15.1,-45.2,hurricane,1,65,988,200,20 +Katia,2011,9,1,12,15.3,-46.9,hurricane,1,65,988,220,30 +Katia,2011,9,1,18,15.7,-48.5,hurricane,1,65,988,230,30 +Katia,2011,9,2,0,16.2,-50,hurricane,1,65,988,240,30 +Katia,2011,9,2,6,16.8,-51.2,hurricane,1,65,988,240,30 +Katia,2011,9,2,12,17.4,-52.1,hurricane,1,65,987,240,30 +Katia,2011,9,2,18,18,-53,hurricane,1,65,987,240,30 +Katia,2011,9,3,0,18.4,-53.9,hurricane,1,65,987,240,30 +Katia,2011,9,3,6,18.8,-54.7,hurricane,1,65,987,240,30 +Katia,2011,9,3,12,19.4,-55.4,hurricane,1,65,986,240,30 +Katia,2011,9,3,18,19.9,-56.2,hurricane,1,65,982,240,30 +Katia,2011,9,4,0,20.4,-57.1,hurricane,1,70,978,240,30 +Katia,2011,9,4,6,21.1,-57.9,hurricane,1,75,969,240,50 +Katia,2011,9,4,12,21.7,-58.8,hurricane,2,85,961,240,60 +Katia,2011,9,4,18,22.3,-59.7,hurricane,2,90,959,240,70 +Katia,2011,9,5,0,23,-60.6,hurricane,2,90,957,250,70 +Katia,2011,9,5,6,23.6,-61.6,hurricane,2,95,954,250,80 +Katia,2011,9,5,12,24.2,-62.6,hurricane,3,100,950,270,100 +Katia,2011,9,5,18,24.8,-63.4,hurricane,3,110,946,280,100 +Katia,2011,9,6,0,25.6,-64,hurricane,4,120,942,290,100 +Katia,2011,9,6,6,26.2,-64.8,hurricane,4,115,946,290,100 +Katia,2011,9,6,12,26.7,-65.6,hurricane,3,105,954,290,105 +Katia,2011,9,6,18,27.3,-66.2,hurricane,2,95,959,300,110 +Katia,2011,9,7,0,27.7,-66.9,hurricane,2,85,964,300,110 +Katia,2011,9,7,6,28.2,-67.6,hurricane,2,85,967,300,110 +Katia,2011,9,7,12,28.8,-68.4,hurricane,1,80,969,310,110 +Katia,2011,9,7,18,29.4,-69.3,hurricane,1,80,969,330,110 +Katia,2011,9,8,0,30.3,-69.9,hurricane,1,80,968,350,120 +Katia,2011,9,8,6,31.5,-70.1,hurricane,1,80,967,360,130 +Katia,2011,9,8,12,32.8,-70.2,hurricane,1,80,966,360,130 +Katia,2011,9,8,18,34.1,-70,hurricane,1,80,965,380,120 +Katia,2011,9,9,0,35.6,-69.4,hurricane,1,80,964,380,110 +Katia,2011,9,9,6,37.1,-68.4,hurricane,1,75,963,370,105 +Katia,2011,9,9,12,38.5,-67.1,hurricane,1,75,961,380,105 +Katia,2011,9,9,18,39.8,-64.6,hurricane,1,75,960,390,110 +Katia,2011,9,10,0,41,-60.5,hurricane,1,75,958,420,110 +Katia,2011,9,10,6,42.2,-56.1,hurricane,1,75,956,450,120 +Katia,2011,9,10,12,43.5,-50.6,extratropical,NA,75,954,470,120 +Katia,2011,9,10,18,45.4,-43.7,extratropical,NA,75,954,470,120 +Katia,2011,9,11,0,47.3,-37.2,extratropical,NA,70,957,470,120 +Katia,2011,9,11,6,49.1,-31.3,extratropical,NA,70,960,470,120 +Katia,2011,9,11,12,51.1,-26,extratropical,NA,60,964,470,0 +Katia,2011,9,11,18,52.8,-21.1,extratropical,NA,60,966,470,0 +Katia,2011,9,12,0,54.7,-16.3,extratropical,NA,60,968,470,0 +Katia,2011,9,12,6,56.2,-11.6,extratropical,NA,60,970,470,0 +Katia,2011,9,12,12,58,-7,extratropical,NA,60,972,470,0 +Katia,2011,9,12,18,59.5,-0,extratropical,NA,60,974,470,0 +Al202011,2011,8,31,12,37.1,-64.3,other low,NA,25,1013,0,0 +Al202011,2011,8,31,18,37.1,-64.1,other low,NA,25,1013,0,0 +Al202011,2011,9,1,0,37.3,-63.9,tropical depression,NA,25,1011,0,0 +Al202011,2011,9,1,6,37.4,-63.7,tropical depression,NA,30,1008,0,0 +Al202011,2011,9,1,12,37.4,-63.7,tropical storm,NA,40,1004,60,0 +Al202011,2011,9,1,18,37.4,-63.8,tropical storm,NA,35,1005,60,0 +Al202011,2011,9,2,0,37.5,-63.8,tropical storm,NA,35,1005,60,0 +Al202011,2011,9,2,6,37.8,-63.7,tropical storm,NA,40,1002,60,0 +Al202011,2011,9,2,12,38,-62.8,tropical storm,NA,40,1002,60,0 +Al202011,2011,9,2,18,39,-61.8,tropical storm,NA,35,1003,60,0 +Al202011,2011,9,3,0,40,-60.7,extratropical,NA,30,1004,0,0 +Al202011,2011,9,3,6,41,-59.9,extratropical,NA,30,1004,0,0 +Al202011,2011,9,3,12,42,-59.2,extratropical,NA,30,1004,0,0 +Al202011,2011,9,3,18,42.4,-57.8,extratropical,NA,30,1004,0,0 +Lee,2011,9,2,0,26.6,-91.4,tropical depression,NA,30,1007,0,0 +Lee,2011,9,2,6,26.9,-91.4,tropical depression,NA,30,1006,0,0 +Lee,2011,9,2,12,27.2,-91.4,tropical storm,NA,35,1005,150,0 +Lee,2011,9,2,18,27.5,-91.4,tropical storm,NA,40,1003,175,0 +Lee,2011,9,3,0,28,-91.5,tropical storm,NA,40,1001,265,0 +Lee,2011,9,3,6,28.5,-91.8,tropical storm,NA,45,997,265,0 +Lee,2011,9,3,12,29,-92,subtropical storm,NA,50,993,280,0 +Lee,2011,9,3,18,29.2,-92.2,subtropical storm,NA,45,989,320,0 +Lee,2011,9,4,0,29.4,-92.5,subtropical storm,NA,40,988,355,0 +Lee,2011,9,4,6,29.5,-92.5,subtropical storm,NA,40,986,355,0 +Lee,2011,9,4,9,29.5,-92.2,subtropical storm,NA,40,986,355,0 +Lee,2011,9,4,10,29.6,-92.1,subtropical storm,NA,40,986,355,0 +Lee,2011,9,4,12,29.7,-92,subtropical storm,NA,35,986,330,0 +Lee,2011,9,4,18,30.3,-91.8,subtropical storm,NA,35,988,250,0 +Lee,2011,9,5,0,30.4,-91.6,subtropical storm,NA,35,990,250,0 +Lee,2011,9,5,6,30.4,-91.4,extratropical,NA,35,993,250,0 +Lee,2011,9,5,12,30.6,-90.1,extratropical,NA,40,995,250,0 +Lee,2011,9,5,18,31.5,-88.3,extratropical,NA,40,995,250,0 +Lee,2011,9,6,0,32.6,-86.5,extratropical,NA,30,995,0,0 +Lee,2011,9,6,6,33.4,-85.3,extratropical,NA,20,997,0,0 +Lee,2011,9,6,12,34.2,-85.1,extratropical,NA,15,1000,0,0 +Lee,2011,9,6,18,34.9,-85.3,extratropical,NA,15,1004,0,0 +Maria,2011,9,6,18,11.5,-35.9,tropical depression,NA,30,1008,0,0 +Maria,2011,9,7,0,11.9,-37.5,tropical storm,NA,35,1007,60,0 +Maria,2011,9,7,6,12.3,-39.1,tropical storm,NA,40,1006,60,0 +Maria,2011,9,7,12,12.8,-41,tropical storm,NA,45,1004,75,0 +Maria,2011,9,7,18,13,-43,tropical storm,NA,45,1004,90,0 +Maria,2011,9,8,0,13.2,-45.2,tropical storm,NA,45,1003,100,0 +Maria,2011,9,8,6,13.2,-47.7,tropical storm,NA,45,1002,150,0 +Maria,2011,9,8,12,13,-50.1,tropical storm,NA,40,1004,150,0 +Maria,2011,9,8,18,13.2,-52.1,tropical storm,NA,40,1004,135,0 +Maria,2011,9,9,0,13.5,-53.7,tropical storm,NA,40,1004,135,0 +Maria,2011,9,9,6,13.9,-55.2,tropical storm,NA,40,1003,135,0 +Maria,2011,9,9,12,14.3,-56.6,disturbance,NA,45,1003,135,0 +Maria,2011,9,9,18,14.9,-57.9,disturbance,NA,45,1004,160,0 +Maria,2011,9,10,0,15.4,-59,disturbance,NA,45,1004,235,0 +Maria,2011,9,10,6,16,-60,disturbance,NA,45,1005,190,0 +Maria,2011,9,10,12,16.9,-61.1,tropical storm,NA,45,1005,150,0 +Maria,2011,9,10,18,17.8,-62,tropical storm,NA,45,1005,150,0 +Maria,2011,9,11,0,18.3,-62.7,tropical storm,NA,45,1005,180,0 +Maria,2011,9,11,6,18.7,-63.4,tropical storm,NA,50,1004,180,0 +Maria,2011,9,11,12,19.1,-64.1,tropical storm,NA,50,1004,180,0 +Maria,2011,9,11,18,19.6,-64.7,tropical storm,NA,50,1005,190,0 +Maria,2011,9,12,0,20,-65.3,tropical storm,NA,50,1005,190,0 +Maria,2011,9,12,6,20.4,-66.1,tropical storm,NA,50,1005,190,0 +Maria,2011,9,12,12,20.6,-66.9,tropical storm,NA,50,1006,180,0 +Maria,2011,9,12,18,20.8,-67.1,tropical storm,NA,50,1006,240,0 +Maria,2011,9,13,0,21,-67.3,tropical storm,NA,45,1006,240,0 +Maria,2011,9,13,6,21.3,-67.5,tropical storm,NA,45,1006,180,0 +Maria,2011,9,13,12,21.7,-67.7,tropical storm,NA,45,1006,180,0 +Maria,2011,9,13,18,22.3,-68,tropical storm,NA,45,1005,150,0 +Maria,2011,9,14,0,23.1,-68.5,tropical storm,NA,45,1004,210,0 +Maria,2011,9,14,6,23.9,-69,tropical storm,NA,50,1001,210,0 +Maria,2011,9,14,12,24.7,-69.3,tropical storm,NA,50,1001,210,0 +Maria,2011,9,14,18,25.8,-69.3,tropical storm,NA,55,1000,150,0 +Maria,2011,9,15,0,27.2,-68.9,tropical storm,NA,60,999,180,0 +Maria,2011,9,15,6,28.8,-68.4,tropical storm,NA,60,995,180,0 +Maria,2011,9,15,12,30.9,-67.8,tropical storm,NA,60,991,180,0 +Maria,2011,9,15,18,33.7,-66.9,hurricane,1,65,987,240,40 +Maria,2011,9,16,0,36.8,-64.8,hurricane,1,70,984,240,40 +Maria,2011,9,16,6,39.8,-62.1,hurricane,1,70,983,240,40 +Maria,2011,9,16,12,42.9,-58.2,hurricane,1,65,983,300,60 +Maria,2011,9,16,18,46.7,-53.9,tropical storm,NA,60,983,360,0 +Maria,2011,9,16,18,47,-53.5,tropical storm,NA,60,983,360,0 +Nate,2011,9,6,18,20.3,-93.9,other low,NA,30,1006,0,0 +Nate,2011,9,7,0,20.3,-93.7,other low,NA,30,1006,0,0 +Nate,2011,9,7,6,20.3,-93.3,other low,NA,30,1005,0,0 +Nate,2011,9,7,12,20.3,-92.9,other low,NA,35,1005,75,0 +Nate,2011,9,7,18,20.3,-92.6,tropical storm,NA,40,1004,90,0 +Nate,2011,9,8,0,20.2,-92.5,tropical storm,NA,45,1003,150,0 +Nate,2011,9,8,6,20.1,-92.4,tropical storm,NA,50,1000,165,0 +Nate,2011,9,8,12,19.9,-92.3,tropical storm,NA,55,997,165,0 +Nate,2011,9,8,18,19.7,-92.3,hurricane,1,65,995,195,40 +Nate,2011,9,9,0,19.7,-92.1,hurricane,1,65,994,195,40 +Nate,2011,9,9,6,19.9,-92.2,tropical storm,NA,55,998,165,0 +Nate,2011,9,9,12,20,-92.4,tropical storm,NA,50,999,165,0 +Nate,2011,9,9,18,20,-92.7,tropical storm,NA,45,999,150,0 +Nate,2011,9,10,0,20,-93,tropical storm,NA,45,1000,150,0 +Nate,2011,9,10,6,20,-93.4,tropical storm,NA,45,1000,150,0 +Nate,2011,9,10,12,20.1,-93.8,tropical storm,NA,50,1000,150,0 +Nate,2011,9,10,18,20.1,-94.2,tropical storm,NA,55,1000,165,0 +Nate,2011,9,11,0,20.1,-94.7,tropical storm,NA,55,1000,165,0 +Nate,2011,9,11,6,20,-95.4,tropical storm,NA,50,1003,135,0 +Nate,2011,9,11,12,20.3,-96.4,tropical storm,NA,40,1005,90,0 +Nate,2011,9,11,16,20.5,-97,tropical storm,NA,40,1006,90,0 +Nate,2011,9,11,18,20.5,-97.2,tropical storm,NA,35,1009,45,0 +Nate,2011,9,12,0,20.5,-97.8,other low,NA,25,1012,0,0 +Ophelia,2011,9,20,6,11.6,-37,other low,NA,25,1008,0,0 +Ophelia,2011,9,20,12,11.9,-37.7,other low,NA,25,1007,0,0 +Ophelia,2011,9,20,18,12.2,-38.6,tropical depression,NA,30,1007,0,0 +Ophelia,2011,9,21,0,12.5,-39.7,tropical storm,NA,40,1005,150,0 +Ophelia,2011,9,21,6,12.7,-41.1,tropical storm,NA,45,1004,240,0 +Ophelia,2011,9,21,12,12.9,-42.6,tropical storm,NA,50,999,300,0 +Ophelia,2011,9,21,18,13.1,-44.1,tropical storm,NA,50,999,300,0 +Ophelia,2011,9,22,0,13.3,-45.2,tropical storm,NA,50,998,300,0 +Ophelia,2011,9,22,6,13.5,-46.3,tropical storm,NA,55,993,300,0 +Ophelia,2011,9,22,12,13.7,-47.3,tropical storm,NA,55,993,300,0 +Ophelia,2011,9,22,18,13.9,-48.3,tropical storm,NA,50,997,300,0 +Ophelia,2011,9,23,0,14.1,-49.4,tropical storm,NA,45,1000,280,0 +Ophelia,2011,9,23,6,14.4,-50.5,tropical storm,NA,40,1003,240,0 +Ophelia,2011,9,23,12,14.7,-51.7,tropical storm,NA,45,1003,220,0 +Ophelia,2011,9,23,18,15.2,-52.9,tropical storm,NA,50,1001,220,0 +Ophelia,2011,9,24,0,15.8,-54,tropical storm,NA,45,1004,220,0 +Ophelia,2011,9,24,6,16.5,-54.8,tropical storm,NA,45,1005,220,0 +Ophelia,2011,9,24,12,17.2,-55.9,tropical storm,NA,45,1005,220,0 +Ophelia,2011,9,24,18,17.6,-57,tropical storm,NA,40,1007,220,0 +Ophelia,2011,9,25,0,17.9,-58,tropical storm,NA,40,1008,220,0 +Ophelia,2011,9,25,6,18.2,-59,tropical storm,NA,35,1008,200,0 +Ophelia,2011,9,25,12,18.4,-59.8,other low,NA,30,1010,0,0 +Ophelia,2011,9,25,18,18.6,-60.5,other low,NA,30,1012,0,0 +Ophelia,2011,9,26,0,18.5,-60.8,disturbance,NA,25,1012,0,0 +Ophelia,2011,9,26,6,18.3,-60.7,disturbance,NA,25,1012,0,0 +Ophelia,2011,9,26,12,18,-60.5,disturbance,NA,25,1012,0,0 +Ophelia,2011,9,26,18,17.8,-60.2,disturbance,NA,25,1012,0,0 +Ophelia,2011,9,27,0,17.6,-59.9,disturbance,NA,25,1012,0,0 +Ophelia,2011,9,27,6,17.6,-59.5,disturbance,NA,25,1012,0,0 +Ophelia,2011,9,27,12,17.8,-59.3,tropical depression,NA,25,1010,0,0 +Ophelia,2011,9,27,18,18,-59.4,tropical depression,NA,25,1009,0,0 +Ophelia,2011,9,28,0,18.1,-59.5,tropical depression,NA,30,1009,0,0 +Ophelia,2011,9,28,6,18.2,-59.6,tropical storm,NA,40,1005,60,0 +Ophelia,2011,9,28,12,18.4,-59.8,tropical storm,NA,40,1001,105,0 +Ophelia,2011,9,28,18,18.7,-60.1,tropical storm,NA,45,1001,120,0 +Ophelia,2011,9,29,0,19.1,-60.5,tropical storm,NA,50,995,150,0 +Ophelia,2011,9,29,6,19.6,-60.9,tropical storm,NA,55,995,150,0 +Ophelia,2011,9,29,12,20.2,-61.4,tropical storm,NA,55,991,150,0 +Ophelia,2011,9,29,18,21,-61.9,hurricane,1,65,987,180,25 +Ophelia,2011,9,30,0,21.6,-62.3,hurricane,1,70,982,210,40 +Ophelia,2011,9,30,6,22.4,-62.7,hurricane,2,85,971,240,45 +Ophelia,2011,9,30,12,23.4,-63,hurricane,2,95,966,240,45 +Ophelia,2011,9,30,18,24.6,-63.3,hurricane,3,100,959,240,45 +Ophelia,2011,10,1,0,25.9,-63.3,hurricane,3,105,955,270,50 +Ophelia,2011,10,1,6,27.3,-63.2,hurricane,3,105,951,270,50 +Ophelia,2011,10,1,12,28.9,-63.1,hurricane,3,105,948,270,50 +Ophelia,2011,10,1,18,30.7,-62.9,hurricane,3,110,946,270,50 +Ophelia,2011,10,2,0,32.8,-62.5,hurricane,4,120,940,270,50 +Ophelia,2011,10,2,6,35,-62.1,hurricane,3,110,945,270,50 +Ophelia,2011,10,2,12,37.4,-61.6,hurricane,3,105,951,270,50 +Ophelia,2011,10,2,18,40.1,-60.8,hurricane,2,90,960,290,60 +Ophelia,2011,10,3,0,42.8,-59.6,hurricane,1,70,972,290,60 +Ophelia,2011,10,3,6,45.4,-57.6,tropical storm,NA,60,980,300,0 +Ophelia,2011,10,3,10,46.9,-55.4,extratropical,NA,60,990,300,0 +Ophelia,2011,10,3,12,47.4,-54,extratropical,NA,50,994,310,0 +Ophelia,2011,10,3,18,48.9,-49.2,extratropical,NA,45,994,325,0 +Ophelia,2011,10,4,0,49.9,-43.6,extratropical,NA,40,994,250,0 +Ophelia,2011,10,4,6,50.6,-37.8,extratropical,NA,40,996,250,0 +Ophelia,2011,10,4,12,51.3,-31.9,extratropical,NA,40,996,250,0 +Philippe,2011,9,23,0,8.3,-17.5,other low,NA,20,1010,0,0 +Philippe,2011,9,23,6,8.6,-19.1,other low,NA,20,1010,0,0 +Philippe,2011,9,23,12,9,-20.6,other low,NA,25,1010,0,0 +Philippe,2011,9,23,18,9.5,-22,other low,NA,25,1009,0,0 +Philippe,2011,9,24,0,10.4,-23.3,other low,NA,30,1008,0,0 +Philippe,2011,9,24,6,11,-24.7,tropical depression,NA,30,1007,0,0 +Philippe,2011,9,24,12,11.1,-26.1,tropical storm,NA,35,1006,30,0 +Philippe,2011,9,24,18,11.2,-27.3,tropical storm,NA,35,1006,30,0 +Philippe,2011,9,25,0,11.5,-28.4,tropical storm,NA,35,1006,45,0 +Philippe,2011,9,25,6,12.1,-29.4,tropical storm,NA,40,1006,75,0 +Philippe,2011,9,25,12,12.7,-30.3,tropical storm,NA,40,1006,75,0 +Philippe,2011,9,25,18,13.2,-31.2,tropical storm,NA,45,1005,90,0 +Philippe,2011,9,26,0,13.8,-32.1,tropical storm,NA,45,1005,105,0 +Philippe,2011,9,26,6,14.4,-33,tropical storm,NA,45,1004,105,0 +Philippe,2011,9,26,12,14.9,-33.6,tropical storm,NA,50,1003,105,0 +Philippe,2011,9,26,18,15.3,-34.1,tropical storm,NA,50,1003,120,0 +Philippe,2011,9,27,0,15.4,-34.4,tropical storm,NA,45,1004,135,0 +Philippe,2011,9,27,6,15.5,-34.7,tropical storm,NA,45,1004,135,0 +Philippe,2011,9,27,12,15.6,-35.2,tropical storm,NA,40,1005,120,0 +Philippe,2011,9,27,18,15.7,-35.8,tropical storm,NA,35,1006,90,0 +Philippe,2011,9,28,0,15.8,-36.6,tropical depression,NA,30,1007,0,0 +Philippe,2011,9,28,6,16,-37.4,tropical depression,NA,30,1007,0,0 +Philippe,2011,9,28,12,16.2,-38.4,tropical storm,NA,35,1006,105,0 +Philippe,2011,9,28,18,16.6,-39.4,tropical storm,NA,40,1005,105,0 +Philippe,2011,9,29,0,17.1,-40.5,tropical storm,NA,40,1005,105,0 +Philippe,2011,9,29,6,17.8,-41.5,tropical storm,NA,45,1004,105,0 +Philippe,2011,9,29,12,18.7,-42.3,tropical storm,NA,45,1004,90,0 +Philippe,2011,9,29,18,19.7,-43,tropical storm,NA,45,1005,105,0 +Philippe,2011,9,30,0,20.7,-43.6,tropical storm,NA,40,1007,90,0 +Philippe,2011,9,30,6,21.7,-44.2,tropical storm,NA,40,1007,90,0 +Philippe,2011,9,30,12,22.5,-44.8,tropical storm,NA,45,1006,105,0 +Philippe,2011,9,30,18,23.2,-45.6,tropical storm,NA,45,1005,105,0 +Philippe,2011,10,1,0,23.8,-46.3,tropical storm,NA,50,1003,105,0 +Philippe,2011,10,1,6,24.1,-47,tropical storm,NA,55,999,120,0 +Philippe,2011,10,1,12,24.4,-47.6,tropical storm,NA,60,997,135,0 +Philippe,2011,10,1,18,24.8,-48.4,tropical storm,NA,60,995,150,0 +Philippe,2011,10,2,0,25.2,-49.3,tropical storm,NA,60,993,165,0 +Philippe,2011,10,2,6,25.8,-50.3,tropical storm,NA,50,998,165,0 +Philippe,2011,10,2,12,26.2,-51.2,tropical storm,NA,40,1004,165,0 +Philippe,2011,10,2,18,26.3,-52.3,tropical storm,NA,40,1004,165,0 +Philippe,2011,10,3,0,26.2,-53.2,tropical storm,NA,45,1004,165,0 +Philippe,2011,10,3,6,25.6,-54,tropical storm,NA,50,1001,150,0 +Philippe,2011,10,3,12,24.9,-54.8,tropical storm,NA,55,998,135,0 +Philippe,2011,10,3,18,24.3,-55.6,tropical storm,NA,60,995,135,0 +Philippe,2011,10,4,0,23.8,-56.6,hurricane,1,65,992,135,25 +Philippe,2011,10,4,6,23.7,-57.7,hurricane,1,65,992,135,25 +Philippe,2011,10,4,12,23.8,-58.7,tropical storm,NA,60,993,120,0 +Philippe,2011,10,4,18,24,-59.6,tropical storm,NA,60,994,120,0 +Philippe,2011,10,5,0,24.3,-60.2,tropical storm,NA,60,994,105,0 +Philippe,2011,10,5,6,24.7,-60.7,tropical storm,NA,60,994,105,0 +Philippe,2011,10,5,12,25.2,-61,tropical storm,NA,55,995,120,0 +Philippe,2011,10,5,18,25.5,-61.1,tropical storm,NA,55,995,120,0 +Philippe,2011,10,6,0,25.9,-61.1,tropical storm,NA,60,992,120,0 +Philippe,2011,10,6,6,26.5,-61,hurricane,1,65,987,120,20 +Philippe,2011,10,6,12,27.4,-60.4,hurricane,1,70,983,120,20 +Philippe,2011,10,6,18,28.2,-59.7,hurricane,1,80,977,135,35 +Philippe,2011,10,7,0,28.7,-58.8,hurricane,1,80,976,150,45 +Philippe,2011,10,7,6,29,-57.7,hurricane,1,80,976,150,50 +Philippe,2011,10,7,12,29.3,-56.5,hurricane,1,80,977,165,50 +Philippe,2011,10,7,18,29.7,-55.1,hurricane,1,70,981,165,40 +Philippe,2011,10,8,0,30.1,-53.5,hurricane,1,65,986,165,30 +Philippe,2011,10,8,6,30.9,-51.4,tropical storm,NA,60,987,165,0 +Philippe,2011,10,8,12,32.3,-48.7,tropical storm,NA,60,987,165,0 +Philippe,2011,10,8,18,34.4,-46,extratropical,NA,50,987,240,0 +Philippe,2011,10,9,0,37.5,-43.6,extratropical,NA,45,987,330,0 +Rina,2011,10,22,0,12.7,-81,other low,NA,25,1007,0,0 +Rina,2011,10,22,6,12.7,-81.2,other low,NA,25,1007,0,0 +Rina,2011,10,22,12,12.9,-81.4,other low,NA,25,1006,0,0 +Rina,2011,10,22,18,13.2,-81.4,other low,NA,25,1006,0,0 +Rina,2011,10,23,0,13.6,-81.4,other low,NA,25,1006,0,0 +Rina,2011,10,23,6,14.2,-81.4,tropical depression,NA,25,1006,0,0 +Rina,2011,10,23,12,14.8,-81.5,tropical depression,NA,25,1006,0,0 +Rina,2011,10,23,18,15.5,-81.7,tropical depression,NA,30,1005,0,0 +Rina,2011,10,24,0,16,-81.9,tropical storm,NA,35,1004,60,0 +Rina,2011,10,24,6,16.5,-82.2,tropical storm,NA,40,1003,80,0 +Rina,2011,10,24,12,16.9,-82.6,tropical storm,NA,50,1001,120,0 +Rina,2011,10,24,18,17.1,-83,hurricane,1,65,991,160,25 +Rina,2011,10,25,0,17.2,-83.2,hurricane,1,75,982,160,25 +Rina,2011,10,25,6,17.3,-83.5,hurricane,2,90,976,160,25 +Rina,2011,10,25,12,17.3,-83.8,hurricane,2,95,972,160,25 +Rina,2011,10,25,18,17.3,-84.2,hurricane,3,100,971,175,40 +Rina,2011,10,26,0,17.4,-84.6,hurricane,3,100,966,175,45 +Rina,2011,10,26,6,17.5,-85,hurricane,3,100,969,180,45 +Rina,2011,10,26,12,17.7,-85.4,hurricane,2,85,973,180,40 +Rina,2011,10,26,18,18,-85.8,hurricane,1,80,976,160,30 +Rina,2011,10,27,0,18.3,-86.3,hurricane,1,80,978,160,30 +Rina,2011,10,27,6,18.6,-86.7,hurricane,1,65,987,135,30 +Rina,2011,10,27,12,19,-86.9,tropical storm,NA,60,988,135,0 +Rina,2011,10,27,18,19.5,-87.1,tropical storm,NA,60,991,120,0 +Rina,2011,10,28,0,20.2,-87.2,tropical storm,NA,55,996,100,0 +Rina,2011,10,28,2,20.5,-87.2,tropical storm,NA,50,996,100,0 +Rina,2011,10,28,6,20.9,-87.1,tropical storm,NA,50,998,90,0 +Rina,2011,10,28,12,21.4,-86.9,tropical storm,NA,40,1002,35,0 +Rina,2011,10,28,18,21.7,-86.4,other low,NA,25,1007,0,0 +Rina,2011,10,29,0,21.8,-85.3,other low,NA,20,1008,0,0 +Rina,2011,10,29,6,21.5,-84.2,other low,NA,20,1008,0,0 +Sean,2011,11,6,0,28.5,-70,extratropical,NA,45,1005,400,0 +Sean,2011,11,6,6,28.5,-69.2,extratropical,NA,45,1005,400,0 +Sean,2011,11,6,12,28.4,-68.8,extratropical,NA,45,1005,400,0 +Sean,2011,11,6,18,28,-68.5,extratropical,NA,45,1005,400,0 +Sean,2011,11,7,0,27.9,-68.6,extratropical,NA,45,1005,350,0 +Sean,2011,11,7,6,27.7,-68.7,extratropical,NA,40,1005,350,0 +Sean,2011,11,7,12,27.5,-69,extratropical,NA,40,1005,350,0 +Sean,2011,11,7,18,27.6,-69.3,other low,NA,40,1004,350,0 +Sean,2011,11,8,0,27.6,-69.6,other low,NA,40,1002,350,0 +Sean,2011,11,8,6,27.7,-69.8,subtropical storm,NA,40,1001,450,0 +Sean,2011,11,8,12,27.8,-70,subtropical storm,NA,45,1000,450,0 +Sean,2011,11,8,18,27.8,-70,tropical storm,NA,45,999,350,0 +Sean,2011,11,9,0,27.8,-70.1,tropical storm,NA,45,999,360,0 +Sean,2011,11,9,6,27.8,-70.2,tropical storm,NA,50,996,370,0 +Sean,2011,11,9,12,27.9,-70.4,tropical storm,NA,55,994,370,0 +Sean,2011,11,9,18,28.3,-70.6,tropical storm,NA,55,991,370,0 +Sean,2011,11,10,0,29,-70.7,tropical storm,NA,55,987,340,0 +Sean,2011,11,10,6,29.7,-70.9,tropical storm,NA,55,984,310,0 +Sean,2011,11,10,12,30.2,-70.7,tropical storm,NA,55,982,310,0 +Sean,2011,11,10,18,30.5,-70,tropical storm,NA,55,983,310,0 +Sean,2011,11,11,0,31,-69,tropical storm,NA,55,984,310,0 +Sean,2011,11,11,6,32.2,-67.2,tropical storm,NA,50,987,250,0 +Sean,2011,11,11,12,33.4,-65.3,tropical storm,NA,45,991,250,0 +Sean,2011,11,11,18,34.8,-62.6,tropical storm,NA,40,995,225,0 +Sean,2011,11,12,0,35.9,-59.4,extratropical,NA,35,1000,150,0 +Sean,2011,11,12,6,38,-57.2,extratropical,NA,35,1000,150,0 +Sean,2011,11,12,12,40,-55,extratropical,NA,35,1000,150,0 +Sean,2011,11,12,18,42.5,-52.4,extratropical,NA,35,1000,150,0 +Alberto,2012,5,19,0,33.1,-77,other low,NA,25,1010,0,0 +Alberto,2012,5,19,6,32.8,-77.1,tropical depression,NA,30,1008,0,0 +Alberto,2012,5,19,12,32.5,-77.3,tropical storm,NA,40,1005,60,0 +Alberto,2012,5,19,18,32.3,-77.6,tropical storm,NA,45,997,70,0 +Alberto,2012,5,20,0,32.1,-78.1,tropical storm,NA,50,995,70,0 +Alberto,2012,5,20,6,31.9,-78.7,tropical storm,NA,45,998,60,0 +Alberto,2012,5,20,12,31.5,-79.5,tropical storm,NA,40,1000,60,0 +Alberto,2012,5,20,18,31.1,-79.9,tropical storm,NA,40,1005,80,0 +Alberto,2012,5,21,0,30.7,-80.1,tropical storm,NA,35,1007,80,0 +Alberto,2012,5,21,6,30.4,-79.8,tropical storm,NA,35,1007,70,0 +Alberto,2012,5,21,12,30.4,-79.1,tropical storm,NA,35,1007,70,0 +Alberto,2012,5,21,18,30.5,-78.3,tropical storm,NA,35,1006,70,0 +Alberto,2012,5,22,0,30.7,-77.1,tropical storm,NA,35,1007,40,0 +Alberto,2012,5,22,6,31.5,-76.1,tropical storm,NA,35,1007,40,0 +Alberto,2012,5,22,12,32.5,-74.7,other low,NA,30,1008,0,0 +Alberto,2012,5,22,18,33.4,-73.4,other low,NA,30,1008,0,0 +Alberto,2012,5,23,0,34.1,-71.9,other low,NA,25,1010,0,0 +Alberto,2012,5,23,6,34.9,-70.1,other low,NA,25,1011,0,0 +Alberto,2012,5,23,12,35.5,-67.9,other low,NA,25,1012,0,0 +Alberto,2012,5,23,18,35.9,-66,other low,NA,25,1012,0,0 +Beryl,2012,5,25,12,30.1,-76.1,other low,NA,30,1010,0,0 +Beryl,2012,5,25,18,31.1,-75.1,other low,NA,35,1006,120,0 +Beryl,2012,5,26,0,32.3,-75,subtropical storm,NA,40,1001,200,0 +Beryl,2012,5,26,6,32.4,-75.3,subtropical storm,NA,40,1001,160,0 +Beryl,2012,5,26,12,32,-75.9,subtropical storm,NA,40,1000,160,0 +Beryl,2012,5,26,18,31.5,-76.2,subtropical storm,NA,40,999,160,0 +Beryl,2012,5,27,0,31.1,-77,subtropical storm,NA,45,998,130,0 +Beryl,2012,5,27,6,30.7,-78,subtropical storm,NA,45,998,130,0 +Beryl,2012,5,27,12,30.3,-78.9,subtropical storm,NA,50,998,160,0 +Beryl,2012,5,27,18,30.1,-79.8,tropical storm,NA,55,997,180,0 +Beryl,2012,5,27,23,30.1,-80.5,tropical storm,NA,60,992,180,0 +Beryl,2012,5,28,0,30.1,-80.7,tropical storm,NA,60,993,180,0 +Beryl,2012,5,28,4,30.2,-81.4,tropical storm,NA,55,994,180,0 +Beryl,2012,5,28,6,30.2,-81.7,tropical storm,NA,50,996,120,0 +Beryl,2012,5,28,12,30.4,-82.5,tropical depression,NA,30,1000,0,0 +Beryl,2012,5,28,18,30.5,-83,tropical depression,NA,30,1003,0,0 +Beryl,2012,5,29,0,30.6,-83.2,tropical depression,NA,25,1005,0,0 +Beryl,2012,5,29,6,30.8,-83.4,tropical depression,NA,25,1005,0,0 +Beryl,2012,5,29,12,31.3,-83,tropical depression,NA,25,1006,0,0 +Beryl,2012,5,29,18,31.7,-82.7,tropical depression,NA,25,1006,0,0 +Beryl,2012,5,30,0,32,-81.8,tropical depression,NA,25,1004,0,0 +Beryl,2012,5,30,6,32.6,-80.6,tropical storm,NA,35,1002,100,0 +Beryl,2012,5,30,12,33.7,-78.9,tropical storm,NA,40,1000,100,0 +Beryl,2012,5,30,18,34.5,-77.1,other low,NA,40,997,100,0 +Beryl,2012,5,31,0,35.4,-75.1,other low,NA,45,994,180,0 +Beryl,2012,5,31,6,36.3,-72.9,other low,NA,40,996,180,0 +Beryl,2012,5,31,12,37.1,-70.4,other low,NA,35,998,130,0 +Beryl,2012,5,31,18,37.8,-67.6,other low,NA,35,1000,130,0 +Beryl,2012,6,1,0,38.7,-65,extratropical,NA,35,1001,130,0 +Beryl,2012,6,1,6,39.4,-62.4,extratropical,NA,35,1002,130,0 +Beryl,2012,6,1,12,39.4,-59.8,extratropical,NA,35,1001,130,0 +Beryl,2012,6,1,18,38.5,-57.5,extratropical,NA,35,1000,90,0 +Beryl,2012,6,2,0,38.1,-53.2,extratropical,NA,35,1000,90,0 +Chris,2012,6,17,0,28.8,-68.8,other low,NA,20,1009,0,0 +Chris,2012,6,17,6,29.3,-66.9,other low,NA,25,1008,0,0 +Chris,2012,6,17,12,30.4,-65.4,other low,NA,30,1007,0,0 +Chris,2012,6,17,18,31.8,-64.2,other low,NA,35,1004,40,0 +Chris,2012,6,18,0,33.4,-63.5,other low,NA,35,1004,80,0 +Chris,2012,6,18,6,35.1,-62.8,other low,NA,35,1004,50,0 +Chris,2012,6,18,12,36.7,-62,other low,NA,35,1004,50,0 +Chris,2012,6,18,18,38,-61.3,subtropical storm,NA,40,1004,90,0 +Chris,2012,6,19,0,38.6,-60.4,subtropical storm,NA,40,1003,100,0 +Chris,2012,6,19,6,39.1,-59.6,subtropical storm,NA,40,1003,100,0 +Chris,2012,6,19,12,39.4,-58.7,tropical storm,NA,40,1003,100,0 +Chris,2012,6,19,18,39.5,-58,tropical storm,NA,40,1003,100,0 +Chris,2012,6,20,0,38.9,-56.7,tropical storm,NA,40,1003,110,0 +Chris,2012,6,20,6,38.3,-54.7,tropical storm,NA,40,1002,110,0 +Chris,2012,6,20,12,38.1,-52.5,tropical storm,NA,45,1001,120,0 +Chris,2012,6,20,18,38.2,-50.2,tropical storm,NA,50,999,120,0 +Chris,2012,6,21,0,38.6,-47.5,tropical storm,NA,60,991,120,0 +Chris,2012,6,21,6,39.5,-45.5,hurricane,1,70,982,120,25 +Chris,2012,6,21,12,40.5,-43.9,hurricane,1,75,974,130,30 +Chris,2012,6,21,18,41.9,-42.9,hurricane,1,70,975,130,25 +Chris,2012,6,22,0,43.3,-42.8,tropical storm,NA,60,978,130,0 +Chris,2012,6,22,6,44.5,-43.9,tropical storm,NA,50,982,130,0 +Chris,2012,6,22,12,44.8,-45.8,extratropical,NA,45,985,120,0 +Chris,2012,6,22,18,44.2,-47.8,extratropical,NA,40,988,110,0 +Chris,2012,6,23,0,42.6,-48.4,extratropical,NA,35,989,80,0 +Chris,2012,6,23,6,40.9,-47.4,extratropical,NA,35,989,70,0 +Chris,2012,6,23,12,40,-45,extratropical,NA,35,990,70,0 +Chris,2012,6,23,18,40.5,-42.5,extratropical,NA,30,991,0,0 +Chris,2012,6,24,0,41.4,-40.2,extratropical,NA,30,991,0,0 +Chris,2012,6,24,6,42.9,-38.5,extratropical,NA,25,993,0,0 +Chris,2012,6,24,12,43.7,-38.2,extratropical,NA,20,995,0,0 +Debby,2012,6,23,12,25.5,-87.6,tropical storm,NA,35,1002,150,0 +Debby,2012,6,23,18,26,-87.5,tropical storm,NA,40,1001,150,0 +Debby,2012,6,24,0,26.5,-87.4,tropical storm,NA,45,998,150,0 +Debby,2012,6,24,6,27,-87.2,tropical storm,NA,50,995,230,0 +Debby,2012,6,24,12,27.6,-86.8,tropical storm,NA,55,994,280,0 +Debby,2012,6,24,18,28,-86.3,tropical storm,NA,55,992,290,0 +Debby,2012,6,25,0,28.3,-86,tropical storm,NA,50,990,310,0 +Debby,2012,6,25,6,28.6,-85.8,tropical storm,NA,45,993,310,0 +Debby,2012,6,25,12,28.8,-85.6,tropical storm,NA,40,994,290,0 +Debby,2012,6,25,18,29,-85.3,tropical storm,NA,40,992,310,0 +Debby,2012,6,26,0,29,-85,tropical storm,NA,45,991,290,0 +Debby,2012,6,26,6,28.9,-84.7,tropical storm,NA,40,991,270,0 +Debby,2012,6,26,12,28.9,-84.3,tropical storm,NA,40,992,230,0 +Debby,2012,6,26,18,29.2,-83.7,tropical storm,NA,35,995,180,0 +Debby,2012,6,26,21,29.3,-83.2,tropical storm,NA,35,995,180,0 +Debby,2012,6,27,0,29.4,-82.7,tropical depression,NA,30,997,0,0 +Debby,2012,6,27,6,29.5,-81.5,tropical depression,NA,30,998,0,0 +Debby,2012,6,27,12,29.5,-80.3,tropical depression,NA,30,1001,0,0 +Ernesto,2012,8,1,12,11.6,-46.7,tropical depression,NA,30,1008,0,0 +Ernesto,2012,8,1,18,12,-48.2,tropical depression,NA,30,1008,0,0 +Ernesto,2012,8,2,0,12.4,-49.9,tropical depression,NA,30,1008,0,0 +Ernesto,2012,8,2,6,12.7,-51.7,tropical depression,NA,30,1008,0,0 +Ernesto,2012,8,2,12,13,-53.6,tropical storm,NA,35,1007,90,0 +Ernesto,2012,8,2,18,13.2,-55.5,tropical storm,NA,45,1006,90,0 +Ernesto,2012,8,3,0,13.4,-57.5,tropical storm,NA,45,1005,120,0 +Ernesto,2012,8,3,6,13.6,-59.7,tropical storm,NA,40,1005,140,0 +Ernesto,2012,8,3,12,13.7,-61.6,tropical storm,NA,40,1003,160,0 +Ernesto,2012,8,3,18,13.8,-63.3,tropical storm,NA,40,1003,160,0 +Ernesto,2012,8,4,0,13.8,-64.8,tropical storm,NA,40,1004,130,0 +Ernesto,2012,8,4,6,13.9,-66.4,tropical storm,NA,45,1005,130,0 +Ernesto,2012,8,4,12,14.2,-67.9,tropical storm,NA,45,1005,130,0 +Ernesto,2012,8,4,18,14.6,-69.5,tropical storm,NA,45,1005,120,0 +Ernesto,2012,8,5,0,15,-71.5,tropical storm,NA,45,1006,120,0 +Ernesto,2012,8,5,6,15,-73.8,tropical storm,NA,45,1006,110,0 +Ernesto,2012,8,5,12,15,-76.1,tropical storm,NA,45,1006,110,0 +Ernesto,2012,8,5,18,15.1,-77.8,tropical storm,NA,45,1005,110,0 +Ernesto,2012,8,6,0,15.2,-78.9,tropical storm,NA,45,1003,110,0 +Ernesto,2012,8,6,6,15.4,-79.6,tropical storm,NA,50,998,110,0 +Ernesto,2012,8,6,12,15.7,-80.2,tropical storm,NA,55,996,110,0 +Ernesto,2012,8,6,18,16.2,-81.2,tropical storm,NA,55,995,110,0 +Ernesto,2012,8,7,0,16.7,-82.2,tropical storm,NA,55,994,110,0 +Ernesto,2012,8,7,6,17.3,-83.3,tropical storm,NA,55,993,140,0 +Ernesto,2012,8,7,12,17.8,-84.4,hurricane,1,65,988,160,20 +Ernesto,2012,8,7,18,18.4,-85.7,hurricane,1,75,983,190,30 +Ernesto,2012,8,8,0,18.7,-87.1,hurricane,1,80,979,210,30 +Ernesto,2012,8,8,1,18.7,-87.2,hurricane,1,80,977,210,30 +Ernesto,2012,8,8,3,18.8,-87.7,hurricane,2,85,973,210,30 +Ernesto,2012,8,8,6,18.8,-88.3,hurricane,1,80,973,210,30 +Ernesto,2012,8,8,12,18.8,-89.6,tropical storm,NA,60,983,210,0 +Ernesto,2012,8,8,18,18.8,-90.8,tropical storm,NA,50,993,170,0 +Ernesto,2012,8,9,0,18.8,-91.7,tropical storm,NA,55,993,170,0 +Ernesto,2012,8,9,6,18.7,-92.8,tropical storm,NA,60,992,170,0 +Ernesto,2012,8,9,12,18.4,-93.8,tropical storm,NA,55,989,150,0 +Ernesto,2012,8,9,16,18.3,-94.6,tropical storm,NA,55,989,150,0 +Ernesto,2012,8,9,18,18.2,-94.9,tropical storm,NA,50,993,120,0 +Ernesto,2012,8,10,0,18,-96,tropical storm,NA,40,997,100,0 +Ernesto,2012,8,10,6,17.9,-97.2,tropical depression,NA,30,1002,0,0 +Florence,2012,8,3,6,12.2,-23.1,other low,NA,25,1011,0,0 +Florence,2012,8,3,12,12.5,-24.5,other low,NA,30,1010,0,0 +Florence,2012,8,3,18,13,-25.9,tropical depression,NA,30,1009,0,0 +Florence,2012,8,4,0,13.5,-27.3,tropical depression,NA,30,1009,0,0 +Florence,2012,8,4,6,14.1,-28.6,tropical storm,NA,35,1007,40,0 +Florence,2012,8,4,12,14.7,-29.9,tropical storm,NA,40,1005,70,0 +Florence,2012,8,4,18,15.3,-31.2,tropical storm,NA,45,1003,90,0 +Florence,2012,8,5,0,15.8,-32.5,tropical storm,NA,50,1002,110,0 +Florence,2012,8,5,6,16.1,-33.8,tropical storm,NA,50,1002,110,0 +Florence,2012,8,5,12,16.2,-35,tropical storm,NA,45,1004,90,0 +Florence,2012,8,5,18,16.2,-36.2,tropical storm,NA,45,1005,70,0 +Florence,2012,8,6,0,16.2,-37.3,tropical storm,NA,35,1008,40,0 +Florence,2012,8,6,6,16.3,-38.4,tropical depression,NA,30,1009,0,0 +Florence,2012,8,6,12,16.4,-39.6,other low,NA,30,1009,0,0 +Florence,2012,8,6,18,16.5,-40.9,other low,NA,30,1009,0,0 +Florence,2012,8,7,0,16.7,-42.5,other low,NA,25,1010,0,0 +Florence,2012,8,7,6,16.9,-44.3,other low,NA,25,1010,0,0 +Florence,2012,8,7,12,17.2,-46.3,other low,NA,25,1010,0,0 +Florence,2012,8,7,18,17.6,-48.5,other low,NA,25,1011,0,0 +Florence,2012,8,8,0,18,-50.7,other low,NA,25,1011,0,0 +Florence,2012,8,8,6,18.4,-52.9,other low,NA,25,1011,0,0 +Helene,2012,8,9,18,13.7,-43,tropical depression,NA,30,1010,0,0 +Helene,2012,8,10,0,13.6,-44.6,tropical depression,NA,30,1009,0,0 +Helene,2012,8,10,6,13.5,-46.3,tropical depression,NA,30,1008,0,0 +Helene,2012,8,10,12,13.4,-48.2,tropical depression,NA,30,1009,0,0 +Helene,2012,8,10,18,13.4,-50.5,tropical depression,NA,30,1009,0,0 +Helene,2012,8,11,0,13.4,-52.9,tropical depression,NA,30,1009,0,0 +Helene,2012,8,11,6,13.4,-55.4,tropical depression,NA,30,1009,0,0 +Helene,2012,8,11,12,13.3,-57.9,tropical wave,NA,30,1011,0,0 +Helene,2012,8,11,18,13.3,-59.9,tropical wave,NA,30,1011,0,0 +Helene,2012,8,12,0,13.5,-61.4,tropical wave,NA,30,1011,0,0 +Helene,2012,8,12,6,13.7,-63.2,tropical wave,NA,30,1011,0,0 +Helene,2012,8,12,12,13.9,-65.6,tropical wave,NA,30,1011,0,0 +Helene,2012,8,12,18,14.1,-68,tropical wave,NA,30,1010,0,0 +Helene,2012,8,13,0,14.1,-70.4,tropical wave,NA,30,1009,0,0 +Helene,2012,8,13,6,14.1,-72.7,tropical wave,NA,30,1009,0,0 +Helene,2012,8,13,12,14.1,-74.9,tropical wave,NA,30,1008,0,0 +Helene,2012,8,13,18,14.1,-76.6,tropical wave,NA,30,1008,0,0 +Helene,2012,8,14,0,14.1,-78.4,tropical wave,NA,30,1008,0,0 +Helene,2012,8,14,6,14.1,-80.1,tropical wave,NA,30,1009,0,0 +Helene,2012,8,14,12,14.1,-81.8,tropical wave,NA,30,1009,0,0 +Helene,2012,8,14,18,14.3,-83.6,tropical wave,NA,30,1009,0,0 +Helene,2012,8,15,0,14.7,-85.3,tropical wave,NA,30,1010,0,0 +Helene,2012,8,15,6,15.2,-87,tropical wave,NA,30,1010,0,0 +Helene,2012,8,15,12,15.7,-88.6,other low,NA,30,1011,0,0 +Helene,2012,8,15,18,16.5,-89.5,other low,NA,25,1011,0,0 +Helene,2012,8,16,0,17.5,-90.5,other low,NA,25,1011,0,0 +Helene,2012,8,16,6,18.5,-91,other low,NA,25,1011,0,0 +Helene,2012,8,16,12,19.2,-91.5,other low,NA,25,1011,0,0 +Helene,2012,8,16,18,19.3,-92.6,other low,NA,25,1011,0,0 +Helene,2012,8,17,0,19.3,-94.2,other low,NA,25,1011,0,0 +Helene,2012,8,17,6,19.7,-95.2,other low,NA,25,1011,0,0 +Helene,2012,8,17,12,19.9,-95.7,tropical depression,NA,30,1009,0,0 +Helene,2012,8,17,18,20.3,-95.9,tropical storm,NA,40,1004,20,0 +Helene,2012,8,18,0,20.8,-96.1,tropical storm,NA,35,1006,30,0 +Helene,2012,8,18,6,21.4,-96.8,tropical depression,NA,30,1007,0,0 +Helene,2012,8,18,12,21.9,-97.7,tropical depression,NA,30,1008,0,0 +Helene,2012,8,18,18,22.5,-98.7,tropical depression,NA,25,1009,0,0 +Helene,2012,8,19,0,22.7,-98.9,other low,NA,25,1009,0,0 +Gordon,2012,8,15,12,27.6,-54.6,tropical depression,NA,30,1013,0,0 +Gordon,2012,8,15,18,29.1,-55.1,tropical depression,NA,30,1012,0,0 +Gordon,2012,8,16,0,30.5,-55.4,tropical storm,NA,35,1010,20,0 +Gordon,2012,8,16,6,31.7,-55.2,tropical storm,NA,40,1009,30,0 +Gordon,2012,8,16,12,32.9,-54.4,tropical storm,NA,45,1006,60,0 +Gordon,2012,8,16,18,33.9,-53,tropical storm,NA,55,998,70,0 +Gordon,2012,8,17,0,34.3,-51.1,tropical storm,NA,60,995,70,0 +Gordon,2012,8,17,6,34.6,-49.1,tropical storm,NA,55,998,90,0 +Gordon,2012,8,17,12,34.4,-47,tropical storm,NA,55,997,130,0 +Gordon,2012,8,17,18,34.3,-45,tropical storm,NA,55,993,160,0 +Gordon,2012,8,18,0,34.2,-43.1,tropical storm,NA,60,990,170,0 +Gordon,2012,8,18,6,34,-41.5,hurricane,1,65,987,190,20 +Gordon,2012,8,18,12,34,-39.6,hurricane,1,75,979,190,30 +Gordon,2012,8,18,18,34,-37.5,hurricane,2,90,969,190,50 +Gordon,2012,8,19,0,34.3,-35,hurricane,2,95,965,190,50 +Gordon,2012,8,19,6,34.7,-32.6,hurricane,2,90,969,190,50 +Gordon,2012,8,19,12,35.2,-30.6,hurricane,2,90,969,190,50 +Gordon,2012,8,19,18,35.7,-28.5,hurricane,1,80,977,190,50 +Gordon,2012,8,20,0,36.4,-26.6,hurricane,1,70,981,170,50 +Gordon,2012,8,20,5,37,-25.1,hurricane,1,65,984,170,50 +Gordon,2012,8,20,6,37.1,-25,hurricane,1,65,984,170,50 +Gordon,2012,8,20,12,37.9,-23.2,tropical storm,NA,60,990,160,0 +Gordon,2012,8,20,18,38.9,-21.1,other low,NA,45,996,150,0 +Gordon,2012,8,21,0,39.8,-19.3,other low,NA,40,1000,150,0 +Gordon,2012,8,21,6,40,-17.7,other low,NA,40,1002,150,0 +Gordon,2012,8,21,12,39.8,-16.6,other low,NA,30,1004,0,0 +Isaac,2012,8,20,12,15.7,-44.8,other low,NA,25,1010,0,0 +Isaac,2012,8,20,18,15.6,-46.8,other low,NA,30,1009,0,0 +Isaac,2012,8,21,0,15.2,-48.5,other low,NA,30,1008,0,0 +Isaac,2012,8,21,6,14.9,-50.1,tropical depression,NA,30,1007,0,0 +Isaac,2012,8,21,12,15,-51.6,tropical depression,NA,30,1006,0,0 +Isaac,2012,8,21,18,15.2,-53.1,tropical storm,NA,35,1005,40,0 +Isaac,2012,8,22,0,15.4,-54.8,tropical storm,NA,40,1004,40,0 +Isaac,2012,8,22,6,15.7,-56.6,tropical storm,NA,45,1003,50,0 +Isaac,2012,8,22,12,15.9,-58.6,tropical storm,NA,45,1004,90,0 +Isaac,2012,8,22,18,16.1,-60.4,tropical storm,NA,45,1004,150,0 +Isaac,2012,8,23,0,15.7,-62,tropical storm,NA,45,1004,200,0 +Isaac,2012,8,23,6,15,-63.4,tropical storm,NA,45,1004,180,0 +Isaac,2012,8,23,12,15.1,-65,tropical storm,NA,45,1003,160,0 +Isaac,2012,8,23,18,15.6,-66.4,tropical storm,NA,45,1003,160,0 +Isaac,2012,8,24,0,15.7,-67.8,tropical storm,NA,45,1002,180,0 +Isaac,2012,8,24,6,15.4,-69.1,tropical storm,NA,45,998,220,0 +Isaac,2012,8,24,12,15.7,-70.4,tropical storm,NA,50,995,260,0 +Isaac,2012,8,24,18,16.6,-71.2,tropical storm,NA,55,993,300,0 +Isaac,2012,8,25,0,17.3,-71.8,tropical storm,NA,55,992,350,0 +Isaac,2012,8,25,6,18.3,-72.7,tropical storm,NA,55,991,290,0 +Isaac,2012,8,25,12,19.6,-73.9,tropical storm,NA,50,997,260,0 +Isaac,2012,8,25,15,20.1,-74.5,tropical storm,NA,50,997,260,0 +Isaac,2012,8,25,18,20.8,-75.2,tropical storm,NA,50,997,270,0 +Isaac,2012,8,26,0,21.8,-76.7,tropical storm,NA,50,997,310,0 +Isaac,2012,8,26,6,22.7,-78.3,tropical storm,NA,55,995,270,0 +Isaac,2012,8,26,12,23.4,-80,tropical storm,NA,55,995,270,0 +Isaac,2012,8,26,18,23.7,-81.4,tropical storm,NA,50,992,270,0 +Isaac,2012,8,27,0,24.2,-82.6,tropical storm,NA,50,990,300,0 +Isaac,2012,8,27,6,25,-83.6,tropical storm,NA,50,989,330,0 +Isaac,2012,8,27,12,25.7,-84.7,tropical storm,NA,55,987,330,0 +Isaac,2012,8,27,18,26.3,-85.7,tropical storm,NA,60,982,330,0 +Isaac,2012,8,28,0,26.8,-86.7,tropical storm,NA,60,979,330,0 +Isaac,2012,8,28,6,27.4,-87.6,tropical storm,NA,60,978,320,0 +Isaac,2012,8,28,12,28,-88.3,hurricane,1,65,975,310,60 +Isaac,2012,8,28,18,28.6,-88.8,hurricane,1,70,972,320,60 +Isaac,2012,8,29,0,28.9,-89.4,hurricane,1,70,967,330,60 +Isaac,2012,8,29,3,29,-89.7,hurricane,1,70,965,330,60 +Isaac,2012,8,29,6,29.1,-90,hurricane,1,70,966,330,50 +Isaac,2012,8,29,8,29.2,-90.2,hurricane,1,70,966,330,50 +Isaac,2012,8,29,12,29.4,-90.5,hurricane,1,65,968,330,50 +Isaac,2012,8,29,18,29.7,-90.8,tropical storm,NA,60,973,330,0 +Isaac,2012,8,30,0,30.1,-91.1,tropical storm,NA,55,977,290,0 +Isaac,2012,8,30,6,30.6,-91.5,tropical storm,NA,55,982,240,0 +Isaac,2012,8,30,12,31.3,-91.9,tropical storm,NA,45,987,200,0 +Isaac,2012,8,30,18,32.1,-92.4,tropical storm,NA,35,993,170,0 +Isaac,2012,8,31,0,33.1,-92.9,tropical depression,NA,30,998,0,0 +Isaac,2012,8,31,6,34.3,-93.5,tropical depression,NA,25,1000,0,0 +Isaac,2012,8,31,12,35.6,-94,tropical depression,NA,20,1001,0,0 +Isaac,2012,8,31,18,36.8,-94.1,tropical depression,NA,20,1003,0,0 +Isaac,2012,9,1,0,37.8,-93.9,tropical depression,NA,20,1004,0,0 +Isaac,2012,9,1,6,38.4,-93.3,tropical depression,NA,20,1005,0,0 +Joyce,2012,8,21,18,10.7,-31.7,other low,NA,25,1011,0,0 +Joyce,2012,8,22,0,11.1,-33.1,other low,NA,25,1011,0,0 +Joyce,2012,8,22,6,11.5,-34.5,tropical depression,NA,25,1011,0,0 +Joyce,2012,8,22,12,12.1,-35.8,tropical depression,NA,30,1009,0,0 +Joyce,2012,8,22,18,12.8,-37.3,tropical depression,NA,30,1009,0,0 +Joyce,2012,8,23,0,13.5,-38.7,tropical depression,NA,30,1009,0,0 +Joyce,2012,8,23,6,14.2,-40,tropical depression,NA,30,1009,0,0 +Joyce,2012,8,23,12,14.8,-41.1,tropical storm,NA,35,1007,120,0 +Joyce,2012,8,23,18,15.5,-42.1,tropical storm,NA,35,1006,180,0 +Joyce,2012,8,24,0,16.1,-43.2,tropical depression,NA,30,1008,0,0 +Joyce,2012,8,24,6,16.7,-44.3,tropical depression,NA,30,1008,0,0 +Joyce,2012,8,24,12,17.4,-45.4,other low,NA,30,1009,0,0 +Kirk,2012,8,28,18,23.9,-43.4,tropical depression,NA,30,1007,0,0 +Kirk,2012,8,29,0,24,-44.5,tropical storm,NA,40,1004,60,0 +Kirk,2012,8,29,6,24.3,-45.5,tropical storm,NA,40,1003,70,0 +Kirk,2012,8,29,12,24.6,-46.3,tropical storm,NA,45,1001,70,0 +Kirk,2012,8,29,18,25.1,-47.1,tropical storm,NA,45,999,70,0 +Kirk,2012,8,30,0,25.6,-47.9,tropical storm,NA,50,995,70,0 +Kirk,2012,8,30,6,26.1,-48.6,tropical storm,NA,55,992,80,0 +Kirk,2012,8,30,12,26.8,-49.3,hurricane,1,65,989,90,15 +Kirk,2012,8,30,18,27.6,-50.1,hurricane,1,75,985,90,25 +Kirk,2012,8,31,0,28.5,-50.5,hurricane,1,80,981,90,25 +Kirk,2012,8,31,6,29.6,-50.7,hurricane,2,90,970,90,25 +Kirk,2012,8,31,12,30.6,-50.9,hurricane,2,90,972,100,30 +Kirk,2012,8,31,18,31.7,-50.6,hurricane,1,80,980,100,30 +Kirk,2012,9,1,0,33.1,-50,hurricane,1,70,988,100,15 +Kirk,2012,9,1,6,34.6,-48.9,hurricane,1,65,990,100,15 +Kirk,2012,9,1,12,36.5,-47.3,tropical storm,NA,60,992,110,0 +Kirk,2012,9,1,18,38.4,-45.4,tropical storm,NA,55,996,100,0 +Kirk,2012,9,2,0,40.3,-43,tropical storm,NA,55,998,120,0 +Kirk,2012,9,2,6,42.4,-40.6,tropical storm,NA,50,1001,120,0 +Kirk,2012,9,2,12,45,-38.1,tropical storm,NA,50,1002,120,0 +Kirk,2012,9,2,18,48.1,-34.6,tropical storm,NA,45,1002,120,0 +Kirk,2012,9,3,0,51.7,-30.9,extratropical,NA,45,1002,120,0 +Leslie,2012,8,28,12,12.9,-27.4,other low,NA,20,1010,0,0 +Leslie,2012,8,28,18,13,-29.6,other low,NA,20,1010,0,0 +Leslie,2012,8,29,0,13.1,-31.7,other low,NA,25,1009,0,0 +Leslie,2012,8,29,6,13.2,-33.7,other low,NA,25,1009,0,0 +Leslie,2012,8,29,12,13.3,-35.6,other low,NA,25,1009,0,0 +Leslie,2012,8,29,18,13.4,-37.5,other low,NA,25,1008,0,0 +Leslie,2012,8,30,0,13.5,-39.2,tropical depression,NA,30,1007,0,0 +Leslie,2012,8,30,6,13.6,-40.9,tropical depression,NA,30,1006,0,0 +Leslie,2012,8,30,12,13.8,-42.6,tropical storm,NA,35,1005,30,0 +Leslie,2012,8,30,18,14.2,-44.2,tropical storm,NA,40,1004,70,0 +Leslie,2012,8,31,0,14.7,-45.8,tropical storm,NA,45,1002,70,0 +Leslie,2012,8,31,6,15.3,-47.4,tropical storm,NA,50,1001,110,0 +Leslie,2012,8,31,12,16,-49,tropical storm,NA,55,999,110,0 +Leslie,2012,8,31,18,16.5,-50.6,tropical storm,NA,55,999,130,0 +Leslie,2012,9,1,0,17.1,-52.2,tropical storm,NA,60,998,130,0 +Leslie,2012,9,1,6,17.6,-53.8,tropical storm,NA,60,996,180,0 +Leslie,2012,9,1,12,18.1,-55.3,tropical storm,NA,60,995,240,0 +Leslie,2012,9,1,18,18.8,-56.8,tropical storm,NA,60,994,260,0 +Leslie,2012,9,2,0,19.6,-58.1,tropical storm,NA,60,994,290,0 +Leslie,2012,9,2,6,20.4,-59.4,tropical storm,NA,55,995,290,0 +Leslie,2012,9,2,12,21.2,-60.7,tropical storm,NA,50,997,320,0 +Leslie,2012,9,2,18,22.1,-61.4,tropical storm,NA,50,997,300,0 +Leslie,2012,9,3,0,22.9,-61.7,tropical storm,NA,50,997,300,0 +Leslie,2012,9,3,6,23.4,-62.2,tropical storm,NA,50,996,300,0 +Leslie,2012,9,3,12,23.5,-62.6,tropical storm,NA,50,993,300,0 +Leslie,2012,9,3,18,23.8,-62.8,tropical storm,NA,55,990,290,0 +Leslie,2012,9,4,0,24.2,-62.6,tropical storm,NA,60,989,300,0 +Leslie,2012,9,4,6,24.5,-62.5,tropical storm,NA,60,988,290,0 +Leslie,2012,9,4,12,24.8,-62.5,tropical storm,NA,60,988,280,0 +Leslie,2012,9,4,18,25,-62.6,tropical storm,NA,60,988,300,0 +Leslie,2012,9,5,0,25.2,-62.8,tropical storm,NA,60,988,300,0 +Leslie,2012,9,5,6,25.4,-62.8,hurricane,1,65,985,340,15 +Leslie,2012,9,5,12,25.6,-62.8,hurricane,1,70,982,340,20 +Leslie,2012,9,5,18,25.8,-62.7,hurricane,1,70,982,340,35 +Leslie,2012,9,6,0,26,-62.6,hurricane,1,65,984,320,35 +Leslie,2012,9,6,6,26.2,-62.5,hurricane,1,65,984,320,35 +Leslie,2012,9,6,12,26.3,-62.4,hurricane,1,65,983,320,35 +Leslie,2012,9,6,18,26.4,-62.3,hurricane,1,65,982,280,35 +Leslie,2012,9,7,0,26.5,-62.2,hurricane,1,65,982,280,60 +Leslie,2012,9,7,6,26.6,-62.2,hurricane,1,65,982,280,60 +Leslie,2012,9,7,12,26.8,-62.2,tropical storm,NA,60,981,280,0 +Leslie,2012,9,7,18,27.1,-62.2,tropical storm,NA,60,981,290,0 +Leslie,2012,9,8,0,27.4,-62.3,tropical storm,NA,60,983,290,0 +Leslie,2012,9,8,6,27.8,-62.4,tropical storm,NA,55,985,290,0 +Leslie,2012,9,8,12,28.3,-62.5,tropical storm,NA,55,987,290,0 +Leslie,2012,9,8,18,29,-62.5,tropical storm,NA,55,988,290,0 +Leslie,2012,9,9,0,29.7,-62.6,tropical storm,NA,55,988,290,0 +Leslie,2012,9,9,6,30.5,-62.6,tropical storm,NA,55,988,300,0 +Leslie,2012,9,9,12,31.5,-62.5,tropical storm,NA,55,988,300,0 +Leslie,2012,9,9,18,32.6,-62.3,tropical storm,NA,55,988,300,0 +Leslie,2012,9,10,0,33.8,-62,tropical storm,NA,55,988,300,0 +Leslie,2012,9,10,6,35.1,-61.6,tropical storm,NA,60,985,330,0 +Leslie,2012,9,10,12,36.4,-60.8,hurricane,1,65,980,330,20 +Leslie,2012,9,10,18,38.5,-59.8,hurricane,1,65,975,330,20 +Leslie,2012,9,11,0,41.1,-58.6,hurricane,1,65,970,330,20 +Leslie,2012,9,11,6,44,-57.3,hurricane,1,65,968,450,30 +Leslie,2012,9,11,9,45.8,-56.1,extratropical,NA,65,968,450,30 +Leslie,2012,9,11,12,47.7,-54.9,extratropical,NA,65,970,480,30 +Leslie,2012,9,11,18,51.6,-51.9,extratropical,NA,60,972,480,0 +Leslie,2012,9,12,0,55.5,-48.5,extratropical,NA,55,975,480,0 +Michael,2012,9,2,0,28.9,-36.7,other low,NA,20,1015,0,0 +Michael,2012,9,2,6,28.1,-37.9,other low,NA,25,1015,0,0 +Michael,2012,9,2,12,27.2,-39.2,other low,NA,25,1015,0,0 +Michael,2012,9,2,18,26.4,-40.1,other low,NA,25,1015,0,0 +Michael,2012,9,3,0,25.8,-40.7,other low,NA,25,1015,0,0 +Michael,2012,9,3,6,25.4,-41.2,tropical depression,NA,25,1015,0,0 +Michael,2012,9,3,12,25.3,-41.7,tropical depression,NA,25,1014,0,0 +Michael,2012,9,3,18,25.5,-42.1,tropical depression,NA,30,1013,0,0 +Michael,2012,9,4,0,25.8,-42.5,tropical depression,NA,30,1011,0,0 +Michael,2012,9,4,6,26.2,-43,tropical storm,NA,35,1009,30,0 +Michael,2012,9,4,12,26.7,-43.5,tropical storm,NA,40,1007,50,0 +Michael,2012,9,4,18,27.1,-43.7,tropical storm,NA,45,1006,50,0 +Michael,2012,9,5,0,27.4,-43.8,tropical storm,NA,45,1005,50,0 +Michael,2012,9,5,6,27.8,-43.8,tropical storm,NA,45,1005,60,0 +Michael,2012,9,5,12,28.2,-43.5,tropical storm,NA,50,1001,70,0 +Michael,2012,9,5,18,28.6,-43.1,hurricane,1,65,992,70,10 +Michael,2012,9,6,0,29,-42.6,hurricane,1,80,981,80,20 +Michael,2012,9,6,6,29.4,-42,hurricane,2,95,968,100,25 +Michael,2012,9,6,12,29.9,-41.4,hurricane,3,100,964,100,25 +Michael,2012,9,6,18,30.3,-41,hurricane,2,95,968,100,25 +Michael,2012,9,7,0,30.6,-40.8,hurricane,2,90,970,110,35 +Michael,2012,9,7,6,30.9,-40.8,hurricane,2,90,970,110,35 +Michael,2012,9,7,12,31.1,-41,hurricane,2,90,970,110,35 +Michael,2012,9,7,18,31.3,-41.2,hurricane,2,85,973,110,35 +Michael,2012,9,8,0,31.6,-41.5,hurricane,1,80,977,100,35 +Michael,2012,9,8,6,32,-41.7,hurricane,1,80,978,100,35 +Michael,2012,9,8,12,32.4,-41.9,hurricane,2,85,975,100,35 +Michael,2012,9,8,18,32.9,-42.1,hurricane,2,90,972,100,35 +Michael,2012,9,9,0,33.3,-42.3,hurricane,2,90,973,100,35 +Michael,2012,9,9,6,33.6,-42.6,hurricane,2,85,976,100,35 +Michael,2012,9,9,12,33.7,-42.9,hurricane,2,85,976,120,40 +Michael,2012,9,9,18,33.7,-43.5,hurricane,1,80,979,120,40 +Michael,2012,9,10,0,33.6,-44.1,hurricane,1,75,982,130,35 +Michael,2012,9,10,6,33.4,-44.9,hurricane,1,70,985,130,35 +Michael,2012,9,10,12,33.6,-45.8,hurricane,1,70,986,130,35 +Michael,2012,9,10,18,33.9,-46.9,hurricane,1,65,988,130,30 +Michael,2012,9,11,0,34.8,-47.8,tropical storm,NA,60,991,100,0 +Michael,2012,9,11,6,36.4,-47.8,tropical storm,NA,55,994,70,0 +Michael,2012,9,11,12,38.2,-47.6,tropical storm,NA,45,997,70,0 +Michael,2012,9,11,18,40.2,-46.6,other low,NA,40,1000,70,0 +Michael,2012,9,12,0,42.5,-45,other low,NA,35,1003,70,0 +Michael,2012,9,12,6,45,-42.6,other low,NA,30,1006,0,0 +Nadine,2012,9,10,12,15.5,-38,tropical depression,NA,25,1008,0,0 +Nadine,2012,9,10,18,15.6,-39.4,tropical depression,NA,25,1007,0,0 +Nadine,2012,9,11,0,15.8,-40.8,tropical depression,NA,25,1007,0,0 +Nadine,2012,9,11,6,16,-41.9,tropical depression,NA,25,1007,0,0 +Nadine,2012,9,11,12,16.4,-42.8,tropical depression,NA,30,1006,0,0 +Nadine,2012,9,11,18,16.9,-43.7,tropical depression,NA,30,1006,0,0 +Nadine,2012,9,12,0,17.5,-44.8,tropical storm,NA,35,1004,100,0 +Nadine,2012,9,12,6,18.1,-45.9,tropical storm,NA,45,1001,120,0 +Nadine,2012,9,12,12,18.8,-47.1,tropical storm,NA,50,997,180,0 +Nadine,2012,9,12,18,19.5,-48.3,tropical storm,NA,55,994,200,0 +Nadine,2012,9,13,0,20.2,-49.5,tropical storm,NA,60,990,230,0 +Nadine,2012,9,13,6,21,-50.6,tropical storm,NA,60,990,240,0 +Nadine,2012,9,13,12,22,-51.7,tropical storm,NA,60,990,280,0 +Nadine,2012,9,13,18,23.2,-52.6,tropical storm,NA,60,989,310,0 +Nadine,2012,9,14,0,24.4,-53.4,tropical storm,NA,60,989,330,0 +Nadine,2012,9,14,6,25.6,-54,tropical storm,NA,60,987,330,0 +Nadine,2012,9,14,12,27,-54,tropical storm,NA,60,986,330,0 +Nadine,2012,9,14,18,28.3,-53.7,hurricane,1,65,984,330,30 +Nadine,2012,9,15,0,29.6,-53.3,hurricane,1,70,981,320,30 +Nadine,2012,9,15,6,30.5,-52.2,hurricane,1,70,980,320,30 +Nadine,2012,9,15,12,30.8,-50.7,hurricane,1,70,980,300,40 +Nadine,2012,9,15,18,30.8,-49.1,hurricane,1,70,980,300,40 +Nadine,2012,9,16,0,30.7,-47.5,hurricane,1,70,981,300,40 +Nadine,2012,9,16,6,30.6,-45.4,hurricane,1,65,984,300,40 +Nadine,2012,9,16,12,30.6,-43,hurricane,1,65,985,300,50 +Nadine,2012,9,16,18,30.8,-40.6,hurricane,1,65,985,300,50 +Nadine,2012,9,17,0,31.1,-38.8,tropical storm,NA,60,986,300,0 +Nadine,2012,9,17,6,31.7,-37.1,tropical storm,NA,60,987,310,0 +Nadine,2012,9,17,12,32.5,-35.9,tropical storm,NA,55,988,310,0 +Nadine,2012,9,17,18,33.1,-35.1,tropical storm,NA,55,988,310,0 +Nadine,2012,9,18,0,33.5,-34.5,tropical storm,NA,50,989,310,0 +Nadine,2012,9,18,6,33.9,-33.9,tropical storm,NA,50,989,320,0 +Nadine,2012,9,18,12,34.3,-33.3,tropical storm,NA,50,989,320,0 +Nadine,2012,9,18,18,34.9,-32.7,tropical storm,NA,50,989,380,0 +Nadine,2012,9,19,0,35.5,-32.3,tropical storm,NA,50,989,380,0 +Nadine,2012,9,19,6,36.1,-32,tropical storm,NA,50,989,380,0 +Nadine,2012,9,19,12,36.7,-32,tropical storm,NA,50,989,380,0 +Nadine,2012,9,19,18,37.1,-32,tropical storm,NA,50,987,380,0 +Nadine,2012,9,20,0,37.2,-31.6,tropical storm,NA,50,986,390,0 +Nadine,2012,9,20,6,36.9,-30.9,tropical storm,NA,50,986,390,0 +Nadine,2012,9,20,12,36.5,-30,tropical storm,NA,50,986,420,0 +Nadine,2012,9,20,18,36.2,-29,tropical storm,NA,55,984,450,0 +Nadine,2012,9,21,0,35.9,-28.2,tropical storm,NA,55,984,500,0 +Nadine,2012,9,21,6,35.4,-27.4,tropical storm,NA,55,984,500,0 +Nadine,2012,9,21,12,34.6,-27.3,tropical storm,NA,50,984,470,0 +Nadine,2012,9,21,18,33.6,-27.2,other low,NA,50,984,450,0 +Nadine,2012,9,22,0,32.5,-26.9,other low,NA,45,985,430,0 +Nadine,2012,9,22,6,31.8,-26.7,other low,NA,45,986,390,0 +Nadine,2012,9,22,12,31,-26.4,other low,NA,45,987,380,0 +Nadine,2012,9,22,18,30.5,-26.2,other low,NA,45,987,370,0 +Nadine,2012,9,23,0,30.4,-25.9,tropical storm,NA,45,987,370,0 +Nadine,2012,9,23,6,30.4,-25.6,tropical storm,NA,50,987,370,0 +Nadine,2012,9,23,12,30.6,-25.4,tropical storm,NA,50,987,340,0 +Nadine,2012,9,23,18,30.9,-25.8,tropical storm,NA,50,988,340,0 +Nadine,2012,9,24,0,31.1,-26.2,tropical storm,NA,45,990,340,0 +Nadine,2012,9,24,6,31.3,-26.7,tropical storm,NA,45,992,340,0 +Nadine,2012,9,24,12,31.5,-27.4,tropical storm,NA,45,995,320,0 +Nadine,2012,9,24,18,31.8,-28.1,tropical storm,NA,45,996,280,0 +Nadine,2012,9,25,0,32.1,-28.8,tropical storm,NA,40,996,250,0 +Nadine,2012,9,25,6,32.1,-29.5,tropical storm,NA,40,996,250,0 +Nadine,2012,9,25,12,32,-29.9,tropical storm,NA,40,997,250,0 +Nadine,2012,9,25,18,31.7,-30.1,tropical storm,NA,40,997,250,0 +Nadine,2012,9,26,0,31.4,-30.3,tropical storm,NA,40,998,230,0 +Nadine,2012,9,26,6,31.1,-30.4,tropical storm,NA,40,998,190,0 +Nadine,2012,9,26,12,30.7,-30.5,tropical storm,NA,45,995,190,0 +Nadine,2012,9,26,18,30.2,-30.7,tropical storm,NA,50,993,190,0 +Nadine,2012,9,27,0,29.6,-31,tropical storm,NA,50,993,190,0 +Nadine,2012,9,27,6,29.1,-31.4,tropical storm,NA,50,993,190,0 +Nadine,2012,9,27,12,28.7,-31.9,tropical storm,NA,50,993,190,0 +Nadine,2012,9,27,18,28.5,-32.5,tropical storm,NA,55,993,200,0 +Nadine,2012,9,28,0,28.5,-33.2,tropical storm,NA,55,993,200,0 +Nadine,2012,9,28,6,28.7,-33.9,tropical storm,NA,60,991,200,0 +Nadine,2012,9,28,12,29.2,-34.4,hurricane,1,65,988,190,25 +Nadine,2012,9,28,18,29.7,-34.8,hurricane,1,65,988,190,25 +Nadine,2012,9,29,0,30.5,-35.3,hurricane,1,65,988,160,25 +Nadine,2012,9,29,6,31.4,-35.7,hurricane,1,65,988,160,25 +Nadine,2012,9,29,12,32.6,-36.1,hurricane,1,65,988,160,25 +Nadine,2012,9,29,18,33.8,-36.6,hurricane,1,70,986,160,25 +Nadine,2012,9,30,0,35,-37.1,hurricane,1,75,983,160,25 +Nadine,2012,9,30,6,36,-37.6,hurricane,1,75,982,160,25 +Nadine,2012,9,30,12,36.8,-38.3,hurricane,1,80,978,160,40 +Nadine,2012,9,30,18,37.2,-38.9,hurricane,1,80,978,180,50 +Nadine,2012,10,1,0,36.9,-39.4,hurricane,1,75,980,180,50 +Nadine,2012,10,1,6,36.4,-39.4,hurricane,1,65,988,190,30 +Nadine,2012,10,1,12,35.9,-39.4,tropical storm,NA,60,991,200,0 +Nadine,2012,10,1,18,35.4,-39.4,tropical storm,NA,55,995,200,0 +Nadine,2012,10,2,0,34.8,-39.1,tropical storm,NA,55,995,190,0 +Nadine,2012,10,2,6,34.5,-38.5,tropical storm,NA,55,995,190,0 +Nadine,2012,10,2,12,34.3,-37.9,tropical storm,NA,55,995,160,0 +Nadine,2012,10,2,18,34.3,-37.1,tropical storm,NA,55,995,150,0 +Nadine,2012,10,3,0,34.4,-36.2,tropical storm,NA,50,998,150,0 +Nadine,2012,10,3,6,34.6,-35.3,tropical storm,NA,45,1000,150,0 +Nadine,2012,10,3,12,34.9,-34,tropical storm,NA,45,1000,180,0 +Nadine,2012,10,3,18,35.4,-32.5,tropical storm,NA,40,1000,180,0 +Nadine,2012,10,4,0,36.3,-30.9,other low,NA,40,998,240,0 +Nadine,2012,10,4,6,37.6,-29.1,other low,NA,40,996,240,0 +Oscar,2012,10,2,12,12.4,-38,other low,NA,25,1008,0,0 +Oscar,2012,10,2,18,13.6,-38.7,other low,NA,25,1008,0,0 +Oscar,2012,10,3,0,15,-39.6,other low,NA,30,1007,0,0 +Oscar,2012,10,3,6,16.3,-40.5,tropical depression,NA,30,1006,0,0 +Oscar,2012,10,3,12,17.4,-41.2,tropical depression,NA,30,1006,0,0 +Oscar,2012,10,3,18,18.2,-41.8,tropical storm,NA,35,1005,120,0 +Oscar,2012,10,4,0,18.9,-42.1,tropical storm,NA,40,1002,140,0 +Oscar,2012,10,4,6,19.5,-42.2,tropical storm,NA,40,1001,160,0 +Oscar,2012,10,4,12,20.2,-42,tropical storm,NA,45,998,180,0 +Oscar,2012,10,4,18,21,-41.5,tropical storm,NA,45,996,180,0 +Oscar,2012,10,5,0,21.8,-40.6,tropical storm,NA,45,995,180,0 +Oscar,2012,10,5,6,22.7,-39.4,tropical storm,NA,45,994,180,0 +Oscar,2012,10,5,12,23.5,-37.8,tropical storm,NA,45,994,180,0 +Patty,2012,10,10,18,25.5,-72.5,other low,NA,25,1012,0,0 +Patty,2012,10,11,0,25.4,-72.4,tropical depression,NA,30,1010,0,0 +Patty,2012,10,11,6,25.4,-72.2,tropical storm,NA,35,1009,60,0 +Patty,2012,10,11,12,25.5,-72.2,tropical storm,NA,35,1008,60,0 +Patty,2012,10,11,18,25.6,-72.3,tropical storm,NA,35,1007,60,0 +Patty,2012,10,12,0,25.5,-72.4,tropical storm,NA,40,1005,80,0 +Patty,2012,10,12,6,25.4,-72.3,tropical storm,NA,40,1005,70,0 +Patty,2012,10,12,12,25.3,-72.2,tropical storm,NA,40,1006,60,0 +Patty,2012,10,12,18,25.4,-72.1,tropical storm,NA,35,1007,50,0 +Patty,2012,10,13,0,25.4,-71.9,tropical storm,NA,35,1007,30,0 +Patty,2012,10,13,6,25.3,-71.7,tropical depression,NA,30,1008,0,0 +Rafael,2012,10,12,18,14.7,-62.7,tropical storm,NA,35,1006,150,0 +Rafael,2012,10,13,0,15,-63.2,tropical storm,NA,35,1007,150,0 +Rafael,2012,10,13,6,15.3,-63.7,tropical storm,NA,35,1006,150,0 +Rafael,2012,10,13,12,15.6,-63.8,tropical storm,NA,35,1006,150,0 +Rafael,2012,10,13,18,16.7,-63.6,tropical storm,NA,40,1004,150,0 +Rafael,2012,10,14,0,17.9,-63.5,tropical storm,NA,45,1004,150,0 +Rafael,2012,10,14,6,18.9,-63.6,tropical storm,NA,45,1003,150,0 +Rafael,2012,10,14,12,19.7,-63.9,tropical storm,NA,50,999,210,0 +Rafael,2012,10,14,18,20.4,-64.3,tropical storm,NA,55,994,250,0 +Rafael,2012,10,15,0,21.3,-64.7,tropical storm,NA,60,989,250,0 +Rafael,2012,10,15,6,22,-65.2,hurricane,1,65,986,250,50 +Rafael,2012,10,15,12,22.6,-65.6,hurricane,1,70,983,270,50 +Rafael,2012,10,15,18,23.6,-65.8,hurricane,1,75,979,300,50 +Rafael,2012,10,16,0,24.6,-65.6,hurricane,1,80,974,300,50 +Rafael,2012,10,16,6,25.9,-65.3,hurricane,1,80,972,310,60 +Rafael,2012,10,16,12,27.6,-64.9,hurricane,1,80,969,310,60 +Rafael,2012,10,16,18,29.5,-64.2,hurricane,1,75,970,300,60 +Rafael,2012,10,17,0,31.6,-63.1,hurricane,1,75,970,300,70 +Rafael,2012,10,17,6,34,-61.7,hurricane,1,70,972,360,90 +Rafael,2012,10,17,12,36.5,-60.1,hurricane,1,65,972,420,90 +Rafael,2012,10,17,18,38.8,-58,extratropical,NA,65,972,440,70 +Rafael,2012,10,18,0,41.3,-55,extratropical,NA,65,972,470,70 +Rafael,2012,10,18,6,43.4,-50.7,extratropical,NA,60,972,470,0 +Rafael,2012,10,18,12,45.2,-46,extratropical,NA,55,972,470,0 +Rafael,2012,10,18,18,47,-41,extratropical,NA,55,973,470,0 +Rafael,2012,10,19,0,49.2,-36.2,extratropical,NA,50,975,580,0 +Rafael,2012,10,19,6,51,-32.5,extratropical,NA,50,973,600,0 +Rafael,2012,10,19,12,53,-29.5,extratropical,NA,50,970,630,0 +Rafael,2012,10,19,18,55,-30,extratropical,NA,50,968,760,0 +Rafael,2012,10,20,0,56.5,-33,extratropical,NA,50,966,1090,0 +Rafael,2012,10,20,6,56,-37,extratropical,NA,50,966,990,0 +Rafael,2012,10,20,12,53.1,-36.4,extratropical,NA,50,967,930,0 +Rafael,2012,10,20,18,50.8,-34.3,extratropical,NA,50,970,960,0 +Rafael,2012,10,21,0,49.7,-32.2,extratropical,NA,45,975,720,0 +Rafael,2012,10,21,6,49.2,-31.1,extratropical,NA,40,978,720,0 +Rafael,2012,10,21,12,48.2,-30.6,extratropical,NA,40,979,720,0 +Rafael,2012,10,21,18,47,-30.8,extratropical,NA,40,982,720,0 +Rafael,2012,10,22,0,45.5,-31.1,extratropical,NA,40,983,720,0 +Rafael,2012,10,22,6,43.9,-29.8,extratropical,NA,40,985,720,0 +Rafael,2012,10,22,12,41.9,-28.3,extratropical,NA,40,987,720,0 +Rafael,2012,10,22,18,40,-27,extratropical,NA,40,989,720,0 +Rafael,2012,10,23,0,39.2,-25.5,extratropical,NA,40,992,720,0 +Rafael,2012,10,23,6,39.5,-24.5,extratropical,NA,40,992,720,0 +Rafael,2012,10,23,12,39.8,-23.6,extratropical,NA,40,992,720,0 +Rafael,2012,10,23,18,40.5,-22.1,extratropical,NA,40,992,720,0 +Rafael,2012,10,24,0,41.2,-20.1,extratropical,NA,40,993,720,0 +Rafael,2012,10,24,6,41.6,-18.8,extratropical,NA,40,995,720,0 +Rafael,2012,10,24,12,42.1,-17.5,extratropical,NA,30,995,0,0 +Rafael,2012,10,24,18,41.9,-16,extratropical,NA,30,995,0,0 +Rafael,2012,10,25,0,41.6,-14.6,extratropical,NA,30,995,0,0 +Rafael,2012,10,25,6,41.3,-13.3,extratropical,NA,30,995,0,0 +Rafael,2012,10,25,12,41,-12,extratropical,NA,30,996,0,0 +Rafael,2012,10,25,18,40.9,-11.2,extratropical,NA,30,997,0,0 +Rafael,2012,10,26,0,40.7,-10.4,extratropical,NA,30,998,0,0 +Rafael,2012,10,26,6,40.3,-9.1,extratropical,NA,30,999,0,0 +Rafael,2012,10,26,12,40,-7.5,extratropical,NA,25,1002,0,0 +Sandy,2012,10,21,18,14.3,-77.4,other low,NA,25,1006,0,0 +Sandy,2012,10,22,0,13.9,-77.8,other low,NA,25,1005,0,0 +Sandy,2012,10,22,6,13.5,-78.2,other low,NA,25,1003,0,0 +Sandy,2012,10,22,12,13.1,-78.6,tropical depression,NA,30,1002,0,0 +Sandy,2012,10,22,18,12.7,-78.7,tropical storm,NA,35,1000,60,0 +Sandy,2012,10,23,0,12.6,-78.4,tropical storm,NA,40,998,60,0 +Sandy,2012,10,23,6,12.9,-78.1,tropical storm,NA,40,998,80,0 +Sandy,2012,10,23,12,13.4,-77.9,tropical storm,NA,40,995,100,0 +Sandy,2012,10,23,18,14,-77.6,tropical storm,NA,45,993,120,0 +Sandy,2012,10,24,0,14.7,-77.3,tropical storm,NA,55,990,190,0 +Sandy,2012,10,24,6,15.6,-77.1,tropical storm,NA,60,987,200,0 +Sandy,2012,10,24,12,16.6,-76.9,hurricane,1,65,981,230,20 +Sandy,2012,10,24,18,17.7,-76.7,hurricane,1,75,972,250,55 +Sandy,2012,10,24,19,17.9,-76.6,hurricane,1,75,971,250,55 +Sandy,2012,10,25,0,18.9,-76.4,hurricane,2,85,964,310,55 +Sandy,2012,10,25,5,20,-76,hurricane,3,100,954,360,55 +Sandy,2012,10,25,6,20.1,-76,hurricane,3,100,954,360,45 +Sandy,2012,10,25,9,20.9,-75.7,hurricane,2,95,960,420,45 +Sandy,2012,10,25,12,21.7,-75.5,hurricane,2,95,966,480,50 +Sandy,2012,10,25,18,23.3,-75.3,hurricane,2,90,963,540,50 +Sandy,2012,10,26,0,24.8,-75.9,hurricane,1,75,965,570,60 +Sandy,2012,10,26,6,25.7,-76.4,hurricane,1,70,968,540,80 +Sandy,2012,10,26,12,26.4,-76.9,hurricane,1,65,970,530,90 +Sandy,2012,10,26,18,27,-77.2,hurricane,1,65,971,570,90 +Sandy,2012,10,27,0,27.5,-77.1,tropical storm,NA,60,969,630,0 +Sandy,2012,10,27,6,28.1,-76.9,tropical storm,NA,60,968,630,0 +Sandy,2012,10,27,12,28.8,-76.5,hurricane,1,70,956,660,120 +Sandy,2012,10,27,18,29.7,-75.6,hurricane,1,70,960,690,180 +Sandy,2012,10,28,0,30.5,-74.7,hurricane,1,65,960,780,180 +Sandy,2012,10,28,6,31.3,-73.9,hurricane,1,65,959,750,180 +Sandy,2012,10,28,12,32,-73,hurricane,1,65,954,750,180 +Sandy,2012,10,28,18,32.8,-72,hurricane,1,65,952,800,180 +Sandy,2012,10,29,0,33.9,-71,hurricane,1,70,950,850,150 +Sandy,2012,10,29,6,35.3,-70.5,hurricane,1,80,947,870,150 +Sandy,2012,10,29,12,36.9,-71,hurricane,2,85,945,820,120 +Sandy,2012,10,29,18,38.3,-73.2,hurricane,1,80,940,840,300 +Sandy,2012,10,29,21,38.8,-74,extratropical,NA,75,943,840,300 +Sandy,2012,10,29,23,39.4,-74.4,extratropical,NA,70,945,860,130 +Sandy,2012,10,30,0,39.5,-74.5,extratropical,NA,70,946,860,65 +Sandy,2012,10,30,6,39.9,-76.2,extratropical,NA,55,960,930,0 +Sandy,2012,10,30,12,40.1,-77.8,extratropical,NA,50,978,990,0 +Sandy,2012,10,30,18,40.4,-78.9,extratropical,NA,40,986,960,0 +Sandy,2012,10,31,0,40.7,-79.8,extratropical,NA,35,992,410,0 +Sandy,2012,10,31,6,41.1,-80.3,extratropical,NA,35,993,380,0 +Sandy,2012,10,31,12,41.5,-80.7,extratropical,NA,30,995,0,0 +Tony,2012,10,21,18,20.1,-50.8,other low,NA,25,1011,0,0 +Tony,2012,10,22,0,20.4,-51.2,other low,NA,25,1011,0,0 +Tony,2012,10,22,6,20.8,-51.5,other low,NA,25,1010,0,0 +Tony,2012,10,22,12,21.3,-51.7,other low,NA,30,1009,0,0 +Tony,2012,10,22,18,21.9,-51.8,tropical depression,NA,30,1006,0,0 +Tony,2012,10,23,0,22.5,-51.8,tropical depression,NA,30,1006,0,0 +Tony,2012,10,23,6,23.6,-51.6,tropical depression,NA,30,1006,0,0 +Tony,2012,10,23,12,24.7,-51.3,tropical depression,NA,30,1006,0,0 +Tony,2012,10,23,18,25.7,-50.6,tropical depression,NA,30,1005,0,0 +Tony,2012,10,24,0,26.5,-49.6,tropical storm,NA,35,1004,40,0 +Tony,2012,10,24,6,27.2,-48.5,tropical storm,NA,40,1003,90,0 +Tony,2012,10,24,12,27.9,-46.8,tropical storm,NA,45,1000,90,0 +Tony,2012,10,24,18,28.7,-44.7,tropical storm,NA,45,1000,90,0 +Tony,2012,10,25,0,29.5,-42.4,tropical storm,NA,45,1000,100,0 +Tony,2012,10,25,6,30.1,-40,tropical storm,NA,45,1000,130,0 +Tony,2012,10,25,12,30.6,-37.6,tropical storm,NA,35,1000,120,0 +Tony,2012,10,25,18,31,-35.1,extratropical,NA,35,1001,80,0 +Tony,2012,10,26,0,31.3,-32.6,extratropical,NA,35,1001,80,0 +Tony,2012,10,26,6,31.2,-30.5,extratropical,NA,30,1004,0,0 +Tony,2012,10,26,12,30.9,-28.6,extratropical,NA,25,1006,0,0 +Andrea,2013,6,5,18,25.1,-86.6,tropical storm,NA,35,1006,120,0 +Andrea,2013,6,6,0,25.6,-86.5,tropical storm,NA,40,1002,120,0 +Andrea,2013,6,6,6,26.7,-86.1,tropical storm,NA,50,999,120,0 +Andrea,2013,6,6,12,27.8,-84.9,tropical storm,NA,55,995,120,0 +Andrea,2013,6,6,18,28.9,-83.9,tropical storm,NA,55,993,180,0 +Andrea,2013,6,6,22,29.5,-83.4,tropical storm,NA,50,992,180,0 +Andrea,2013,6,7,0,29.8,-83,tropical storm,NA,40,993,120,0 +Andrea,2013,6,7,6,31.6,-81.4,tropical storm,NA,40,996,120,0 +Andrea,2013,6,7,12,33.5,-80.2,tropical storm,NA,40,996,180,0 +Andrea,2013,6,7,18,35.2,-78.6,extratropical,NA,40,996,200,0 +Andrea,2013,6,8,0,37.4,-76.2,extratropical,NA,40,997,200,0 +Andrea,2013,6,8,6,39.9,-73.6,extratropical,NA,40,997,200,0 +Andrea,2013,6,8,12,42.4,-70.4,extratropical,NA,40,999,220,0 +Andrea,2013,6,8,18,44.5,-67,extratropical,NA,40,1002,220,0 +Barry,2013,6,16,0,12.4,-81.5,other low,NA,20,1009,0,0 +Barry,2013,6,16,6,13.4,-82,other low,NA,20,1009,0,0 +Barry,2013,6,16,12,14.2,-82.8,other low,NA,25,1008,0,0 +Barry,2013,6,16,18,14.8,-83.8,other low,NA,25,1008,0,0 +Barry,2013,6,17,0,15.3,-84.8,other low,NA,25,1008,0,0 +Barry,2013,6,17,6,15.6,-85.9,other low,NA,25,1008,0,0 +Barry,2013,6,17,12,16,-87,tropical depression,NA,30,1007,0,0 +Barry,2013,6,17,18,16.3,-87.9,tropical depression,NA,30,1007,0,0 +Barry,2013,6,17,22,16.5,-88.4,tropical depression,NA,30,1006,0,0 +Barry,2013,6,18,0,16.6,-88.6,tropical depression,NA,30,1007,0,0 +Barry,2013,6,18,6,17,-89.3,tropical depression,NA,25,1009,0,0 +Barry,2013,6,18,12,17.6,-90.3,tropical depression,NA,30,1008,0,0 +Barry,2013,6,18,18,18.2,-91.3,tropical depression,NA,30,1008,0,0 +Barry,2013,6,19,0,18.8,-92.2,tropical depression,NA,30,1007,0,0 +Barry,2013,6,19,6,19.2,-93.1,tropical depression,NA,30,1007,0,0 +Barry,2013,6,19,12,19.5,-94,tropical storm,NA,35,1006,50,0 +Barry,2013,6,19,18,19.6,-94.8,tropical storm,NA,40,1005,100,0 +Barry,2013,6,20,0,19.6,-95.4,tropical storm,NA,40,1003,100,0 +Barry,2013,6,20,6,19.6,-95.9,tropical storm,NA,40,1003,100,0 +Barry,2013,6,20,11,19.6,-96.4,tropical storm,NA,40,1003,100,0 +Barry,2013,6,20,12,19.6,-96.5,tropical storm,NA,40,1004,70,0 +Barry,2013,6,20,18,19.6,-97,tropical depression,NA,30,1007,0,0 +Barry,2013,6,21,0,19.6,-97.5,other low,NA,25,1011,0,0 +Chantal,2013,7,7,12,9.3,-41.4,tropical storm,NA,35,1011,30,0 +Chantal,2013,7,7,18,9.5,-43.8,tropical storm,NA,35,1011,40,0 +Chantal,2013,7,8,0,9.8,-46.1,tropical storm,NA,35,1010,40,0 +Chantal,2013,7,8,6,10.1,-48.4,tropical storm,NA,35,1009,40,0 +Chantal,2013,7,8,12,10.7,-50.6,tropical storm,NA,40,1008,120,0 +Chantal,2013,7,8,18,11.4,-52.9,tropical storm,NA,45,1007,120,0 +Chantal,2013,7,9,0,12.1,-55.2,tropical storm,NA,50,1006,140,0 +Chantal,2013,7,9,6,13,-57.7,tropical storm,NA,50,1005,140,0 +Chantal,2013,7,9,12,13.9,-60.3,tropical storm,NA,55,1003,140,0 +Chantal,2013,7,9,18,14.8,-62.9,tropical storm,NA,55,1006,140,0 +Chantal,2013,7,10,0,15.6,-65.6,tropical storm,NA,45,1008,120,0 +Chantal,2013,7,10,6,16.2,-68.4,tropical storm,NA,40,1010,80,0 +Chantal,2013,7,10,12,16.7,-71.2,tropical storm,NA,40,1011,80,0 +Dorian,2013,7,22,18,11.3,-20,other low,NA,25,1009,0,0 +Dorian,2013,7,23,0,11.5,-20.9,other low,NA,25,1009,0,0 +Dorian,2013,7,23,6,11.7,-21.8,other low,NA,25,1009,0,0 +Dorian,2013,7,23,12,12,-22.8,other low,NA,25,1009,0,0 +Dorian,2013,7,23,18,12.4,-23.9,tropical depression,NA,25,1008,0,0 +Dorian,2013,7,24,0,13,-25.4,tropical depression,NA,30,1007,0,0 +Dorian,2013,7,24,6,13.5,-27.1,tropical storm,NA,35,1006,40,0 +Dorian,2013,7,24,12,13.9,-29,tropical storm,NA,40,1005,40,0 +Dorian,2013,7,24,18,14.4,-30.8,tropical storm,NA,45,1004,40,0 +Dorian,2013,7,25,0,14.9,-32.4,tropical storm,NA,45,1004,40,0 +Dorian,2013,7,25,6,15.3,-33.9,tropical storm,NA,50,1002,70,0 +Dorian,2013,7,25,12,15.7,-35.5,tropical storm,NA,50,1002,70,0 +Dorian,2013,7,25,18,16,-37.1,tropical storm,NA,50,1003,70,0 +Dorian,2013,7,26,0,16.4,-38.7,tropical storm,NA,45,1005,70,0 +Dorian,2013,7,26,6,16.9,-40.7,tropical storm,NA,45,1006,70,0 +Dorian,2013,7,26,12,17.3,-42.8,tropical storm,NA,45,1008,50,0 +Dorian,2013,7,26,18,17.6,-45,tropical storm,NA,40,1010,50,0 +Dorian,2013,7,27,0,17.8,-47.1,tropical storm,NA,35,1012,50,0 +Dorian,2013,7,27,6,18,-49.2,tropical storm,NA,35,1012,50,0 +Dorian,2013,7,27,12,18.3,-51.1,tropical storm,NA,35,1012,60,0 +Dorian,2013,7,27,18,18.6,-53,disturbance,NA,35,1012,60,0 +Dorian,2013,7,28,0,19,-54.9,disturbance,NA,35,1012,60,0 +Dorian,2013,7,28,6,19.4,-56.8,disturbance,NA,35,1013,60,0 +Dorian,2013,7,28,12,19.8,-58.6,disturbance,NA,35,1013,60,0 +Dorian,2013,7,28,18,20.1,-60.3,disturbance,NA,30,1013,0,0 +Dorian,2013,7,29,0,20.4,-62,disturbance,NA,25,1014,0,0 +Dorian,2013,7,29,6,20.6,-63.7,disturbance,NA,25,1014,0,0 +Dorian,2013,7,29,12,20.8,-65.3,disturbance,NA,25,1015,0,0 +Dorian,2013,7,29,18,21,-66.9,disturbance,NA,25,1015,0,0 +Dorian,2013,7,30,0,21.3,-68.5,disturbance,NA,25,1015,0,0 +Dorian,2013,7,30,6,21.5,-69.8,disturbance,NA,25,1015,0,0 +Dorian,2013,7,30,12,21.7,-71,disturbance,NA,25,1015,0,0 +Dorian,2013,7,30,18,21.9,-72.2,disturbance,NA,25,1015,0,0 +Dorian,2013,7,31,0,22.1,-73.3,disturbance,NA,25,1015,0,0 +Dorian,2013,7,31,6,22.4,-74.4,disturbance,NA,25,1015,0,0 +Dorian,2013,7,31,12,22.6,-75.3,disturbance,NA,25,1015,0,0 +Dorian,2013,7,31,18,22.8,-75.9,disturbance,NA,25,1015,0,0 +Dorian,2013,8,1,0,23,-76.5,disturbance,NA,25,1014,0,0 +Dorian,2013,8,1,6,23.3,-77,disturbance,NA,25,1013,0,0 +Dorian,2013,8,1,12,23.7,-77.7,disturbance,NA,25,1013,0,0 +Dorian,2013,8,1,18,24.2,-78.4,disturbance,NA,25,1013,0,0 +Dorian,2013,8,2,0,24.9,-79,disturbance,NA,25,1013,0,0 +Dorian,2013,8,2,6,25.7,-79.3,disturbance,NA,25,1013,0,0 +Dorian,2013,8,2,12,26.5,-79.4,disturbance,NA,25,1013,0,0 +Dorian,2013,8,2,18,27.4,-79.4,tropical depression,NA,25,1013,0,0 +Dorian,2013,8,3,0,28.4,-79.3,tropical depression,NA,30,1013,0,0 +Dorian,2013,8,3,6,29.4,-79.1,tropical depression,NA,30,1013,0,0 +Dorian,2013,8,3,12,30.3,-78.8,tropical depression,NA,30,1013,0,0 +Dorian,2013,8,3,18,31.1,-78.1,other low,NA,30,1013,0,0 +Dorian,2013,8,4,0,31.8,-77.2,other low,NA,30,1012,0,0 +Dorian,2013,8,4,6,32.4,-75.6,other low,NA,30,1011,0,0 +Erin,2013,8,15,0,13.9,-23.3,tropical depression,NA,30,1008,0,0 +Erin,2013,8,15,6,14.1,-24.6,tropical storm,NA,35,1007,30,0 +Erin,2013,8,15,12,14.3,-25.9,tropical storm,NA,35,1007,30,0 +Erin,2013,8,15,18,14.7,-27.2,tropical storm,NA,35,1007,30,0 +Erin,2013,8,16,0,15.3,-28.6,tropical storm,NA,35,1007,30,0 +Erin,2013,8,16,6,15.9,-30,tropical storm,NA,35,1007,30,0 +Erin,2013,8,16,12,16.5,-31.4,tropical storm,NA,35,1007,30,0 +Erin,2013,8,16,18,17.3,-32.7,tropical storm,NA,35,1007,30,0 +Erin,2013,8,17,0,18,-33.8,tropical storm,NA,40,1006,110,0 +Erin,2013,8,17,6,18.8,-34.7,tropical storm,NA,40,1006,110,0 +Erin,2013,8,17,12,19.6,-35.5,tropical storm,NA,35,1007,60,0 +Erin,2013,8,17,18,20.3,-36.2,tropical storm,NA,35,1007,60,0 +Erin,2013,8,18,0,20.6,-37.2,tropical storm,NA,35,1007,60,0 +Erin,2013,8,18,6,20.6,-38,other low,NA,30,1008,0,0 +Erin,2013,8,18,12,20.5,-38.8,other low,NA,30,1008,0,0 +Erin,2013,8,18,18,20.4,-39.6,other low,NA,25,1009,0,0 +Erin,2013,8,19,0,20.3,-40.4,other low,NA,25,1009,0,0 +Erin,2013,8,19,6,20.2,-41.2,other low,NA,25,1009,0,0 +Erin,2013,8,19,12,20.1,-42,other low,NA,20,1010,0,0 +Erin,2013,8,19,18,20,-42.8,other low,NA,20,1010,0,0 +Fernand,2013,8,25,12,18.7,-94.2,tropical depression,NA,30,1006,0,0 +Fernand,2013,8,25,18,18.9,-95.1,tropical storm,NA,45,1004,50,0 +Fernand,2013,8,26,0,19.2,-95.9,tropical storm,NA,50,1001,60,0 +Fernand,2013,8,26,4,19.5,-96.3,tropical storm,NA,50,1001,60,0 +Fernand,2013,8,26,6,19.7,-96.6,tropical storm,NA,45,1002,60,0 +Fernand,2013,8,26,12,20.1,-97.3,tropical depression,NA,30,1005,0,0 +Fernand,2013,8,26,18,20.5,-98.2,other low,NA,25,1009,0,0 +Gabrielle,2013,9,4,18,16.2,-65.9,tropical depression,NA,30,1010,0,0 +Gabrielle,2013,9,5,0,16.7,-66.3,tropical depression,NA,30,1008,0,0 +Gabrielle,2013,9,5,6,17.1,-67,tropical depression,NA,30,1008,0,0 +Gabrielle,2013,9,5,12,17.4,-67.7,tropical depression,NA,30,1010,0,0 +Gabrielle,2013,9,5,18,17.9,-68.4,disturbance,NA,25,1010,0,0 +Gabrielle,2013,9,6,0,18.8,-68.4,disturbance,NA,25,1010,0,0 +Gabrielle,2013,9,6,6,19.5,-68.5,disturbance,NA,20,1010,0,0 +Gabrielle,2013,9,6,12,20,-68.6,disturbance,NA,20,1010,0,0 +Gabrielle,2013,9,6,18,20.4,-68.7,disturbance,NA,20,1010,0,0 +Gabrielle,2013,9,7,0,21.2,-68.7,disturbance,NA,20,1010,0,0 +Gabrielle,2013,9,7,6,22,-68.8,disturbance,NA,20,1010,0,0 +Gabrielle,2013,9,7,12,22.8,-69.2,disturbance,NA,25,1009,0,0 +Gabrielle,2013,9,7,18,23.6,-69.2,disturbance,NA,25,1009,0,0 +Gabrielle,2013,9,8,0,24.4,-69.1,disturbance,NA,25,1009,0,0 +Gabrielle,2013,9,8,6,24.7,-68.9,disturbance,NA,25,1009,0,0 +Gabrielle,2013,9,8,12,24.8,-68.8,disturbance,NA,25,1008,0,0 +Gabrielle,2013,9,8,18,24.9,-68.7,disturbance,NA,25,1008,0,0 +Gabrielle,2013,9,9,0,25.1,-68.2,disturbance,NA,25,1008,0,0 +Gabrielle,2013,9,9,6,25.4,-67.8,disturbance,NA,25,1008,0,0 +Gabrielle,2013,9,9,12,25.9,-66.9,other low,NA,30,1008,0,0 +Gabrielle,2013,9,9,18,26.6,-65.9,other low,NA,30,1008,0,0 +Gabrielle,2013,9,10,0,27.6,-65.1,tropical depression,NA,30,1007,0,0 +Gabrielle,2013,9,10,6,29,-65,tropical storm,NA,40,1005,100,0 +Gabrielle,2013,9,10,12,30.1,-64.8,tropical storm,NA,55,1003,160,0 +Gabrielle,2013,9,10,18,31.1,-64.7,tropical storm,NA,50,1004,160,0 +Gabrielle,2013,9,11,0,31.9,-64.9,tropical storm,NA,50,1004,160,0 +Gabrielle,2013,9,11,6,32.3,-65.4,tropical storm,NA,45,1008,120,0 +Gabrielle,2013,9,11,12,32.5,-65.7,tropical storm,NA,40,1009,110,0 +Gabrielle,2013,9,11,18,32.6,-66.2,tropical storm,NA,35,1009,90,0 +Gabrielle,2013,9,12,0,32.9,-66.8,tropical depression,NA,30,1009,0,0 +Gabrielle,2013,9,12,6,33.2,-67.4,tropical depression,NA,30,1009,0,0 +Gabrielle,2013,9,12,12,33.6,-67.6,tropical storm,NA,35,1008,90,0 +Gabrielle,2013,9,12,18,34,-67.9,tropical storm,NA,35,1008,80,0 +Gabrielle,2013,9,13,0,34.7,-68.1,tropical storm,NA,35,1008,60,0 +Gabrielle,2013,9,13,6,35.9,-67.5,tropical depression,NA,30,1007,0,0 +Gabrielle,2013,9,13,12,37.7,-66.6,tropical depression,NA,30,1005,0,0 +Eight,2013,9,6,12,22.4,-97.4,tropical depression,NA,30,1009,0,0 +Eight,2013,9,6,18,22.3,-97.9,tropical depression,NA,30,1008,0,0 +Eight,2013,9,7,0,21.9,-98.5,tropical depression,NA,25,1009,0,0 +Eight,2013,9,7,6,21.5,-99,other low,NA,25,1009,0,0 +Humberto,2013,9,8,0,13,-17.6,other low,NA,25,1009,0,0 +Humberto,2013,9,8,6,13,-18.4,other low,NA,25,1009,0,0 +Humberto,2013,9,8,12,13,-19.3,other low,NA,25,1009,0,0 +Humberto,2013,9,8,18,13,-20.3,tropical depression,NA,25,1008,0,0 +Humberto,2013,9,9,0,13.1,-21.3,tropical depression,NA,30,1007,0,0 +Humberto,2013,9,9,6,13.3,-22.4,tropical storm,NA,35,1006,60,0 +Humberto,2013,9,9,12,13.5,-23.6,tropical storm,NA,40,1005,100,0 +Humberto,2013,9,9,18,13.7,-24.6,tropical storm,NA,45,1004,120,0 +Humberto,2013,9,10,0,13.9,-25.5,tropical storm,NA,50,1002,130,0 +Humberto,2013,9,10,6,14.1,-26.5,tropical storm,NA,55,1000,150,0 +Humberto,2013,9,10,12,14.3,-27.3,tropical storm,NA,55,1000,160,0 +Humberto,2013,9,10,18,14.7,-27.9,tropical storm,NA,55,999,160,0 +Humberto,2013,9,11,0,15.1,-28.3,tropical storm,NA,55,998,180,0 +Humberto,2013,9,11,6,15.6,-28.6,tropical storm,NA,60,994,190,0 +Humberto,2013,9,11,12,16.3,-28.9,hurricane,1,70,987,190,30 +Humberto,2013,9,11,18,17.4,-28.9,hurricane,1,80,979,190,40 +Humberto,2013,9,12,0,18.6,-28.9,hurricane,1,80,979,220,60 +Humberto,2013,9,12,6,19.9,-28.9,hurricane,1,80,979,260,60 +Humberto,2013,9,12,12,21.2,-28.9,hurricane,1,75,980,300,60 +Humberto,2013,9,12,18,22.3,-29.1,hurricane,1,75,980,310,60 +Humberto,2013,9,13,0,23.2,-29.5,hurricane,1,70,982,320,60 +Humberto,2013,9,13,6,24,-30,tropical storm,NA,60,986,320,0 +Humberto,2013,9,13,12,24.6,-30.8,tropical storm,NA,55,988,320,0 +Humberto,2013,9,13,18,24.8,-31.7,tropical storm,NA,45,995,300,0 +Humberto,2013,9,14,0,24.8,-32.6,other low,NA,40,999,260,0 +Humberto,2013,9,14,6,24.9,-33.6,other low,NA,35,1003,180,0 +Humberto,2013,9,14,12,25.2,-34.8,other low,NA,35,1004,180,0 +Humberto,2013,9,14,18,25.5,-36.3,other low,NA,35,1005,180,0 +Humberto,2013,9,15,0,25.6,-37.8,tropical storm,NA,35,1004,180,0 +Humberto,2013,9,15,6,25.6,-38.9,tropical storm,NA,35,1004,190,0 +Humberto,2013,9,15,12,25.9,-39.7,tropical storm,NA,35,1004,200,0 +Humberto,2013,9,15,18,26.4,-40.4,tropical storm,NA,35,1004,200,0 +Humberto,2013,9,16,0,26.7,-41.3,tropical storm,NA,35,1004,200,0 +Humberto,2013,9,16,6,26.7,-42.4,tropical storm,NA,35,1004,190,0 +Humberto,2013,9,16,12,26.8,-42.9,tropical storm,NA,40,1000,180,0 +Humberto,2013,9,16,18,26.9,-43.3,tropical storm,NA,40,1000,170,0 +Humberto,2013,9,17,0,27,-43.2,tropical storm,NA,35,1002,160,0 +Humberto,2013,9,17,6,27.4,-42.9,tropical storm,NA,35,1002,140,0 +Humberto,2013,9,17,12,28.4,-42.6,subtropical storm,NA,40,1000,120,0 +Humberto,2013,9,17,18,29.5,-42.7,subtropical storm,NA,40,1000,120,0 +Humberto,2013,9,18,0,30.5,-43.2,subtropical storm,NA,35,1003,120,0 +Humberto,2013,9,18,6,31.1,-43.6,subtropical depression,NA,30,1006,0,0 +Humberto,2013,9,18,12,31.6,-43.9,subtropical depression,NA,30,1006,0,0 +Humberto,2013,9,18,18,32,-44.1,subtropical depression,NA,30,1007,0,0 +Humberto,2013,9,19,0,32.5,-44.3,subtropical depression,NA,30,1007,0,0 +Humberto,2013,9,19,6,33,-44.5,subtropical depression,NA,30,1007,0,0 +Ingrid,2013,9,12,6,19.3,-92.2,other low,NA,25,1006,0,0 +Ingrid,2013,9,12,12,19.6,-92.9,other low,NA,30,1005,0,0 +Ingrid,2013,9,12,18,19.7,-93.6,tropical depression,NA,30,1004,0,0 +Ingrid,2013,9,13,0,19.7,-94.1,tropical depression,NA,30,1003,0,0 +Ingrid,2013,9,13,6,19.6,-94.6,tropical depression,NA,30,1002,0,0 +Ingrid,2013,9,13,12,19.3,-95.1,tropical storm,NA,35,1000,80,0 +Ingrid,2013,9,13,18,19.1,-95.3,tropical storm,NA,40,996,90,0 +Ingrid,2013,9,14,0,19.3,-95.3,tropical storm,NA,50,993,120,0 +Ingrid,2013,9,14,6,19.6,-95.1,tropical storm,NA,55,990,120,0 +Ingrid,2013,9,14,12,20.3,-94.6,tropical storm,NA,60,989,120,0 +Ingrid,2013,9,14,18,21,-94.4,hurricane,1,65,986,120,20 +Ingrid,2013,9,15,0,21.6,-94.7,hurricane,1,75,983,140,30 +Ingrid,2013,9,15,6,22,-95.2,hurricane,1,75,985,140,30 +Ingrid,2013,9,15,12,22.4,-95.6,hurricane,1,65,989,130,20 +Ingrid,2013,9,15,18,22.7,-95.9,hurricane,1,65,987,140,20 +Ingrid,2013,9,16,0,23,-96.2,hurricane,1,70,989,130,15 +Ingrid,2013,9,16,6,23.4,-96.9,tropical storm,NA,60,990,120,0 +Ingrid,2013,9,16,11,23.7,-97.7,tropical storm,NA,55,991,90,0 +Ingrid,2013,9,16,12,23.7,-97.8,tropical storm,NA,55,991,90,0 +Ingrid,2013,9,16,18,23.7,-98.7,tropical storm,NA,40,998,80,0 +Ingrid,2013,9,17,0,23.7,-99.2,tropical depression,NA,25,1006,0,0 +Ingrid,2013,9,17,6,23.7,-99.7,other low,NA,20,1008,0,0 +Jerry,2013,9,28,0,21.1,-50,other low,NA,30,1012,0,0 +Jerry,2013,9,28,6,22.2,-50.3,other low,NA,30,1012,0,0 +Jerry,2013,9,28,12,23.3,-50.6,other low,NA,30,1011,0,0 +Jerry,2013,9,28,18,24.2,-50.6,other low,NA,30,1011,0,0 +Jerry,2013,9,29,0,24.9,-50.4,tropical depression,NA,30,1010,0,0 +Jerry,2013,9,29,6,25.6,-49.7,tropical depression,NA,30,1010,0,0 +Jerry,2013,9,29,12,26.2,-49,tropical depression,NA,30,1010,0,0 +Jerry,2013,9,29,18,26.7,-48.2,tropical depression,NA,30,1010,0,0 +Jerry,2013,9,30,0,27.1,-47.5,tropical depression,NA,30,1009,0,0 +Jerry,2013,9,30,6,27.2,-46.8,tropical storm,NA,35,1008,30,0 +Jerry,2013,9,30,12,27.3,-46,tropical storm,NA,35,1008,40,0 +Jerry,2013,9,30,18,27.3,-45,tropical storm,NA,40,1006,70,0 +Jerry,2013,10,1,0,27.5,-43.9,tropical storm,NA,45,1005,90,0 +Jerry,2013,10,1,6,27.7,-43.6,tropical storm,NA,40,1006,90,0 +Jerry,2013,10,1,12,28.1,-43.5,tropical storm,NA,40,1007,70,0 +Jerry,2013,10,1,18,28.1,-43.5,tropical storm,NA,40,1007,70,0 +Jerry,2013,10,2,0,28.1,-43.7,tropical storm,NA,35,1007,70,0 +Jerry,2013,10,2,6,28.1,-43.9,tropical storm,NA,35,1007,70,0 +Jerry,2013,10,2,12,28.6,-43.4,tropical storm,NA,35,1007,70,0 +Jerry,2013,10,2,18,29,-42.9,tropical storm,NA,35,1007,80,0 +Jerry,2013,10,3,0,29.4,-42.4,tropical storm,NA,35,1007,60,0 +Jerry,2013,10,3,6,30.1,-41.7,tropical storm,NA,35,1007,60,0 +Jerry,2013,10,3,12,30.8,-40.6,tropical storm,NA,35,1007,60,0 +Jerry,2013,10,3,18,31.5,-39.3,other low,NA,35,1008,60,0 +Jerry,2013,10,4,0,32.5,-38,other low,NA,35,1008,60,0 +Jerry,2013,10,4,6,33.1,-36.6,other low,NA,35,1008,60,0 +Jerry,2013,10,4,12,33.7,-35,other low,NA,35,1008,60,0 +Jerry,2013,10,4,18,34.2,-33.7,other low,NA,35,1008,60,0 +Jerry,2013,10,5,0,34.5,-32.7,other low,NA,35,1008,60,0 +Jerry,2013,10,5,6,35,-31.7,other low,NA,35,1008,60,0 +Jerry,2013,10,5,12,35.9,-30.7,other low,NA,40,1008,60,0 +Jerry,2013,10,5,18,36.7,-29.8,other low,NA,40,1008,60,0 +Jerry,2013,10,6,0,38,-28.9,other low,NA,40,1008,60,0 +Karen,2013,10,3,6,21.5,-86.8,tropical storm,NA,45,1006,70,0 +Karen,2013,10,3,12,22.1,-87.4,tropical storm,NA,55,1004,150,0 +Karen,2013,10,3,18,22.8,-88.1,tropical storm,NA,55,1001,170,0 +Karen,2013,10,3,21,23.3,-88.5,tropical storm,NA,55,998,170,0 +Karen,2013,10,4,0,23.9,-89,tropical storm,NA,50,999,170,0 +Karen,2013,10,4,6,24.5,-89.5,tropical storm,NA,45,1002,170,0 +Karen,2013,10,4,12,25.2,-89.9,tropical storm,NA,45,1002,170,0 +Karen,2013,10,4,18,25.8,-90.2,tropical storm,NA,45,1002,130,0 +Karen,2013,10,5,0,26.1,-90.5,tropical storm,NA,40,1004,130,0 +Karen,2013,10,5,6,26.7,-91,tropical storm,NA,40,1007,100,0 +Karen,2013,10,5,12,27.6,-91.6,tropical storm,NA,40,1008,60,0 +Karen,2013,10,5,18,27.9,-91.8,tropical storm,NA,35,1008,30,0 +Karen,2013,10,6,0,28.1,-91.9,tropical depression,NA,30,1008,0,0 +Karen,2013,10,6,6,28.1,-91.9,tropical depression,NA,25,1009,0,0 +Lorenzo,2013,10,21,6,27.6,-55.9,tropical depression,NA,30,1012,0,0 +Lorenzo,2013,10,21,12,28.2,-55.6,tropical storm,NA,35,1010,60,0 +Lorenzo,2013,10,21,18,28.8,-55,tropical storm,NA,35,1008,60,0 +Lorenzo,2013,10,22,0,29.1,-54.2,tropical storm,NA,35,1008,60,0 +Lorenzo,2013,10,22,6,29.3,-53.3,tropical storm,NA,40,1005,60,0 +Lorenzo,2013,10,22,12,29.4,-52.4,tropical storm,NA,45,1000,100,0 +Lorenzo,2013,10,22,18,29.5,-51.5,tropical storm,NA,45,1000,100,0 +Lorenzo,2013,10,23,0,29.5,-50.6,tropical storm,NA,45,1001,100,0 +Lorenzo,2013,10,23,6,29.5,-49.8,tropical storm,NA,45,1004,100,0 +Lorenzo,2013,10,23,12,29.4,-49.3,tropical storm,NA,40,1006,100,0 +Lorenzo,2013,10,23,18,29.3,-48.9,tropical storm,NA,35,1007,100,0 +Lorenzo,2013,10,24,0,29.4,-48.4,tropical depression,NA,30,1008,0,0 +Lorenzo,2013,10,24,6,29.7,-48,tropical depression,NA,30,1009,0,0 +Lorenzo,2013,10,24,12,30.1,-47.7,other low,NA,25,1011,0,0 +Lorenzo,2013,10,24,18,30.5,-47.2,other low,NA,25,1012,0,0 +Lorenzo,2013,10,25,0,30.7,-46.7,other low,NA,25,1013,0,0 +Lorenzo,2013,10,25,6,31,-46.1,other low,NA,25,1013,0,0 +Lorenzo,2013,10,25,12,31.3,-45.7,other low,NA,25,1013,0,0 +Lorenzo,2013,10,25,18,31.6,-45.3,other low,NA,25,1013,0,0 +Lorenzo,2013,10,26,0,32.1,-44.7,other low,NA,20,1013,0,0 +Lorenzo,2013,10,26,6,32.8,-43.9,other low,NA,20,1013,0,0 +Melissa,2013,11,17,0,23.9,-52.4,extratropical,NA,35,1006,240,0 +Melissa,2013,11,17,6,24.3,-52.7,extratropical,NA,35,1005,240,0 +Melissa,2013,11,17,12,25,-52.9,extratropical,NA,35,1005,240,0 +Melissa,2013,11,17,18,26,-52.9,extratropical,NA,40,1002,390,0 +Melissa,2013,11,18,0,27.1,-52.7,extratropical,NA,45,997,390,0 +Melissa,2013,11,18,6,28.3,-52.7,extratropical,NA,45,992,390,0 +Melissa,2013,11,18,12,29.1,-53.4,subtropical storm,NA,50,987,450,0 +Melissa,2013,11,18,18,29.7,-54,subtropical storm,NA,50,987,450,0 +Melissa,2013,11,19,0,30.2,-54.5,subtropical storm,NA,50,985,450,0 +Melissa,2013,11,19,6,30.8,-54.7,subtropical storm,NA,55,982,420,0 +Melissa,2013,11,19,12,31.6,-54.7,subtropical storm,NA,55,982,390,0 +Melissa,2013,11,19,18,32.5,-54.4,subtropical storm,NA,50,982,360,0 +Melissa,2013,11,20,0,33.3,-53.2,subtropical storm,NA,45,985,330,0 +Melissa,2013,11,20,6,34.1,-51.4,tropical storm,NA,45,988,300,0 +Melissa,2013,11,20,12,35.1,-49,tropical storm,NA,45,988,300,0 +Melissa,2013,11,20,18,36.3,-46.4,tropical storm,NA,45,988,300,0 +Melissa,2013,11,21,0,37.5,-43.5,tropical storm,NA,45,984,330,0 +Melissa,2013,11,21,6,38.8,-40,tropical storm,NA,50,984,330,0 +Melissa,2013,11,21,12,39.9,-36.6,tropical storm,NA,55,980,330,0 +Melissa,2013,11,21,18,40.7,-33.3,tropical storm,NA,55,980,330,0 +Melissa,2013,11,22,0,41.3,-30.2,other low,NA,50,984,270,0 +Melissa,2013,11,22,6,41.6,-27.5,other low,NA,45,988,270,0 +Melissa,2013,11,22,12,41.6,-24.7,extratropical,NA,40,992,270,0 +Melissa,2013,11,22,18,41.3,-22,extratropical,NA,40,996,270,0 +Melissa,2013,11,23,0,40.8,-19.5,extratropical,NA,35,1000,210,0 +Melissa,2013,11,23,6,40,-17.1,extratropical,NA,35,1004,210,0 +Arthur,2014,6,28,18,32,-78.2,other low,NA,20,1017,0,0 +Arthur,2014,6,29,0,31.2,-77.8,other low,NA,20,1017,0,0 +Arthur,2014,6,29,6,30.5,-77.4,other low,NA,20,1017,0,0 +Arthur,2014,6,29,12,30,-77.2,other low,NA,20,1016,0,0 +Arthur,2014,6,29,18,29.7,-77.2,other low,NA,25,1015,0,0 +Arthur,2014,6,30,0,29.5,-77.5,other low,NA,25,1014,0,0 +Arthur,2014,6,30,6,29.2,-78,other low,NA,25,1013,0,0 +Arthur,2014,6,30,12,28.7,-78.4,other low,NA,25,1011,0,0 +Arthur,2014,6,30,18,28.1,-78.7,other low,NA,30,1010,0,0 +Arthur,2014,7,1,0,27.7,-78.9,tropical depression,NA,30,1008,0,0 +Arthur,2014,7,1,6,27.5,-79.1,tropical depression,NA,30,1007,0,0 +Arthur,2014,7,1,12,27.5,-79.2,tropical storm,NA,35,1005,40,0 +Arthur,2014,7,1,18,27.7,-79.3,tropical storm,NA,40,1003,100,0 +Arthur,2014,7,2,0,27.9,-79.2,tropical storm,NA,45,999,110,0 +Arthur,2014,7,2,6,28.2,-79.1,tropical storm,NA,50,995,110,0 +Arthur,2014,7,2,12,28.7,-79,tropical storm,NA,55,995,110,0 +Arthur,2014,7,2,18,29.4,-79.1,tropical storm,NA,60,994,130,0 +Arthur,2014,7,3,0,30.1,-79.2,hurricane,1,65,987,130,15 +Arthur,2014,7,3,6,30.9,-79.1,hurricane,1,70,984,130,15 +Arthur,2014,7,3,12,31.8,-78.8,hurricane,1,80,981,160,20 +Arthur,2014,7,3,18,32.9,-78.3,hurricane,1,80,978,190,50 +Arthur,2014,7,4,0,34,-77.3,hurricane,2,85,975,190,60 +Arthur,2014,7,4,3,34.7,-76.6,hurricane,2,85,973,190,60 +Arthur,2014,7,4,6,35.3,-76,hurricane,2,85,972,190,60 +Arthur,2014,7,4,8,35.8,-75.5,hurricane,2,85,973,190,60 +Arthur,2014,7,4,12,36.8,-74.4,hurricane,1,80,976,190,55 +Arthur,2014,7,4,18,38.4,-72.4,hurricane,1,70,978,220,70 +Arthur,2014,7,5,0,40.2,-69.7,hurricane,1,65,976,220,90 +Arthur,2014,7,5,6,42.3,-67.6,tropical storm,NA,60,981,220,0 +Arthur,2014,7,5,12,44.1,-66.5,extratropical,NA,60,982,280,0 +Arthur,2014,7,5,18,45.9,-65.3,extratropical,NA,55,980,430,0 +Arthur,2014,7,6,0,47.1,-64,extratropical,NA,50,981,290,0 +Arthur,2014,7,6,6,47.6,-62.4,extratropical,NA,45,982,200,0 +Arthur,2014,7,6,12,48.5,-60.2,extratropical,NA,40,986,150,0 +Arthur,2014,7,6,18,50.3,-58.1,extratropical,NA,35,989,180,0 +Arthur,2014,7,7,0,52.3,-56.4,extratropical,NA,35,988,240,0 +Arthur,2014,7,7,6,54.2,-55.4,extratropical,NA,35,985,240,0 +Arthur,2014,7,7,12,56,-54.7,extratropical,NA,35,984,320,0 +Arthur,2014,7,7,18,57.3,-54.2,extratropical,NA,40,985,480,0 +Arthur,2014,7,8,0,58.1,-54.1,extratropical,NA,45,988,470,0 +Arthur,2014,7,8,6,58.9,-54.7,extratropical,NA,40,991,440,0 +Arthur,2014,7,8,12,59.4,-56.1,extratropical,NA,35,993,320,0 +Arthur,2014,7,8,18,60,-57,extratropical,NA,30,995,0,0 +Arthur,2014,7,9,0,60.3,-56.7,extratropical,NA,30,997,0,0 +Arthur,2014,7,9,6,60.1,-56.2,extratropical,NA,25,1001,0,0 +Arthur,2014,7,9,12,59.8,-55.7,extratropical,NA,25,1005,0,0 +Arthur,2014,7,9,18,59.5,-55,extratropical,NA,25,1008,0,0 +Two,2014,7,19,12,9,-29,other low,NA,20,1012,0,0 +Two,2014,7,19,18,9.4,-30.7,other low,NA,20,1012,0,0 +Two,2014,7,20,0,9.7,-31.8,other low,NA,20,1012,0,0 +Two,2014,7,20,6,10,-33,other low,NA,20,1012,0,0 +Two,2014,7,20,12,10.4,-34.4,other low,NA,20,1012,0,0 +Two,2014,7,20,18,10.7,-36.1,other low,NA,20,1012,0,0 +Two,2014,7,21,0,11,-38,other low,NA,25,1012,0,0 +Two,2014,7,21,6,11.2,-39.9,other low,NA,25,1012,0,0 +Two,2014,7,21,12,11.4,-41.6,tropical depression,NA,30,1012,0,0 +Two,2014,7,21,18,11.6,-43.1,tropical depression,NA,30,1012,0,0 +Two,2014,7,22,0,11.9,-44.4,tropical depression,NA,30,1012,0,0 +Two,2014,7,22,6,12.1,-45.7,tropical depression,NA,30,1012,0,0 +Two,2014,7,22,12,12.4,-47.2,tropical depression,NA,30,1012,0,0 +Two,2014,7,22,18,12.8,-48.8,tropical depression,NA,30,1012,0,0 +Two,2014,7,23,0,13.2,-50.4,tropical depression,NA,30,1012,0,0 +Two,2014,7,23,6,13.7,-52.2,tropical depression,NA,30,1012,0,0 +Two,2014,7,23,12,14,-55,tropical depression,NA,30,1012,0,0 +Bertha,2014,7,29,6,9.6,-37.1,other low,NA,25,1013,0,0 +Bertha,2014,7,29,12,9.5,-38.6,other low,NA,30,1012,0,0 +Bertha,2014,7,29,18,9.5,-40.1,other low,NA,30,1012,0,0 +Bertha,2014,7,30,0,9.6,-41.5,other low,NA,30,1012,0,0 +Bertha,2014,7,30,6,9.7,-43,other low,NA,30,1012,0,0 +Bertha,2014,7,30,12,9.8,-44.7,other low,NA,30,1012,0,0 +Bertha,2014,7,30,18,10,-46.4,other low,NA,30,1011,0,0 +Bertha,2014,7,31,0,10.4,-48,other low,NA,35,1010,80,0 +Bertha,2014,7,31,6,10.7,-49.7,other low,NA,35,1009,80,0 +Bertha,2014,7,31,12,11,-51.4,other low,NA,40,1008,80,0 +Bertha,2014,7,31,18,11.5,-53.1,other low,NA,40,1007,80,0 +Bertha,2014,8,1,0,12.2,-54.6,tropical storm,NA,40,1007,80,0 +Bertha,2014,8,1,6,13,-56.2,tropical storm,NA,40,1007,80,0 +Bertha,2014,8,1,12,13.8,-58.1,tropical storm,NA,45,1006,80,0 +Bertha,2014,8,1,18,14.5,-60.3,tropical storm,NA,45,1006,100,0 +Bertha,2014,8,2,0,15.2,-62.3,tropical storm,NA,45,1007,100,0 +Bertha,2014,8,2,6,15.9,-64.1,tropical storm,NA,40,1008,100,0 +Bertha,2014,8,2,12,16.7,-65.9,tropical storm,NA,40,1009,100,0 +Bertha,2014,8,2,18,17.9,-67.6,tropical storm,NA,40,1010,120,0 +Bertha,2014,8,3,0,19.2,-69,tropical storm,NA,40,1011,140,0 +Bertha,2014,8,3,6,20.3,-70.4,tropical storm,NA,40,1012,150,0 +Bertha,2014,8,3,12,21.4,-71.6,tropical storm,NA,40,1013,150,0 +Bertha,2014,8,3,14,21.8,-71.9,tropical storm,NA,40,1013,150,0 +Bertha,2014,8,3,18,22.7,-72.5,tropical storm,NA,45,1012,150,0 +Bertha,2014,8,4,0,24.1,-73.1,tropical storm,NA,55,1007,140,0 +Bertha,2014,8,4,6,25.4,-73.5,tropical storm,NA,60,1004,140,0 +Bertha,2014,8,4,12,26.8,-73.6,hurricane,1,70,998,170,20 +Bertha,2014,8,4,18,28.5,-73.6,hurricane,1,70,999,150,20 +Bertha,2014,8,5,0,30.5,-73.4,hurricane,1,65,1001,140,20 +Bertha,2014,8,5,6,32.5,-73.2,tropical storm,NA,55,1003,140,0 +Bertha,2014,8,5,12,34.2,-72.7,tropical storm,NA,50,1005,120,0 +Bertha,2014,8,5,18,35.5,-71.2,tropical storm,NA,45,1006,120,0 +Bertha,2014,8,6,0,36.8,-69.3,tropical storm,NA,45,1007,120,0 +Bertha,2014,8,6,6,38.1,-66.9,tropical storm,NA,45,1007,120,0 +Bertha,2014,8,6,12,39.4,-64.1,tropical storm,NA,45,1006,120,0 +Bertha,2014,8,6,18,40.8,-61.3,extratropical,NA,45,1002,140,0 +Bertha,2014,8,7,0,42.1,-58.4,extratropical,NA,50,996,170,0 +Bertha,2014,8,7,6,43.4,-55.6,extratropical,NA,45,998,170,0 +Bertha,2014,8,7,12,44.6,-52.5,extratropical,NA,40,999,140,0 +Bertha,2014,8,7,18,46,-49.5,extratropical,NA,40,1000,140,0 +Bertha,2014,8,8,0,47.4,-46.6,extratropical,NA,35,1001,140,0 +Bertha,2014,8,8,6,47.9,-43,extratropical,NA,35,1001,140,0 +Bertha,2014,8,8,12,47.5,-39.4,extratropical,NA,35,1002,140,0 +Bertha,2014,8,8,18,46.9,-34.9,extratropical,NA,35,1002,140,0 +Bertha,2014,8,9,0,47,-29,extratropical,NA,35,1003,140,0 +Bertha,2014,8,9,6,47.1,-22,extratropical,NA,35,1003,140,0 +Bertha,2014,8,9,12,47.5,-15,extratropical,NA,35,1003,140,0 +Cristobal,2014,8,23,18,21.5,-72.2,tropical depression,NA,30,1005,0,0 +Cristobal,2014,8,24,0,22,-72.5,tropical depression,NA,30,1004,0,0 +Cristobal,2014,8,24,6,22.6,-72.9,tropical storm,NA,35,1002,60,0 +Cristobal,2014,8,24,12,23.3,-73,tropical storm,NA,40,1001,70,0 +Cristobal,2014,8,24,18,24,-73,tropical storm,NA,45,1001,70,0 +Cristobal,2014,8,25,0,24.2,-73,tropical storm,NA,45,998,80,0 +Cristobal,2014,8,25,6,24.4,-72.9,tropical storm,NA,45,996,120,0 +Cristobal,2014,8,25,12,24.7,-72.7,tropical storm,NA,50,993,120,0 +Cristobal,2014,8,25,18,24.9,-72.4,tropical storm,NA,50,992,180,0 +Cristobal,2014,8,26,0,25.1,-72.1,hurricane,1,65,989,210,40 +Cristobal,2014,8,26,6,25.6,-72,hurricane,1,65,989,210,40 +Cristobal,2014,8,26,12,26.7,-71.8,hurricane,1,65,988,210,40 +Cristobal,2014,8,26,18,28.1,-71.4,hurricane,1,65,987,270,50 +Cristobal,2014,8,27,0,29.5,-71.5,hurricane,1,70,983,310,60 +Cristobal,2014,8,27,6,30.6,-72,hurricane,1,70,983,280,60 +Cristobal,2014,8,27,12,31.6,-72.2,hurricane,1,70,983,280,60 +Cristobal,2014,8,27,18,32.3,-71.8,hurricane,1,65,984,250,70 +Cristobal,2014,8,28,0,33.5,-70.7,hurricane,1,65,984,250,70 +Cristobal,2014,8,28,6,34.8,-69,hurricane,1,65,982,250,70 +Cristobal,2014,8,28,12,36.3,-67.1,hurricane,1,70,979,250,70 +Cristobal,2014,8,28,18,37.5,-63.6,hurricane,1,75,971,290,70 +Cristobal,2014,8,29,0,39.1,-58.8,hurricane,1,75,965,400,80 +Cristobal,2014,8,29,6,41.2,-53.9,hurricane,1,70,967,410,70 +Cristobal,2014,8,29,12,44.2,-49,extratropical,NA,65,970,450,90 +Cristobal,2014,8,29,18,46.7,-45.9,extratropical,NA,65,972,470,90 +Cristobal,2014,8,30,0,48.6,-42.8,extratropical,NA,65,974,470,90 +Cristobal,2014,8,30,6,49.9,-39.5,extratropical,NA,65,974,470,90 +Cristobal,2014,8,30,12,51.3,-36.2,extratropical,NA,60,971,560,0 +Cristobal,2014,8,30,18,54,-32,extratropical,NA,60,971,600,0 +Cristobal,2014,8,31,0,58,-28.9,extratropical,NA,60,971,600,0 +Cristobal,2014,8,31,6,61,-27,extratropical,NA,60,963,470,0 +Cristobal,2014,8,31,12,62,-26,extratropical,NA,60,964,470,0 +Cristobal,2014,8,31,18,63,-24.5,extratropical,NA,55,968,470,0 +Cristobal,2014,9,1,0,64,-22,extratropical,NA,50,974,470,0 +Cristobal,2014,9,1,6,65,-19.5,extratropical,NA,50,978,470,0 +Cristobal,2014,9,1,12,66,-17,extratropical,NA,45,980,400,0 +Cristobal,2014,9,1,18,67,-15.4,extratropical,NA,45,982,400,0 +Cristobal,2014,9,2,0,68,-15,extratropical,NA,40,984,400,0 +Cristobal,2014,9,2,6,69,-15,extratropical,NA,35,985,400,0 +Dolly,2014,9,1,12,19.2,-92.3,other low,NA,25,1009,0,0 +Dolly,2014,9,1,18,20,-93.2,tropical depression,NA,30,1009,0,0 +Dolly,2014,9,2,0,21.3,-93.4,tropical storm,NA,35,1007,70,0 +Dolly,2014,9,2,6,22.3,-94.3,tropical storm,NA,40,1005,100,0 +Dolly,2014,9,2,12,22.8,-95.6,tropical storm,NA,45,1005,100,0 +Dolly,2014,9,2,18,22.2,-96.7,tropical storm,NA,40,1003,120,0 +Dolly,2014,9,3,0,22,-97.3,tropical storm,NA,40,1001,120,0 +Dolly,2014,9,3,1,22,-97.4,tropical storm,NA,40,1000,120,0 +Dolly,2014,9,3,4,22,-97.7,tropical storm,NA,40,1002,120,0 +Dolly,2014,9,3,6,21.9,-98,tropical storm,NA,35,1004,120,0 +Dolly,2014,9,3,12,21.8,-98.8,other low,NA,25,1005,0,0 +Dolly,2014,9,3,18,21.7,-99.8,other low,NA,20,1005,0,0 +Dolly,2014,9,4,0,21.6,-101,other low,NA,15,1002,0,0 +Edouard,2014,9,10,18,13.7,-33.2,other low,NA,25,1009,0,0 +Edouard,2014,9,11,0,14.2,-34.4,other low,NA,25,1009,0,0 +Edouard,2014,9,11,6,14.9,-35.5,other low,NA,25,1009,0,0 +Edouard,2014,9,11,12,15.8,-36.5,tropical depression,NA,30,1008,0,0 +Edouard,2014,9,11,18,16.5,-37.7,tropical depression,NA,30,1007,0,0 +Edouard,2014,9,12,0,17.2,-39.2,tropical storm,NA,35,1006,40,0 +Edouard,2014,9,12,6,17.7,-40.8,tropical storm,NA,35,1005,60,0 +Edouard,2014,9,12,12,18.3,-42.3,tropical storm,NA,40,1000,60,0 +Edouard,2014,9,12,18,18.9,-43.6,tropical storm,NA,40,999,60,0 +Edouard,2014,9,13,0,19.6,-44.8,tropical storm,NA,40,998,60,0 +Edouard,2014,9,13,6,20.4,-45.7,tropical storm,NA,45,997,60,0 +Edouard,2014,9,13,12,21.4,-46.4,tropical storm,NA,45,996,60,0 +Edouard,2014,9,13,18,22.3,-47,tropical storm,NA,50,995,60,0 +Edouard,2014,9,14,0,23,-47.9,tropical storm,NA,55,994,170,0 +Edouard,2014,9,14,6,23.7,-49,tropical storm,NA,60,991,220,0 +Edouard,2014,9,14,12,24.4,-50.3,hurricane,1,70,985,220,30 +Edouard,2014,9,14,18,25.1,-51.5,hurricane,1,75,980,220,30 +Edouard,2014,9,15,0,25.8,-52.7,hurricane,1,80,975,220,30 +Edouard,2014,9,15,6,26.5,-54,hurricane,2,85,970,250,40 +Edouard,2014,9,15,12,27,-55.1,hurricane,2,90,966,250,40 +Edouard,2014,9,15,18,27.7,-56.1,hurricane,2,95,962,280,60 +Edouard,2014,9,16,0,28.5,-56.7,hurricane,2,95,960,280,70 +Edouard,2014,9,16,6,29.5,-57.3,hurricane,3,100,956,280,80 +Edouard,2014,9,16,12,30.6,-57.8,hurricane,3,105,955,280,90 +Edouard,2014,9,16,18,31.7,-57.7,hurricane,2,95,958,290,90 +Edouard,2014,9,17,0,32.9,-57,hurricane,2,85,959,290,100 +Edouard,2014,9,17,6,34.3,-56,hurricane,2,85,958,290,100 +Edouard,2014,9,17,12,35.7,-54.5,hurricane,1,80,957,290,100 +Edouard,2014,9,17,18,37.2,-52.4,hurricane,1,80,955,300,90 +Edouard,2014,9,18,0,38.3,-49.5,hurricane,1,75,958,300,90 +Edouard,2014,9,18,6,39.3,-46.7,hurricane,1,70,964,310,80 +Edouard,2014,9,18,12,39.9,-44.1,hurricane,1,70,969,290,90 +Edouard,2014,9,18,18,39.9,-42.1,hurricane,1,65,973,290,90 +Edouard,2014,9,19,0,39.9,-40.1,tropical storm,NA,60,980,290,0 +Edouard,2014,9,19,6,39.9,-38.9,tropical storm,NA,55,988,240,0 +Edouard,2014,9,19,12,39.5,-38.1,tropical storm,NA,45,994,100,0 +Edouard,2014,9,19,18,39.5,-37.4,other low,NA,40,1001,100,0 +Edouard,2014,9,20,0,39.4,-36.6,other low,NA,35,1004,100,0 +Edouard,2014,9,20,6,39.3,-35.7,other low,NA,30,1006,0,0 +Edouard,2014,9,20,12,39.1,-34.4,other low,NA,30,1008,0,0 +Edouard,2014,9,20,18,38.8,-33,other low,NA,25,1010,0,0 +Edouard,2014,9,21,0,38.1,-31.8,other low,NA,25,1012,0,0 +Edouard,2014,9,21,6,37.1,-30.9,other low,NA,25,1013,0,0 +Edouard,2014,9,21,12,36.1,-30.2,other low,NA,25,1014,0,0 +Edouard,2014,9,21,18,35.1,-30.2,other low,NA,25,1014,0,0 +Edouard,2014,9,22,0,34.2,-30.4,other low,NA,25,1015,0,0 +Edouard,2014,9,22,6,33.4,-30.7,other low,NA,25,1015,0,0 +Fay,2014,10,10,0,22,-61.2,other low,NA,35,1007,120,0 +Fay,2014,10,10,6,22.7,-62.4,subtropical storm,NA,35,1006,120,0 +Fay,2014,10,10,12,23.5,-63.3,subtropical storm,NA,35,1005,120,0 +Fay,2014,10,10,18,24.3,-64,subtropical storm,NA,40,1003,120,0 +Fay,2014,10,11,0,25.1,-64.5,subtropical storm,NA,50,999,160,0 +Fay,2014,10,11,6,26,-65,tropical storm,NA,55,994,160,0 +Fay,2014,10,11,12,27.2,-65.3,tropical storm,NA,60,990,200,0 +Fay,2014,10,11,18,28.7,-65.4,tropical storm,NA,60,988,270,0 +Fay,2014,10,12,0,30.2,-65.2,tropical storm,NA,60,987,270,0 +Fay,2014,10,12,6,31.7,-64.9,hurricane,1,65,985,270,20 +Fay,2014,10,12,8,32.3,-64.7,hurricane,1,70,984,270,20 +Fay,2014,10,12,12,33.1,-63.9,hurricane,1,70,983,270,20 +Fay,2014,10,12,18,33.6,-61.9,tropical storm,NA,60,986,300,0 +Fay,2014,10,13,0,33.9,-59,tropical storm,NA,50,990,300,0 +Gonzalo,2014,10,11,18,16.4,-54.9,other low,NA,25,1010,0,0 +Gonzalo,2014,10,12,0,16.4,-55.9,tropical depression,NA,30,1010,0,0 +Gonzalo,2014,10,12,6,16.4,-56.9,tropical depression,NA,30,1008,0,0 +Gonzalo,2014,10,12,12,16.4,-57.9,tropical storm,NA,35,1006,90,0 +Gonzalo,2014,10,12,18,16.4,-58.8,tropical storm,NA,40,1004,90,0 +Gonzalo,2014,10,13,0,16.5,-59.7,tropical storm,NA,45,1001,90,0 +Gonzalo,2014,10,13,6,16.7,-60.6,tropical storm,NA,55,996,100,0 +Gonzalo,2014,10,13,12,17,-61.5,hurricane,1,65,992,130,15 +Gonzalo,2014,10,13,14,17.1,-61.8,hurricane,1,65,990,130,15 +Gonzalo,2014,10,13,18,17.6,-62.4,hurricane,1,70,988,150,25 +Gonzalo,2014,10,13,22,18.1,-63,hurricane,1,75,984,150,25 +Gonzalo,2014,10,13,23,18.2,-63.1,hurricane,1,75,984,150,25 +Gonzalo,2014,10,14,0,18.3,-63.2,hurricane,1,80,983,150,30 +Gonzalo,2014,10,14,6,19.1,-64,hurricane,2,90,976,150,35 +Gonzalo,2014,10,14,12,19.9,-64.8,hurricane,2,95,973,150,35 +Gonzalo,2014,10,14,18,20.8,-65.5,hurricane,3,100,968,150,35 +Gonzalo,2014,10,15,0,21.7,-66.2,hurricane,4,115,956,170,35 +Gonzalo,2014,10,15,6,22.5,-67,hurricane,4,115,953,170,40 +Gonzalo,2014,10,15,12,23.1,-67.7,hurricane,4,115,949,190,45 +Gonzalo,2014,10,15,18,23.8,-68.3,hurricane,3,110,953,190,50 +Gonzalo,2014,10,16,0,24.4,-68.6,hurricane,3,110,953,200,60 +Gonzalo,2014,10,16,6,25,-68.7,hurricane,4,115,948,220,60 +Gonzalo,2014,10,16,12,25.6,-68.7,hurricane,4,125,940,240,75 +Gonzalo,2014,10,16,18,26.5,-68.3,hurricane,4,125,942,240,75 +Gonzalo,2014,10,17,0,27.4,-67.8,hurricane,4,120,942,260,85 +Gonzalo,2014,10,17,6,28.6,-67.2,hurricane,4,115,945,260,85 +Gonzalo,2014,10,17,12,29.8,-66.5,hurricane,3,110,947,260,100 +Gonzalo,2014,10,17,18,31,-65.7,hurricane,3,105,949,260,100 +Gonzalo,2014,10,18,0,32.2,-64.9,hurricane,2,95,952,260,100 +Gonzalo,2014,10,18,0,32.3,-64.8,hurricane,2,95,952,260,100 +Gonzalo,2014,10,18,6,33.7,-63.9,hurricane,2,90,955,260,100 +Gonzalo,2014,10,18,12,35.6,-62.6,hurricane,2,85,960,290,110 +Gonzalo,2014,10,18,18,38.2,-60.9,hurricane,2,85,964,340,120 +Gonzalo,2014,10,19,0,41.2,-58.3,hurricane,2,85,965,360,120 +Gonzalo,2014,10,19,6,44.5,-54.8,hurricane,1,80,968,360,120 +Gonzalo,2014,10,19,12,47.8,-50.1,hurricane,1,70,970,360,120 +Gonzalo,2014,10,19,18,50.6,-44.8,extratropical,NA,65,976,420,120 +Gonzalo,2014,10,20,0,52.6,-38.3,extratropical,NA,55,982,480,0 +Gonzalo,2014,10,20,6,53.9,-30.9,extratropical,NA,50,988,480,0 +Hanna,2014,10,21,0,19.5,-95.3,other low,NA,25,1002,0,0 +Hanna,2014,10,21,6,19.5,-94.8,other low,NA,25,1002,0,0 +Hanna,2014,10,21,12,19.5,-94.2,other low,NA,25,1001,0,0 +Hanna,2014,10,21,18,19.5,-93.7,other low,NA,30,1000,0,0 +Hanna,2014,10,22,0,19.5,-93.3,tropical depression,NA,30,1000,0,0 +Hanna,2014,10,22,6,19.5,-92.9,tropical depression,NA,30,1001,0,0 +Hanna,2014,10,22,12,19.4,-92.4,tropical depression,NA,30,1002,0,0 +Hanna,2014,10,22,18,19.3,-91.9,tropical depression,NA,30,1003,0,0 +Hanna,2014,10,23,0,19.2,-91.3,other low,NA,25,1004,0,0 +Hanna,2014,10,23,6,18.9,-90.8,other low,NA,20,1005,0,0 +Hanna,2014,10,23,12,18.6,-90.5,other low,NA,20,1006,0,0 +Hanna,2014,10,23,18,18.2,-90,other low,NA,20,1007,0,0 +Hanna,2014,10,24,0,17.9,-89.4,other low,NA,20,1008,0,0 +Hanna,2014,10,24,6,18.1,-88.5,other low,NA,20,1008,0,0 +Hanna,2014,10,24,12,18.4,-87.7,other low,NA,20,1008,0,0 +Hanna,2014,10,24,18,18.8,-87,other low,NA,20,1008,0,0 +Hanna,2014,10,25,0,19,-86.2,disturbance,NA,20,1008,0,0 +Hanna,2014,10,25,6,18.8,-85.3,disturbance,NA,20,1008,0,0 +Hanna,2014,10,25,12,18.3,-84.5,disturbance,NA,25,1008,0,0 +Hanna,2014,10,25,18,17.7,-83.7,disturbance,NA,25,1008,0,0 +Hanna,2014,10,26,0,17.1,-82.9,disturbance,NA,25,1007,0,0 +Hanna,2014,10,26,6,16.5,-82.2,disturbance,NA,25,1007,0,0 +Hanna,2014,10,26,12,16,-81.8,other low,NA,30,1006,0,0 +Hanna,2014,10,26,18,15.5,-81.8,other low,NA,30,1006,0,0 +Hanna,2014,10,27,0,15.1,-82,tropical depression,NA,30,1006,0,0 +Hanna,2014,10,27,6,15,-82.4,tropical storm,NA,35,1005,70,0 +Hanna,2014,10,27,12,14.9,-83,tropical storm,NA,35,1005,70,0 +Hanna,2014,10,27,16,14.9,-83.3,tropical storm,NA,35,1005,70,0 +Hanna,2014,10,27,18,14.9,-83.5,tropical depression,NA,30,1006,0,0 +Hanna,2014,10,28,0,15,-84.3,tropical depression,NA,30,1007,0,0 +Hanna,2014,10,28,6,15.4,-85.2,other low,NA,25,1008,0,0 +Hanna,2014,10,28,12,15.9,-85.9,other low,NA,20,1009,0,0 +Hanna,2014,10,28,18,16.5,-86.7,other low,NA,20,1010,0,0 +Hanna,2014,10,29,0,16.8,-87.6,other low,NA,20,1010,0,0 +Hanna,2014,10,29,6,16.9,-88.6,other low,NA,20,1011,0,0 +Hanna,2014,10,29,12,16.9,-89.6,other low,NA,20,1011,0,0 +Hanna,2014,10,29,18,16.8,-90.5,other low,NA,15,1012,0,0 +Ana,2015,5,6,6,26.8,-79.2,other low,NA,25,1016,0,0 +Ana,2015,5,6,12,28.2,-78.5,other low,NA,25,1015,0,0 +Ana,2015,5,6,18,29.7,-77.8,other low,NA,25,1014,0,0 +Ana,2015,5,7,0,30.8,-77.5,other low,NA,30,1012,0,0 +Ana,2015,5,7,6,30.7,-77.8,other low,NA,35,1010,100,0 +Ana,2015,5,7,12,30.6,-77.5,other low,NA,40,1008,210,0 +Ana,2015,5,7,18,31.2,-77.5,other low,NA,40,1005,220,0 +Ana,2015,5,8,0,31.4,-77.6,subtropical storm,NA,40,1003,220,0 +Ana,2015,5,8,6,31.5,-77.6,subtropical storm,NA,40,1002,220,0 +Ana,2015,5,8,12,31.5,-77.5,subtropical storm,NA,40,1000,210,0 +Ana,2015,5,8,18,31.6,-77.4,subtropical storm,NA,45,999,200,0 +Ana,2015,5,9,0,31.9,-77.3,subtropical storm,NA,50,998,220,0 +Ana,2015,5,9,6,32.2,-77.5,tropical storm,NA,50,998,200,0 +Ana,2015,5,9,12,32.5,-77.8,tropical storm,NA,50,1001,200,0 +Ana,2015,5,9,18,32.7,-78,tropical storm,NA,45,1001,200,0 +Ana,2015,5,10,0,33.1,-78.3,tropical storm,NA,45,1001,160,0 +Ana,2015,5,10,6,33.5,-78.6,tropical storm,NA,40,1002,150,0 +Ana,2015,5,10,10,33.8,-78.8,tropical storm,NA,40,1002,150,0 +Ana,2015,5,10,12,33.9,-78.8,tropical storm,NA,35,1002,130,0 +Ana,2015,5,10,18,34.3,-78.7,tropical depression,NA,30,1006,0,0 +Ana,2015,5,11,0,34.7,-78.5,tropical depression,NA,30,1009,0,0 +Ana,2015,5,11,6,35.5,-78,tropical depression,NA,30,1010,0,0 +Ana,2015,5,11,12,36.2,-77.3,tropical depression,NA,30,1012,0,0 +Ana,2015,5,11,18,37,-76.3,tropical depression,NA,30,1012,0,0 +Ana,2015,5,12,0,38.1,-75.1,other low,NA,30,1012,0,0 +Ana,2015,5,12,6,39.3,-73.1,other low,NA,25,1011,0,0 +Ana,2015,5,12,12,40.8,-70.7,other low,NA,25,1009,0,0 +Ana,2015,5,12,18,43,-67,other low,NA,25,1005,0,0 +Bill,2015,6,16,0,27,-94.3,tropical storm,NA,45,1005,140,0 +Bill,2015,6,16,6,27.6,-95.2,tropical storm,NA,45,1001,130,0 +Bill,2015,6,16,12,28,-96,tropical storm,NA,50,997,160,0 +Bill,2015,6,16,16,28.2,-96.7,tropical storm,NA,50,997,160,0 +Bill,2015,6,16,18,28.2,-96.7,tropical storm,NA,50,997,160,0 +Bill,2015,6,17,0,29.1,-96.9,tropical storm,NA,40,998,130,0 +Bill,2015,6,17,6,30.3,-97.1,tropical depression,NA,30,999,0,0 +Bill,2015,6,17,12,31.7,-97.4,tropical depression,NA,30,999,0,0 +Bill,2015,6,17,18,32.6,-97.5,tropical depression,NA,25,999,0,0 +Bill,2015,6,18,0,33.5,-97.3,tropical depression,NA,25,1000,0,0 +Bill,2015,6,18,6,34.2,-96.9,tropical depression,NA,25,1002,0,0 +Bill,2015,6,18,12,34.8,-96.3,tropical depression,NA,20,1003,0,0 +Bill,2015,6,18,18,35.2,-95.5,other low,NA,15,1004,0,0 +Bill,2015,6,19,0,35.6,-94.5,other low,NA,15,1005,0,0 +Bill,2015,6,19,6,35.9,-93.5,other low,NA,15,1006,0,0 +Bill,2015,6,19,12,36.3,-92.3,other low,NA,15,1006,0,0 +Bill,2015,6,19,18,36.9,-90.9,other low,NA,20,1005,0,0 +Bill,2015,6,20,0,37.4,-89.4,other low,NA,20,1004,0,0 +Bill,2015,6,20,6,37.8,-87.8,other low,NA,15,1002,0,0 +Bill,2015,6,20,12,38.2,-85.8,other low,NA,15,1001,0,0 +Bill,2015,6,20,18,38.5,-83.7,other low,NA,15,1003,0,0 +Bill,2015,6,21,0,38.9,-81.3,other low,NA,15,1006,0,0 +Claudette,2015,7,12,0,35.4,-75.4,other low,NA,25,1010,0,0 +Claudette,2015,7,12,6,35.3,-74.6,other low,NA,25,1010,0,0 +Claudette,2015,7,12,12,35.2,-73.6,other low,NA,25,1010,0,0 +Claudette,2015,7,12,18,35.3,-72.8,other low,NA,25,1010,0,0 +Claudette,2015,7,13,0,35.5,-72.2,other low,NA,25,1010,0,0 +Claudette,2015,7,13,6,36,-71.1,tropical depression,NA,30,1008,0,0 +Claudette,2015,7,13,12,36.8,-69.4,tropical storm,NA,40,1005,80,0 +Claudette,2015,7,13,18,37.6,-67.5,tropical storm,NA,45,1003,80,0 +Claudette,2015,7,14,0,38.4,-65.7,tropical storm,NA,45,1004,80,0 +Claudette,2015,7,14,6,39.4,-64.1,tropical storm,NA,45,1004,100,0 +Claudette,2015,7,14,12,40.7,-62,tropical storm,NA,45,1004,120,0 +Claudette,2015,7,14,18,42,-60,tropical storm,NA,40,1004,120,0 +Claudette,2015,7,15,0,43.5,-58.2,other low,NA,35,1004,120,0 +Claudette,2015,7,15,6,45,-56.9,other low,NA,30,1004,0,0 +Claudette,2015,7,15,12,46,-55.9,other low,NA,30,1004,0,0 +Danny,2015,8,17,0,9.6,-29.3,other low,NA,25,1011,0,0 +Danny,2015,8,17,6,9.6,-30.4,other low,NA,25,1011,0,0 +Danny,2015,8,17,12,9.7,-31.5,other low,NA,25,1011,0,0 +Danny,2015,8,17,18,10,-32.6,other low,NA,25,1010,0,0 +Danny,2015,8,18,0,10.3,-33.7,other low,NA,25,1010,0,0 +Danny,2015,8,18,6,10.4,-34.8,tropical depression,NA,30,1009,0,0 +Danny,2015,8,18,12,10.5,-35.9,tropical storm,NA,35,1008,40,0 +Danny,2015,8,18,18,10.7,-37.1,tropical storm,NA,40,1006,70,0 +Danny,2015,8,19,0,10.9,-38.4,tropical storm,NA,45,1005,70,0 +Danny,2015,8,19,6,11,-39.5,tropical storm,NA,45,1003,70,0 +Danny,2015,8,19,12,11.2,-40.6,tropical storm,NA,45,1002,80,0 +Danny,2015,8,19,18,11.5,-41.5,tropical storm,NA,50,1001,70,0 +Danny,2015,8,20,0,11.7,-42.5,tropical storm,NA,55,1000,70,0 +Danny,2015,8,20,6,11.9,-43.5,tropical storm,NA,60,998,70,0 +Danny,2015,8,20,12,12.3,-44.4,hurricane,1,65,995,80,20 +Danny,2015,8,20,18,12.8,-45.3,hurricane,1,75,990,80,20 +Danny,2015,8,21,0,13.2,-46.2,hurricane,2,85,981,80,20 +Danny,2015,8,21,6,13.5,-47,hurricane,2,95,973,80,20 +Danny,2015,8,21,12,13.8,-47.8,hurricane,3,110,960,80,25 +Danny,2015,8,21,18,14.3,-48.6,hurricane,3,105,966,80,25 +Danny,2015,8,22,0,14.7,-49.4,hurricane,2,95,973,80,25 +Danny,2015,8,22,6,15,-50.3,hurricane,2,85,980,80,25 +Danny,2015,8,22,12,15.3,-51.4,hurricane,1,75,985,80,25 +Danny,2015,8,22,18,15.5,-52.7,hurricane,1,65,990,80,10 +Danny,2015,8,23,0,15.6,-54,tropical storm,NA,55,999,80,0 +Danny,2015,8,23,6,15.7,-55.3,tropical storm,NA,50,1001,80,0 +Danny,2015,8,23,12,15.7,-56.7,tropical storm,NA,45,1002,70,0 +Danny,2015,8,23,18,15.6,-58.2,tropical storm,NA,40,1004,70,0 +Danny,2015,8,24,0,15.6,-59.3,tropical storm,NA,40,1007,50,0 +Danny,2015,8,24,6,15.8,-60.4,tropical storm,NA,35,1008,50,0 +Danny,2015,8,24,12,15.8,-61.3,tropical depression,NA,30,1009,0,0 +Erika,2015,8,24,18,14.3,-45.1,tropical storm,NA,40,1003,70,0 +Erika,2015,8,25,0,14.4,-46.9,tropical storm,NA,40,1003,70,0 +Erika,2015,8,25,6,14.7,-48.6,tropical storm,NA,40,1003,70,0 +Erika,2015,8,25,12,15,-50.2,tropical storm,NA,40,1003,70,0 +Erika,2015,8,25,18,15.3,-51.9,tropical storm,NA,35,1004,70,0 +Erika,2015,8,26,0,15.7,-53.6,tropical storm,NA,35,1006,90,0 +Erika,2015,8,26,6,15.9,-55.2,tropical storm,NA,35,1005,90,0 +Erika,2015,8,26,12,16.2,-56.8,tropical storm,NA,40,1005,90,0 +Erika,2015,8,26,18,16.4,-58.2,tropical storm,NA,40,1005,90,0 +Erika,2015,8,27,0,16.6,-59.5,tropical storm,NA,40,1006,90,0 +Erika,2015,8,27,6,16.5,-60.8,tropical storm,NA,45,1001,100,0 +Erika,2015,8,27,12,16.5,-62.2,tropical storm,NA,45,1004,120,0 +Erika,2015,8,27,18,16.6,-63.6,tropical storm,NA,45,1006,120,0 +Erika,2015,8,28,0,17.2,-65.1,tropical storm,NA,45,1006,120,0 +Erika,2015,8,28,6,17.5,-66.8,tropical storm,NA,45,1006,140,0 +Erika,2015,8,28,12,17.6,-68.6,tropical storm,NA,45,1008,140,0 +Fred,2015,8,30,0,11.6,-17.5,tropical depression,NA,30,1007,0,0 +Fred,2015,8,30,6,12.2,-18.4,tropical storm,NA,35,1005,60,0 +Fred,2015,8,30,12,13.1,-19.5,tropical storm,NA,45,1004,80,0 +Fred,2015,8,30,18,14,-20.7,tropical storm,NA,55,998,110,0 +Fred,2015,8,31,0,14.6,-21.7,hurricane,1,65,992,130,20 +Fred,2015,8,31,6,15.3,-22.5,hurricane,1,70,989,130,25 +Fred,2015,8,31,12,16.1,-23.3,hurricane,1,75,986,130,25 +Fred,2015,8,31,18,16.8,-24.1,hurricane,1,70,988,130,25 +Fred,2015,9,1,0,17.4,-24.9,hurricane,1,65,991,130,20 +Fred,2015,9,1,6,17.8,-25.7,tropical storm,NA,60,994,130,0 +Fred,2015,9,1,12,18.2,-26.7,tropical storm,NA,50,1000,110,0 +Fred,2015,9,1,18,18.7,-27.6,tropical storm,NA,45,1003,110,0 +Fred,2015,9,2,0,19.1,-28.7,tropical storm,NA,45,1003,110,0 +Fred,2015,9,2,6,19.3,-29.7,tropical storm,NA,40,1004,110,0 +Fred,2015,9,2,12,19.6,-30.5,tropical storm,NA,40,1005,90,0 +Fred,2015,9,2,18,20,-31.4,tropical storm,NA,35,1006,80,0 +Fred,2015,9,3,0,20.4,-32.2,tropical storm,NA,35,1006,80,0 +Fred,2015,9,3,6,20.7,-32.9,tropical storm,NA,40,1005,80,0 +Fred,2015,9,3,12,21.3,-33.7,tropical storm,NA,40,1005,80,0 +Fred,2015,9,3,18,21.8,-34.9,tropical storm,NA,35,1005,80,0 +Fred,2015,9,4,0,21.9,-36,tropical storm,NA,35,1005,80,0 +Fred,2015,9,4,6,22,-36.9,tropical storm,NA,35,1005,80,0 +Fred,2015,9,4,12,22.2,-37.9,tropical depression,NA,30,1005,0,0 +Fred,2015,9,4,18,22.4,-38.7,tropical depression,NA,30,1006,0,0 +Fred,2015,9,5,0,22.7,-39.6,tropical storm,NA,35,1006,30,0 +Fred,2015,9,5,6,23,-40.6,tropical storm,NA,35,1007,30,0 +Fred,2015,9,5,12,23.3,-41.5,tropical depression,NA,30,1008,0,0 +Fred,2015,9,5,18,23.5,-42.2,tropical depression,NA,30,1008,0,0 +Fred,2015,9,6,0,23.8,-42.9,tropical depression,NA,30,1009,0,0 +Fred,2015,9,6,6,24.5,-43.3,tropical depression,NA,30,1010,0,0 +Fred,2015,9,6,12,25.3,-43.2,tropical depression,NA,25,1010,0,0 +Grace,2015,9,5,6,12,-23.1,tropical depression,NA,25,1010,0,0 +Grace,2015,9,5,12,12.2,-24.4,tropical depression,NA,30,1008,0,0 +Grace,2015,9,5,18,12.3,-25.7,tropical storm,NA,35,1007,30,0 +Grace,2015,9,6,0,12.4,-26.9,tropical storm,NA,40,1005,30,0 +Grace,2015,9,6,6,12.5,-28,tropical storm,NA,45,1002,80,0 +Grace,2015,9,6,12,12.7,-29.2,tropical storm,NA,50,1000,80,0 +Grace,2015,9,6,18,12.9,-30.5,tropical storm,NA,45,1002,80,0 +Grace,2015,9,7,0,13.2,-31.9,tropical storm,NA,45,1002,80,0 +Grace,2015,9,7,6,13.5,-33.4,tropical storm,NA,45,1002,80,0 +Grace,2015,9,7,12,13.7,-35,tropical storm,NA,40,1004,70,0 +Grace,2015,9,7,18,13.8,-36.7,tropical storm,NA,40,1004,50,0 +Grace,2015,9,8,0,13.9,-38.4,tropical storm,NA,35,1005,40,0 +Grace,2015,9,8,6,14,-40.1,tropical storm,NA,35,1005,40,0 +Grace,2015,9,8,12,14,-41.8,tropical depression,NA,30,1006,0,0 +Grace,2015,9,8,18,14,-43.4,tropical depression,NA,30,1006,0,0 +Grace,2015,9,9,0,14,-44.9,tropical depression,NA,25,1006,0,0 +Grace,2015,9,9,6,14,-46.4,tropical depression,NA,25,1006,0,0 +Henri,2015,9,8,6,31.1,-62.2,other low,NA,20,1014,0,0 +Henri,2015,9,8,12,30.9,-61.9,other low,NA,25,1012,0,0 +Henri,2015,9,8,18,30.8,-61.6,tropical depression,NA,30,1011,0,0 +Henri,2015,9,9,0,30.8,-61.4,tropical storm,NA,35,1009,80,0 +Henri,2015,9,9,6,30.8,-61.2,tropical storm,NA,35,1007,80,0 +Henri,2015,9,9,12,30.8,-61,tropical storm,NA,40,1005,80,0 +Henri,2015,9,9,18,30.9,-60.8,tropical storm,NA,45,1003,120,0 +Henri,2015,9,10,0,31.2,-60.8,tropical storm,NA,45,1003,150,0 +Henri,2015,9,10,6,31.6,-60.9,tropical storm,NA,45,1005,150,0 +Henri,2015,9,10,12,32.2,-60.9,tropical storm,NA,40,1006,150,0 +Henri,2015,9,10,18,33.2,-60.9,tropical storm,NA,40,1007,150,0 +Henri,2015,9,11,0,34.3,-60.7,tropical storm,NA,40,1009,150,0 +Henri,2015,9,11,6,35.7,-60.3,tropical storm,NA,40,1010,150,0 +Nine,2015,9,15,0,11.5,-40.3,other low,NA,20,1011,0,0 +Nine,2015,9,15,6,11.7,-41.1,other low,NA,20,1011,0,0 +Nine,2015,9,15,12,11.9,-41.9,other low,NA,20,1011,0,0 +Nine,2015,9,15,18,12.5,-42.4,other low,NA,20,1011,0,0 +Nine,2015,9,16,0,13.3,-42.7,other low,NA,25,1010,0,0 +Nine,2015,9,16,6,14,-43.1,other low,NA,25,1009,0,0 +Nine,2015,9,16,12,14.5,-43.7,tropical depression,NA,25,1009,0,0 +Nine,2015,9,16,18,15,-44.4,tropical depression,NA,25,1009,0,0 +Nine,2015,9,17,0,15.3,-44.8,tropical depression,NA,25,1008,0,0 +Nine,2015,9,17,6,15.6,-45,tropical depression,NA,30,1006,0,0 +Nine,2015,9,17,12,15.9,-45.1,tropical depression,NA,30,1006,0,0 +Nine,2015,9,17,18,16.3,-45.1,tropical depression,NA,25,1007,0,0 +Nine,2015,9,18,0,16.8,-45.2,tropical depression,NA,25,1007,0,0 +Nine,2015,9,18,6,17.3,-45.8,tropical depression,NA,25,1007,0,0 +Nine,2015,9,18,12,17.6,-46.6,tropical depression,NA,25,1007,0,0 +Nine,2015,9,18,18,17.9,-47.3,tropical depression,NA,25,1007,0,0 +Nine,2015,9,19,0,18.1,-48.1,tropical depression,NA,25,1008,0,0 +Nine,2015,9,19,6,18.3,-48.8,tropical depression,NA,25,1009,0,0 +Nine,2015,9,19,12,18.5,-49.4,tropical depression,NA,25,1009,0,0 +Ida,2015,9,15,12,9.4,-24.2,other low,NA,25,1010,0,0 +Ida,2015,9,15,18,9.7,-25.5,other low,NA,25,1010,0,0 +Ida,2015,9,16,0,10.1,-26.6,other low,NA,25,1010,0,0 +Ida,2015,9,16,6,10.4,-27.6,other low,NA,25,1010,0,0 +Ida,2015,9,16,12,10.7,-28.6,other low,NA,25,1010,0,0 +Ida,2015,9,16,18,11,-29.6,other low,NA,25,1009,0,0 +Ida,2015,9,17,0,11.3,-30.7,other low,NA,25,1009,0,0 +Ida,2015,9,17,6,11.6,-31.8,other low,NA,25,1008,0,0 +Ida,2015,9,17,12,12,-32.9,other low,NA,25,1008,0,0 +Ida,2015,9,17,18,12.3,-33.9,other low,NA,25,1008,0,0 +Ida,2015,9,18,0,12.6,-34.9,other low,NA,25,1008,0,0 +Ida,2015,9,18,6,12.9,-35.7,tropical depression,NA,25,1007,0,0 +Ida,2015,9,18,12,13.2,-36.4,tropical depression,NA,25,1007,0,0 +Ida,2015,9,18,18,13.4,-37,tropical depression,NA,30,1006,0,0 +Ida,2015,9,19,0,13.7,-37.6,tropical storm,NA,35,1005,110,0 +Ida,2015,9,19,6,14.1,-38.4,tropical storm,NA,35,1005,120,0 +Ida,2015,9,19,12,14.6,-39.4,tropical storm,NA,35,1005,120,0 +Ida,2015,9,19,18,15.1,-40.6,tropical storm,NA,35,1005,130,0 +Ida,2015,9,20,0,15.6,-41.9,tropical storm,NA,40,1004,150,0 +Ida,2015,9,20,6,16.2,-43.1,tropical storm,NA,40,1004,160,0 +Ida,2015,9,20,12,16.9,-44.4,tropical storm,NA,40,1004,170,0 +Ida,2015,9,20,18,17.8,-45.6,tropical storm,NA,40,1003,180,0 +Ida,2015,9,21,0,18.8,-46.5,tropical storm,NA,40,1003,190,0 +Ida,2015,9,21,6,19.7,-47.3,tropical storm,NA,45,1002,200,0 +Ida,2015,9,21,12,20.5,-48.1,tropical storm,NA,45,1001,210,0 +Ida,2015,9,21,18,20.9,-48.7,tropical storm,NA,45,1001,220,0 +Ida,2015,9,22,0,21.3,-48.9,tropical storm,NA,40,1002,220,0 +Ida,2015,9,22,6,21.4,-48.5,tropical storm,NA,40,1002,210,0 +Ida,2015,9,22,12,21.4,-47.9,tropical storm,NA,40,1002,200,0 +Ida,2015,9,22,18,21.1,-47.4,tropical storm,NA,40,1003,200,0 +Ida,2015,9,23,0,20.9,-47.2,tropical storm,NA,35,1004,190,0 +Ida,2015,9,23,6,20.6,-47.2,tropical storm,NA,35,1004,180,0 +Ida,2015,9,23,12,20.3,-47.2,tropical storm,NA,35,1004,170,0 +Ida,2015,9,23,18,19.9,-46.9,tropical storm,NA,35,1004,130,0 +Ida,2015,9,24,0,19.7,-46.4,tropical storm,NA,35,1004,120,0 +Ida,2015,9,24,6,19.7,-45.7,tropical depression,NA,30,1005,0,0 +Ida,2015,9,24,12,20,-45.2,tropical depression,NA,30,1005,0,0 +Ida,2015,9,24,18,20.5,-45,tropical depression,NA,30,1005,0,0 +Ida,2015,9,25,0,21,-45,tropical depression,NA,30,1006,0,0 +Ida,2015,9,25,6,21.4,-45,tropical depression,NA,30,1006,0,0 +Ida,2015,9,25,12,21.8,-45.1,tropical depression,NA,30,1006,0,0 +Ida,2015,9,25,18,22.2,-45.2,tropical depression,NA,30,1006,0,0 +Ida,2015,9,26,0,22.6,-45.5,tropical depression,NA,30,1006,0,0 +Ida,2015,9,26,6,23.1,-45.8,tropical depression,NA,30,1006,0,0 +Ida,2015,9,26,12,23.6,-46.2,tropical depression,NA,30,1006,0,0 +Ida,2015,9,26,18,24,-46.7,tropical depression,NA,30,1006,0,0 +Ida,2015,9,27,0,24.3,-47.2,tropical depression,NA,30,1006,0,0 +Ida,2015,9,27,6,24.5,-47.7,tropical depression,NA,25,1007,0,0 +Ida,2015,9,27,12,24.6,-48.1,other low,NA,25,1007,0,0 +Ida,2015,9,27,18,24.5,-48.7,other low,NA,25,1007,0,0 +Ida,2015,9,28,0,24.1,-49.3,other low,NA,20,1008,0,0 +Joaquin,2015,9,26,18,26.8,-68.7,other low,NA,20,1011,0,0 +Joaquin,2015,9,27,0,26.9,-68.6,other low,NA,20,1011,0,0 +Joaquin,2015,9,27,6,27,-68.5,other low,NA,20,1010,0,0 +Joaquin,2015,9,27,12,27.1,-68.6,other low,NA,25,1009,0,0 +Joaquin,2015,9,27,18,27.2,-68.8,other low,NA,30,1007,0,0 +Joaquin,2015,9,28,0,27.4,-69,tropical depression,NA,30,1007,0,0 +Joaquin,2015,9,28,6,27.6,-69.3,tropical depression,NA,30,1007,0,0 +Joaquin,2015,9,28,12,27.7,-69.7,tropical depression,NA,30,1006,0,0 +Joaquin,2015,9,28,18,27.4,-70,tropical depression,NA,30,1003,0,0 +Joaquin,2015,9,29,0,26.9,-70.1,tropical storm,NA,35,1002,60,0 +Joaquin,2015,9,29,6,26.5,-70.3,tropical storm,NA,35,1002,60,0 +Joaquin,2015,9,29,12,26.2,-70.5,tropical storm,NA,45,999,70,0 +Joaquin,2015,9,29,18,26,-70.8,tropical storm,NA,55,992,80,0 +Joaquin,2015,9,30,0,25.8,-71.3,tropical storm,NA,60,985,110,0 +Joaquin,2015,9,30,6,25.4,-71.8,hurricane,1,65,978,130,50 +Joaquin,2015,9,30,12,24.9,-72.2,hurricane,1,70,971,170,50 +Joaquin,2015,9,30,18,24.4,-72.5,hurricane,1,80,961,200,50 +Joaquin,2015,10,1,0,23.9,-72.9,hurricane,3,100,951,220,50 +Joaquin,2015,10,1,6,23.5,-73.3,hurricane,3,110,947,240,55 +Joaquin,2015,10,1,12,23.1,-73.7,hurricane,4,115,942,260,65 +Joaquin,2015,10,1,18,23,-74.2,hurricane,4,115,936,270,75 +Joaquin,2015,10,2,0,22.9,-74.4,hurricane,4,120,931,290,80 +Joaquin,2015,10,2,6,23,-74.7,hurricane,4,120,935,300,85 +Joaquin,2015,10,2,12,23.4,-74.8,hurricane,4,115,937,300,90 +Joaquin,2015,10,2,16,23.6,-74.8,hurricane,3,110,940,300,90 +Joaquin,2015,10,2,18,23.8,-74.7,hurricane,3,110,941,300,95 +Joaquin,2015,10,2,21,24.1,-74.5,hurricane,3,110,942,300,95 +Joaquin,2015,10,3,0,24.3,-74.3,hurricane,4,115,943,300,95 +Joaquin,2015,10,3,6,24.8,-73.6,hurricane,4,120,945,300,95 +Joaquin,2015,10,3,12,25.4,-72.6,hurricane,4,135,934,290,95 +Joaquin,2015,10,3,18,26.3,-71,hurricane,4,130,934,290,95 +Joaquin,2015,10,4,0,27.4,-69.5,hurricane,4,115,941,290,85 +Joaquin,2015,10,4,6,28.9,-68.3,hurricane,3,105,949,290,80 +Joaquin,2015,10,4,12,30.4,-67.2,hurricane,2,95,956,280,80 +Joaquin,2015,10,4,18,31.6,-66.5,hurricane,2,85,958,290,70 +Joaquin,2015,10,5,0,32.6,-66,hurricane,1,75,961,300,65 +Joaquin,2015,10,5,6,33.6,-65.6,hurricane,1,75,964,300,65 +Joaquin,2015,10,5,12,34.4,-65.2,hurricane,1,75,964,310,65 +Joaquin,2015,10,5,18,35.3,-64.5,hurricane,1,75,964,320,60 +Joaquin,2015,10,6,0,36.2,-63.6,hurricane,1,75,967,320,60 +Joaquin,2015,10,6,6,37,-62.3,hurricane,1,75,970,330,65 +Joaquin,2015,10,6,12,37.9,-60.4,hurricane,1,70,974,350,70 +Joaquin,2015,10,6,18,38.8,-58,hurricane,1,70,974,360,70 +Joaquin,2015,10,7,0,39.6,-54.9,hurricane,1,70,974,380,75 +Joaquin,2015,10,7,6,40.3,-51.5,hurricane,1,65,977,390,70 +Joaquin,2015,10,7,12,41,-47.5,tropical storm,NA,60,977,410,0 +Joaquin,2015,10,7,18,41.5,-43.3,tropical storm,NA,60,977,420,0 +Joaquin,2015,10,8,0,41.9,-39.1,other low,NA,55,977,430,0 +Joaquin,2015,10,8,6,42.4,-35,other low,NA,50,977,440,0 +Joaquin,2015,10,8,12,43,-31,other low,NA,45,980,460,0 +Joaquin,2015,10,8,18,43.5,-27.3,other low,NA,45,984,450,0 +Joaquin,2015,10,9,0,43.9,-24.1,extratropical,NA,45,987,460,0 +Joaquin,2015,10,9,6,44.1,-21.9,extratropical,NA,45,988,440,0 +Joaquin,2015,10,9,12,44.2,-19.9,extratropical,NA,45,988,430,0 +Joaquin,2015,10,9,18,44.1,-18.2,extratropical,NA,40,989,430,0 +Joaquin,2015,10,10,0,43.8,-16.4,extratropical,NA,35,992,460,0 +Joaquin,2015,10,10,6,43.4,-15,extratropical,NA,35,993,470,0 +Joaquin,2015,10,10,12,43.1,-13.9,extratropical,NA,35,996,200,0 +Joaquin,2015,10,10,18,42.8,-12.9,extratropical,NA,30,998,0,0 +Joaquin,2015,10,11,0,42.5,-12,extratropical,NA,30,999,0,0 +Joaquin,2015,10,11,6,42.2,-11.3,extratropical,NA,30,1000,0,0 +Joaquin,2015,10,11,12,41.8,-10.8,extratropical,NA,35,1001,120,0 +Joaquin,2015,10,11,18,41.2,-10.5,extratropical,NA,35,1001,140,0 +Joaquin,2015,10,12,0,40.4,-10.2,extratropical,NA,35,1002,140,0 +Joaquin,2015,10,12,6,39.8,-9.7,extratropical,NA,35,1002,140,0 +Joaquin,2015,10,12,12,39.5,-9.1,extratropical,NA,35,1003,140,0 +Joaquin,2015,10,12,18,39.1,-8.8,extratropical,NA,30,1005,0,0 +Joaquin,2015,10,13,0,38.6,-8.9,extratropical,NA,25,1007,0,0 +Joaquin,2015,10,13,6,38,-9.1,extratropical,NA,20,1009,0,0 +Joaquin,2015,10,13,12,37.3,-9.2,extratropical,NA,20,1010,0,0 +Joaquin,2015,10,13,18,36.6,-9.1,extratropical,NA,20,1010,0,0 +Joaquin,2015,10,14,0,36,-9,extratropical,NA,20,1011,0,0 +Joaquin,2015,10,14,6,35.5,-8.7,extratropical,NA,20,1011,0,0 +Joaquin,2015,10,14,12,35.1,-8.4,extratropical,NA,20,1011,0,0 +Joaquin,2015,10,14,18,35,-8,extratropical,NA,15,1012,0,0 +Joaquin,2015,10,15,0,35.2,-7.7,extratropical,NA,15,1012,0,0 +Kate,2015,11,8,18,22.2,-71.5,tropical depression,NA,30,1010,0,0 +Kate,2015,11,9,0,22.8,-72.6,tropical depression,NA,30,1010,0,0 +Kate,2015,11,9,6,23.4,-73.7,tropical storm,NA,35,1010,50,0 +Kate,2015,11,9,12,24.1,-74.8,tropical storm,NA,40,1008,60,0 +Kate,2015,11,9,18,25,-75.7,tropical storm,NA,45,1008,70,0 +Kate,2015,11,10,0,26.4,-76.2,tropical storm,NA,50,1006,70,0 +Kate,2015,11,10,6,28,-76.2,tropical storm,NA,55,1003,90,0 +Kate,2015,11,10,12,29.5,-75.4,tropical storm,NA,60,998,90,0 +Kate,2015,11,10,18,31.2,-74,tropical storm,NA,60,993,90,0 +Kate,2015,11,11,0,33.1,-71.3,hurricane,1,65,990,140,20 +Kate,2015,11,11,6,35.2,-67.6,hurricane,1,70,985,180,20 +Kate,2015,11,11,12,36.2,-62.5,hurricane,1,75,980,300,30 +Kate,2015,11,11,18,37.6,-58.2,hurricane,1,65,980,330,40 +Kate,2015,11,12,0,38.9,-55,extratropical,NA,65,980,360,40 +Kate,2015,11,12,6,40,-52,extratropical,NA,65,980,400,40 +Kate,2015,11,12,12,41.3,-50.4,extratropical,NA,55,981,400,0 +Kate,2015,11,12,18,41.9,-49.9,extratropical,NA,55,983,400,0 +Kate,2015,11,13,0,41.5,-49.2,extratropical,NA,50,985,740,0 +Kate,2015,11,13,6,40.8,-47.5,extratropical,NA,45,985,800,0 +Kate,2015,11,13,12,40.7,-45.4,extratropical,NA,45,987,860,0 +Alex,2016,1,7,0,26.6,-75.3,extratropical,NA,40,1010,300,0 +Alex,2016,1,7,6,27.6,-74.7,extratropical,NA,45,1003,320,0 +Alex,2016,1,7,12,28.7,-73.8,extratropical,NA,50,997,350,0 +Alex,2016,1,7,18,30,-72.5,extratropical,NA,55,987,370,0 +Alex,2016,1,8,0,31.4,-70.6,extratropical,NA,55,986,400,0 +Alex,2016,1,8,6,32.4,-68.8,extratropical,NA,55,986,420,0 +Alex,2016,1,8,12,33,-67.1,extratropical,NA,45,991,450,0 +Alex,2016,1,8,18,33.5,-65,extratropical,NA,45,991,520,0 +Alex,2016,1,9,0,34,-62.9,extratropical,NA,45,991,520,0 +Alex,2016,1,9,6,34.5,-60.5,extratropical,NA,50,991,520,0 +Alex,2016,1,9,12,35,-58.3,extratropical,NA,55,989,520,0 +Alex,2016,1,9,18,35.1,-56.1,extratropical,NA,60,985,520,0 +Alex,2016,1,10,0,34.4,-54.2,extratropical,NA,65,981,580,110 +Alex,2016,1,10,6,33.7,-52.7,extratropical,NA,65,981,610,100 +Alex,2016,1,10,12,32.9,-51.2,extratropical,NA,65,979,640,50 +Alex,2016,1,10,18,32.1,-49.1,extratropical,NA,60,980,640,0 +Alex,2016,1,11,0,31.6,-46.5,extratropical,NA,55,980,640,0 +Alex,2016,1,11,6,31.6,-44.6,extratropical,NA,55,980,640,0 +Alex,2016,1,11,12,31.3,-43.4,extratropical,NA,55,980,640,0 +Alex,2016,1,11,18,30,-42.5,extratropical,NA,50,982,640,0 +Alex,2016,1,12,0,28.4,-41.7,extratropical,NA,50,985,640,0 +Alex,2016,1,12,6,26.3,-40.2,extratropical,NA,50,988,520,0 +Alex,2016,1,12,12,25,-38,extratropical,NA,50,988,380,0 +Alex,2016,1,12,18,25.1,-35.9,subtropical storm,NA,50,988,200,0 +Alex,2016,1,13,0,25.4,-34.7,subtropical storm,NA,50,988,200,0 +Alex,2016,1,13,6,25.6,-33.6,subtropical storm,NA,45,989,160,0 +Alex,2016,1,13,12,26,-32.5,subtropical storm,NA,45,989,160,0 +Alex,2016,1,13,18,26.7,-31.4,subtropical storm,NA,45,990,180,0 +Alex,2016,1,14,0,27.9,-30.4,subtropical storm,NA,55,988,180,0 +Alex,2016,1,14,6,29.3,-29.6,hurricane,1,65,985,220,20 +Alex,2016,1,14,12,30.8,-28.7,hurricane,1,75,981,220,20 +Alex,2016,1,14,18,32.5,-28,hurricane,1,75,981,250,20 +Alex,2016,1,15,0,33.9,-27.6,hurricane,1,70,984,250,20 +Alex,2016,1,15,6,35.4,-27.2,hurricane,1,65,986,370,20 +Alex,2016,1,15,12,38,-27,tropical storm,NA,55,986,580,0 +Alex,2016,1,15,13,38.7,-27.1,tropical storm,NA,55,986,580,0 +Alex,2016,1,15,18,41.5,-27.7,extratropical,NA,55,986,660,0 +Alex,2016,1,16,0,45.1,-28.9,extratropical,NA,55,984,660,0 +Alex,2016,1,16,6,48.9,-30.2,extratropical,NA,55,982,660,0 +Alex,2016,1,16,12,53,-32,extratropical,NA,55,980,660,0 +Alex,2016,1,16,18,56,-37,extratropical,NA,55,979,660,0 +Alex,2016,1,17,0,57,-42,extratropical,NA,70,978,600,300 +Bonnie,2016,5,27,6,27.2,-72.1,other low,NA,30,1010,0,0 +Bonnie,2016,5,27,12,27.7,-73.1,other low,NA,30,1009,0,0 +Bonnie,2016,5,27,18,28.3,-74.4,tropical depression,NA,30,1009,0,0 +Bonnie,2016,5,28,0,28.8,-75.5,tropical depression,NA,30,1009,0,0 +Bonnie,2016,5,28,6,29.4,-76.7,tropical depression,NA,30,1009,0,0 +Bonnie,2016,5,28,12,30,-78,tropical storm,NA,35,1008,50,0 +Bonnie,2016,5,28,18,30.7,-79.1,tropical storm,NA,40,1008,50,0 +Bonnie,2016,5,29,0,31,-79.4,tropical storm,NA,40,1007,50,0 +Bonnie,2016,5,29,6,31.7,-79.4,tropical storm,NA,35,1007,30,0 +Bonnie,2016,5,29,12,32.7,-79.7,tropical depression,NA,30,1007,0,0 +Bonnie,2016,5,29,12,32.8,-79.8,tropical depression,NA,30,1007,0,0 +Bonnie,2016,5,29,18,33,-80.3,tropical depression,NA,30,1010,0,0 +Bonnie,2016,5,30,0,32.7,-80.3,tropical depression,NA,25,1011,0,0 +Bonnie,2016,5,30,6,33.1,-80,tropical depression,NA,25,1011,0,0 +Bonnie,2016,5,30,12,33.3,-79.8,other low,NA,25,1012,0,0 +Bonnie,2016,5,30,18,33.4,-79.6,other low,NA,25,1011,0,0 +Bonnie,2016,5,31,0,33.2,-79.3,other low,NA,25,1009,0,0 +Bonnie,2016,5,31,6,33.1,-78.8,other low,NA,25,1007,0,0 +Bonnie,2016,5,31,12,33.2,-78.4,other low,NA,25,1007,0,0 +Bonnie,2016,5,31,18,33.3,-78,other low,NA,25,1007,0,0 +Bonnie,2016,6,1,0,33.4,-77.7,other low,NA,20,1008,0,0 +Bonnie,2016,6,1,6,33.4,-77.3,other low,NA,20,1009,0,0 +Bonnie,2016,6,1,12,33.4,-76.9,other low,NA,20,1009,0,0 +Bonnie,2016,6,1,18,33.5,-76.4,other low,NA,20,1010,0,0 +Bonnie,2016,6,2,0,34.1,-76,tropical depression,NA,20,1010,0,0 +Bonnie,2016,6,2,6,34.7,-75.7,tropical depression,NA,25,1010,0,0 +Bonnie,2016,6,2,12,35.1,-75.4,tropical depression,NA,25,1009,0,0 +Bonnie,2016,6,2,18,35.4,-75,tropical depression,NA,30,1008,0,0 +Bonnie,2016,6,3,0,35.6,-74.5,tropical depression,NA,30,1006,0,0 +Bonnie,2016,6,3,6,35.7,-73.7,tropical depression,NA,30,1006,0,0 +Bonnie,2016,6,3,12,35.9,-72.6,tropical storm,NA,35,1006,30,0 +Bonnie,2016,6,3,18,35.9,-71.4,tropical storm,NA,35,1006,30,0 +Bonnie,2016,6,4,0,35.9,-70.2,tropical storm,NA,35,1006,30,0 +Bonnie,2016,6,4,6,35.9,-68.9,tropical storm,NA,35,1006,30,0 +Bonnie,2016,6,4,12,35.6,-67.3,tropical depression,NA,30,1007,0,0 +Bonnie,2016,6,4,18,35.1,-65.9,tropical depression,NA,30,1008,0,0 +Bonnie,2016,6,5,0,34.8,-64.6,other low,NA,25,1009,0,0 +Bonnie,2016,6,5,6,34.3,-63,other low,NA,25,1011,0,0 +Bonnie,2016,6,5,12,33.8,-61.2,other low,NA,25,1011,0,0 +Bonnie,2016,6,5,18,33.4,-59.2,other low,NA,25,1012,0,0 +Bonnie,2016,6,6,0,33,-57.1,other low,NA,25,1013,0,0 +Bonnie,2016,6,6,6,32.4,-54.5,other low,NA,25,1013,0,0 +Bonnie,2016,6,6,12,31.6,-51.5,other low,NA,25,1014,0,0 +Bonnie,2016,6,6,18,31,-48.7,other low,NA,25,1014,0,0 +Bonnie,2016,6,7,0,30.3,-46.2,other low,NA,25,1015,0,0 +Bonnie,2016,6,7,6,29.6,-42.9,other low,NA,25,1015,0,0 +Bonnie,2016,6,7,12,29.2,-40.3,other low,NA,30,1015,0,0 +Bonnie,2016,6,7,18,28.9,-38,extratropical,NA,30,1015,0,0 +Bonnie,2016,6,8,0,28.8,-36.2,extratropical,NA,30,1015,0,0 +Bonnie,2016,6,8,6,28.9,-34.7,extratropical,NA,25,1015,0,0 +Bonnie,2016,6,8,12,29.1,-33.5,extratropical,NA,25,1016,0,0 +Bonnie,2016,6,8,18,29.5,-32.5,extratropical,NA,25,1016,0,0 +Bonnie,2016,6,9,0,29.9,-31.7,extratropical,NA,25,1019,0,0 +Bonnie,2016,6,9,6,30.2,-30.9,extratropical,NA,25,1018,0,0 +Bonnie,2016,6,9,12,30.4,-30.2,extratropical,NA,25,1018,0,0 +Bonnie,2016,6,9,18,30.6,-29.5,extratropical,NA,25,1020,0,0 +Colin,2016,6,5,12,21.6,-88,tropical depression,NA,30,1005,0,0 +Colin,2016,6,5,18,22.4,-87.9,tropical storm,NA,35,1005,160,0 +Colin,2016,6,6,0,23.2,-87.8,tropical storm,NA,35,1003,160,0 +Colin,2016,6,6,6,24.6,-87.6,tropical storm,NA,40,1004,160,0 +Colin,2016,6,6,12,26.4,-87.3,tropical storm,NA,45,1004,200,0 +Colin,2016,6,6,18,28.1,-86.1,tropical storm,NA,45,1003,200,0 +Colin,2016,6,7,0,29.4,-84.3,tropical storm,NA,45,1001,200,0 +Colin,2016,6,7,2,29.8,-83.6,tropical storm,NA,45,1001,200,0 +Colin,2016,6,7,6,30.7,-82.1,tropical storm,NA,45,1003,200,0 +Colin,2016,6,7,12,33.2,-78.5,extratropical,NA,45,1000,200,0 +Colin,2016,6,7,18,35.5,-74.4,extratropical,NA,50,996,210,0 +Colin,2016,6,8,0,38,-70,extratropical,NA,50,994,240,0 +Colin,2016,6,8,6,40,-65,extratropical,NA,50,992,300,0 +Colin,2016,6,8,12,41,-61,extratropical,NA,50,988,360,0 +Colin,2016,6,8,18,43,-58,extratropical,NA,45,987,360,0 +Danielle,2016,6,18,18,19.4,-91.6,other low,NA,25,1010,0,0 +Danielle,2016,6,19,0,19.7,-92.3,other low,NA,25,1009,0,0 +Danielle,2016,6,19,6,19.9,-93.2,other low,NA,25,1009,0,0 +Danielle,2016,6,19,12,19.9,-94.1,tropical depression,NA,30,1008,0,0 +Danielle,2016,6,19,18,19.8,-94.6,tropical depression,NA,30,1009,0,0 +Danielle,2016,6,20,0,19.8,-95.1,tropical depression,NA,30,1008,0,0 +Danielle,2016,6,20,6,20,-95.5,tropical storm,NA,35,1008,50,0 +Danielle,2016,6,20,12,20.7,-96.1,tropical storm,NA,40,1007,120,0 +Danielle,2016,6,20,18,21.3,-96.8,tropical storm,NA,35,1008,120,0 +Danielle,2016,6,20,22,21.2,-97.4,tropical storm,NA,35,1009,50,0 +Danielle,2016,6,21,0,21.1,-97.8,tropical depression,NA,30,1010,0,0 +Danielle,2016,6,21,6,20.8,-98.7,other low,NA,20,1013,0,0 +Earl,2016,8,2,6,16.3,-77.5,tropical storm,NA,40,1004,130,0 +Earl,2016,8,2,12,16.3,-79.2,tropical storm,NA,40,1003,130,0 +Earl,2016,8,2,18,16.3,-80.8,tropical storm,NA,45,1001,100,0 +Earl,2016,8,3,0,16.4,-82.2,tropical storm,NA,55,994,100,0 +Earl,2016,8,3,6,16,-83.1,tropical storm,NA,55,993,120,0 +Earl,2016,8,3,12,16.3,-84.3,tropical storm,NA,60,989,130,0 +Earl,2016,8,3,18,16.9,-85.4,hurricane,1,65,988,160,10 +Earl,2016,8,4,0,17.3,-86.9,hurricane,1,70,984,160,15 +Earl,2016,8,4,4,17.4,-87.8,hurricane,1,75,979,160,15 +Earl,2016,8,4,6,17.4,-88.3,hurricane,1,75,979,160,20 +Earl,2016,8,4,12,17.4,-89.4,tropical storm,NA,60,989,100,0 +Earl,2016,8,4,18,17.6,-90.3,tropical storm,NA,40,995,80,0 +Earl,2016,8,5,0,18,-91.2,tropical storm,NA,35,1000,90,0 +Earl,2016,8,5,6,18.3,-92.3,tropical storm,NA,35,1001,90,0 +Earl,2016,8,5,12,18.5,-93.5,tropical storm,NA,40,1001,110,0 +Earl,2016,8,5,18,18.7,-94.7,tropical storm,NA,50,999,180,0 +Earl,2016,8,6,0,18.9,-95.6,tropical storm,NA,50,999,180,0 +Earl,2016,8,6,2,19,-96,tropical storm,NA,50,999,180,0 +Earl,2016,8,6,6,19,-96.5,tropical storm,NA,45,1004,110,0 +Earl,2016,8,6,12,19,-97.5,tropical depression,NA,25,1008,0,0 +Fiona,2016,8,16,18,12,-32.2,tropical depression,NA,25,1009,0,0 +Fiona,2016,8,17,0,12.4,-33.6,tropical depression,NA,30,1008,0,0 +Fiona,2016,8,17,6,12.9,-34.8,tropical depression,NA,30,1008,0,0 +Fiona,2016,8,17,12,13.7,-36,tropical storm,NA,35,1007,20,0 +Fiona,2016,8,17,18,14.5,-37.3,tropical storm,NA,35,1007,20,0 +Fiona,2016,8,18,0,15.2,-38.5,tropical storm,NA,35,1007,30,0 +Fiona,2016,8,18,6,15.7,-39.4,tropical storm,NA,40,1006,30,0 +Fiona,2016,8,18,12,16.1,-40.1,tropical storm,NA,40,1006,30,0 +Fiona,2016,8,18,18,16.5,-40.8,tropical storm,NA,40,1005,30,0 +Fiona,2016,8,19,0,16.9,-41.5,tropical storm,NA,45,1004,30,0 +Fiona,2016,8,19,6,17.3,-42.3,tropical storm,NA,45,1004,40,0 +Fiona,2016,8,19,12,17.7,-43.1,tropical storm,NA,40,1005,40,0 +Fiona,2016,8,19,18,18,-43.9,tropical storm,NA,40,1006,40,0 +Fiona,2016,8,20,0,18.5,-44.9,tropical storm,NA,40,1005,60,0 +Fiona,2016,8,20,6,19.2,-46.1,tropical storm,NA,40,1005,60,0 +Fiona,2016,8,20,12,20,-47.2,tropical storm,NA,45,1004,60,0 +Fiona,2016,8,20,18,20.8,-48.4,tropical storm,NA,45,1004,80,0 +Fiona,2016,8,21,0,21.5,-49.6,tropical storm,NA,45,1004,80,0 +Fiona,2016,8,21,6,22.1,-51.1,tropical storm,NA,40,1005,70,0 +Fiona,2016,8,21,12,22.6,-52.6,tropical storm,NA,35,1006,70,0 +Fiona,2016,8,21,18,23.1,-54.2,tropical storm,NA,35,1006,60,0 +Fiona,2016,8,22,0,23.7,-55.9,tropical storm,NA,35,1007,60,0 +Fiona,2016,8,22,6,24.2,-57.6,tropical depression,NA,30,1008,0,0 +Fiona,2016,8,22,12,24.5,-59.1,tropical depression,NA,30,1008,0,0 +Fiona,2016,8,22,18,25,-60.5,tropical depression,NA,30,1009,0,0 +Fiona,2016,8,23,0,25.3,-61.7,tropical depression,NA,30,1010,0,0 +Fiona,2016,8,23,6,25.6,-62.9,tropical depression,NA,25,1012,0,0 +Fiona,2016,8,23,12,25.9,-64,other low,NA,20,1014,0,0 +Fiona,2016,8,23,18,26.3,-64.9,other low,NA,20,1015,0,0 +Fiona,2016,8,24,0,26.7,-65.8,other low,NA,20,1016,0,0 +Fiona,2016,8,24,6,27.1,-66.7,other low,NA,20,1016,0,0 +Gaston,2016,8,21,12,11,-19.4,other low,NA,20,1009,0,0 +Gaston,2016,8,21,18,11,-21.2,other low,NA,20,1009,0,0 +Gaston,2016,8,22,0,11,-23,other low,NA,25,1009,0,0 +Gaston,2016,8,22,6,11.2,-24.8,other low,NA,25,1009,0,0 +Gaston,2016,8,22,12,11.5,-26.5,tropical depression,NA,30,1008,0,0 +Gaston,2016,8,22,18,12,-28.2,tropical storm,NA,35,1007,80,0 +Gaston,2016,8,23,0,12.5,-29.9,tropical storm,NA,40,1006,80,0 +Gaston,2016,8,23,6,13,-31.6,tropical storm,NA,45,1005,90,0 +Gaston,2016,8,23,12,13.5,-33.4,tropical storm,NA,55,1003,100,0 +Gaston,2016,8,23,18,13.9,-35,tropical storm,NA,55,1003,100,0 +Gaston,2016,8,24,0,14.2,-36.5,tropical storm,NA,55,1000,100,0 +Gaston,2016,8,24,6,14.8,-37.9,tropical storm,NA,60,997,100,0 +Gaston,2016,8,24,12,15.8,-39.1,hurricane,1,65,992,150,20 +Gaston,2016,8,24,18,16.9,-40.2,hurricane,1,65,988,180,40 +Gaston,2016,8,25,0,18,-41.4,hurricane,1,65,988,200,40 +Gaston,2016,8,25,6,18.9,-42.7,hurricane,1,65,988,200,40 +Gaston,2016,8,25,12,19.8,-44,tropical storm,NA,60,992,190,0 +Gaston,2016,8,25,18,21,-45,tropical storm,NA,55,996,180,0 +Gaston,2016,8,26,0,22.3,-46,tropical storm,NA,55,996,180,0 +Gaston,2016,8,26,6,23.6,-47,tropical storm,NA,55,996,180,0 +Gaston,2016,8,26,12,24.8,-47.9,tropical storm,NA,55,996,180,0 +Gaston,2016,8,26,18,25.8,-49.1,tropical storm,NA,55,996,180,0 +Gaston,2016,8,27,0,26.7,-50.3,tropical storm,NA,55,996,160,0 +Gaston,2016,8,27,6,27.5,-51.5,tropical storm,NA,55,996,160,0 +Gaston,2016,8,27,12,28.1,-52.8,tropical storm,NA,60,992,150,0 +Gaston,2016,8,27,18,28.7,-53.6,hurricane,1,65,989,170,20 +Gaston,2016,8,28,0,29.3,-54.2,hurricane,1,75,980,190,40 +Gaston,2016,8,28,6,29.9,-54.5,hurricane,1,80,976,200,40 +Gaston,2016,8,28,12,30.3,-54.7,hurricane,2,90,969,200,40 +Gaston,2016,8,28,18,30.5,-55,hurricane,3,100,962,200,40 +Gaston,2016,8,29,0,30.6,-55.2,hurricane,3,105,955,200,50 +Gaston,2016,8,29,6,30.7,-55.3,hurricane,3,100,960,200,50 +Gaston,2016,8,29,12,30.8,-55.4,hurricane,2,95,964,200,50 +Gaston,2016,8,29,18,31.1,-55.4,hurricane,2,90,967,200,50 +Gaston,2016,8,30,0,31.4,-54.9,hurricane,2,85,970,200,55 +Gaston,2016,8,30,6,31.7,-54.4,hurricane,2,85,970,200,60 +Gaston,2016,8,30,12,32,-53.5,hurricane,2,85,968,220,60 +Gaston,2016,8,30,18,32.4,-52.5,hurricane,2,95,963,230,70 +Gaston,2016,8,31,0,32.7,-51.5,hurricane,3,105,955,240,70 +Gaston,2016,8,31,6,33.1,-50.5,hurricane,3,105,955,250,80 +Gaston,2016,8,31,12,33.7,-49.2,hurricane,3,100,960,250,80 +Gaston,2016,8,31,18,34.5,-47.9,hurricane,2,95,965,250,80 +Gaston,2016,9,1,0,35.5,-46.3,hurricane,2,90,969,260,90 +Gaston,2016,9,1,6,36.3,-44.3,hurricane,2,85,973,270,100 +Gaston,2016,9,1,12,37.1,-42,hurricane,1,80,976,270,100 +Gaston,2016,9,1,18,37.8,-39.5,hurricane,1,75,981,270,90 +Gaston,2016,9,2,0,38.2,-37,hurricane,1,70,985,250,80 +Gaston,2016,9,2,6,38.5,-35,hurricane,1,65,988,230,70 +Gaston,2016,9,2,12,38.9,-33,tropical storm,NA,60,992,220,0 +Gaston,2016,9,2,18,39.3,-31.2,other low,NA,45,1003,200,0 +Gaston,2016,9,3,0,39.7,-29.5,other low,NA,35,1006,90,0 +Gaston,2016,9,3,6,40.2,-27.8,other low,NA,30,1007,0,0 +Gaston,2016,9,3,12,40.9,-26.1,other low,NA,25,1008,0,0 +Eight,2016,8,27,0,30.7,-65,other low,NA,20,1012,0,0 +Eight,2016,8,27,6,30.8,-65.6,other low,NA,25,1011,0,0 +Eight,2016,8,27,12,30.9,-66.2,other low,NA,25,1011,0,0 +Eight,2016,8,27,18,31,-66.9,other low,NA,25,1011,0,0 +Eight,2016,8,28,0,31.1,-67.8,other low,NA,25,1011,0,0 +Eight,2016,8,28,6,31.3,-68.7,other low,NA,25,1011,0,0 +Eight,2016,8,28,12,31.5,-69.6,tropical depression,NA,30,1010,0,0 +Eight,2016,8,28,18,31.7,-70.6,tropical depression,NA,30,1010,0,0 +Eight,2016,8,29,0,32,-71.7,tropical depression,NA,30,1010,0,0 +Eight,2016,8,29,6,32.4,-72.6,tropical depression,NA,30,1010,0,0 +Eight,2016,8,29,12,32.9,-73.2,tropical depression,NA,30,1011,0,0 +Eight,2016,8,29,18,33.4,-73.8,tropical depression,NA,30,1012,0,0 +Eight,2016,8,30,0,33.7,-74.5,tropical depression,NA,30,1012,0,0 +Eight,2016,8,30,6,33.9,-75,tropical depression,NA,30,1011,0,0 +Eight,2016,8,30,12,34.2,-75,tropical depression,NA,30,1011,0,0 +Eight,2016,8,30,18,34.4,-74.9,tropical depression,NA,30,1011,0,0 +Eight,2016,8,31,0,34.6,-74.7,tropical depression,NA,30,1011,0,0 +Eight,2016,8,31,6,34.8,-74.5,tropical depression,NA,30,1011,0,0 +Eight,2016,8,31,12,35.2,-73.8,tropical depression,NA,30,1010,0,0 +Eight,2016,8,31,18,35.9,-72.7,tropical depression,NA,30,1010,0,0 +Eight,2016,9,1,0,36.8,-71.2,tropical depression,NA,30,1010,0,0 +Hermine,2016,8,28,18,23.8,-81.4,tropical depression,NA,30,1009,0,0 +Hermine,2016,8,29,0,23.4,-82.4,tropical depression,NA,30,1007,0,0 +Hermine,2016,8,29,6,23.4,-83.3,tropical depression,NA,30,1007,0,0 +Hermine,2016,8,29,12,23.5,-84,tropical depression,NA,30,1007,0,0 +Hermine,2016,8,29,18,23.7,-84.6,tropical depression,NA,30,1005,0,0 +Hermine,2016,8,30,0,23.8,-85.4,tropical depression,NA,30,1003,0,0 +Hermine,2016,8,30,6,23.8,-86.2,tropical depression,NA,30,1003,0,0 +Hermine,2016,8,30,12,23.9,-86.8,tropical depression,NA,30,1003,0,0 +Hermine,2016,8,30,18,24,-87.3,tropical depression,NA,30,1003,0,0 +Hermine,2016,8,31,0,24.1,-87.8,tropical depression,NA,30,1003,0,0 +Hermine,2016,8,31,6,24.4,-88,tropical storm,NA,35,1003,60,0 +Hermine,2016,8,31,12,24.8,-87.9,tropical storm,NA,40,1003,90,0 +Hermine,2016,8,31,18,25.1,-87.7,tropical storm,NA,45,1002,160,0 +Hermine,2016,9,1,0,25.5,-87.2,tropical storm,NA,50,999,210,0 +Hermine,2016,9,1,6,26,-86.8,tropical storm,NA,55,995,220,0 +Hermine,2016,9,1,12,26.9,-86.2,tropical storm,NA,60,991,210,0 +Hermine,2016,9,1,18,27.9,-85.5,hurricane,1,65,988,210,40 +Hermine,2016,9,2,0,29,-84.8,hurricane,1,70,983,210,70 +Hermine,2016,9,2,5,30.1,-84.1,hurricane,1,70,981,210,60 +Hermine,2016,9,2,6,30.3,-84,hurricane,1,65,982,190,30 +Hermine,2016,9,2,8,30.6,-83.8,tropical storm,NA,60,984,190,0 +Hermine,2016,9,2,12,31.4,-82.8,tropical storm,NA,50,989,190,0 +Hermine,2016,9,2,18,32.4,-81.2,tropical storm,NA,50,990,180,0 +Hermine,2016,9,3,0,33.6,-79.2,tropical storm,NA,50,991,160,0 +Hermine,2016,9,3,6,34.9,-77.2,tropical storm,NA,55,993,160,0 +Hermine,2016,9,3,12,35.8,-75.5,extratropical,NA,60,995,230,0 +Hermine,2016,9,3,18,36,-74.1,extratropical,NA,60,997,270,0 +Hermine,2016,9,4,0,36.3,-72.6,extratropical,NA,60,998,300,0 +Hermine,2016,9,4,6,36.7,-71.3,extratropical,NA,60,998,330,0 +Hermine,2016,9,4,12,36.9,-70.1,extratropical,NA,60,998,350,0 +Hermine,2016,9,4,18,37,-69,extratropical,NA,60,998,370,0 +Hermine,2016,9,5,0,37.2,-68.4,extratropical,NA,60,997,370,0 +Hermine,2016,9,5,6,37.8,-68.2,extratropical,NA,60,996,370,0 +Hermine,2016,9,5,12,38.6,-68.5,extratropical,NA,55,995,350,0 +Hermine,2016,9,5,18,39.2,-69.3,extratropical,NA,55,995,330,0 +Hermine,2016,9,6,0,39.5,-70.3,extratropical,NA,55,995,300,0 +Hermine,2016,9,6,6,39.6,-71.2,extratropical,NA,50,996,260,0 +Hermine,2016,9,6,12,39.5,-71.8,extratropical,NA,45,997,230,0 +Hermine,2016,9,6,18,39.5,-72.3,extratropical,NA,40,998,200,0 +Hermine,2016,9,7,0,39.2,-72.5,extratropical,NA,35,1000,160,0 +Hermine,2016,9,7,6,39,-72.4,extratropical,NA,35,1002,130,0 +Hermine,2016,9,7,12,39.3,-72.3,extratropical,NA,30,1004,0,0 +Hermine,2016,9,7,18,39.5,-72.1,extratropical,NA,30,1007,0,0 +Hermine,2016,9,8,0,39.6,-71.8,extratropical,NA,25,1008,0,0 +Hermine,2016,9,8,6,39.9,-71.3,extratropical,NA,25,1009,0,0 +Hermine,2016,9,8,12,40.6,-70.7,extratropical,NA,25,1010,0,0 +Hermine,2016,9,8,18,41.7,-70,extratropical,NA,20,1010,0,0 +Ian,2016,9,12,0,20,-48.5,other low,NA,35,1007,120,0 +Ian,2016,9,12,6,20.5,-49.3,tropical storm,NA,35,1007,120,0 +Ian,2016,9,12,12,21.2,-50.2,tropical storm,NA,35,1006,120,0 +Ian,2016,9,12,18,22.2,-50.6,tropical storm,NA,35,1003,260,0 +Ian,2016,9,13,0,23,-51.2,tropical storm,NA,35,1000,260,0 +Ian,2016,9,13,6,23.9,-51.7,tropical storm,NA,40,1000,260,0 +Ian,2016,9,13,12,24.8,-52.1,tropical storm,NA,45,999,260,0 +Ian,2016,9,13,18,26,-52.4,tropical storm,NA,45,998,260,0 +Ian,2016,9,14,0,27.3,-52.6,tropical storm,NA,45,998,260,0 +Ian,2016,9,14,6,28.9,-53,tropical storm,NA,45,998,240,0 +Ian,2016,9,14,12,30.5,-53.5,tropical storm,NA,45,998,240,0 +Ian,2016,9,14,18,32.1,-53.8,subtropical storm,NA,45,998,240,0 +Ian,2016,9,15,0,33.5,-53.5,subtropical storm,NA,45,998,240,0 +Ian,2016,9,15,6,34.9,-53,subtropical storm,NA,45,998,240,0 +Ian,2016,9,15,12,36.3,-51.5,tropical storm,NA,45,998,240,0 +Ian,2016,9,15,18,38.3,-49.2,tropical storm,NA,45,998,150,0 +Ian,2016,9,16,0,41.2,-46.8,tropical storm,NA,45,998,150,0 +Ian,2016,9,16,6,44,-42.8,tropical storm,NA,50,994,180,0 +Ian,2016,9,16,12,46.8,-38.6,extratropical,NA,55,990,210,0 +Ian,2016,9,16,18,50.4,-34.4,extratropical,NA,55,985,210,0 +Ian,2016,9,17,0,55.1,-30.3,extratropical,NA,55,984,210,0 +Julia,2016,9,13,6,27.3,-80.2,tropical depression,NA,30,1010,0,0 +Julia,2016,9,13,12,28,-80.7,tropical storm,NA,35,1010,40,0 +Julia,2016,9,13,18,29,-81.2,tropical storm,NA,45,1010,50,0 +Julia,2016,9,14,0,29.8,-81.5,tropical storm,NA,45,1010,50,0 +Julia,2016,9,14,6,30.5,-81.7,tropical storm,NA,40,1011,70,0 +Julia,2016,9,14,12,31.3,-81.5,tropical storm,NA,40,1011,100,0 +Julia,2016,9,14,18,31.8,-80.7,tropical storm,NA,40,1009,100,0 +Julia,2016,9,15,0,31.9,-80.1,tropical storm,NA,40,1007,100,0 +Julia,2016,9,15,6,31.9,-79.5,tropical storm,NA,40,1007,70,0 +Julia,2016,9,15,12,31.9,-78.7,tropical storm,NA,40,1007,70,0 +Julia,2016,9,15,18,31.9,-77.9,tropical storm,NA,40,1007,70,0 +Julia,2016,9,16,0,31.5,-77.2,tropical storm,NA,40,1007,70,0 +Julia,2016,9,16,6,31.2,-76.6,tropical storm,NA,40,1008,60,0 +Julia,2016,9,16,12,31.1,-75.9,tropical storm,NA,40,1008,60,0 +Julia,2016,9,16,18,30.9,-75.7,tropical storm,NA,40,1008,30,0 +Julia,2016,9,17,0,30.4,-76,tropical depression,NA,30,1009,0,0 +Julia,2016,9,17,6,30.3,-76.1,tropical depression,NA,30,1009,0,0 +Julia,2016,9,17,12,30.2,-76.2,tropical depression,NA,30,1010,0,0 +Julia,2016,9,17,18,30.4,-76.3,tropical depression,NA,30,1010,0,0 +Julia,2016,9,18,0,30.7,-76.4,tropical depression,NA,30,1010,0,0 +Julia,2016,9,18,6,31.1,-76.6,tropical depression,NA,25,1010,0,0 +Julia,2016,9,18,12,31.7,-77,tropical depression,NA,25,1010,0,0 +Julia,2016,9,18,18,32,-77.8,tropical depression,NA,25,1010,0,0 +Julia,2016,9,19,0,32.2,-78.3,other low,NA,30,1010,0,0 +Julia,2016,9,19,6,32.4,-78.2,other low,NA,30,1011,0,0 +Julia,2016,9,19,12,32.8,-77.7,other low,NA,30,1011,0,0 +Julia,2016,9,19,18,33.2,-77,other low,NA,30,1011,0,0 +Julia,2016,9,20,0,33.6,-76.5,extratropical,NA,30,1011,0,0 +Julia,2016,9,20,6,34.3,-76.1,extratropical,NA,30,1011,0,0 +Julia,2016,9,20,12,35,-76,extratropical,NA,25,1011,0,0 +Julia,2016,9,20,18,35.5,-76.3,extratropical,NA,25,1011,0,0 +Julia,2016,9,21,0,35.6,-76.9,extratropical,NA,25,1011,0,0 +Julia,2016,9,21,6,35.4,-77.4,extratropical,NA,20,1012,0,0 +Karl,2016,9,12,18,13.1,-19,other low,NA,20,1010,0,0 +Karl,2016,9,13,0,13.3,-19.3,other low,NA,20,1010,0,0 +Karl,2016,9,13,6,13.6,-19.6,other low,NA,20,1010,0,0 +Karl,2016,9,13,12,14.1,-20,other low,NA,25,1010,0,0 +Karl,2016,9,13,18,14.8,-20.8,other low,NA,25,1009,0,0 +Karl,2016,9,14,0,15.5,-21.9,other low,NA,25,1009,0,0 +Karl,2016,9,14,6,16.2,-23.2,tropical depression,NA,25,1009,0,0 +Karl,2016,9,14,12,16.8,-24.5,tropical depression,NA,30,1009,0,0 +Karl,2016,9,14,18,17.2,-25.8,tropical depression,NA,30,1009,0,0 +Karl,2016,9,15,0,17.4,-27.3,tropical depression,NA,30,1009,0,0 +Karl,2016,9,15,6,17.5,-28.7,tropical storm,NA,35,1008,60,0 +Karl,2016,9,15,12,17.6,-29.8,tropical storm,NA,35,1007,60,0 +Karl,2016,9,15,18,17.7,-30.8,tropical storm,NA,35,1006,60,0 +Karl,2016,9,16,0,17.8,-31.8,tropical storm,NA,40,1004,140,0 +Karl,2016,9,16,6,18,-32.8,tropical storm,NA,40,1004,180,0 +Karl,2016,9,16,12,18.3,-33.8,tropical storm,NA,40,1004,200,0 +Karl,2016,9,16,18,18.5,-34.9,tropical storm,NA,40,1004,200,0 +Karl,2016,9,17,0,18.4,-36.2,tropical storm,NA,40,1004,200,0 +Karl,2016,9,17,6,18.3,-37.4,tropical storm,NA,40,1004,200,0 +Karl,2016,9,17,12,18.2,-38.6,tropical storm,NA,40,1004,200,0 +Karl,2016,9,17,18,18.1,-39.7,tropical storm,NA,40,1005,200,0 +Karl,2016,9,18,0,17.9,-40.7,tropical storm,NA,35,1006,200,0 +Karl,2016,9,18,6,17.9,-41.8,tropical storm,NA,35,1006,150,0 +Karl,2016,9,18,12,18,-42.9,tropical storm,NA,35,1006,100,0 +Karl,2016,9,18,18,18.1,-44.3,tropical storm,NA,35,1006,100,0 +Karl,2016,9,19,0,18.1,-45.6,tropical storm,NA,35,1006,100,0 +Karl,2016,9,19,6,18.2,-46.8,tropical storm,NA,35,1006,100,0 +Karl,2016,9,19,12,18.4,-47.8,tropical storm,NA,35,1006,100,0 +Karl,2016,9,19,18,19,-48.9,tropical storm,NA,35,1006,100,0 +Karl,2016,9,20,0,19.7,-50.3,tropical storm,NA,35,1006,100,0 +Karl,2016,9,20,6,20,-52.1,tropical storm,NA,35,1006,120,0 +Karl,2016,9,20,12,20,-53.7,tropical storm,NA,35,1006,120,0 +Karl,2016,9,20,18,20,-54.9,tropical storm,NA,35,1006,120,0 +Karl,2016,9,21,0,20,-56,tropical storm,NA,35,1006,120,0 +Karl,2016,9,21,6,20.2,-56.9,tropical depression,NA,30,1006,0,0 +Karl,2016,9,21,12,20.8,-57.5,tropical depression,NA,30,1007,0,0 +Karl,2016,9,21,18,21.5,-58.2,tropical depression,NA,30,1007,0,0 +Karl,2016,9,22,0,22.5,-59.2,tropical depression,NA,30,1007,0,0 +Karl,2016,9,22,6,23.5,-60.3,tropical depression,NA,30,1007,0,0 +Karl,2016,9,22,12,24.4,-61.7,tropical depression,NA,30,1007,0,0 +Karl,2016,9,22,18,25.3,-62.9,tropical storm,NA,35,1005,80,0 +Karl,2016,9,23,0,26.4,-63.7,tropical storm,NA,40,1001,80,0 +Karl,2016,9,23,6,27.3,-64.3,tropical storm,NA,50,997,80,0 +Karl,2016,9,23,12,28.2,-64.9,tropical storm,NA,50,992,150,0 +Karl,2016,9,23,18,29.2,-65.3,tropical storm,NA,55,988,170,0 +Karl,2016,9,24,0,30.3,-65.3,tropical storm,NA,55,990,200,0 +Karl,2016,9,24,6,31.5,-64.8,tropical storm,NA,55,990,200,0 +Karl,2016,9,24,12,32.2,-63.3,tropical storm,NA,55,994,240,0 +Karl,2016,9,24,18,32.9,-61.5,tropical storm,NA,55,994,220,0 +Karl,2016,9,25,0,33.8,-59.3,tropical storm,NA,55,992,220,0 +Karl,2016,9,25,6,35.8,-55.1,tropical storm,NA,60,990,230,0 +Karl,2016,9,25,12,38.1,-50.4,extratropical,NA,60,986,230,0 +Karl,2016,9,25,18,41,-45,extratropical,NA,60,980,230,0 +Karl,2016,9,26,0,45,-39.9,extratropical,NA,55,986,230,0 +Lisa,2016,9,19,6,13.2,-26.7,other low,NA,25,1008,0,0 +Lisa,2016,9,19,12,13.4,-27.3,tropical depression,NA,30,1007,0,0 +Lisa,2016,9,19,18,13.6,-27.8,tropical depression,NA,30,1007,0,0 +Lisa,2016,9,20,0,13.9,-28.4,tropical depression,NA,30,1007,0,0 +Lisa,2016,9,20,6,14.4,-29.3,tropical depression,NA,30,1007,0,0 +Lisa,2016,9,20,12,15.1,-30,tropical storm,NA,35,1006,100,0 +Lisa,2016,9,20,18,16,-30.7,tropical storm,NA,40,1004,100,0 +Lisa,2016,9,21,0,16.7,-31.3,tropical storm,NA,40,1004,110,0 +Lisa,2016,9,21,6,17.2,-31.7,tropical storm,NA,45,1002,110,0 +Lisa,2016,9,21,12,17.7,-32.1,tropical storm,NA,45,1002,110,0 +Lisa,2016,9,21,18,18.3,-32.4,tropical storm,NA,40,1004,110,0 +Lisa,2016,9,22,0,18.9,-32.7,tropical storm,NA,40,1005,120,0 +Lisa,2016,9,22,6,19.3,-33.3,tropical storm,NA,40,1004,130,0 +Lisa,2016,9,22,12,19.7,-33.8,tropical storm,NA,45,999,150,0 +Lisa,2016,9,22,18,20.3,-34.2,tropical storm,NA,45,999,150,0 +Lisa,2016,9,23,0,20.9,-34.8,tropical storm,NA,40,1003,170,0 +Lisa,2016,9,23,6,21.5,-35.4,tropical storm,NA,35,1007,130,0 +Lisa,2016,9,23,12,22,-35.9,tropical storm,NA,35,1008,100,0 +Lisa,2016,9,23,18,22.4,-36.3,tropical storm,NA,35,1009,80,0 +Lisa,2016,9,24,0,22.9,-36.8,tropical storm,NA,35,1009,80,0 +Lisa,2016,9,24,6,23.6,-37.4,tropical storm,NA,40,1007,70,0 +Lisa,2016,9,24,12,24.4,-38.1,tropical storm,NA,40,1007,70,0 +Lisa,2016,9,24,18,24.9,-39.2,tropical storm,NA,35,1009,70,0 +Lisa,2016,9,25,0,25.4,-40.4,tropical depression,NA,30,1011,0,0 +Lisa,2016,9,25,6,26.5,-41.4,other low,NA,30,1011,0,0 +Lisa,2016,9,25,12,27.6,-42.5,other low,NA,30,1012,0,0 +Lisa,2016,9,25,18,28.9,-42.5,other low,NA,35,1013,40,0 +Lisa,2016,9,26,0,29.8,-42.1,other low,NA,40,1014,50,0 +Lisa,2016,9,26,6,30.6,-41.2,other low,NA,40,1014,50,0 +Lisa,2016,9,26,12,31.6,-40.5,other low,NA,40,1014,50,0 +Matthew,2016,9,28,12,13.4,-59.8,tropical storm,NA,50,1009,270,0 +Matthew,2016,9,28,18,13.6,-61.2,tropical storm,NA,50,1008,280,0 +Matthew,2016,9,29,0,13.9,-62.6,tropical storm,NA,55,1004,290,0 +Matthew,2016,9,29,6,14,-64,tropical storm,NA,55,1002,280,0 +Matthew,2016,9,29,12,14.1,-65.5,tropical storm,NA,60,995,270,0 +Matthew,2016,9,29,18,14.2,-66.9,hurricane,1,65,993,260,60 +Matthew,2016,9,30,0,14.2,-68.1,hurricane,1,70,987,270,50 +Matthew,2016,9,30,6,14,-69.3,hurricane,2,85,979,260,55 +Matthew,2016,9,30,12,13.8,-70.4,hurricane,3,100,968,260,50 +Matthew,2016,9,30,18,13.5,-71.2,hurricane,4,120,955,260,50 +Matthew,2016,10,1,0,13.4,-71.9,hurricane,5,145,942,260,60 +Matthew,2016,10,1,6,13.4,-72.5,hurricane,5,140,942,260,60 +Matthew,2016,10,1,12,13.4,-73.1,hurricane,4,135,944,260,45 +Matthew,2016,10,1,18,13.4,-73.3,hurricane,4,130,942,260,45 +Matthew,2016,10,2,0,13.5,-73.5,hurricane,4,130,940,250,45 +Matthew,2016,10,2,6,13.7,-73.9,hurricane,4,125,941,240,45 +Matthew,2016,10,2,12,14,-74.3,hurricane,4,130,947,240,45 +Matthew,2016,10,2,18,14.2,-74.7,hurricane,4,135,945,240,45 +Matthew,2016,10,3,0,14.5,-75,hurricane,4,130,944,250,50 +Matthew,2016,10,3,6,14.9,-75,hurricane,4,125,942,250,50 +Matthew,2016,10,3,12,15.4,-75,hurricane,4,125,941,250,50 +Matthew,2016,10,3,18,15.9,-74.9,hurricane,4,125,938,260,65 +Matthew,2016,10,4,0,16.6,-74.6,hurricane,4,130,934,260,65 +Matthew,2016,10,4,6,17.5,-74.4,hurricane,4,130,934,260,65 +Matthew,2016,10,4,11,18.3,-74.3,hurricane,4,130,935,260,65 +Matthew,2016,10,4,12,18.4,-74.3,hurricane,4,125,937,260,70 +Matthew,2016,10,4,18,19.3,-74.3,hurricane,4,120,947,250,80 +Matthew,2016,10,5,0,20.1,-74.3,hurricane,4,115,949,250,80 +Matthew,2016,10,5,6,20.7,-74.4,hurricane,3,110,960,250,75 +Matthew,2016,10,5,12,21.4,-74.8,hurricane,3,105,962,240,70 +Matthew,2016,10,5,18,22.2,-75.4,hurricane,3,105,963,230,70 +Matthew,2016,10,6,0,23,-76,hurricane,3,105,960,230,70 +Matthew,2016,10,6,6,23.8,-76.7,hurricane,3,110,952,230,70 +Matthew,2016,10,6,12,24.7,-77.5,hurricane,4,120,937,240,80 +Matthew,2016,10,6,18,25.7,-78.3,hurricane,4,120,937,250,80 +Matthew,2016,10,7,0,26.7,-79,hurricane,4,115,937,270,80 +Matthew,2016,10,7,6,27.7,-79.7,hurricane,3,110,939,270,80 +Matthew,2016,10,7,12,28.9,-80.3,hurricane,3,105,944,270,85 +Matthew,2016,10,7,18,29.7,-80.7,hurricane,3,100,946,270,85 +Matthew,2016,10,8,0,30.7,-80.6,hurricane,2,95,949,270,85 +Matthew,2016,10,8,6,31.6,-80.6,hurricane,2,85,953,290,70 +Matthew,2016,10,8,9,32.1,-80.5,hurricane,2,85,957,290,70 +Matthew,2016,10,8,12,32.5,-79.9,hurricane,1,80,963,300,50 +Matthew,2016,10,8,15,33,-79.5,hurricane,1,75,967,300,50 +Matthew,2016,10,8,18,33.5,-79,hurricane,1,70,973,320,50 +Matthew,2016,10,9,0,33.9,-77.3,hurricane,1,70,981,330,40 +Matthew,2016,10,9,6,34.7,-76,hurricane,1,70,983,350,50 +Matthew,2016,10,9,12,35,-74.5,extratropical,NA,65,984,380,50 +Matthew,2016,10,9,18,35.2,-72.8,extratropical,NA,60,987,390,0 +Matthew,2016,10,10,0,35.3,-71.1,extratropical,NA,55,990,390,0 +Nicole,2016,10,4,6,23.2,-59.8,tropical storm,NA,35,1007,90,0 +Nicole,2016,10,4,12,23.5,-60.3,tropical storm,NA,40,1005,100,0 +Nicole,2016,10,4,18,23.8,-60.7,tropical storm,NA,45,1002,100,0 +Nicole,2016,10,5,0,24.1,-61.2,tropical storm,NA,45,1001,100,0 +Nicole,2016,10,5,6,24.4,-61.7,tropical storm,NA,45,1001,100,0 +Nicole,2016,10,5,12,24.7,-62.5,tropical storm,NA,45,1001,100,0 +Nicole,2016,10,5,18,25.1,-63.3,tropical storm,NA,50,1000,100,0 +Nicole,2016,10,6,0,25.7,-63.9,tropical storm,NA,50,999,100,0 +Nicole,2016,10,6,6,26.2,-64.5,tropical storm,NA,55,995,100,0 +Nicole,2016,10,6,12,26.7,-64.8,tropical storm,NA,60,991,100,0 +Nicole,2016,10,6,18,27.3,-65.1,hurricane,1,75,980,120,30 +Nicole,2016,10,7,0,27.5,-65.2,hurricane,2,90,969,130,30 +Nicole,2016,10,7,6,27.6,-65.2,hurricane,1,75,970,130,30 +Nicole,2016,10,7,12,27.6,-65.2,tropical storm,NA,60,985,130,0 +Nicole,2016,10,7,18,27.2,-65.3,tropical storm,NA,55,992,130,0 +Nicole,2016,10,8,0,26.6,-65.4,tropical storm,NA,50,997,130,0 +Nicole,2016,10,8,6,26,-65.5,tropical storm,NA,40,1002,130,0 +Nicole,2016,10,8,12,25.5,-65.6,tropical storm,NA,40,1002,130,0 +Nicole,2016,10,8,18,25,-65.7,tropical storm,NA,45,1000,140,0 +Nicole,2016,10,9,0,24.6,-65.6,tropical storm,NA,45,999,130,0 +Nicole,2016,10,9,6,24.1,-65.5,tropical storm,NA,55,996,150,0 +Nicole,2016,10,9,12,24,-65.4,tropical storm,NA,55,993,150,0 +Nicole,2016,10,9,18,24.1,-65.3,tropical storm,NA,55,992,160,0 +Nicole,2016,10,10,0,24.3,-65.2,tropical storm,NA,50,992,160,0 +Nicole,2016,10,10,6,24.8,-65.2,tropical storm,NA,50,992,170,0 +Nicole,2016,10,10,12,25.4,-65.2,tropical storm,NA,50,992,170,0 +Nicole,2016,10,10,18,26,-65.3,tropical storm,NA,50,992,170,0 +Nicole,2016,10,11,0,26.5,-65.5,tropical storm,NA,50,992,150,0 +Nicole,2016,10,11,6,26.8,-65.6,tropical storm,NA,50,991,150,0 +Nicole,2016,10,11,12,27.1,-65.8,tropical storm,NA,60,987,150,0 +Nicole,2016,10,11,18,27.2,-66.2,hurricane,1,70,980,180,25 +Nicole,2016,10,12,0,27.4,-66.6,hurricane,1,75,976,180,25 +Nicole,2016,10,12,6,27.6,-66.8,hurricane,2,85,973,180,25 +Nicole,2016,10,12,12,28,-66.9,hurricane,2,95,969,210,60 +Nicole,2016,10,12,18,28.7,-66.8,hurricane,3,105,962,250,60 +Nicole,2016,10,13,0,29.6,-66.5,hurricane,4,115,954,300,110 +Nicole,2016,10,13,6,30.6,-66.2,hurricane,4,120,950,300,130 +Nicole,2016,10,13,12,31.6,-65.3,hurricane,3,110,956,330,130 +Nicole,2016,10,13,15,32.3,-64.7,hurricane,3,105,959,330,160 +Nicole,2016,10,13,18,33,-63.9,hurricane,2,95,962,330,160 +Nicole,2016,10,14,0,34,-62.1,hurricane,2,85,967,360,160 +Nicole,2016,10,14,6,34.9,-60.5,hurricane,1,75,972,360,130 +Nicole,2016,10,14,12,35.6,-58.9,hurricane,1,70,975,480,130 +Nicole,2016,10,14,18,36.4,-56.5,hurricane,1,65,977,480,130 +Nicole,2016,10,15,0,37.2,-54.2,hurricane,1,65,974,510,130 +Nicole,2016,10,15,6,38,-52.6,hurricane,1,75,965,540,130 +Nicole,2016,10,15,12,38.7,-51.1,hurricane,1,75,960,690,160 +Nicole,2016,10,15,18,39,-49.8,hurricane,1,75,961,660,160 +Nicole,2016,10,16,0,39.3,-48.7,hurricane,1,75,961,750,160 +Nicole,2016,10,16,6,39.1,-48,hurricane,1,70,962,750,160 +Nicole,2016,10,16,12,38.9,-47.2,hurricane,1,70,963,690,160 +Nicole,2016,10,16,18,39.4,-46.4,hurricane,1,65,964,690,150 +Nicole,2016,10,17,0,40.1,-45.8,hurricane,1,65,965,690,150 +Nicole,2016,10,17,6,40.6,-45.5,hurricane,1,65,965,690,150 +Nicole,2016,10,17,12,40.9,-45.1,hurricane,1,65,966,690,150 +Nicole,2016,10,17,18,41.8,-43.6,hurricane,1,65,966,630,150 +Nicole,2016,10,18,0,43.5,-41.9,tropical storm,NA,60,966,600,0 +Nicole,2016,10,18,6,45.6,-39.7,tropical storm,NA,55,966,570,0 +Nicole,2016,10,18,12,49,-38.5,extratropical,NA,55,966,570,0 +Nicole,2016,10,18,18,53,-38.5,extratropical,NA,50,967,570,0 +Nicole,2016,10,19,0,55.1,-38,extratropical,NA,50,968,570,0 +Nicole,2016,10,19,6,57,-37,extratropical,NA,50,969,570,0 +Nicole,2016,10,19,12,59,-36.5,extratropical,NA,50,969,570,0 +Otto,2016,11,17,18,12.5,-80.7,other low,NA,20,1006,0,0 +Otto,2016,11,18,0,12.3,-81.3,other low,NA,20,1005,0,0 +Otto,2016,11,18,6,11.8,-81.7,other low,NA,20,1005,0,0 +Otto,2016,11,18,12,11.4,-82,other low,NA,20,1005,0,0 +Otto,2016,11,18,18,11.2,-82,other low,NA,20,1005,0,0 +Otto,2016,11,19,0,11.1,-82,other low,NA,25,1005,0,0 +Otto,2016,11,19,6,11,-81.8,other low,NA,25,1005,0,0 +Otto,2016,11,19,12,10.9,-81.5,other low,NA,25,1005,0,0 +Otto,2016,11,19,18,10.8,-81.2,other low,NA,25,1005,0,0 +Otto,2016,11,20,0,10.7,-80.8,other low,NA,25,1005,0,0 +Otto,2016,11,20,6,10.7,-80.4,other low,NA,25,1005,0,0 +Otto,2016,11,20,12,10.9,-80,other low,NA,25,1004,0,0 +Otto,2016,11,20,18,11.1,-79.7,tropical depression,NA,30,1002,0,0 +Otto,2016,11,21,0,11.3,-79.4,tropical depression,NA,30,1002,0,0 +Otto,2016,11,21,6,11.3,-79.3,tropical storm,NA,35,1002,50,0 +Otto,2016,11,21,12,11.3,-79.2,tropical storm,NA,40,1001,60,0 +Otto,2016,11,21,18,11.1,-79.1,tropical storm,NA,45,1000,60,0 +Otto,2016,11,22,0,10.8,-79.1,tropical storm,NA,50,998,60,0 +Otto,2016,11,22,6,10.6,-79.1,tropical storm,NA,55,992,100,0 +Otto,2016,11,22,12,10.4,-79.2,tropical storm,NA,60,986,100,0 +Otto,2016,11,22,18,10.5,-79.4,tropical storm,NA,60,986,100,0 +Otto,2016,11,23,0,10.6,-79.6,tropical storm,NA,60,987,100,0 +Otto,2016,11,23,6,10.8,-80,tropical storm,NA,60,991,100,0 +Otto,2016,11,23,12,11,-80.4,tropical storm,NA,60,994,100,0 +Otto,2016,11,23,18,11.2,-81.1,hurricane,1,65,990,100,20 +Otto,2016,11,24,0,11.2,-81.8,hurricane,1,80,980,100,20 +Otto,2016,11,24,6,11.1,-82.4,hurricane,2,90,978,100,30 +Otto,2016,11,24,12,11,-83,hurricane,3,100,975,100,30 +Otto,2016,11,24,17,11,-83.8,hurricane,3,100,975,100,30 +Otto,2016,11,24,18,11,-83.9,hurricane,2,95,978,100,30 +Otto,2016,11,25,0,10.9,-84.9,hurricane,1,65,992,90,10 +Otto,2016,11,25,3,10.7,-85.6,tropical storm,NA,60,993,90,0 +Otto,2016,11,25,6,10.6,-86.2,tropical storm,NA,60,994,80,0 +Otto,2016,11,25,12,10.3,-87.5,tropical storm,NA,55,995,80,0 +Otto,2016,11,25,18,10,-88.8,tropical storm,NA,50,997,80,0 +Otto,2016,11,26,0,9.7,-90.2,tropical storm,NA,45,1000,80,0 +Otto,2016,11,26,6,9.4,-91.7,tropical storm,NA,40,1003,80,0 +Otto,2016,11,26,12,9.1,-93.3,tropical depression,NA,30,1005,0,0 +Arlene,2017,4,16,6,35.8,-50.3,extratropical,NA,55,992,540,0 +Arlene,2017,4,16,12,35.1,-49.5,extratropical,NA,55,989,540,0 +Arlene,2017,4,16,18,34.4,-48.7,extratropical,NA,55,986,540,0 +Arlene,2017,4,17,0,33.7,-47.8,extratropical,NA,50,987,540,0 +Arlene,2017,4,17,6,33.2,-47,extratropical,NA,45,988,450,0 +Arlene,2017,4,17,12,32.7,-46.1,extratropical,NA,45,989,420,0 +Arlene,2017,4,17,18,32.3,-45.3,extratropical,NA,40,991,390,0 +Arlene,2017,4,18,0,32.1,-44.7,extratropical,NA,40,993,390,0 +Arlene,2017,4,18,6,31.9,-44.4,extratropical,NA,35,994,390,0 +Arlene,2017,4,18,12,31.6,-44.1,extratropical,NA,35,995,390,0 +Arlene,2017,4,18,18,31.1,-43.5,extratropical,NA,30,996,0,0 +Arlene,2017,4,19,0,31.1,-42.6,subtropical depression,NA,30,996,0,0 +Arlene,2017,4,19,6,31.3,-41.8,subtropical depression,NA,30,996,0,0 +Arlene,2017,4,19,12,31.7,-41.1,subtropical depression,NA,30,996,0,0 +Arlene,2017,4,19,18,32.1,-40.4,subtropical depression,NA,30,996,0,0 +Arlene,2017,4,20,0,32.8,-39.6,tropical depression,NA,30,996,0,0 +Arlene,2017,4,20,6,33.8,-39.2,tropical storm,NA,35,994,60,0 +Arlene,2017,4,20,12,35.4,-39.6,tropical storm,NA,35,994,60,0 +Arlene,2017,4,20,18,37.3,-40.7,tropical storm,NA,40,992,90,0 +Arlene,2017,4,21,0,39,-43,tropical storm,NA,45,990,120,0 +Arlene,2017,4,21,6,40,-46.3,tropical storm,NA,45,990,210,0 +Arlene,2017,4,21,12,39.9,-49.3,extratropical,NA,45,990,210,0 +Arlene,2017,4,21,18,38.5,-50.8,extratropical,NA,40,992,210,0 +Arlene,2017,4,22,0,36.3,-51.2,extratropical,NA,40,994,210,0 +Arlene,2017,4,22,6,34.7,-50,extratropical,NA,40,996,180,0 +Arlene,2017,4,22,12,32.8,-48.7,extratropical,NA,35,999,120,0 +Arlene,2017,4,22,18,31.9,-46.4,extratropical,NA,30,1001,0,0 +Bret,2017,6,18,18,7.5,-49.6,disturbance,NA,30,1008,0,0 +Bret,2017,6,19,0,7.8,-51.7,disturbance,NA,35,1008,50,0 +Bret,2017,6,19,6,8.1,-53.9,disturbance,NA,35,1007,50,0 +Bret,2017,6,19,12,8.6,-56.5,disturbance,NA,35,1007,60,0 +Bret,2017,6,19,18,9.2,-58.9,tropical storm,NA,40,1007,80,0 +Bret,2017,6,20,0,9.7,-60.5,tropical storm,NA,40,1008,80,0 +Bret,2017,6,20,2,10.1,-61.1,tropical storm,NA,45,1008,100,0 +Bret,2017,6,20,6,10.4,-62.1,tropical storm,NA,45,1008,120,0 +Bret,2017,6,20,9,10.6,-62.6,tropical storm,NA,45,1008,120,0 +Cindy,2017,6,19,18,23.6,-88.6,disturbance,NA,35,1003,180,0 +Cindy,2017,6,20,0,24,-89.2,disturbance,NA,35,1000,180,0 +Cindy,2017,6,20,6,24.4,-89.8,disturbance,NA,35,999,180,0 +Cindy,2017,6,20,12,25,-90.3,disturbance,NA,40,997,180,0 +Cindy,2017,6,20,18,25.6,-90.6,tropical storm,NA,45,996,210,0 +Cindy,2017,6,21,0,26.2,-90.9,tropical storm,NA,50,995,290,0 +Cindy,2017,6,21,6,26.8,-91.5,tropical storm,NA,50,994,290,0 +Cindy,2017,6,21,12,27.3,-92.3,tropical storm,NA,50,993,230,0 +Cindy,2017,6,21,18,27.8,-93,tropical storm,NA,45,993,200,0 +Cindy,2017,6,22,0,28.5,-93.4,tropical storm,NA,45,992,200,0 +Cindy,2017,6,22,6,29.4,-93.6,tropical storm,NA,45,991,160,0 +Cindy,2017,6,22,7,29.8,-93.7,tropical storm,NA,45,991,150,0 +Cindy,2017,6,22,12,30.5,-93.8,tropical storm,NA,40,993,80,0 +Cindy,2017,6,22,18,31.6,-93.8,tropical storm,NA,35,996,50,0 +Cindy,2017,6,23,0,32.8,-93.6,tropical depression,NA,30,999,0,0 +Cindy,2017,6,23,6,34.2,-92.8,tropical depression,NA,30,1000,0,0 +Cindy,2017,6,23,12,35.5,-90.8,tropical depression,NA,30,1001,0,0 +Cindy,2017,6,23,18,36.7,-88.1,other low,NA,25,1002,0,0 +Cindy,2017,6,24,0,37.7,-84.4,other low,NA,25,1003,0,0 +Cindy,2017,6,24,6,38.9,-78.5,other low,NA,25,1003,0,0 +Four,2017,7,5,12,11.8,-35.9,other low,NA,20,1010,0,0 +Four,2017,7,5,18,12,-37.1,tropical depression,NA,25,1010,0,0 +Four,2017,7,6,0,12.4,-38.6,tropical depression,NA,25,1010,0,0 +Four,2017,7,6,6,12.8,-40.3,tropical depression,NA,25,1010,0,0 +Four,2017,7,6,12,13.3,-42.2,tropical depression,NA,25,1009,0,0 +Four,2017,7,6,18,13.8,-44.1,tropical depression,NA,25,1010,0,0 +Four,2017,7,7,0,14.3,-46,tropical depression,NA,25,1011,0,0 +Four,2017,7,7,6,14.8,-47.9,tropical depression,NA,25,1011,0,0 +Four,2017,7,7,12,15.4,-49.7,tropical depression,NA,25,1011,0,0 +Don,2017,7,17,0,10.3,-47.7,other low,NA,25,1011,0,0 +Don,2017,7,17,6,10.4,-49.1,tropical depression,NA,30,1010,0,0 +Don,2017,7,17,12,10.7,-50.6,tropical storm,NA,35,1009,20,0 +Don,2017,7,17,18,11,-52.2,tropical storm,NA,40,1007,40,0 +Don,2017,7,18,0,11.2,-53.8,tropical storm,NA,45,1005,40,0 +Don,2017,7,18,6,11.3,-55.4,tropical storm,NA,40,1008,50,0 +Don,2017,7,18,12,11.4,-57.1,tropical storm,NA,35,1011,50,0 +Emily,2017,7,30,18,28.4,-85.4,tropical depression,NA,30,1009,0,0 +Emily,2017,7,31,0,28,-84.6,tropical storm,NA,35,1008,30,0 +Emily,2017,7,31,6,27.7,-83.9,tropical storm,NA,40,1006,60,0 +Emily,2017,7,31,12,27.5,-83.1,tropical storm,NA,45,1003,60,0 +Emily,2017,7,31,14,27.5,-82.7,tropical storm,NA,50,1001,60,0 +Emily,2017,7,31,18,27.5,-82.2,tropical storm,NA,35,1005,50,0 +Emily,2017,8,1,0,27.5,-81.3,tropical depression,NA,30,1006,0,0 +Emily,2017,8,1,6,27.8,-80.4,tropical depression,NA,30,1008,0,0 +Emily,2017,8,1,12,28.7,-79.5,tropical depression,NA,30,1010,0,0 +Emily,2017,8,1,18,29.7,-78.6,tropical depression,NA,30,1010,0,0 +Emily,2017,8,2,0,30.7,-78.1,other low,NA,30,1011,0,0 +Franklin,2017,8,6,18,15.5,-81.5,other low,NA,30,1008,0,0 +Franklin,2017,8,7,0,16.1,-82.7,tropical storm,NA,35,1006,90,0 +Franklin,2017,8,7,6,16.7,-83.6,tropical storm,NA,40,1004,120,0 +Franklin,2017,8,7,12,17.4,-84.4,tropical storm,NA,45,1002,180,0 +Franklin,2017,8,7,18,18.1,-85.3,tropical storm,NA,50,999,180,0 +Franklin,2017,8,8,0,18.8,-86.6,tropical storm,NA,50,995,210,0 +Franklin,2017,8,8,3,19.1,-87.6,tropical storm,NA,50,995,200,0 +Franklin,2017,8,8,6,19.2,-87.9,tropical storm,NA,50,996,190,0 +Franklin,2017,8,8,12,19.6,-88.9,tropical storm,NA,40,998,160,0 +Franklin,2017,8,8,18,19.9,-89.8,tropical storm,NA,35,999,160,0 +Franklin,2017,8,9,0,20.2,-90.9,tropical storm,NA,40,996,180,0 +Franklin,2017,8,9,6,20.4,-92.2,tropical storm,NA,55,994,180,0 +Franklin,2017,8,9,12,20.2,-93.3,tropical storm,NA,60,987,210,0 +Franklin,2017,8,9,18,20.2,-94.4,hurricane,1,65,984,210,30 +Franklin,2017,8,10,0,20.3,-95.5,hurricane,1,75,981,220,30 +Franklin,2017,8,10,5,20,-96.6,hurricane,1,70,990,220,30 +Franklin,2017,8,10,6,20,-96.8,tropical storm,NA,60,991,190,0 +Franklin,2017,8,10,12,19.8,-98.3,tropical depression,NA,25,1000,0,0 +Gert,2017,8,12,0,22.4,-66.8,other low,NA,25,1013,0,0 +Gert,2017,8,12,6,22.7,-67.8,other low,NA,25,1013,0,0 +Gert,2017,8,12,12,23.2,-68.7,other low,NA,25,1013,0,0 +Gert,2017,8,12,18,24,-69.4,tropical depression,NA,30,1013,0,0 +Gert,2017,8,13,0,24.9,-70,tropical storm,NA,35,1012,70,0 +Gert,2017,8,13,6,25.8,-70.6,tropical storm,NA,35,1012,70,0 +Gert,2017,8,13,12,26.8,-71.2,tropical storm,NA,35,1012,70,0 +Gert,2017,8,13,18,27.7,-71.6,tropical storm,NA,35,1012,70,0 +Gert,2017,8,14,0,28.5,-71.9,tropical storm,NA,40,1009,80,0 +Gert,2017,8,14,6,29.2,-72.1,tropical storm,NA,45,1006,80,0 +Gert,2017,8,14,12,29.7,-72.2,tropical storm,NA,50,1002,80,0 +Gert,2017,8,14,18,30.2,-72.3,tropical storm,NA,55,996,130,0 +Gert,2017,8,15,0,30.8,-72.3,tropical storm,NA,60,992,130,0 +Gert,2017,8,15,6,31.5,-72.3,hurricane,1,65,986,140,20 +Gert,2017,8,15,12,32.3,-72.1,hurricane,1,70,982,150,20 +Gert,2017,8,15,18,33.2,-71.8,hurricane,1,70,980,160,20 +Gert,2017,8,16,0,34.2,-71,hurricane,1,75,976,160,20 +Gert,2017,8,16,6,35.4,-69.5,hurricane,1,80,973,180,50 +Gert,2017,8,16,12,36.8,-67.1,hurricane,2,85,969,190,50 +Gert,2017,8,16,18,38.2,-64.1,hurricane,2,95,962,220,50 +Gert,2017,8,17,0,39.4,-60.4,hurricane,2,90,964,250,50 +Gert,2017,8,17,6,40.7,-56.2,hurricane,1,80,968,280,40 +Gert,2017,8,17,12,42.2,-52,tropical storm,NA,60,981,300,0 +Gert,2017,8,17,18,44,-48,extratropical,NA,50,988,320,0 +Gert,2017,8,18,0,45.9,-44.3,extratropical,NA,40,991,340,0 +Gert,2017,8,18,6,47.7,-40.5,extratropical,NA,35,994,270,0 +Gert,2017,8,18,12,48.8,-37.8,extratropical,NA,35,996,300,0 +Gert,2017,8,18,18,50.5,-36.5,extratropical,NA,35,998,330,0 +Harvey,2017,8,16,6,13.7,-45.8,other low,NA,25,1013,0,0 +Harvey,2017,8,16,12,13.7,-47.4,other low,NA,25,1010,0,0 +Harvey,2017,8,16,18,13.6,-49,other low,NA,25,1009,0,0 +Harvey,2017,8,17,0,13.6,-50.6,other low,NA,25,1010,0,0 +Harvey,2017,8,17,6,13.4,-52,tropical depression,NA,25,1008,0,0 +Harvey,2017,8,17,12,13.1,-53.4,tropical depression,NA,30,1008,0,0 +Harvey,2017,8,17,18,13,-55,tropical storm,NA,35,1004,30,0 +Harvey,2017,8,18,0,13,-56.6,tropical storm,NA,40,1003,50,0 +Harvey,2017,8,18,6,13,-58.4,tropical storm,NA,40,1004,50,0 +Harvey,2017,8,18,10,13.1,-59.6,tropical storm,NA,40,1004,50,0 +Harvey,2017,8,18,12,13.1,-60.3,tropical storm,NA,40,1004,60,0 +Harvey,2017,8,18,15,13.2,-61.2,tropical storm,NA,40,1004,60,0 +Harvey,2017,8,18,18,13.2,-62.2,tropical storm,NA,35,1005,60,0 +Harvey,2017,8,19,0,13.4,-64,tropical storm,NA,35,1005,60,0 +Harvey,2017,8,19,6,13.5,-65.7,tropical storm,NA,35,1005,60,0 +Harvey,2017,8,19,12,13.7,-67.5,tropical depression,NA,30,1006,0,0 +Harvey,2017,8,19,18,13.8,-69.2,tropical wave,NA,30,1007,0,0 +Harvey,2017,8,20,0,14,-71,tropical wave,NA,30,1007,0,0 +Harvey,2017,8,20,6,14.2,-72.9,tropical wave,NA,30,1007,0,0 +Harvey,2017,8,20,12,14.4,-75,tropical wave,NA,30,1006,0,0 +Harvey,2017,8,20,18,14.7,-76.8,tropical wave,NA,30,1007,0,0 +Harvey,2017,8,21,0,15.1,-78.6,tropical wave,NA,25,1007,0,0 +Harvey,2017,8,21,6,15.7,-80.5,tropical wave,NA,25,1008,0,0 +Harvey,2017,8,21,12,16.4,-82.5,tropical wave,NA,25,1008,0,0 +Harvey,2017,8,21,18,17.3,-84.6,tropical wave,NA,25,1008,0,0 +Harvey,2017,8,22,0,18,-86.4,tropical wave,NA,25,1008,0,0 +Harvey,2017,8,22,6,18.6,-87.8,tropical wave,NA,25,1009,0,0 +Harvey,2017,8,22,12,19.4,-88.8,tropical wave,NA,25,1010,0,0 +Harvey,2017,8,22,18,20,-89.7,other low,NA,25,1010,0,0 +Harvey,2017,8,23,0,20.5,-90.7,other low,NA,25,1009,0,0 +Harvey,2017,8,23,6,20.9,-91.6,other low,NA,25,1008,0,0 +Harvey,2017,8,23,12,21.4,-92.3,tropical depression,NA,30,1006,0,0 +Harvey,2017,8,23,18,21.6,-92.4,tropical storm,NA,35,1005,60,0 +Harvey,2017,8,24,0,22,-92.5,tropical storm,NA,40,1003,70,0 +Harvey,2017,8,24,6,22.8,-92.6,tropical storm,NA,50,997,80,0 +Harvey,2017,8,24,12,23.7,-93.1,tropical storm,NA,60,986,100,0 +Harvey,2017,8,24,18,24.4,-93.6,hurricane,1,70,978,110,20 +Harvey,2017,8,25,0,25,-94.4,hurricane,1,80,973,130,30 +Harvey,2017,8,25,6,25.6,-95.1,hurricane,2,90,966,160,40 +Harvey,2017,8,25,12,26.3,-95.8,hurricane,2,95,949,200,40 +Harvey,2017,8,25,18,27.1,-96.3,hurricane,3,105,943,200,50 +Harvey,2017,8,26,0,27.8,-96.8,hurricane,4,115,941,200,55 +Harvey,2017,8,26,3,28,-96.9,hurricane,4,115,937,200,55 +Harvey,2017,8,26,6,28.2,-97.1,hurricane,3,105,948,190,50 +Harvey,2017,8,26,12,28.7,-97.3,hurricane,1,65,978,190,40 +Harvey,2017,8,26,18,29,-97.5,tropical storm,NA,50,991,150,0 +Harvey,2017,8,27,0,29.2,-97.4,tropical storm,NA,45,995,150,0 +Harvey,2017,8,27,6,29.3,-97.6,tropical storm,NA,40,998,150,0 +Harvey,2017,8,27,12,29.1,-97.5,tropical storm,NA,35,998,150,0 +Harvey,2017,8,27,18,29,-97.2,tropical storm,NA,35,998,150,0 +Harvey,2017,8,28,0,28.8,-96.8,tropical storm,NA,35,997,150,0 +Harvey,2017,8,28,6,28.6,-96.5,tropical storm,NA,40,997,210,0 +Harvey,2017,8,28,12,28.5,-96.2,tropical storm,NA,40,997,180,0 +Harvey,2017,8,28,18,28.4,-95.9,tropical storm,NA,40,997,210,0 +Harvey,2017,8,29,0,28.2,-95.4,tropical storm,NA,40,996,210,0 +Harvey,2017,8,29,6,28.1,-95,tropical storm,NA,40,996,210,0 +Harvey,2017,8,29,12,28.2,-94.6,tropical storm,NA,40,995,200,0 +Harvey,2017,8,29,18,28.5,-94.2,tropical storm,NA,45,993,200,0 +Harvey,2017,8,30,0,28.9,-93.8,tropical storm,NA,45,994,200,0 +Harvey,2017,8,30,6,29.4,-93.6,tropical storm,NA,40,990,140,0 +Harvey,2017,8,30,8,29.8,-93.5,tropical storm,NA,40,991,130,0 +Harvey,2017,8,30,12,30.1,-93.4,tropical storm,NA,40,992,110,0 +Harvey,2017,8,30,18,30.6,-93.1,tropical storm,NA,35,996,70,0 +Harvey,2017,8,31,0,31.3,-92.6,tropical depression,NA,30,998,0,0 +Harvey,2017,8,31,6,31.9,-92.2,tropical depression,NA,25,999,0,0 +Harvey,2017,8,31,12,32.5,-91.7,tropical depression,NA,20,1001,0,0 +Harvey,2017,8,31,18,33.4,-90.9,tropical depression,NA,25,1001,0,0 +Harvey,2017,9,1,0,34.1,-89.6,tropical depression,NA,30,1000,0,0 +Harvey,2017,9,1,6,34.9,-88.2,extratropical,NA,30,1002,0,0 +Harvey,2017,9,1,12,36,-87.1,extratropical,NA,25,1002,0,0 +Harvey,2017,9,1,18,36.5,-86.4,extratropical,NA,20,1004,0,0 +Harvey,2017,9,2,0,37.2,-85.6,extratropical,NA,20,1007,0,0 +Harvey,2017,9,2,6,37.9,-84.9,extratropical,NA,20,1009,0,0 +Harvey,2017,9,2,12,38.2,-84.7,extratropical,NA,15,1013,0,0 +Irma,2017,8,30,0,16.1,-26.9,tropical depression,NA,30,1008,0,0 +Irma,2017,8,30,6,16.2,-28.3,tropical storm,NA,35,1007,30,0 +Irma,2017,8,30,12,16.3,-29.7,tropical storm,NA,45,1006,30,0 +Irma,2017,8,30,18,16.3,-30.8,tropical storm,NA,50,1004,60,0 +Irma,2017,8,31,0,16.3,-31.7,tropical storm,NA,55,999,80,0 +Irma,2017,8,31,6,16.4,-32.5,hurricane,1,65,994,90,10 +Irma,2017,8,31,12,16.7,-33.4,hurricane,1,80,983,110,25 +Irma,2017,8,31,18,17.1,-34.2,hurricane,2,95,970,110,25 +Irma,2017,9,1,0,17.5,-35.1,hurricane,3,100,967,120,25 +Irma,2017,9,1,6,17.9,-36.1,hurricane,3,100,967,120,25 +Irma,2017,9,1,12,18.4,-37.3,hurricane,3,100,967,120,25 +Irma,2017,9,1,18,18.8,-38.5,hurricane,3,100,967,130,30 +Irma,2017,9,2,0,19.1,-39.7,hurricane,3,100,967,130,30 +Irma,2017,9,2,6,19.1,-41.1,hurricane,3,100,967,130,30 +Irma,2017,9,2,12,18.9,-42.6,hurricane,2,95,973,130,30 +Irma,2017,9,2,18,18.7,-44.1,hurricane,2,95,973,130,30 +Irma,2017,9,3,0,18.5,-45.5,hurricane,2,95,973,140,30 +Irma,2017,9,3,6,18.2,-46.7,hurricane,2,95,973,150,30 +Irma,2017,9,3,12,17.9,-47.9,hurricane,3,100,969,170,40 +Irma,2017,9,3,18,17.6,-49.2,hurricane,3,100,965,180,45 +Irma,2017,9,4,0,17.3,-50.4,hurricane,3,100,959,180,45 +Irma,2017,9,4,6,17,-51.5,hurricane,3,105,952,180,45 +Irma,2017,9,4,12,16.8,-52.6,hurricane,3,110,945,190,55 +Irma,2017,9,4,18,16.7,-53.9,hurricane,4,115,944,210,60 +Irma,2017,9,5,0,16.6,-55.1,hurricane,4,125,943,210,75 +Irma,2017,9,5,6,16.6,-56.4,hurricane,4,135,933,220,75 +Irma,2017,9,5,12,16.7,-57.8,hurricane,5,150,929,240,80 +Irma,2017,9,5,18,16.9,-59.2,hurricane,5,155,926,250,85 +Irma,2017,9,6,0,17.3,-60.6,hurricane,5,155,915,260,85 +Irma,2017,9,6,5,17.7,-61.8,hurricane,5,155,914,260,85 +Irma,2017,9,6,6,17.7,-61.9,hurricane,5,155,914,260,85 +Irma,2017,9,6,11,18.1,-63.1,hurricane,5,155,914,260,85 +Irma,2017,9,6,12,18.1,-63.3,hurricane,5,155,915,260,90 +Irma,2017,9,6,16,18.5,-64.4,hurricane,5,155,915,260,90 +Irma,2017,9,6,18,18.6,-64.7,hurricane,5,150,916,270,90 +Irma,2017,9,7,0,19.2,-66.2,hurricane,5,150,916,270,95 +Irma,2017,9,7,6,19.7,-67.6,hurricane,5,145,920,270,95 +Irma,2017,9,7,12,20.2,-69,hurricane,5,145,921,270,100 +Irma,2017,9,7,18,20.7,-70.4,hurricane,5,145,922,270,100 +Irma,2017,9,8,0,21.1,-71.8,hurricane,5,140,919,270,105 +Irma,2017,9,8,5,21.5,-73,hurricane,4,135,924,270,105 +Irma,2017,9,8,6,21.5,-73.2,hurricane,4,135,925,270,105 +Irma,2017,9,8,12,21.8,-74.7,hurricane,4,135,927,270,105 +Irma,2017,9,8,18,22,-76,hurricane,5,140,925,270,120 +Irma,2017,9,9,0,22.1,-77.2,hurricane,5,145,924,290,120 +Irma,2017,9,9,3,22.3,-77.9,hurricane,5,145,924,300,120 +Irma,2017,9,9,6,22.4,-78.3,hurricane,4,130,930,330,120 +Irma,2017,9,9,12,22.7,-79.3,hurricane,3,110,941,330,120 +Irma,2017,9,9,18,23.1,-80.2,hurricane,2,95,938,340,120 +Irma,2017,9,10,0,23.4,-80.9,hurricane,3,100,932,350,120 +Irma,2017,9,10,6,23.7,-81.3,hurricane,4,115,930,380,110 +Irma,2017,9,10,12,24.5,-81.5,hurricane,4,115,931,410,110 +Irma,2017,9,10,13,24.7,-81.5,hurricane,4,115,931,410,110 +Irma,2017,9,10,18,25.6,-81.7,hurricane,3,100,936,440,110 +Irma,2017,9,10,19,25.9,-81.7,hurricane,3,100,936,470,110 +Irma,2017,9,11,0,26.8,-81.7,hurricane,1,80,942,510,110 +Irma,2017,9,11,6,28.2,-82.2,hurricane,1,65,961,510,80 +Irma,2017,9,11,12,29.6,-82.7,tropical storm,NA,50,970,510,0 +Irma,2017,9,11,18,30.9,-83.5,tropical storm,NA,45,980,510,0 +Irma,2017,9,12,0,31.9,-84.4,tropical storm,NA,35,986,360,0 +Irma,2017,9,12,6,32.9,-85.6,other low,NA,25,997,0,0 +Irma,2017,9,12,12,33.8,-86.9,other low,NA,20,1000,0,0 +Irma,2017,9,12,18,34.8,-88.1,other low,NA,15,1003,0,0 +Irma,2017,9,13,0,35.6,-88.9,other low,NA,15,1004,0,0 +Irma,2017,9,13,6,36.2,-89.5,other low,NA,15,1004,0,0 +Irma,2017,9,13,12,36.8,-90.1,other low,NA,15,1005,0,0 +Jose,2017,9,4,6,9.3,-33.5,other low,NA,20,1010,0,0 +Jose,2017,9,4,12,10,-34.9,other low,NA,25,1010,0,0 +Jose,2017,9,4,18,10.6,-36,other low,NA,25,1010,0,0 +Jose,2017,9,5,0,11.1,-37,other low,NA,25,1009,0,0 +Jose,2017,9,5,6,11.6,-37.9,tropical depression,NA,30,1008,0,0 +Jose,2017,9,5,12,12,-38.8,tropical storm,NA,35,1008,40,0 +Jose,2017,9,5,18,12.2,-40,tropical storm,NA,40,1006,50,0 +Jose,2017,9,6,0,12.2,-41.3,tropical storm,NA,45,1004,70,0 +Jose,2017,9,6,6,12.5,-42.6,tropical storm,NA,50,1001,80,0 +Jose,2017,9,6,12,13.1,-43.9,tropical storm,NA,55,998,90,0 +Jose,2017,9,6,18,13.7,-45.2,hurricane,1,65,995,100,15 +Jose,2017,9,7,0,14.1,-46.7,hurricane,1,70,993,120,20 +Jose,2017,9,7,6,14.4,-48.3,hurricane,1,80,986,140,20 +Jose,2017,9,7,12,14.7,-49.9,hurricane,2,90,977,150,25 +Jose,2017,9,7,18,15.1,-51.5,hurricane,3,100,969,160,25 +Jose,2017,9,8,0,15.5,-53.2,hurricane,3,105,964,170,45 +Jose,2017,9,8,6,15.9,-54.9,hurricane,4,115,955,190,50 +Jose,2017,9,8,12,16.1,-56.4,hurricane,4,130,940,200,55 +Jose,2017,9,8,18,16.4,-57.8,hurricane,4,135,939,200,60 +Jose,2017,9,9,0,16.7,-58.9,hurricane,4,135,938,220,60 +Jose,2017,9,9,6,17.2,-59.9,hurricane,4,130,940,220,60 +Jose,2017,9,9,12,17.9,-60.8,hurricane,4,125,941,230,60 +Jose,2017,9,9,18,18.6,-61.8,hurricane,4,120,942,230,60 +Jose,2017,9,10,0,19.4,-62.9,hurricane,4,115,943,230,60 +Jose,2017,9,10,6,20.3,-64,hurricane,4,115,945,230,60 +Jose,2017,9,10,12,21.2,-65.3,hurricane,4,115,948,220,60 +Jose,2017,9,10,18,22.2,-66.5,hurricane,3,105,956,220,50 +Jose,2017,9,11,0,23.3,-67.6,hurricane,3,100,962,220,50 +Jose,2017,9,11,6,24.3,-68.6,hurricane,2,90,968,220,45 +Jose,2017,9,11,12,25.4,-69.4,hurricane,2,85,972,210,45 +Jose,2017,9,11,18,26.5,-69.5,hurricane,1,80,974,210,35 +Jose,2017,9,12,0,27.2,-69.4,hurricane,1,75,977,200,35 +Jose,2017,9,12,6,27.6,-69.1,hurricane,1,70,979,200,30 +Jose,2017,9,12,12,27.7,-68.3,hurricane,1,70,979,190,30 +Jose,2017,9,12,18,27.4,-67.4,hurricane,1,70,980,180,30 +Jose,2017,9,13,0,26.8,-66.7,hurricane,1,70,981,180,30 +Jose,2017,9,13,6,26.3,-66.2,hurricane,1,70,981,180,30 +Jose,2017,9,13,12,25.8,-65.8,hurricane,1,70,981,180,35 +Jose,2017,9,13,18,25.4,-65.6,hurricane,1,70,981,180,35 +Jose,2017,9,14,0,25.1,-65.7,hurricane,1,70,981,180,35 +Jose,2017,9,14,6,24.9,-65.9,hurricane,1,70,981,180,35 +Jose,2017,9,14,12,24.8,-66.3,hurricane,1,65,983,180,35 +Jose,2017,9,14,18,25,-66.9,hurricane,1,65,985,180,35 +Jose,2017,9,15,0,25.4,-67.6,tropical storm,NA,60,988,190,0 +Jose,2017,9,15,6,25.8,-68.2,tropical storm,NA,60,988,190,0 +Jose,2017,9,15,12,26.3,-69,tropical storm,NA,60,986,200,0 +Jose,2017,9,15,18,26.8,-69.9,hurricane,1,65,983,210,35 +Jose,2017,9,16,0,27.2,-70.7,hurricane,1,65,983,210,35 +Jose,2017,9,16,6,27.7,-71.4,hurricane,1,65,983,220,35 +Jose,2017,9,16,12,28.2,-71.8,hurricane,1,65,980,240,35 +Jose,2017,9,16,18,28.6,-72,hurricane,1,65,973,240,50 +Jose,2017,9,17,0,29.1,-72,hurricane,1,70,971,260,55 +Jose,2017,9,17,6,29.8,-72,hurricane,1,75,969,270,55 +Jose,2017,9,17,12,30.5,-71.9,hurricane,1,80,967,280,75 +Jose,2017,9,17,18,31.2,-71.8,hurricane,1,80,967,300,85 +Jose,2017,9,18,0,31.9,-71.6,hurricane,1,80,972,310,90 +Jose,2017,9,18,6,32.7,-71.4,hurricane,1,75,974,320,80 +Jose,2017,9,18,12,33.5,-71.2,hurricane,1,70,976,330,50 +Jose,2017,9,18,18,34.2,-71.2,hurricane,1,65,975,340,50 +Jose,2017,9,19,0,34.9,-71.4,hurricane,1,65,972,350,45 +Jose,2017,9,19,6,35.6,-71.6,hurricane,1,65,971,360,40 +Jose,2017,9,19,12,36.3,-71.7,tropical storm,NA,60,973,360,0 +Jose,2017,9,19,18,37,-71.5,tropical storm,NA,60,973,370,0 +Jose,2017,9,20,0,37.6,-71.2,tropical storm,NA,60,973,380,0 +Jose,2017,9,20,6,38.1,-70.8,tropical storm,NA,60,975,380,0 +Jose,2017,9,20,12,38.7,-70.2,tropical storm,NA,60,976,370,0 +Jose,2017,9,20,18,39.2,-69.4,tropical storm,NA,60,976,380,0 +Jose,2017,9,21,0,39.4,-68.5,tropical storm,NA,55,979,370,0 +Jose,2017,9,21,6,39.7,-68.1,tropical storm,NA,55,982,360,0 +Jose,2017,9,21,12,39.7,-68,tropical storm,NA,55,984,350,0 +Jose,2017,9,21,18,39.5,-68,tropical storm,NA,50,984,340,0 +Jose,2017,9,22,0,39.5,-68.2,tropical storm,NA,45,986,320,0 +Jose,2017,9,22,6,39.6,-68.6,tropical storm,NA,45,989,310,0 +Jose,2017,9,22,12,39.7,-69,tropical storm,NA,40,992,280,0 +Jose,2017,9,22,18,39.7,-69.1,other low,NA,40,996,130,0 +Jose,2017,9,23,0,39.7,-69.3,other low,NA,35,999,120,0 +Jose,2017,9,23,6,39.5,-69.6,other low,NA,35,1002,110,0 +Jose,2017,9,23,12,39.1,-69.7,other low,NA,30,1004,0,0 +Jose,2017,9,23,18,38.7,-69.1,other low,NA,30,1007,0,0 +Jose,2017,9,24,0,38.7,-68.7,other low,NA,25,1009,0,0 +Jose,2017,9,24,6,38.9,-68.4,other low,NA,25,1010,0,0 +Jose,2017,9,24,12,38.9,-68,other low,NA,20,1011,0,0 +Jose,2017,9,24,18,38.7,-68.2,other low,NA,15,1011,0,0 +Jose,2017,9,25,0,38.7,-68.7,other low,NA,15,1012,0,0 +Jose,2017,9,25,6,38.7,-69.2,other low,NA,15,1013,0,0 +Katia,2017,9,5,12,22.2,-97.2,tropical depression,NA,25,1010,0,0 +Katia,2017,9,5,18,22.4,-97,tropical depression,NA,30,1008,0,0 +Katia,2017,9,6,0,22.4,-96.7,tropical depression,NA,30,1008,0,0 +Katia,2017,9,6,6,22.2,-96.4,tropical storm,NA,35,1006,60,0 +Katia,2017,9,6,12,22,-95.8,tropical storm,NA,45,1004,60,0 +Katia,2017,9,6,18,21.8,-95.2,hurricane,1,65,992,90,10 +Katia,2017,9,7,0,21.7,-94.9,hurricane,1,70,989,90,20 +Katia,2017,9,7,6,21.6,-94.6,hurricane,1,70,985,90,20 +Katia,2017,9,7,12,21.6,-94.6,hurricane,1,70,982,90,20 +Katia,2017,9,7,18,21.6,-94.6,hurricane,1,70,982,90,20 +Katia,2017,9,8,0,21.5,-95,hurricane,1,75,982,100,20 +Katia,2017,9,8,6,21.4,-95.3,hurricane,1,80,977,100,20 +Katia,2017,9,8,12,21.1,-95.7,hurricane,2,85,973,110,30 +Katia,2017,9,8,18,21.1,-96.2,hurricane,2,90,972,110,35 +Katia,2017,9,9,0,20.8,-96.9,hurricane,1,70,988,100,25 +Katia,2017,9,9,3,20.6,-97.1,hurricane,1,65,990,100,25 +Katia,2017,9,9,6,20.3,-97.4,tropical storm,NA,35,1001,50,0 +Katia,2017,9,9,12,20.1,-97.7,tropical depression,NA,30,1004,0,0 +Lee,2017,9,14,18,10.4,-23.1,tropical depression,NA,25,1011,0,0 +Lee,2017,9,15,0,10.6,-24.7,tropical depression,NA,30,1010,0,0 +Lee,2017,9,15,6,11.1,-26.2,tropical depression,NA,30,1008,0,0 +Lee,2017,9,15,12,11.7,-27.6,tropical depression,NA,30,1008,0,0 +Lee,2017,9,15,18,12.4,-29,tropical depression,NA,30,1009,0,0 +Lee,2017,9,16,0,12.6,-30.5,tropical depression,NA,30,1009,0,0 +Lee,2017,9,16,6,12.6,-31.9,tropical depression,NA,30,1008,0,0 +Lee,2017,9,16,12,12.5,-33.1,tropical storm,NA,35,1007,120,0 +Lee,2017,9,16,18,12.6,-33.9,tropical storm,NA,35,1007,120,0 +Lee,2017,9,17,0,12.7,-34.6,tropical storm,NA,35,1007,50,0 +Lee,2017,9,17,6,12.8,-35.4,tropical storm,NA,35,1007,50,0 +Lee,2017,9,17,12,12.9,-36.2,tropical depression,NA,30,1008,0,0 +Lee,2017,9,17,18,13.1,-37,tropical depression,NA,30,1008,0,0 +Lee,2017,9,18,0,13.4,-37.9,tropical depression,NA,30,1008,0,0 +Lee,2017,9,18,6,13.8,-39,tropical depression,NA,30,1008,0,0 +Lee,2017,9,18,12,14.2,-40.2,tropical depression,NA,30,1008,0,0 +Lee,2017,9,18,18,14.5,-41.5,tropical depression,NA,30,1008,0,0 +Lee,2017,9,19,0,14.9,-42.6,tropical depression,NA,25,1009,0,0 +Lee,2017,9,19,6,15.5,-43.3,tropical depression,NA,25,1009,0,0 +Lee,2017,9,19,12,16.1,-43.8,tropical depression,NA,30,1008,0,0 +Lee,2017,9,19,18,16.8,-44.4,tropical storm,NA,35,1007,40,0 +Lee,2017,9,20,0,17.6,-45,tropical storm,NA,40,1006,70,0 +Lee,2017,9,20,6,18.3,-45.2,tropical storm,NA,35,1007,70,0 +Lee,2017,9,20,12,20.4,-44.1,disturbance,NA,30,1009,0,0 +Lee,2017,9,20,18,22,-43.9,disturbance,NA,30,1011,0,0 +Lee,2017,9,21,0,23.8,-43.9,disturbance,NA,25,1015,0,0 +Lee,2017,9,21,6,26.5,-45.3,disturbance,NA,25,1016,0,0 +Lee,2017,9,21,12,27.8,-46.5,disturbance,NA,25,1016,0,0 +Lee,2017,9,21,18,28.8,-47.5,disturbance,NA,25,1016,0,0 +Lee,2017,9,22,0,29.3,-48.3,disturbance,NA,25,1016,0,0 +Lee,2017,9,22,6,29.6,-48.7,disturbance,NA,25,1016,0,0 +Lee,2017,9,22,12,30,-48.9,tropical depression,NA,25,1014,0,0 +Lee,2017,9,22,18,30.5,-49.1,tropical depression,NA,30,1012,0,0 +Lee,2017,9,23,0,31.1,-49.2,tropical storm,NA,35,1010,40,0 +Lee,2017,9,23,6,31.5,-49.3,tropical storm,NA,35,1009,40,0 +Lee,2017,9,23,12,31.8,-49.4,tropical storm,NA,40,1006,40,0 +Lee,2017,9,23,18,32,-49.8,tropical storm,NA,45,1003,60,0 +Lee,2017,9,24,0,31.9,-50.1,tropical storm,NA,50,1000,60,0 +Lee,2017,9,24,6,31.7,-50.2,hurricane,1,65,990,60,20 +Lee,2017,9,24,12,31.5,-50.1,hurricane,1,75,983,60,20 +Lee,2017,9,24,18,31.3,-49.8,hurricane,1,80,980,60,20 +Lee,2017,9,25,0,31.2,-49.6,hurricane,2,85,976,60,20 +Lee,2017,9,25,6,31,-49.5,hurricane,1,80,978,60,20 +Lee,2017,9,25,12,30.8,-49.7,hurricane,1,80,980,60,20 +Lee,2017,9,25,18,30.6,-50.2,hurricane,1,75,984,60,20 +Lee,2017,9,26,0,30.3,-51,hurricane,1,80,982,80,30 +Lee,2017,9,26,6,30.1,-52,hurricane,2,85,979,80,30 +Lee,2017,9,26,12,29.9,-53.2,hurricane,2,90,976,80,30 +Lee,2017,9,26,18,29.9,-54.2,hurricane,2,95,972,90,35 +Lee,2017,9,27,0,29.9,-55.1,hurricane,2,95,970,90,35 +Lee,2017,9,27,6,30.1,-56,hurricane,2,95,967,130,45 +Lee,2017,9,27,12,30.3,-56.6,hurricane,3,100,963,140,55 +Lee,2017,9,27,18,30.8,-57,hurricane,3,100,962,140,55 +Lee,2017,9,28,0,31.4,-57.2,hurricane,2,95,965,140,55 +Lee,2017,9,28,6,32.1,-57.3,hurricane,2,90,969,150,55 +Lee,2017,9,28,12,33,-57.2,hurricane,2,85,973,150,55 +Lee,2017,9,28,18,34.3,-56.6,hurricane,1,80,977,150,55 +Lee,2017,9,29,0,35.7,-55.5,hurricane,1,75,981,160,45 +Lee,2017,9,29,6,37.3,-53.8,hurricane,1,70,983,210,50 +Lee,2017,9,29,12,39,-51.2,hurricane,1,65,985,210,30 +Lee,2017,9,29,18,41,-48.2,tropical storm,NA,55,987,210,0 +Lee,2017,9,30,0,43.2,-44.5,tropical storm,NA,50,990,210,0 +Lee,2017,9,30,6,45.8,-38.9,other low,NA,45,993,220,0 +Maria,2017,9,16,12,12.2,-49.7,tropical depression,NA,30,1006,0,0 +Maria,2017,9,16,18,12.2,-51.7,tropical storm,NA,40,1004,40,0 +Maria,2017,9,17,0,12.4,-53.1,tropical storm,NA,45,1002,70,0 +Maria,2017,9,17,6,12.8,-54.4,tropical storm,NA,55,994,90,0 +Maria,2017,9,17,12,13.3,-55.7,tropical storm,NA,60,990,90,0 +Maria,2017,9,17,18,13.6,-57,hurricane,1,65,986,120,15 +Maria,2017,9,18,0,14,-58,hurricane,1,75,979,130,25 +Maria,2017,9,18,6,14.3,-59,hurricane,1,80,977,130,25 +Maria,2017,9,18,12,14.5,-59.7,hurricane,3,100,967,180,30 +Maria,2017,9,18,18,14.9,-60.4,hurricane,3,110,956,190,35 +Maria,2017,9,19,0,15.3,-61.1,hurricane,5,145,924,200,50 +Maria,2017,9,19,1,15.4,-61.3,hurricane,5,145,922,200,50 +Maria,2017,9,19,6,15.7,-61.9,hurricane,4,135,940,210,50 +Maria,2017,9,19,12,16.1,-62.7,hurricane,5,140,931,210,55 +Maria,2017,9,19,18,16.6,-63.5,hurricane,5,145,920,210,60 +Maria,2017,9,20,0,17,-64.3,hurricane,5,150,909,230,85 +Maria,2017,9,20,3,17.3,-64.7,hurricane,5,150,908,230,85 +Maria,2017,9,20,6,17.6,-65.1,hurricane,5,140,913,230,85 +Maria,2017,9,20,10,18,-65.9,hurricane,4,135,920,230,85 +Maria,2017,9,20,12,18.2,-66.2,hurricane,4,115,935,230,85 +Maria,2017,9,20,18,18.6,-67,hurricane,2,95,959,230,85 +Maria,2017,9,21,0,19,-67.6,hurricane,2,95,958,240,90 +Maria,2017,9,21,6,19.4,-68.2,hurricane,3,100,959,240,90 +Maria,2017,9,21,12,19.9,-68.8,hurricane,3,100,959,240,100 +Maria,2017,9,21,18,20.5,-69.5,hurricane,3,105,960,250,100 +Maria,2017,9,22,0,20.8,-70,hurricane,3,110,953,240,100 +Maria,2017,9,22,6,21.2,-70.5,hurricane,3,110,959,250,100 +Maria,2017,9,22,12,21.9,-70.9,hurricane,3,110,958,250,100 +Maria,2017,9,22,18,22.8,-71.2,hurricane,3,110,959,250,85 +Maria,2017,9,23,0,23.7,-71.6,hurricane,3,105,953,260,85 +Maria,2017,9,23,6,24.4,-71.9,hurricane,3,100,952,290,85 +Maria,2017,9,23,12,25.1,-72.1,hurricane,3,100,952,320,85 +Maria,2017,9,23,18,25.9,-72.3,hurricane,3,100,952,350,85 +Maria,2017,9,24,0,26.6,-72.4,hurricane,3,100,945,350,85 +Maria,2017,9,24,6,27.5,-72.6,hurricane,2,95,942,360,85 +Maria,2017,9,24,12,28.4,-72.8,hurricane,2,95,947,360,85 +Maria,2017,9,24,18,29.1,-72.9,hurricane,2,90,943,360,85 +Maria,2017,9,25,0,29.7,-72.9,hurricane,2,85,947,360,85 +Maria,2017,9,25,6,30.3,-72.9,hurricane,1,75,954,370,60 +Maria,2017,9,25,12,30.8,-73,hurricane,1,70,961,360,80 +Maria,2017,9,25,18,31.4,-73.1,hurricane,1,70,966,340,90 +Maria,2017,9,26,0,32,-73.1,hurricane,1,70,966,340,90 +Maria,2017,9,26,6,32.6,-73.1,hurricane,1,65,970,370,90 +Maria,2017,9,26,12,33.3,-73.1,hurricane,1,65,970,370,90 +Maria,2017,9,26,18,33.9,-73.1,hurricane,1,65,975,360,180 +Maria,2017,9,27,0,34.4,-73,hurricane,1,65,975,360,180 +Maria,2017,9,27,6,34.9,-72.9,hurricane,1,65,976,360,90 +Maria,2017,9,27,12,35.4,-72.8,hurricane,1,65,977,360,90 +Maria,2017,9,27,18,36,-72.6,hurricane,1,65,979,360,90 +Maria,2017,9,28,0,36.6,-72.2,hurricane,1,65,979,360,90 +Maria,2017,9,28,6,36.7,-71.3,tropical storm,NA,60,982,360,0 +Maria,2017,9,28,12,36.8,-70,tropical storm,NA,60,982,360,0 +Maria,2017,9,28,18,36.8,-68.6,tropical storm,NA,55,985,360,0 +Maria,2017,9,29,0,36.9,-66.8,tropical storm,NA,55,985,350,0 +Maria,2017,9,29,6,37,-64.6,tropical storm,NA,50,987,390,0 +Maria,2017,9,29,12,37,-62,tropical storm,NA,50,988,390,0 +Maria,2017,9,29,18,37.4,-59,tropical storm,NA,50,988,400,0 +Maria,2017,9,30,0,38.1,-55.6,tropical storm,NA,50,988,400,0 +Maria,2017,9,30,6,39.1,-52.2,tropical storm,NA,50,988,380,0 +Maria,2017,9,30,12,40,-48.8,tropical storm,NA,50,988,380,0 +Maria,2017,9,30,18,41.2,-45.6,extratropical,NA,45,991,350,0 +Maria,2017,10,1,0,42.2,-42.6,extratropical,NA,45,994,350,0 +Maria,2017,10,1,6,43.4,-39.4,extratropical,NA,45,996,350,0 +Maria,2017,10,1,12,44.9,-35.5,extratropical,NA,45,999,350,0 +Maria,2017,10,1,18,46.5,-31,extratropical,NA,45,1003,350,0 +Maria,2017,10,2,0,47.5,-26.5,extratropical,NA,40,1005,200,0 +Maria,2017,10,2,6,48,-22,extratropical,NA,40,1012,200,0 +Maria,2017,10,2,12,48,-17,extratropical,NA,30,1016,0,0 +Nate,2017,10,3,12,10.7,-80.8,other low,NA,20,1008,0,0 +Nate,2017,10,3,18,11.1,-81.1,other low,NA,25,1007,0,0 +Nate,2017,10,4,0,11.4,-81.2,other low,NA,25,1007,0,0 +Nate,2017,10,4,6,11.7,-81.4,other low,NA,25,1006,0,0 +Nate,2017,10,4,12,12,-81.8,tropical depression,NA,25,1005,0,0 +Nate,2017,10,4,18,12.3,-82.3,tropical depression,NA,30,1005,0,0 +Nate,2017,10,5,0,12.6,-82.7,tropical depression,NA,30,1004,0,0 +Nate,2017,10,5,6,13.1,-83.1,tropical storm,NA,35,1001,30,0 +Nate,2017,10,5,12,13.9,-83.5,tropical storm,NA,35,999,40,0 +Nate,2017,10,5,18,14.5,-84,tropical storm,NA,35,1000,40,0 +Nate,2017,10,6,0,15.3,-84.4,tropical storm,NA,35,1000,50,0 +Nate,2017,10,6,6,16.3,-84.7,tropical storm,NA,40,999,80,0 +Nate,2017,10,6,12,17.9,-84.7,tropical storm,NA,40,996,100,0 +Nate,2017,10,6,18,19.5,-85.2,tropical storm,NA,45,995,130,0 +Nate,2017,10,7,0,21.3,-85.9,tropical storm,NA,55,990,160,0 +Nate,2017,10,7,6,23.5,-86.5,hurricane,1,70,987,160,30 +Nate,2017,10,7,12,25.7,-87.9,hurricane,1,80,986,160,30 +Nate,2017,10,7,18,27.6,-88.9,hurricane,1,80,981,180,35 +Nate,2017,10,8,0,29.1,-89.2,hurricane,1,75,983,170,30 +Nate,2017,10,8,5,30.4,-89,hurricane,1,65,984,170,30 +Nate,2017,10,8,6,30.5,-88.9,tropical storm,NA,60,984,100,0 +Nate,2017,10,8,12,32.2,-88,tropical storm,NA,35,993,40,0 +Nate,2017,10,8,18,34.1,-87.1,tropical depression,NA,25,996,0,0 +Nate,2017,10,9,0,36.2,-85.7,other low,NA,20,999,0,0 +Nate,2017,10,9,6,39.1,-83.4,extratropical,NA,20,1004,0,0 +Nate,2017,10,9,12,41.5,-80.5,extratropical,NA,25,1005,0,0 +Nate,2017,10,9,18,43.1,-76.3,extratropical,NA,25,1005,0,0 +Nate,2017,10,10,0,44.2,-72,extratropical,NA,25,1006,0,0 +Nate,2017,10,10,6,45.6,-67.6,extratropical,NA,25,1006,0,0 +Nate,2017,10,10,12,46.1,-63.9,extratropical,NA,25,1007,0,0 +Nate,2017,10,10,18,46.5,-60.4,extratropical,NA,25,1004,0,0 +Nate,2017,10,11,0,47.5,-56,extratropical,NA,25,1001,0,0 +Ophelia,2017,10,6,12,31.8,-39.5,other low,NA,20,1013,0,0 +Ophelia,2017,10,6,18,32.3,-38.6,other low,NA,20,1012,0,0 +Ophelia,2017,10,7,0,32.9,-37.3,other low,NA,25,1011,0,0 +Ophelia,2017,10,7,6,32.7,-38.5,other low,NA,30,1010,0,0 +Ophelia,2017,10,7,12,32.3,-39.5,other low,NA,30,1010,0,0 +Ophelia,2017,10,7,18,31.5,-39.5,other low,NA,30,1010,0,0 +Ophelia,2017,10,8,0,31.3,-39.5,other low,NA,30,1010,0,0 +Ophelia,2017,10,8,6,31,-39.6,other low,NA,35,1010,40,0 +Ophelia,2017,10,8,12,30.6,-39.7,other low,NA,35,1009,40,0 +Ophelia,2017,10,8,18,30.4,-40.1,other low,NA,35,1009,50,0 +Ophelia,2017,10,9,0,30.5,-40.1,other low,NA,35,1008,50,0 +Ophelia,2017,10,9,6,30.9,-40,tropical storm,NA,35,1008,60,0 +Ophelia,2017,10,9,12,31.3,-40,tropical storm,NA,35,1008,60,0 +Ophelia,2017,10,9,18,31.7,-39.6,tropical storm,NA,40,1005,90,0 +Ophelia,2017,10,10,0,32,-39.1,tropical storm,NA,40,1005,110,0 +Ophelia,2017,10,10,6,31.9,-38.8,tropical storm,NA,45,1003,110,0 +Ophelia,2017,10,10,12,31.6,-38.5,tropical storm,NA,45,1002,120,0 +Ophelia,2017,10,10,18,31.3,-38.2,tropical storm,NA,45,1002,120,0 +Ophelia,2017,10,11,0,30.9,-37.8,tropical storm,NA,50,1000,120,0 +Ophelia,2017,10,11,6,30.4,-37.2,tropical storm,NA,55,998,120,0 +Ophelia,2017,10,11,12,30,-36.7,tropical storm,NA,60,994,120,0 +Ophelia,2017,10,11,18,29.8,-36.2,hurricane,1,65,991,120,20 +Ophelia,2017,10,12,0,29.9,-35.8,hurricane,1,70,986,120,35 +Ophelia,2017,10,12,6,30.2,-35.7,hurricane,1,75,982,120,40 +Ophelia,2017,10,12,12,30.4,-35.7,hurricane,1,80,975,120,40 +Ophelia,2017,10,12,18,30.5,-35.6,hurricane,2,85,971,140,40 +Ophelia,2017,10,13,0,30.5,-35.1,hurricane,2,90,967,140,40 +Ophelia,2017,10,13,6,30.9,-34.4,hurricane,2,90,966,140,40 +Ophelia,2017,10,13,12,31.4,-33.4,hurricane,1,80,974,150,40 +Ophelia,2017,10,13,18,32,-32.5,hurricane,1,80,973,160,40 +Ophelia,2017,10,14,0,32.6,-31.5,hurricane,2,85,970,160,40 +Ophelia,2017,10,14,6,33.4,-29.7,hurricane,2,95,963,170,40 +Ophelia,2017,10,14,12,34.2,-27.7,hurricane,3,100,959,190,50 +Ophelia,2017,10,14,18,35.3,-25.2,hurricane,3,100,959,200,70 +Ophelia,2017,10,15,0,36.4,-22.6,hurricane,2,95,959,230,70 +Ophelia,2017,10,15,6,37.9,-19.8,hurricane,2,90,959,260,70 +Ophelia,2017,10,15,12,39.9,-17,hurricane,2,85,959,320,80 +Ophelia,2017,10,15,18,43.1,-14.3,hurricane,1,80,959,400,80 +Ophelia,2017,10,16,0,47.6,-13.4,extratropical,NA,75,958,450,90 +Ophelia,2017,10,16,6,50,-12.1,extratropical,NA,70,957,450,90 +Ophelia,2017,10,16,11,51.9,-10.4,extratropical,NA,65,957,450,90 +Ophelia,2017,10,16,12,52.3,-10,extratropical,NA,65,959,450,90 +Ophelia,2017,10,16,18,55.3,-8.3,extratropical,NA,60,969,450,0 +Ophelia,2017,10,17,0,57.3,-6.1,extratropical,NA,50,977,570,0 +Ophelia,2017,10,17,6,58.7,-2.9,extratropical,NA,45,987,570,0 +Ophelia,2017,10,17,12,59.3,1.5,extratropical,NA,40,994,420,0 +Ophelia,2017,10,17,18,60.1,5.3,extratropical,NA,40,997,330,0 +Philippe,2017,10,27,18,17.5,-84.2,disturbance,NA,30,1006,0,0 +Philippe,2017,10,28,0,18.2,-84.5,disturbance,NA,30,1006,0,0 +Philippe,2017,10,28,6,19.1,-84.3,disturbance,NA,30,1004,0,0 +Philippe,2017,10,28,12,20.1,-83.5,tropical depression,NA,30,1003,0,0 +Philippe,2017,10,28,18,21.3,-82.4,tropical storm,NA,35,1000,120,0 +Philippe,2017,10,28,22,22.2,-81.6,tropical storm,NA,35,1000,120,0 +Philippe,2017,10,29,0,22.7,-81.2,tropical depression,NA,30,1003,0,0 +Rina,2017,11,4,12,25.5,-52.3,other low,NA,25,1013,0,0 +Rina,2017,11,4,18,26.5,-52.1,other low,NA,25,1013,0,0 +Rina,2017,11,5,0,27.5,-52,other low,NA,25,1013,0,0 +Rina,2017,11,5,6,28.4,-52,other low,NA,25,1013,0,0 +Rina,2017,11,5,12,29,-51.9,other low,NA,25,1013,0,0 +Rina,2017,11,5,18,29.2,-51.7,tropical depression,NA,30,1012,0,0 +Rina,2017,11,6,0,29.1,-51.2,tropical depression,NA,30,1011,0,0 +Rina,2017,11,6,6,29,-50.7,tropical depression,NA,30,1010,0,0 +Rina,2017,11,6,12,29.1,-50.4,tropical depression,NA,30,1010,0,0 +Rina,2017,11,6,18,29.4,-50.2,tropical depression,NA,30,1009,0,0 +Rina,2017,11,7,0,30,-50,tropical storm,NA,35,1008,60,0 +Rina,2017,11,7,6,30.8,-49.9,tropical storm,NA,40,1006,80,0 +Rina,2017,11,7,12,31.8,-49.5,tropical storm,NA,40,1004,90,0 +Rina,2017,11,7,18,33,-49.1,tropical storm,NA,40,1002,110,0 +Rina,2017,11,8,0,34.6,-48.7,tropical storm,NA,45,999,200,0 +Rina,2017,11,8,6,36.4,-48.7,tropical storm,NA,50,996,220,0 +Rina,2017,11,8,12,38.3,-48.8,tropical storm,NA,45,994,250,0 +Rina,2017,11,8,18,40.1,-49,tropical storm,NA,45,992,280,0 +Rina,2017,11,9,0,41.8,-48.8,tropical storm,NA,45,991,300,0 +Rina,2017,11,9,6,43.6,-48,other low,NA,40,993,330,0 +Rina,2017,11,9,12,45.5,-47,other low,NA,40,995,380,0 +Alberto,2018,5,25,12,18.8,-87.1,subtropical depression,NA,30,1006,0,0 +Alberto,2018,5,25,18,18.7,-86.5,subtropical depression,NA,30,1006,0,0 +Alberto,2018,5,26,0,18.9,-85.9,subtropical depression,NA,30,1006,0,0 +Alberto,2018,5,26,6,19.6,-85.7,subtropical depression,NA,30,1005,0,0 +Alberto,2018,5,26,12,21.3,-85.6,subtropical depression,NA,30,1004,0,0 +Alberto,2018,5,26,18,22.6,-85.3,subtropical storm,NA,35,1002,120,0 +Alberto,2018,5,27,0,23.6,-84.8,subtropical storm,NA,35,1000,120,0 +Alberto,2018,5,27,6,24.9,-84.3,subtropical storm,NA,35,998,120,0 +Alberto,2018,5,27,12,26.6,-84.4,subtropical storm,NA,40,995,150,0 +Alberto,2018,5,27,18,27.6,-85,subtropical storm,NA,45,992,150,0 +Alberto,2018,5,28,0,28.2,-85.8,tropical storm,NA,55,991,150,0 +Alberto,2018,5,28,6,28.6,-86,tropical storm,NA,55,990,160,0 +Alberto,2018,5,28,12,29.1,-85.9,tropical storm,NA,50,991,150,0 +Alberto,2018,5,28,18,29.8,-85.9,tropical storm,NA,45,991,130,0 +Alberto,2018,5,28,21,30.3,-86,tropical storm,NA,40,992,120,0 +Alberto,2018,5,29,0,30.9,-86.1,tropical depression,NA,30,993,0,0 +Alberto,2018,5,29,6,31.9,-86.6,tropical depression,NA,30,994,0,0 +Alberto,2018,5,29,12,33,-87,tropical depression,NA,30,996,0,0 +Alberto,2018,5,29,18,34.2,-87.3,tropical depression,NA,30,997,0,0 +Alberto,2018,5,30,0,35.4,-87.6,tropical depression,NA,30,998,0,0 +Alberto,2018,5,30,6,36.7,-87.9,tropical depression,NA,30,998,0,0 +Alberto,2018,5,30,12,38.2,-87.7,tropical depression,NA,30,998,0,0 +Alberto,2018,5,30,18,39.9,-87,tropical depression,NA,30,998,0,0 +Alberto,2018,5,31,0,41.5,-86,tropical depression,NA,30,997,0,0 +Alberto,2018,5,31,6,43.5,-84.6,other low,NA,30,995,0,0 +Alberto,2018,5,31,12,46,-83.3,other low,NA,30,995,0,0 +Beryl,2018,7,4,12,10,-34.9,tropical depression,NA,30,1008,0,0 +Beryl,2018,7,4,18,10.1,-36.5,tropical depression,NA,30,1008,0,0 +Beryl,2018,7,5,0,10.1,-38,tropical storm,NA,35,1007,30,0 +Beryl,2018,7,5,6,10.1,-39.5,tropical storm,NA,35,1007,30,0 +Beryl,2018,7,5,12,10.2,-40.9,tropical storm,NA,40,1005,30,0 +Beryl,2018,7,5,18,10.3,-42.3,tropical storm,NA,45,1003,30,0 +Beryl,2018,7,6,0,10.3,-43.4,tropical storm,NA,55,999,50,0 +Beryl,2018,7,6,6,10.5,-44.6,hurricane,1,70,991,50,10 +Beryl,2018,7,6,12,10.7,-46,hurricane,1,70,992,50,10 +Beryl,2018,7,6,18,10.6,-47.3,hurricane,1,65,993,50,10 +Beryl,2018,7,7,0,10.7,-48.3,hurricane,1,65,994,50,10 +Beryl,2018,7,7,6,11.1,-49.3,hurricane,1,65,995,50,10 +Beryl,2018,7,7,12,11.7,-50.4,tropical storm,NA,55,999,50,0 +Beryl,2018,7,7,18,12.4,-52,tropical storm,NA,45,1003,50,0 +Beryl,2018,7,8,0,12.9,-53.6,tropical storm,NA,45,1005,50,0 +Beryl,2018,7,8,6,13.4,-55.2,tropical storm,NA,45,1006,50,0 +Beryl,2018,7,8,12,14.1,-56.9,disturbance,NA,45,1006,50,0 +Beryl,2018,7,8,18,14.8,-59.2,disturbance,NA,40,1008,40,0 +Beryl,2018,7,9,0,15.5,-61.3,disturbance,NA,35,1010,40,0 +Beryl,2018,7,9,6,16.2,-63.2,disturbance,NA,35,1011,40,0 +Beryl,2018,7,9,12,16.6,-65.3,disturbance,NA,35,1013,40,0 +Beryl,2018,7,9,18,17.1,-67.1,disturbance,NA,35,1013,40,0 +Beryl,2018,7,10,0,17.6,-68.9,disturbance,NA,35,1013,40,0 +Beryl,2018,7,10,6,18.1,-70.5,disturbance,NA,30,1013,0,0 +Beryl,2018,7,10,12,19.3,-71.6,disturbance,NA,30,1013,0,0 +Beryl,2018,7,10,18,20.2,-72.4,disturbance,NA,30,1013,0,0 +Beryl,2018,7,11,0,21.3,-73,disturbance,NA,25,1013,0,0 +Beryl,2018,7,11,6,22.4,-73.6,disturbance,NA,25,1013,0,0 +Beryl,2018,7,11,12,23.7,-73.8,disturbance,NA,25,1013,0,0 +Beryl,2018,7,11,18,25.2,-73.8,disturbance,NA,25,1013,0,0 +Beryl,2018,7,12,0,26.7,-73.6,disturbance,NA,25,1013,0,0 +Beryl,2018,7,12,6,28.2,-73.1,disturbance,NA,25,1013,0,0 +Beryl,2018,7,12,12,29.6,-72.4,disturbance,NA,25,1013,0,0 +Beryl,2018,7,12,18,30.8,-71.6,disturbance,NA,25,1013,0,0 +Beryl,2018,7,13,0,31.9,-70.7,disturbance,NA,25,1013,0,0 +Beryl,2018,7,13,6,32.6,-70.1,disturbance,NA,25,1013,0,0 +Beryl,2018,7,13,12,33.3,-69.4,other low,NA,25,1013,0,0 +Beryl,2018,7,13,18,33.9,-68.6,other low,NA,25,1013,0,0 +Beryl,2018,7,14,0,34.5,-68,other low,NA,25,1013,0,0 +Beryl,2018,7,14,6,35,-67.3,other low,NA,30,1013,0,0 +Beryl,2018,7,14,12,35.6,-66.2,subtropical storm,NA,35,1008,70,0 +Beryl,2018,7,14,18,36.7,-65.5,subtropical storm,NA,35,1007,70,0 +Beryl,2018,7,15,0,37.8,-65.5,subtropical storm,NA,35,1005,60,0 +Beryl,2018,7,15,6,38.2,-65.4,subtropical storm,NA,35,1006,50,0 +Beryl,2018,7,15,12,38.1,-65.1,subtropical storm,NA,35,1008,80,0 +Beryl,2018,7,15,18,38,-64.3,subtropical storm,NA,35,1009,60,0 +Beryl,2018,7,16,0,38.3,-63.1,other low,NA,35,1010,30,0 +Beryl,2018,7,16,6,38.7,-61.8,other low,NA,35,1011,30,0 +Beryl,2018,7,16,12,39.5,-60.2,other low,NA,35,1011,30,0 +Beryl,2018,7,16,18,40.7,-58.5,other low,NA,35,1012,30,0 +Beryl,2018,7,17,0,43,-57.1,other low,NA,30,1012,0,0 +Beryl,2018,7,17,6,45.5,-55.7,other low,NA,30,1012,0,0 +Chris,2018,7,5,6,30.7,-68.5,other low,NA,20,1021,0,0 +Chris,2018,7,5,12,30.7,-69.7,other low,NA,20,1021,0,0 +Chris,2018,7,5,18,30.8,-70.7,other low,NA,20,1020,0,0 +Chris,2018,7,6,0,30.9,-71.7,other low,NA,25,1019,0,0 +Chris,2018,7,6,6,31.2,-72.6,other low,NA,25,1018,0,0 +Chris,2018,7,6,12,31.5,-73.1,tropical depression,NA,25,1016,0,0 +Chris,2018,7,6,18,31.8,-73.6,tropical depression,NA,25,1016,0,0 +Chris,2018,7,7,0,32.2,-74.2,tropical depression,NA,25,1015,0,0 +Chris,2018,7,7,6,32.6,-74.6,tropical depression,NA,25,1015,0,0 +Chris,2018,7,7,12,32.7,-74.9,tropical depression,NA,25,1015,0,0 +Chris,2018,7,7,18,32.8,-75.2,tropical depression,NA,30,1014,0,0 +Chris,2018,7,8,0,32.9,-75.3,tropical depression,NA,30,1012,0,0 +Chris,2018,7,8,6,33.1,-75.4,tropical storm,NA,35,1010,50,0 +Chris,2018,7,8,12,33.1,-75,tropical storm,NA,35,1008,50,0 +Chris,2018,7,8,18,32.8,-74.8,tropical storm,NA,40,1007,80,0 +Chris,2018,7,9,0,32.6,-74.6,tropical storm,NA,45,1005,100,0 +Chris,2018,7,9,6,32.4,-74.5,tropical storm,NA,45,1001,110,0 +Chris,2018,7,9,12,32.2,-74.6,tropical storm,NA,50,999,120,0 +Chris,2018,7,9,18,32.1,-74.4,tropical storm,NA,55,996,120,0 +Chris,2018,7,10,0,32.2,-74.3,tropical storm,NA,60,994,120,0 +Chris,2018,7,10,6,32.4,-74.1,tropical storm,NA,60,992,120,0 +Chris,2018,7,10,12,32.9,-73.5,hurricane,1,65,990,120,15 +Chris,2018,7,10,18,33.4,-72.8,hurricane,1,75,983,140,15 +Chris,2018,7,11,0,33.9,-71.9,hurricane,2,90,969,140,35 +Chris,2018,7,11,6,34.6,-70.7,hurricane,2,90,969,140,35 +Chris,2018,7,11,12,35.6,-69.1,hurricane,2,85,973,180,40 +Chris,2018,7,11,18,37,-66.8,hurricane,1,80,976,230,55 +Chris,2018,7,12,0,38.5,-64.3,hurricane,1,75,980,260,65 +Chris,2018,7,12,6,40.9,-61.7,hurricane,1,65,985,280,65 +Chris,2018,7,12,12,43.3,-59.2,tropical storm,NA,60,987,330,0 +Chris,2018,7,12,18,45.7,-56.4,extratropical,NA,55,989,330,0 +Chris,2018,7,13,0,48,-53.4,extratropical,NA,45,998,300,0 +Chris,2018,7,13,6,50,-50,extratropical,NA,45,999,300,0 +Chris,2018,7,13,12,51,-45,extratropical,NA,40,1000,360,0 +Chris,2018,7,13,18,52,-39,extratropical,NA,40,1000,300,0 +Chris,2018,7,14,0,53.5,-33.5,extratropical,NA,40,997,360,0 +Chris,2018,7,14,6,56,-28,extratropical,NA,45,993,360,0 +Chris,2018,7,14,12,58,-25,extratropical,NA,45,988,360,0 +Chris,2018,7,14,18,59.5,-22.5,extratropical,NA,45,986,360,0 +Chris,2018,7,15,0,60.5,-21,extratropical,NA,45,983,360,0 +Chris,2018,7,15,6,60.6,-20.6,extratropical,NA,40,985,300,0 +Chris,2018,7,15,12,60.7,-20.3,extratropical,NA,35,988,240,0 +Chris,2018,7,15,18,60.9,-19.5,extratropical,NA,30,990,0,0 +Chris,2018,7,16,0,61,-18.5,extratropical,NA,25,992,0,0 +Chris,2018,7,16,6,61.1,-16.3,extratropical,NA,25,994,0,0 +Chris,2018,7,16,12,61.3,-13.7,extratropical,NA,25,996,0,0 +Chris,2018,7,16,18,62.1,-12.5,extratropical,NA,25,999,0,0 +Chris,2018,7,17,0,63.1,-12,extratropical,NA,20,1002,0,0 +Chris,2018,7,17,6,63.3,-11.8,extratropical,NA,20,1005,0,0 +Chris,2018,7,17,12,63.5,-11.5,extratropical,NA,15,1007,0,0 +Debby,2018,8,2,18,41.2,-33.7,extratropical,NA,30,1012,0,0 +Debby,2018,8,3,0,40.8,-35.5,extratropical,NA,35,1011,90,0 +Debby,2018,8,3,6,40.4,-37.2,extratropical,NA,35,1011,90,0 +Debby,2018,8,3,12,39.9,-38.9,extratropical,NA,35,1011,90,0 +Debby,2018,8,3,18,39.2,-40.5,other low,NA,35,1010,90,0 +Debby,2018,8,4,0,38.6,-42.2,other low,NA,35,1010,90,0 +Debby,2018,8,4,6,37.8,-44,other low,NA,30,1010,0,0 +Debby,2018,8,4,12,36.7,-45.1,other low,NA,30,1010,0,0 +Debby,2018,8,4,18,35.7,-46,other low,NA,30,1010,0,0 +Debby,2018,8,5,0,34.8,-47.2,other low,NA,30,1010,0,0 +Debby,2018,8,5,6,33.9,-48.4,other low,NA,30,1010,0,0 +Debby,2018,8,5,12,32.9,-49.2,other low,NA,30,1010,0,0 +Debby,2018,8,5,18,32.2,-49.8,other low,NA,30,1010,0,0 +Debby,2018,8,6,0,31.7,-50.3,other low,NA,30,1010,0,0 +Debby,2018,8,6,6,31.3,-50,other low,NA,30,1010,0,0 +Debby,2018,8,6,12,31.9,-49.5,other low,NA,30,1010,0,0 +Debby,2018,8,6,18,32.6,-48.9,other low,NA,30,1010,0,0 +Debby,2018,8,7,0,33.7,-47.9,other low,NA,30,1009,0,0 +Debby,2018,8,7,6,36,-47.6,subtropical storm,NA,35,1008,140,0 +Debby,2018,8,7,12,37.9,-48.1,subtropical storm,NA,35,1008,140,0 +Debby,2018,8,7,18,39,-49,subtropical storm,NA,35,1008,120,0 +Debby,2018,8,8,0,39.7,-49.2,tropical storm,NA,35,1006,70,0 +Debby,2018,8,8,6,40.4,-49,tropical storm,NA,40,1003,70,0 +Debby,2018,8,8,12,41,-48.6,tropical storm,NA,40,1003,70,0 +Debby,2018,8,8,18,41.6,-48.1,tropical storm,NA,40,1000,50,0 +Debby,2018,8,9,0,42.4,-47.2,tropical storm,NA,45,998,60,0 +Debby,2018,8,9,6,43.2,-46,tropical storm,NA,40,1000,60,0 +Debby,2018,8,9,12,44,-44.4,tropical storm,NA,40,1002,90,0 +Debby,2018,8,9,18,45.1,-42,other low,NA,35,1004,90,0 +Debby,2018,8,10,0,45.9,-38.5,extratropical,NA,35,1004,90,0 +Debby,2018,8,10,6,46.5,-34.7,extratropical,NA,35,1004,90,0 +Debby,2018,8,10,12,47,-30.8,extratropical,NA,30,1004,0,0 +Ernesto,2018,8,15,0,36.9,-45.5,other low,NA,30,1011,0,0 +Ernesto,2018,8,15,6,37.4,-45.7,subtropical depression,NA,30,1009,0,0 +Ernesto,2018,8,15,12,37.8,-45.9,subtropical storm,NA,35,1008,140,0 +Ernesto,2018,8,15,18,38.5,-45.8,subtropical storm,NA,35,1008,140,0 +Ernesto,2018,8,16,0,39.3,-45.4,subtropical storm,NA,35,1008,140,0 +Ernesto,2018,8,16,6,40.3,-44.7,subtropical storm,NA,35,1008,140,0 +Ernesto,2018,8,16,12,41.5,-43.8,subtropical storm,NA,40,1007,140,0 +Ernesto,2018,8,16,18,42.4,-42.1,tropical storm,NA,40,1007,140,0 +Ernesto,2018,8,17,0,43.5,-40.2,tropical storm,NA,40,1007,140,0 +Ernesto,2018,8,17,6,44.9,-37.9,tropical storm,NA,40,1006,140,0 +Ernesto,2018,8,17,12,46.6,-35.1,tropical storm,NA,40,1005,140,0 +Ernesto,2018,8,17,18,48.3,-31.8,tropical storm,NA,40,1003,160,0 +Ernesto,2018,8,18,0,49.8,-27.7,other low,NA,40,999,150,0 +Ernesto,2018,8,18,6,51.3,-22.6,extratropical,NA,35,1002,150,0 +Ernesto,2018,8,18,12,52.3,-18.2,extratropical,NA,35,1003,150,0 +Ernesto,2018,8,18,18,53.4,-13.8,extratropical,NA,35,1004,150,0 +Ernesto,2018,8,19,0,54.2,-9.6,extratropical,NA,35,1005,180,0 +Ernesto,2018,8,19,6,55,-4.5,extratropical,NA,35,1007,180,0 +Florence,2018,8,30,6,12.8,-16.9,other low,NA,20,1008,0,0 +Florence,2018,8,30,12,12.8,-17.9,other low,NA,25,1007,0,0 +Florence,2018,8,30,18,12.8,-19,other low,NA,25,1007,0,0 +Florence,2018,8,31,0,13.1,-20.2,other low,NA,30,1006,0,0 +Florence,2018,8,31,6,13.4,-21.4,other low,NA,30,1006,0,0 +Florence,2018,8,31,12,13.6,-22.6,other low,NA,30,1006,0,0 +Florence,2018,8,31,18,13.8,-23.8,tropical depression,NA,30,1006,0,0 +Florence,2018,9,1,0,14,-24.9,tropical depression,NA,30,1006,0,0 +Florence,2018,9,1,6,14.3,-26.1,tropical storm,NA,35,1005,60,0 +Florence,2018,9,1,12,14.8,-27.2,tropical storm,NA,35,1004,60,0 +Florence,2018,9,1,18,15.4,-28.3,tropical storm,NA,40,1002,80,0 +Florence,2018,9,2,0,15.9,-29.6,tropical storm,NA,45,1000,80,0 +Florence,2018,9,2,6,16.4,-30.9,tropical storm,NA,50,999,80,0 +Florence,2018,9,2,12,16.8,-32.4,tropical storm,NA,50,998,90,0 +Florence,2018,9,2,18,17.1,-33.8,tropical storm,NA,50,998,90,0 +Florence,2018,9,3,0,17.6,-35.2,tropical storm,NA,50,997,90,0 +Florence,2018,9,3,6,17.9,-36.6,tropical storm,NA,50,997,90,0 +Florence,2018,9,3,12,18.2,-38,tropical storm,NA,55,996,110,0 +Florence,2018,9,3,18,18.4,-39.2,tropical storm,NA,60,993,90,0 +Florence,2018,9,4,0,18.7,-40.2,hurricane,1,65,990,130,15 +Florence,2018,9,4,6,19.1,-41.2,hurricane,1,65,989,130,15 +Florence,2018,9,4,12,19.5,-42,hurricane,1,70,986,140,25 +Florence,2018,9,4,18,20,-42.7,hurricane,1,75,982,150,30 +Florence,2018,9,5,0,20.4,-43.4,hurricane,2,85,975,150,30 +Florence,2018,9,5,6,21.1,-44.3,hurricane,2,95,968,170,30 +Florence,2018,9,5,12,21.7,-45.2,hurricane,3,105,960,170,35 +Florence,2018,9,5,18,22.4,-46.2,hurricane,4,115,950,180,35 +Florence,2018,9,6,0,23.1,-46.9,hurricane,4,115,950,180,35 +Florence,2018,9,6,6,23.8,-47.6,hurricane,3,105,958,180,35 +Florence,2018,9,6,12,24.4,-48.2,hurricane,2,90,970,180,30 +Florence,2018,9,6,18,24.8,-49,hurricane,1,75,980,170,30 +Florence,2018,9,7,0,25,-49.6,tropical storm,NA,60,990,160,0 +Florence,2018,9,7,6,25,-50.3,tropical storm,NA,55,992,170,0 +Florence,2018,9,7,12,24.9,-51.1,tropical storm,NA,55,993,170,0 +Florence,2018,9,7,18,24.8,-52,tropical storm,NA,55,993,170,0 +Florence,2018,9,8,0,24.7,-52.9,tropical storm,NA,55,993,170,0 +Florence,2018,9,8,6,24.6,-53.6,tropical storm,NA,55,993,170,0 +Florence,2018,9,8,12,24.6,-54.1,tropical storm,NA,55,992,170,0 +Florence,2018,9,8,18,24.6,-54.5,tropical storm,NA,60,989,180,0 +Florence,2018,9,9,0,24.5,-55,tropical storm,NA,60,989,180,0 +Florence,2018,9,9,6,24.4,-55.5,tropical storm,NA,60,988,190,0 +Florence,2018,9,9,12,24.4,-56.1,hurricane,1,65,984,190,10 +Florence,2018,9,9,18,24.4,-56.7,hurricane,1,70,979,210,25 +Florence,2018,9,10,0,24.5,-57.3,hurricane,1,80,973,210,35 +Florence,2018,9,10,6,24.7,-58.4,hurricane,2,90,967,220,35 +Florence,2018,9,10,12,24.9,-59.5,hurricane,3,105,954,230,45 +Florence,2018,9,10,18,25.2,-60.6,hurricane,4,120,940,240,55 +Florence,2018,9,11,0,25.6,-61.8,hurricane,4,115,944,260,65 +Florence,2018,9,11,6,26,-63.2,hurricane,4,115,950,270,65 +Florence,2018,9,11,12,26.5,-64.7,hurricane,4,125,947,250,75 +Florence,2018,9,11,18,27.2,-66.4,hurricane,4,130,937,270,90 +Florence,2018,9,12,0,27.9,-68.1,hurricane,4,120,943,270,90 +Florence,2018,9,12,6,28.7,-69.5,hurricane,4,115,945,280,100 +Florence,2018,9,12,12,29.4,-70.7,hurricane,4,115,945,270,110 +Florence,2018,9,12,18,30.4,-71.9,hurricane,3,110,949,280,110 +Florence,2018,9,13,0,31.5,-73.2,hurricane,3,105,955,280,120 +Florence,2018,9,13,6,32.4,-74.2,hurricane,3,100,955,290,120 +Florence,2018,9,13,12,33.1,-75.1,hurricane,2,95,954,290,120 +Florence,2018,9,13,18,33.6,-76,hurricane,2,90,953,290,120 +Florence,2018,9,14,0,34,-76.5,hurricane,2,90,952,300,120 +Florence,2018,9,14,6,34.2,-77.2,hurricane,2,85,952,300,130 +Florence,2018,9,14,11,34.2,-77.8,hurricane,1,80,956,310,130 +Florence,2018,9,14,12,34.1,-77.9,hurricane,1,80,957,310,120 +Florence,2018,9,14,18,34,-78.4,hurricane,1,65,969,270,30 +Florence,2018,9,15,0,33.9,-78.8,tropical storm,NA,60,978,250,0 +Florence,2018,9,15,6,33.7,-79.3,tropical storm,NA,55,986,240,0 +Florence,2018,9,15,12,33.6,-79.5,tropical storm,NA,55,992,230,0 +Florence,2018,9,15,18,33.6,-79.8,tropical storm,NA,50,997,140,0 +Florence,2018,9,16,0,33.6,-80.2,tropical storm,NA,45,998,130,0 +Florence,2018,9,16,6,33.6,-80.8,tropical storm,NA,40,999,130,0 +Florence,2018,9,16,12,33.6,-81.5,tropical storm,NA,35,1002,140,0 +Florence,2018,9,16,18,34.1,-82.1,tropical depression,NA,30,1006,0,0 +Florence,2018,9,17,0,35,-82.2,tropical depression,NA,25,1007,0,0 +Florence,2018,9,17,6,36.4,-82.6,tropical depression,NA,25,1008,0,0 +Florence,2018,9,17,12,37.8,-82,extratropical,NA,25,1008,0,0 +Florence,2018,9,17,18,38.8,-82,extratropical,NA,25,1008,0,0 +Florence,2018,9,18,0,39.5,-80.5,extratropical,NA,25,1008,0,0 +Florence,2018,9,18,6,41.3,-76.8,extratropical,NA,25,1007,0,0 +Florence,2018,9,18,12,42.2,-73.3,extratropical,NA,25,1006,0,0 +Gordon,2018,9,2,18,22.4,-77,disturbance,NA,25,1012,0,0 +Gordon,2018,9,3,0,23.3,-78.2,disturbance,NA,25,1011,0,0 +Gordon,2018,9,3,6,24.2,-79.4,tropical depression,NA,30,1009,0,0 +Gordon,2018,9,3,9,24.6,-80,tropical storm,NA,35,1008,40,0 +Gordon,2018,9,3,11,25,-80.5,tropical storm,NA,45,1006,40,0 +Gordon,2018,9,3,12,25.1,-80.7,tropical storm,NA,45,1006,40,0 +Gordon,2018,9,3,13,25.2,-80.9,tropical storm,NA,45,1006,40,0 +Gordon,2018,9,3,18,25.8,-81.9,tropical storm,NA,50,1004,60,0 +Gordon,2018,9,4,0,26.6,-83.3,tropical storm,NA,55,1003,100,0 +Gordon,2018,9,4,6,27.2,-84.9,tropical storm,NA,55,1002,100,0 +Gordon,2018,9,4,12,28.1,-86.2,tropical storm,NA,55,1001,110,0 +Gordon,2018,9,4,18,28.9,-87.2,tropical storm,NA,60,1000,110,0 +Gordon,2018,9,5,0,29.8,-88,tropical storm,NA,60,999,100,0 +Gordon,2018,9,5,3,30.4,-88.5,tropical storm,NA,60,996,100,0 +Gordon,2018,9,5,6,30.9,-88.9,tropical storm,NA,45,1002,100,0 +Gordon,2018,9,5,12,31.9,-89.8,tropical depression,NA,30,1007,0,0 +Gordon,2018,9,5,18,32.5,-90.4,tropical depression,NA,25,1012,0,0 +Gordon,2018,9,6,0,33,-90.9,tropical depression,NA,20,1013,0,0 +Gordon,2018,9,6,6,33.5,-91.4,tropical depression,NA,20,1014,0,0 +Gordon,2018,9,6,12,33.9,-91.7,tropical depression,NA,15,1014,0,0 +Gordon,2018,9,6,18,34.2,-91.9,other low,NA,15,1014,0,0 +Gordon,2018,9,7,0,34.4,-92,other low,NA,15,1014,0,0 +Gordon,2018,9,7,6,34.6,-92.1,other low,NA,15,1014,0,0 +Gordon,2018,9,7,12,35,-92.2,other low,NA,15,1014,0,0 +Gordon,2018,9,7,18,35.5,-92.3,other low,NA,15,1014,0,0 +Helene,2018,9,7,12,13.4,-16.8,tropical depression,NA,30,1004,0,0 +Helene,2018,9,7,18,13.5,-17.4,tropical depression,NA,30,1003,0,0 +Helene,2018,9,8,0,13.6,-18,tropical storm,NA,35,1002,60,0 +Helene,2018,9,8,6,13.7,-18.9,tropical storm,NA,40,1002,50,0 +Helene,2018,9,8,12,13.5,-19.9,tropical storm,NA,45,1001,80,0 +Helene,2018,9,8,18,13.3,-21,tropical storm,NA,45,1000,80,0 +Helene,2018,9,9,0,13.2,-22.2,tropical storm,NA,50,999,120,0 +Helene,2018,9,9,6,13.1,-23.4,tropical storm,NA,55,998,120,0 +Helene,2018,9,9,12,13.2,-24.5,tropical storm,NA,60,996,120,0 +Helene,2018,9,9,18,13.4,-25.6,hurricane,1,65,992,120,15 +Helene,2018,9,10,0,13.7,-26.7,hurricane,1,75,984,130,35 +Helene,2018,9,10,6,14,-28,hurricane,1,80,980,130,35 +Helene,2018,9,10,12,14.4,-29.4,hurricane,2,85,977,150,50 +Helene,2018,9,10,18,14.8,-30.8,hurricane,2,90,973,150,50 +Helene,2018,9,11,0,15.3,-32.1,hurricane,2,95,969,150,50 +Helene,2018,9,11,6,15.7,-33.2,hurricane,2,95,968,160,50 +Helene,2018,9,11,12,16.2,-34,hurricane,2,95,967,170,50 +Helene,2018,9,11,18,16.8,-34.6,hurricane,2,90,970,190,50 +Helene,2018,9,12,0,17.6,-35.3,hurricane,2,85,973,210,70 +Helene,2018,9,12,6,18.7,-35.8,hurricane,1,80,976,230,70 +Helene,2018,9,12,12,19.8,-36.3,hurricane,1,80,976,230,70 +Helene,2018,9,12,18,20.8,-36.7,hurricane,1,75,979,230,70 +Helene,2018,9,13,0,21.9,-37.1,hurricane,1,70,982,230,70 +Helene,2018,9,13,6,22.9,-37.3,hurricane,1,65,985,220,70 +Helene,2018,9,13,12,24.1,-37.4,tropical storm,NA,60,988,220,0 +Helene,2018,9,13,18,25.4,-37.4,tropical storm,NA,60,988,210,0 +Helene,2018,9,14,0,27.2,-37.4,tropical storm,NA,60,989,210,0 +Helene,2018,9,14,6,29.4,-37.3,tropical storm,NA,60,989,210,0 +Helene,2018,9,14,12,31.8,-37.2,tropical storm,NA,60,988,210,0 +Helene,2018,9,14,18,33.7,-37,tropical storm,NA,60,987,220,0 +Helene,2018,9,15,0,35.2,-36.5,tropical storm,NA,60,986,240,0 +Helene,2018,9,15,6,36.9,-35.7,tropical storm,NA,60,986,260,0 +Helene,2018,9,15,12,38.4,-34.5,tropical storm,NA,55,987,280,0 +Helene,2018,9,15,18,39.6,-32.9,tropical storm,NA,55,989,280,0 +Helene,2018,9,16,0,40.6,-31.5,tropical storm,NA,50,992,280,0 +Helene,2018,9,16,6,41.8,-29.6,tropical storm,NA,45,993,300,0 +Helene,2018,9,16,12,43.1,-27.1,extratropical,NA,45,993,320,0 +Helene,2018,9,16,18,44.1,-24,extratropical,NA,45,993,320,0 +Helene,2018,9,17,0,45.2,-20,extratropical,NA,50,992,320,0 +Helene,2018,9,17,6,46.7,-16,extratropical,NA,50,992,320,0 +Helene,2018,9,17,12,48,-12.5,extratropical,NA,50,992,320,0 +Helene,2018,9,17,18,49.5,-10,extratropical,NA,45,995,320,0 +Isaac,2018,9,7,12,13.5,-35,tropical depression,NA,30,1007,0,0 +Isaac,2018,9,7,18,13.7,-34.9,tropical depression,NA,30,1007,0,0 +Isaac,2018,9,8,0,13.9,-34.9,tropical depression,NA,30,1007,0,0 +Isaac,2018,9,8,6,14.2,-35.2,tropical depression,NA,30,1007,0,0 +Isaac,2018,9,8,12,14.4,-35.8,tropical storm,NA,35,1006,40,0 +Isaac,2018,9,8,18,14.5,-36.3,tropical storm,NA,40,1005,40,0 +Isaac,2018,9,9,0,14.4,-37,tropical storm,NA,45,1002,60,0 +Isaac,2018,9,9,6,14.3,-37.7,tropical storm,NA,50,1001,60,0 +Isaac,2018,9,9,12,14.3,-38.7,tropical storm,NA,55,999,60,0 +Isaac,2018,9,9,18,14.4,-39.8,tropical storm,NA,60,997,60,0 +Isaac,2018,9,10,0,14.5,-41,hurricane,1,65,995,60,10 +Isaac,2018,9,10,6,14.5,-42.2,hurricane,1,65,995,60,10 +Isaac,2018,9,10,12,14.4,-43.5,hurricane,1,65,995,60,10 +Isaac,2018,9,10,18,14.4,-44.8,hurricane,1,65,995,60,10 +Isaac,2018,9,11,0,14.5,-46.2,tropical storm,NA,60,997,60,0 +Isaac,2018,9,11,6,14.6,-47.6,tropical storm,NA,60,997,70,0 +Isaac,2018,9,11,12,14.6,-49.1,tropical storm,NA,60,997,90,0 +Isaac,2018,9,11,18,14.6,-50.5,tropical storm,NA,60,997,110,0 +Isaac,2018,9,12,0,14.5,-51.7,tropical storm,NA,55,998,110,0 +Isaac,2018,9,12,6,14.6,-52.9,tropical storm,NA,55,999,140,0 +Isaac,2018,9,12,12,14.9,-54.2,tropical storm,NA,55,1001,200,0 +Isaac,2018,9,12,18,15.2,-55.7,tropical storm,NA,50,1003,200,0 +Isaac,2018,9,13,0,15.3,-57.2,tropical storm,NA,45,1004,230,0 +Isaac,2018,9,13,6,15.1,-58.9,tropical storm,NA,40,1004,250,0 +Isaac,2018,9,13,12,14.9,-60.7,tropical storm,NA,40,1004,230,0 +Isaac,2018,9,13,18,14.9,-62.3,tropical storm,NA,35,1004,90,0 +Isaac,2018,9,14,0,14.9,-63.6,tropical storm,NA,35,1004,70,0 +Isaac,2018,9,14,6,15,-64.8,tropical storm,NA,35,1004,50,0 +Isaac,2018,9,14,12,15.2,-66.2,tropical storm,NA,35,1004,50,0 +Isaac,2018,9,14,18,15.3,-67.6,tropical storm,NA,35,1004,50,0 +Isaac,2018,9,15,0,15.4,-69,tropical depression,NA,30,1006,0,0 +Joyce,2018,9,12,0,37,-39.8,extratropical,NA,45,1012,120,0 +Joyce,2018,9,12,6,36.6,-40.7,extratropical,NA,45,1011,210,0 +Joyce,2018,9,12,12,35.8,-41.5,subtropical storm,NA,40,1010,210,0 +Joyce,2018,9,12,18,34.8,-41.9,subtropical storm,NA,40,1008,100,0 +Joyce,2018,9,13,0,34.3,-42.4,subtropical storm,NA,40,1006,100,0 +Joyce,2018,9,13,6,34,-42.9,subtropical storm,NA,40,1005,70,0 +Joyce,2018,9,13,12,33.9,-43.4,subtropical storm,NA,35,1004,70,0 +Joyce,2018,9,13,18,33.6,-43.9,subtropical storm,NA,35,1003,60,0 +Joyce,2018,9,14,0,33.1,-44.4,tropical storm,NA,35,1002,30,0 +Joyce,2018,9,14,6,32.5,-44.8,tropical storm,NA,35,1001,30,0 +Joyce,2018,9,14,12,31.8,-44.9,tropical storm,NA,35,1000,30,0 +Joyce,2018,9,14,18,31.5,-44.5,tropical storm,NA,40,997,30,0 +Joyce,2018,9,15,0,31.4,-43.9,tropical storm,NA,45,995,30,0 +Joyce,2018,9,15,6,31.5,-42.8,tropical storm,NA,45,995,40,0 +Joyce,2018,9,15,12,31.9,-41.6,tropical storm,NA,40,1001,40,0 +Joyce,2018,9,15,18,32.5,-40.3,tropical storm,NA,40,1003,40,0 +Joyce,2018,9,16,0,33.2,-38.8,tropical storm,NA,35,1005,40,0 +Joyce,2018,9,16,6,33.8,-37.1,tropical storm,NA,35,1006,40,0 +Joyce,2018,9,16,12,34.3,-35.2,tropical depression,NA,30,1006,0,0 +Joyce,2018,9,16,18,34.4,-33.2,tropical depression,NA,30,1006,0,0 +Joyce,2018,9,17,0,34.3,-31.4,tropical depression,NA,30,1006,0,0 +Joyce,2018,9,17,6,34.2,-30.1,tropical depression,NA,30,1006,0,0 +Joyce,2018,9,17,12,34.1,-28.9,tropical depression,NA,30,1006,0,0 +Joyce,2018,9,17,18,33.9,-28,tropical depression,NA,30,1006,0,0 +Joyce,2018,9,18,0,33.5,-27.5,tropical depression,NA,30,1006,0,0 +Joyce,2018,9,18,6,32.8,-27.3,tropical depression,NA,30,1006,0,0 +Joyce,2018,9,18,12,32,-27.3,tropical depression,NA,30,1007,0,0 +Joyce,2018,9,18,18,31.1,-27.5,tropical depression,NA,25,1008,0,0 +Joyce,2018,9,19,0,30.4,-27.9,other low,NA,25,1009,0,0 +Joyce,2018,9,19,6,30,-28.5,other low,NA,20,1010,0,0 +Joyce,2018,9,19,12,29.9,-29.2,other low,NA,20,1011,0,0 +Joyce,2018,9,19,18,29.9,-29.9,other low,NA,20,1012,0,0 +Joyce,2018,9,20,0,29.8,-30.6,other low,NA,20,1013,0,0 +Joyce,2018,9,20,6,29.6,-31.4,other low,NA,20,1014,0,0 +Joyce,2018,9,20,12,29.5,-32.3,other low,NA,20,1014,0,0 +Joyce,2018,9,20,18,29.6,-33.2,other low,NA,20,1014,0,0 +Joyce,2018,9,21,0,29.7,-34,other low,NA,20,1014,0,0 +Joyce,2018,9,21,6,30.1,-34.7,other low,NA,20,1014,0,0 +Joyce,2018,9,21,12,30.8,-35,other low,NA,20,1014,0,0 +Eleven,2018,9,21,18,12.9,-52.5,tropical depression,NA,30,1008,0,0 +Eleven,2018,9,22,0,13,-53.2,tropical depression,NA,30,1007,0,0 +Eleven,2018,9,22,6,13,-53.4,tropical depression,NA,30,1007,0,0 +Eleven,2018,9,22,12,13.2,-53.7,tropical depression,NA,25,1008,0,0 +Eleven,2018,9,22,18,13.4,-53.9,tropical depression,NA,25,1008,0,0 +Kirk,2018,9,22,6,7.7,-21.8,tropical depression,NA,30,1007,0,0 +Kirk,2018,9,22,12,8.1,-22.9,tropical storm,NA,35,1005,20,0 +Kirk,2018,9,22,18,8.5,-24.1,tropical storm,NA,35,1005,30,0 +Kirk,2018,9,23,0,8.9,-25.7,tropical storm,NA,35,1005,30,0 +Kirk,2018,9,23,6,9.1,-27.3,tropical storm,NA,35,1005,40,0 +Kirk,2018,9,23,12,9.2,-29.3,tropical wave,NA,35,1005,60,0 +Kirk,2018,9,23,18,9.3,-31.7,tropical wave,NA,30,1006,0,0 +Kirk,2018,9,24,0,9.4,-34.1,tropical wave,NA,25,1007,0,0 +Kirk,2018,9,24,6,9.6,-36.4,tropical wave,NA,30,1007,0,0 +Kirk,2018,9,24,12,9.8,-38.5,tropical wave,NA,35,1007,80,0 +Kirk,2018,9,24,18,10,-40.6,tropical wave,NA,35,1007,120,0 +Kirk,2018,9,25,0,10.3,-42.7,tropical wave,NA,35,1007,140,0 +Kirk,2018,9,25,6,10.7,-44.8,tropical wave,NA,35,1007,140,0 +Kirk,2018,9,25,12,11,-46.8,tropical wave,NA,35,1007,140,0 +Kirk,2018,9,25,18,11.3,-48.6,tropical wave,NA,40,1006,140,0 +Kirk,2018,9,26,0,11.5,-50.3,tropical storm,NA,45,1005,130,0 +Kirk,2018,9,26,6,11.8,-52,tropical storm,NA,50,1004,130,0 +Kirk,2018,9,26,12,12.1,-53.6,tropical storm,NA,55,1002,150,0 +Kirk,2018,9,26,18,12.5,-55,tropical storm,NA,55,998,170,0 +Kirk,2018,9,27,0,12.9,-56.4,tropical storm,NA,50,1002,190,0 +Kirk,2018,9,27,6,13.3,-57.7,tropical storm,NA,50,1002,180,0 +Kirk,2018,9,27,12,13.6,-58.7,tropical storm,NA,50,998,170,0 +Kirk,2018,9,27,18,14,-59.8,tropical storm,NA,50,1000,170,0 +Kirk,2018,9,28,0,13.8,-60.8,tropical storm,NA,45,1002,190,0 +Kirk,2018,9,28,0,13.8,-60.9,tropical storm,NA,45,1002,190,0 +Kirk,2018,9,28,6,13.3,-61.9,tropical storm,NA,45,1005,160,0 +Kirk,2018,9,28,12,13.6,-63.1,tropical storm,NA,40,1007,90,0 +Kirk,2018,9,28,18,14.4,-64.2,tropical storm,NA,35,1007,90,0 +Leslie,2018,9,22,0,35,-45,extratropical,NA,25,1008,0,0 +Leslie,2018,9,22,6,34.4,-44.2,extratropical,NA,30,1005,0,0 +Leslie,2018,9,22,12,33.7,-44.2,extratropical,NA,35,1003,120,0 +Leslie,2018,9,22,18,33.3,-44.6,extratropical,NA,35,1003,120,0 +Leslie,2018,9,23,0,33.2,-45.2,extratropical,NA,35,1003,320,0 +Leslie,2018,9,23,6,33,-45.9,extratropical,NA,35,1002,200,0 +Leslie,2018,9,23,12,33.2,-46.5,subtropical storm,NA,35,1002,200,0 +Leslie,2018,9,23,18,33.5,-47,subtropical storm,NA,35,1002,200,0 +Leslie,2018,9,24,0,33.5,-47.8,subtropical storm,NA,35,1004,180,0 +Leslie,2018,9,24,6,32.9,-48.5,subtropical storm,NA,35,1004,180,0 +Leslie,2018,9,24,12,32.8,-47.9,subtropical storm,NA,35,1004,180,0 +Leslie,2018,9,24,18,33,-47.6,subtropical storm,NA,35,1004,180,0 +Leslie,2018,9,25,0,32.7,-47.2,subtropical depression,NA,30,1005,0,0 +Leslie,2018,9,25,6,32.1,-46.7,subtropical depression,NA,30,1005,0,0 +Leslie,2018,9,25,12,31.7,-45.2,extratropical,NA,30,1005,0,0 +Leslie,2018,9,25,18,32.9,-44.3,extratropical,NA,40,1000,250,0 +Leslie,2018,9,26,0,32.6,-42.6,extratropical,NA,50,998,250,0 +Leslie,2018,9,26,6,32.3,-40.3,extratropical,NA,55,992,390,0 +Leslie,2018,9,26,12,33.8,-38.5,extratropical,NA,55,987,540,0 +Leslie,2018,9,26,18,36.1,-38.6,extratropical,NA,60,978,540,0 +Leslie,2018,9,27,0,37.3,-40.4,extratropical,NA,65,970,610,220 +Leslie,2018,9,27,6,37.1,-41.6,extratropical,NA,65,970,610,230 +Leslie,2018,9,27,12,37,-42.5,extratropical,NA,65,970,610,230 +Leslie,2018,9,27,18,37,-43.4,extratropical,NA,60,978,690,0 +Leslie,2018,9,28,0,36.9,-44.5,extratropical,NA,50,983,810,0 +Leslie,2018,9,28,6,36.6,-45.3,extratropical,NA,50,983,810,0 +Leslie,2018,9,28,12,36.4,-46.4,subtropical storm,NA,45,986,600,0 +Leslie,2018,9,28,18,36.3,-47.4,subtropical storm,NA,45,986,420,0 +Leslie,2018,9,29,0,35.9,-48.9,subtropical storm,NA,40,991,370,0 +Leslie,2018,9,29,6,35.4,-50,subtropical storm,NA,40,991,370,0 +Leslie,2018,9,29,12,34.7,-50.6,subtropical storm,NA,40,991,370,0 +Leslie,2018,9,29,18,34.3,-51.3,tropical storm,NA,45,991,330,0 +Leslie,2018,9,30,0,34,-51.7,tropical storm,NA,45,991,330,0 +Leslie,2018,9,30,6,33.8,-52.2,tropical storm,NA,45,991,330,0 +Leslie,2018,9,30,12,33.7,-52.6,tropical storm,NA,45,991,280,0 +Leslie,2018,9,30,18,33.6,-53,tropical storm,NA,45,991,280,0 +Leslie,2018,10,1,0,33.5,-53.4,tropical storm,NA,45,991,230,0 +Leslie,2018,10,1,6,33.3,-53.7,tropical storm,NA,50,990,220,0 +Leslie,2018,10,1,12,33.1,-54.1,tropical storm,NA,50,990,220,0 +Leslie,2018,10,1,18,32.8,-54.4,tropical storm,NA,50,990,220,0 +Leslie,2018,10,2,0,32.4,-54.9,tropical storm,NA,50,990,220,0 +Leslie,2018,10,2,6,31.9,-55.4,tropical storm,NA,55,989,220,0 +Leslie,2018,10,2,12,31.2,-55.9,tropical storm,NA,55,989,250,0 +Leslie,2018,10,2,18,30.4,-56.2,tropical storm,NA,60,986,300,0 +Leslie,2018,10,3,0,29.8,-56.6,tropical storm,NA,60,984,300,0 +Leslie,2018,10,3,6,29.6,-56.8,hurricane,1,65,980,330,30 +Leslie,2018,10,3,12,29.5,-56.8,hurricane,1,75,972,330,30 +Leslie,2018,10,3,18,29.8,-56.9,hurricane,1,75,970,310,60 +Leslie,2018,10,4,0,30.3,-57,hurricane,1,75,972,310,60 +Leslie,2018,10,4,6,30.9,-57.1,hurricane,1,70,976,340,70 +Leslie,2018,10,4,12,31.7,-57.2,hurricane,1,65,979,370,60 +Leslie,2018,10,4,18,32.8,-57.3,tropical storm,NA,60,982,410,0 +Leslie,2018,10,5,0,34.2,-57.6,tropical storm,NA,55,984,410,0 +Leslie,2018,10,5,6,35.2,-58.2,tropical storm,NA,55,986,440,0 +Leslie,2018,10,5,12,35.9,-58.3,tropical storm,NA,55,986,440,0 +Leslie,2018,10,5,18,36.2,-58.1,tropical storm,NA,50,987,440,0 +Leslie,2018,10,6,0,36.5,-57.6,tropical storm,NA,50,987,440,0 +Leslie,2018,10,6,6,36.9,-57,tropical storm,NA,50,987,490,0 +Leslie,2018,10,6,12,37.4,-56.4,tropical storm,NA,50,987,490,0 +Leslie,2018,10,6,18,37.5,-55.1,tropical storm,NA,50,987,490,0 +Leslie,2018,10,7,0,37.4,-53.7,tropical storm,NA,50,987,490,0 +Leslie,2018,10,7,6,37.1,-52.5,tropical storm,NA,50,987,480,0 +Leslie,2018,10,7,12,36.5,-51.6,tropical storm,NA,50,987,480,0 +Leslie,2018,10,7,18,36.1,-50.5,tropical storm,NA,50,987,380,0 +Leslie,2018,10,8,0,35.8,-49.4,tropical storm,NA,45,989,400,0 +Leslie,2018,10,8,6,35.5,-48.5,tropical storm,NA,45,989,400,0 +Leslie,2018,10,8,12,34.9,-47.4,tropical storm,NA,45,989,400,0 +Leslie,2018,10,8,18,34.3,-46.2,tropical storm,NA,50,986,420,0 +Leslie,2018,10,9,0,33.5,-45.1,tropical storm,NA,55,983,420,0 +Leslie,2018,10,9,6,32.7,-44.2,tropical storm,NA,55,983,420,0 +Leslie,2018,10,9,12,31.6,-43.6,tropical storm,NA,55,983,390,0 +Leslie,2018,10,9,18,30.7,-43.1,tropical storm,NA,60,983,390,0 +Leslie,2018,10,10,0,29.8,-42.7,hurricane,1,65,981,360,20 +Leslie,2018,10,10,6,28.8,-42.7,hurricane,1,65,981,330,20 +Leslie,2018,10,10,12,28.1,-42.5,hurricane,1,65,980,340,20 +Leslie,2018,10,10,18,27.7,-42.2,hurricane,1,65,980,370,20 +Leslie,2018,10,11,0,27.7,-41.6,hurricane,1,70,978,340,25 +Leslie,2018,10,11,6,28.1,-40.7,hurricane,1,70,978,340,25 +Leslie,2018,10,11,12,28.8,-39.3,hurricane,1,70,978,370,25 +Leslie,2018,10,11,18,29.5,-37.5,hurricane,1,75,976,370,40 +Leslie,2018,10,12,0,30.4,-35.2,hurricane,1,80,968,360,65 +Leslie,2018,10,12,6,31.4,-32.5,hurricane,1,80,968,360,65 +Leslie,2018,10,12,12,32.6,-29.6,hurricane,1,75,971,360,60 +Leslie,2018,10,12,18,33.4,-26.3,hurricane,1,75,971,360,60 +Leslie,2018,10,13,0,34.2,-22.4,hurricane,1,70,976,330,50 +Leslie,2018,10,13,6,35.5,-18.3,hurricane,1,65,977,330,50 +Leslie,2018,10,13,12,37.2,-14.1,hurricane,1,65,979,330,50 +Leslie,2018,10,13,18,39.3,-10.5,extratropical,NA,60,984,330,0 +Leslie,2018,10,14,0,41.1,-7.6,extratropical,NA,40,998,210,0 +Michael,2018,10,6,18,17.8,-86.6,other low,NA,25,1006,0,0 +Michael,2018,10,7,0,18.1,-86.9,other low,NA,25,1004,0,0 +Michael,2018,10,7,6,18.4,-86.8,tropical depression,NA,30,1004,0,0 +Michael,2018,10,7,12,18.8,-86.4,tropical storm,NA,35,1003,180,0 +Michael,2018,10,7,18,19.1,-85.7,tropical storm,NA,45,999,180,0 +Michael,2018,10,8,0,19.7,-85.5,tropical storm,NA,50,996,240,0 +Michael,2018,10,8,6,20.2,-85.4,tropical storm,NA,60,984,240,0 +Michael,2018,10,8,12,20.9,-85.1,hurricane,1,65,982,240,25 +Michael,2018,10,8,18,21.7,-85.1,hurricane,1,75,977,240,30 +Michael,2018,10,9,0,22.7,-85.2,hurricane,2,85,971,260,60 +Michael,2018,10,9,6,23.7,-85.8,hurricane,2,85,973,280,60 +Michael,2018,10,9,12,24.6,-86.2,hurricane,2,90,968,280,60 +Michael,2018,10,9,18,25.6,-86.4,hurricane,3,100,961,280,60 +Michael,2018,10,10,0,26.6,-86.5,hurricane,3,110,952,280,60 +Michael,2018,10,10,6,27.7,-86.6,hurricane,4,120,945,280,60 +Michael,2018,10,10,12,29,-86.3,hurricane,4,125,934,260,65 +Michael,2018,10,10,17,30,-85.5,hurricane,5,140,919,220,60 +Michael,2018,10,10,18,30.2,-85.4,hurricane,4,135,920,220,60 +Michael,2018,10,11,0,31.5,-84.5,hurricane,1,80,957,180,25 +Michael,2018,10,11,6,32.8,-83.2,tropical storm,NA,50,979,140,0 +Michael,2018,10,11,12,34.1,-81.7,tropical storm,NA,45,987,160,0 +Michael,2018,10,11,18,35.6,-80,tropical storm,NA,45,991,200,0 +Michael,2018,10,12,0,36.5,-77.7,extratropical,NA,50,988,300,0 +Michael,2018,10,12,6,37.3,-75,extratropical,NA,60,983,320,0 +Michael,2018,10,12,12,39.1,-70.6,extratropical,NA,60,980,300,0 +Michael,2018,10,12,18,41.1,-66.1,extratropical,NA,60,977,380,0 +Michael,2018,10,13,0,43.1,-61.5,extratropical,NA,65,975,470,180 +Michael,2018,10,13,6,44.8,-55.7,extratropical,NA,65,975,470,180 +Michael,2018,10,13,12,46.4,-48.2,extratropical,NA,65,975,500,180 +Michael,2018,10,13,18,47.6,-40.7,extratropical,NA,65,975,500,180 +Michael,2018,10,14,0,48.4,-33.1,extratropical,NA,65,975,500,180 +Michael,2018,10,14,6,48.8,-26.1,extratropical,NA,65,975,550,180 +Michael,2018,10,14,12,48.6,-20.7,extratropical,NA,60,975,560,0 +Michael,2018,10,14,18,47.5,-16.4,extratropical,NA,55,978,560,0 +Michael,2018,10,15,0,45.9,-13.5,extratropical,NA,55,982,490,0 +Michael,2018,10,15,6,44.4,-11.4,extratropical,NA,50,989,490,0 +Michael,2018,10,15,12,42.8,-10.3,extratropical,NA,35,996,370,0 +Michael,2018,10,15,18,41.2,-10,extratropical,NA,35,1001,370,0 +Nadine,2018,10,8,12,9.3,-26.7,other low,NA,25,1009,0,0 +Nadine,2018,10,8,18,9.5,-27.6,other low,NA,25,1009,0,0 +Nadine,2018,10,9,0,9.8,-28.4,other low,NA,25,1009,0,0 +Nadine,2018,10,9,6,10.1,-29,tropical depression,NA,30,1008,0,0 +Nadine,2018,10,9,12,10.4,-29.6,tropical storm,NA,35,1006,30,0 +Nadine,2018,10,9,18,10.8,-30.2,tropical storm,NA,40,1004,60,0 +Nadine,2018,10,10,0,11.2,-30.7,tropical storm,NA,50,999,90,0 +Nadine,2018,10,10,6,11.8,-30.9,tropical storm,NA,55,995,110,0 +Nadine,2018,10,10,12,12.3,-31.4,tropical storm,NA,55,996,120,0 +Nadine,2018,10,10,18,12.8,-32,tropical storm,NA,50,998,120,0 +Nadine,2018,10,11,0,13.3,-32.5,tropical storm,NA,50,998,110,0 +Nadine,2018,10,11,6,13.6,-33.1,tropical storm,NA,45,1001,100,0 +Nadine,2018,10,11,12,13.9,-33.8,tropical storm,NA,45,1001,90,0 +Nadine,2018,10,11,18,14.3,-34.6,tropical storm,NA,45,1002,90,0 +Nadine,2018,10,12,0,14.8,-35,tropical storm,NA,40,1003,80,0 +Nadine,2018,10,12,6,15.3,-35.3,tropical storm,NA,40,1004,80,0 +Nadine,2018,10,12,12,15.8,-35.7,tropical storm,NA,35,1006,50,0 +Nadine,2018,10,12,18,16.2,-37,tropical depression,NA,30,1008,0,0 +Oscar,2018,10,26,18,25.4,-45.3,subtropical storm,NA,35,1006,80,0 +Oscar,2018,10,27,0,26.4,-45.3,subtropical storm,NA,40,1005,180,0 +Oscar,2018,10,27,6,27.1,-46.5,subtropical storm,NA,45,998,210,0 +Oscar,2018,10,27,12,27.4,-48,subtropical storm,NA,50,995,240,0 +Oscar,2018,10,27,18,27.1,-49.9,tropical storm,NA,50,995,240,0 +Oscar,2018,10,28,0,25.9,-51.1,tropical storm,NA,55,994,190,0 +Oscar,2018,10,28,6,25.4,-52,tropical storm,NA,55,994,160,0 +Oscar,2018,10,28,12,25.4,-53.1,tropical storm,NA,60,990,160,0 +Oscar,2018,10,28,18,25.7,-54.8,hurricane,1,65,988,130,15 +Oscar,2018,10,29,0,25.5,-56.4,hurricane,1,65,988,100,15 +Oscar,2018,10,29,6,25.5,-57.5,hurricane,1,70,986,100,15 +Oscar,2018,10,29,12,25.7,-58.1,hurricane,1,75,981,100,25 +Oscar,2018,10,29,18,26.2,-58.5,hurricane,2,85,974,100,25 +Oscar,2018,10,30,0,27,-58.5,hurricane,2,95,966,100,25 +Oscar,2018,10,30,6,28,-58.4,hurricane,2,90,970,120,25 +Oscar,2018,10,30,12,29,-58,hurricane,2,85,971,150,30 +Oscar,2018,10,30,18,30.3,-57.3,hurricane,1,75,977,200,30 +Oscar,2018,10,31,0,31.7,-56,hurricane,1,70,977,230,45 +Oscar,2018,10,31,6,33,-54.6,hurricane,1,70,977,260,45 +Oscar,2018,10,31,12,35.4,-52.4,hurricane,1,70,974,360,70 +Oscar,2018,10,31,18,38,-50.5,extratropical,NA,70,972,510,70 +Oscar,2018,11,1,0,40.7,-48.7,extratropical,NA,75,968,760,110 +Oscar,2018,11,1,6,43.4,-46.9,extratropical,NA,75,965,800,110 +Oscar,2018,11,1,12,46,-44.7,extratropical,NA,65,965,860,110 +Oscar,2018,11,1,18,48.2,-41.8,extratropical,NA,60,965,860,0 +Oscar,2018,11,2,0,50.3,-38.6,extratropical,NA,60,965,860,0 +Oscar,2018,11,2,6,52.3,-35.5,extratropical,NA,60,961,870,0 +Oscar,2018,11,2,12,53.4,-33.1,extratropical,NA,60,957,870,0 +Oscar,2018,11,2,18,54.2,-30.4,extratropical,NA,65,954,930,180 +Oscar,2018,11,3,0,55.3,-26.8,extratropical,NA,70,952,1060,180 +Oscar,2018,11,3,6,56.6,-23.1,extratropical,NA,65,956,1230,180 +Oscar,2018,11,3,12,57.9,-19.6,extratropical,NA,55,960,1440,0 +Oscar,2018,11,3,18,58.9,-17.1,extratropical,NA,50,964,1140,0 +Oscar,2018,11,4,0,59.8,-14.5,extratropical,NA,45,968,840,0 +Oscar,2018,11,4,6,60.8,-12.1,extratropical,NA,40,973,630,0 +Oscar,2018,11,4,12,62.4,-9.1,extratropical,NA,40,977,510,0 +Barry,2019,7,10,12,28.5,-86.5,disturbance,NA,25,1009,0,0 +Barry,2019,7,10,18,28.1,-87.1,disturbance,NA,30,1009,0,0 +Barry,2019,7,11,0,27.8,-87.6,tropical depression,NA,30,1008,0,0 +Barry,2019,7,11,6,27.7,-88,tropical storm,NA,35,1007,100,0 +Barry,2019,7,11,12,27.7,-88.4,tropical storm,NA,35,1005,100,0 +Barry,2019,7,11,18,27.7,-88.8,tropical storm,NA,40,1005,170,0 +Barry,2019,7,12,0,27.8,-89.2,tropical storm,NA,45,1001,170,0 +Barry,2019,7,12,6,27.9,-89.7,tropical storm,NA,45,1001,180,0 +Barry,2019,7,12,12,28.1,-90.2,tropical storm,NA,50,998,190,0 +Barry,2019,7,12,18,28.4,-90.7,tropical storm,NA,55,993,220,0 +Barry,2019,7,13,0,28.6,-91.1,tropical storm,NA,60,993,220,0 +Barry,2019,7,13,6,28.9,-91.5,tropical storm,NA,60,993,220,0 +Barry,2019,7,13,12,29.3,-91.9,hurricane,1,65,993,220,40 +Barry,2019,7,13,15,29.6,-92.2,hurricane,1,65,993,220,40 +Barry,2019,7,13,18,29.9,-92.4,tropical storm,NA,60,996,150,0 +Barry,2019,7,14,0,30.4,-92.8,tropical storm,NA,50,999,180,0 +Barry,2019,7,14,6,31,-93.2,tropical storm,NA,40,1003,180,0 +Barry,2019,7,14,12,31.6,-93.5,tropical storm,NA,35,1005,180,0 +Barry,2019,7,14,18,32.3,-93.6,tropical storm,NA,35,1007,180,0 +Barry,2019,7,15,0,33,-93.6,tropical depression,NA,25,1008,0,0 +Barry,2019,7,15,6,33.9,-93.6,tropical depression,NA,25,1008,0,0 +Barry,2019,7,15,12,34.7,-93.6,other low,NA,20,1008,0,0 +Barry,2019,7,15,18,35.5,-93.5,other low,NA,20,1008,0,0 +Barry,2019,7,16,0,36.3,-93.3,other low,NA,15,1009,0,0 +Barry,2019,7,16,6,37.2,-92.9,other low,NA,15,1010,0,0 +Three,2019,7,22,12,24.6,-77.4,tropical depression,NA,25,1013,0,0 +Three,2019,7,22,18,25,-78.4,tropical depression,NA,25,1013,0,0 +Three,2019,7,23,0,25.7,-79.3,tropical depression,NA,25,1013,0,0 +Three,2019,7,23,6,26.9,-79.6,tropical depression,NA,30,1013,0,0 +Three,2019,7,23,12,28.6,-80,tropical depression,NA,30,1014,0,0 +Chantal,2019,8,20,18,40.1,-59.7,tropical depression,NA,30,1008,0,0 +Chantal,2019,8,21,0,40.3,-57.1,tropical storm,NA,35,1007,40,0 +Chantal,2019,8,21,6,40.3,-54.8,tropical storm,NA,35,1007,50,0 +Chantal,2019,8,21,12,40.1,-52.5,tropical storm,NA,35,1007,50,0 +Chantal,2019,8,21,18,39.9,-50.3,tropical storm,NA,35,1007,50,0 +Chantal,2019,8,22,0,39.6,-48.3,tropical depression,NA,30,1007,0,0 +Chantal,2019,8,22,6,39.3,-46.3,tropical depression,NA,30,1007,0,0 +Chantal,2019,8,22,12,38.9,-44.4,tropical depression,NA,30,1007,0,0 +Chantal,2019,8,22,18,38.5,-42.9,tropical depression,NA,30,1007,0,0 +Chantal,2019,8,23,0,38,-41.8,tropical depression,NA,30,1007,0,0 +Chantal,2019,8,23,6,37.5,-41.2,tropical depression,NA,25,1009,0,0 +Chantal,2019,8,23,12,36.9,-40.9,tropical depression,NA,25,1011,0,0 +Chantal,2019,8,23,18,36.3,-40.8,other low,NA,25,1012,0,0 +Chantal,2019,8,24,0,35.7,-40.9,other low,NA,25,1013,0,0 +Chantal,2019,8,24,6,35.3,-41.2,other low,NA,25,1013,0,0 +Chantal,2019,8,24,12,35.1,-41.8,other low,NA,25,1013,0,0 +Chantal,2019,8,24,18,35,-42.5,other low,NA,25,1013,0,0 +Chantal,2019,8,25,0,35.1,-43.2,other low,NA,20,1014,0,0 +Chantal,2019,8,25,6,35.5,-43.6,other low,NA,20,1014,0,0 +Chantal,2019,8,25,12,35.9,-43.9,other low,NA,20,1014,0,0 +Chantal,2019,8,25,18,36.1,-44.1,other low,NA,15,1014,0,0 +Chantal,2019,8,26,0,36.2,-44.4,other low,NA,15,1014,0,0 +Chantal,2019,8,26,6,36.2,-44.8,other low,NA,15,1014,0,0 +Chantal,2019,8,26,12,36.4,-45,other low,NA,15,1014,0,0 +Chantal,2019,8,26,18,36.5,-44.8,other low,NA,15,1014,0,0 +Dorian,2019,8,24,6,10.3,-46.4,tropical depression,NA,25,1011,0,0 +Dorian,2019,8,24,12,10.4,-47.5,tropical depression,NA,30,1010,0,0 +Dorian,2019,8,24,18,10.6,-48.7,tropical storm,NA,35,1008,30,0 +Dorian,2019,8,25,0,10.8,-49.9,tropical storm,NA,35,1008,30,0 +Dorian,2019,8,25,6,11,-51,tropical storm,NA,35,1008,30,0 +Dorian,2019,8,25,12,11.2,-52.3,tropical storm,NA,40,1007,30,0 +Dorian,2019,8,25,18,11.4,-53.5,tropical storm,NA,45,1007,30,0 +Dorian,2019,8,26,0,11.6,-54.7,tropical storm,NA,45,1007,70,0 +Dorian,2019,8,26,6,11.9,-56,tropical storm,NA,45,1006,70,0 +Dorian,2019,8,26,12,12.2,-57.2,tropical storm,NA,45,1006,70,0 +Dorian,2019,8,26,18,12.6,-58.3,tropical storm,NA,45,1006,70,0 +Dorian,2019,8,27,0,13,-59.2,tropical storm,NA,45,1005,70,0 +Dorian,2019,8,27,1,13.1,-59.4,tropical storm,NA,45,1005,70,0 +Dorian,2019,8,27,6,13.5,-60.2,tropical storm,NA,45,1005,70,0 +Dorian,2019,8,27,11,14,-60.9,tropical storm,NA,45,1005,70,0 +Dorian,2019,8,27,12,14.2,-61.2,tropical storm,NA,45,1005,70,0 +Dorian,2019,8,27,18,15,-62,tropical storm,NA,45,1004,80,0 +Dorian,2019,8,28,0,15.7,-62.8,tropical storm,NA,50,1003,80,0 +Dorian,2019,8,28,6,16.4,-63.5,tropical storm,NA,55,1001,80,0 +Dorian,2019,8,28,12,17.3,-64.2,tropical storm,NA,60,999,80,0 +Dorian,2019,8,28,15,17.8,-64.6,hurricane,1,65,995,90,10 +Dorian,2019,8,28,18,18.4,-65.1,hurricane,1,70,993,90,15 +Dorian,2019,8,29,0,19.2,-65.7,hurricane,1,75,989,90,15 +Dorian,2019,8,29,6,20,-66.3,hurricane,1,75,988,110,15 +Dorian,2019,8,29,12,21,-66.9,hurricane,1,75,986,110,15 +Dorian,2019,8,29,18,22,-67.4,hurricane,1,75,983,120,25 +Dorian,2019,8,30,0,22.8,-68,hurricane,1,80,978,120,30 +Dorian,2019,8,30,6,23.5,-68.8,hurricane,2,90,978,140,30 +Dorian,2019,8,30,12,24.3,-69.5,hurricane,2,95,972,150,30 +Dorian,2019,8,30,18,24.8,-70.3,hurricane,3,100,968,160,45 +Dorian,2019,8,31,0,25.3,-71.1,hurricane,4,115,949,170,45 +Dorian,2019,8,31,6,25.6,-72.1,hurricane,4,120,947,170,45 +Dorian,2019,8,31,12,25.9,-73,hurricane,4,125,944,190,50 +Dorian,2019,8,31,18,26.1,-74,hurricane,4,130,942,190,50 +Dorian,2019,9,1,0,26.3,-74.7,hurricane,4,135,939,200,50 +Dorian,2019,9,1,6,26.4,-75.6,hurricane,5,145,934,200,50 +Dorian,2019,9,1,12,26.5,-76.5,hurricane,5,155,927,200,60 +Dorian,2019,9,1,16,26.5,-77,hurricane,5,160,910,200,60 +Dorian,2019,9,1,18,26.5,-77.1,hurricane,5,160,910,210,60 +Dorian,2019,9,2,0,26.6,-77.7,hurricane,5,155,914,220,65 +Dorian,2019,9,2,2,26.6,-77.8,hurricane,5,155,914,220,65 +Dorian,2019,9,2,6,26.6,-78,hurricane,5,145,916,220,65 +Dorian,2019,9,2,12,26.7,-78.3,hurricane,4,135,927,220,65 +Dorian,2019,9,2,18,26.8,-78.4,hurricane,4,125,938,230,65 +Dorian,2019,9,3,0,26.9,-78.5,hurricane,4,115,944,240,70 +Dorian,2019,9,3,6,27,-78.5,hurricane,3,105,950,250,75 +Dorian,2019,9,3,12,27.1,-78.5,hurricane,3,100,954,260,75 +Dorian,2019,9,3,18,27.6,-78.6,hurricane,2,95,959,260,85 +Dorian,2019,9,4,0,28.1,-78.8,hurricane,2,90,959,270,90 +Dorian,2019,9,4,6,28.8,-79.2,hurricane,2,90,964,270,90 +Dorian,2019,9,4,12,29.5,-79.6,hurricane,2,90,963,270,90 +Dorian,2019,9,4,18,30.1,-79.7,hurricane,2,95,960,280,90 +Dorian,2019,9,5,0,30.7,-79.7,hurricane,3,100,955,270,100 +Dorian,2019,9,5,6,31.4,-79.6,hurricane,3,100,958,270,100 +Dorian,2019,9,5,12,32.1,-79.2,hurricane,3,100,958,270,100 +Dorian,2019,9,5,18,32.7,-78.9,hurricane,2,95,958,300,100 +Dorian,2019,9,6,0,33.4,-77.9,hurricane,2,90,956,310,100 +Dorian,2019,9,6,6,34.1,-76.9,hurricane,2,90,956,320,110 +Dorian,2019,9,6,12,35.1,-75.7,hurricane,2,85,956,340,100 +Dorian,2019,9,6,12,35.2,-75.6,hurricane,2,85,956,340,100 +Dorian,2019,9,6,18,36.2,-73.7,hurricane,2,85,956,370,100 +Dorian,2019,9,7,0,37.4,-71.2,hurricane,2,85,956,390,100 +Dorian,2019,9,7,6,38.9,-68.9,hurricane,2,85,955,410,120 +Dorian,2019,9,7,12,40.8,-66.9,hurricane,2,85,954,440,130 +Dorian,2019,9,7,18,42.8,-64.6,other low,NA,80,954,470,100 +Dorian,2019,9,8,0,45.2,-62.9,other low,NA,80,956,500,100 +Dorian,2019,9,8,6,47.6,-61.9,extratropical,NA,75,960,510,80 +Dorian,2019,9,8,12,49.4,-60.4,extratropical,NA,70,962,510,80 +Dorian,2019,9,8,18,50.8,-57.9,extratropical,NA,60,966,510,0 +Dorian,2019,9,9,0,51.6,-54.8,extratropical,NA,50,980,510,0 +Erin,2019,8,26,12,31.7,-72.7,tropical depression,NA,30,1010,0,0 +Erin,2019,8,26,18,31.5,-72.5,tropical depression,NA,30,1010,0,0 +Erin,2019,8,27,0,31.2,-72.2,tropical depression,NA,30,1010,0,0 +Erin,2019,8,27,6,30.9,-71.7,tropical depression,NA,30,1010,0,0 +Erin,2019,8,27,12,30.9,-71.1,tropical depression,NA,30,1008,0,0 +Erin,2019,8,27,18,31.3,-71.6,tropical storm,NA,35,1005,80,0 +Erin,2019,8,28,0,31.7,-72,tropical storm,NA,35,1004,90,0 +Erin,2019,8,28,6,32.2,-72.4,tropical storm,NA,35,1002,90,0 +Erin,2019,8,28,12,33,-72.9,tropical storm,NA,35,1002,100,0 +Erin,2019,8,28,18,33.9,-73,tropical depression,NA,30,1003,0,0 +Erin,2019,8,29,0,34.8,-72.6,tropical depression,NA,30,1003,0,0 +Erin,2019,8,29,6,35.6,-72.1,tropical depression,NA,30,1003,0,0 +Erin,2019,8,29,12,36.9,-70.9,extratropical,NA,35,1002,60,0 +Erin,2019,8,29,18,38.5,-68.5,extratropical,NA,35,1002,60,0 +Fernand,2019,9,3,6,23.6,-94,disturbance,NA,30,1006,0,0 +Fernand,2019,9,3,12,23.4,-94.7,tropical storm,NA,35,1004,90,0 +Fernand,2019,9,3,18,23.2,-95.4,tropical storm,NA,40,1002,90,0 +Fernand,2019,9,4,0,23.1,-96.1,tropical storm,NA,45,1000,90,0 +Fernand,2019,9,4,6,23.4,-96.8,tropical storm,NA,45,1000,90,0 +Fernand,2019,9,4,12,24,-97.2,tropical storm,NA,40,1003,70,0 +Fernand,2019,9,4,15,24.2,-97.7,tropical storm,NA,40,1003,70,0 +Fernand,2019,9,4,18,24.3,-98,tropical depression,NA,30,1004,0,0 +Fernand,2019,9,5,0,24.7,-98.6,tropical depression,NA,25,1007,0,0 +Gabrielle,2019,9,3,0,16.1,-30.1,other low,NA,25,1007,0,0 +Gabrielle,2019,9,3,6,16.8,-30.9,other low,NA,25,1007,0,0 +Gabrielle,2019,9,3,12,17.5,-31.6,other low,NA,25,1007,0,0 +Gabrielle,2019,9,3,18,18.1,-32.1,tropical depression,NA,30,1006,0,0 +Gabrielle,2019,9,4,0,18.7,-32.6,tropical storm,NA,35,1005,90,0 +Gabrielle,2019,9,4,6,19.5,-33.2,tropical storm,NA,40,1004,80,0 +Gabrielle,2019,9,4,12,20.1,-33.6,tropical storm,NA,45,1003,120,0 +Gabrielle,2019,9,4,18,20.5,-33.7,tropical storm,NA,45,1002,170,0 +Gabrielle,2019,9,5,0,20.8,-33.9,tropical storm,NA,45,1002,190,0 +Gabrielle,2019,9,5,6,21.5,-34.5,tropical storm,NA,45,1001,220,0 +Gabrielle,2019,9,5,12,22.3,-35.2,tropical storm,NA,45,1000,260,0 +Gabrielle,2019,9,5,18,22.9,-35.6,tropical storm,NA,40,1002,260,0 +Gabrielle,2019,9,6,0,23.8,-36.2,tropical storm,NA,35,1004,260,0 +Gabrielle,2019,9,6,6,25,-37.1,tropical storm,NA,35,1005,230,0 +Gabrielle,2019,9,6,12,26.2,-38,tropical storm,NA,40,1004,120,0 +Gabrielle,2019,9,6,18,27.4,-39,tropical storm,NA,45,1002,170,0 +Gabrielle,2019,9,7,0,29,-40.1,tropical storm,NA,50,999,190,0 +Gabrielle,2019,9,7,6,30.5,-41.6,tropical storm,NA,45,1002,170,0 +Gabrielle,2019,9,7,12,31,-43.9,tropical storm,NA,45,1003,150,0 +Gabrielle,2019,9,7,18,31.5,-45.8,tropical storm,NA,45,1003,130,0 +Gabrielle,2019,9,8,0,31.8,-47.4,tropical storm,NA,45,1002,120,0 +Gabrielle,2019,9,8,6,32.3,-48.4,tropical storm,NA,50,1000,120,0 +Gabrielle,2019,9,8,12,33.2,-49,tropical storm,NA,50,999,120,0 +Gabrielle,2019,9,8,18,34.5,-49.3,tropical storm,NA,55,995,130,0 +Gabrielle,2019,9,9,0,35.8,-49.3,tropical storm,NA,55,995,130,0 +Gabrielle,2019,9,9,6,37.1,-48.9,tropical storm,NA,50,996,140,0 +Gabrielle,2019,9,9,12,38.4,-48,tropical storm,NA,50,997,160,0 +Gabrielle,2019,9,9,18,40,-46.3,tropical storm,NA,50,998,160,0 +Gabrielle,2019,9,10,0,41.4,-44.2,tropical storm,NA,45,999,160,0 +Gabrielle,2019,9,10,6,42.4,-41.7,tropical storm,NA,45,999,170,0 +Gabrielle,2019,9,10,12,43.3,-39.1,extratropical,NA,45,999,170,0 +Gabrielle,2019,9,10,18,44.1,-36.4,extratropical,NA,45,1000,170,0 +Gabrielle,2019,9,11,0,45.5,-33.5,extratropical,NA,40,1002,170,0 +Gabrielle,2019,9,11,6,47,-30,extratropical,NA,40,1003,160,0 +Gabrielle,2019,9,11,12,49,-26.4,extratropical,NA,35,1005,90,0 +Humberto,2019,9,12,12,23,-74.2,other low,NA,25,1010,0,0 +Humberto,2019,9,12,18,23.4,-74.3,other low,NA,25,1010,0,0 +Humberto,2019,9,13,0,23.8,-74.3,other low,NA,25,1009,0,0 +Humberto,2019,9,13,6,24.2,-74.4,other low,NA,25,1009,0,0 +Humberto,2019,9,13,12,24.7,-74.5,other low,NA,30,1008,0,0 +Humberto,2019,9,13,18,25.2,-74.7,tropical depression,NA,30,1008,0,0 +Humberto,2019,9,14,0,25.6,-75.2,tropical storm,NA,35,1007,140,0 +Humberto,2019,9,14,6,26,-75.9,tropical storm,NA,35,1006,150,0 +Humberto,2019,9,14,12,26.5,-76.5,tropical storm,NA,40,1004,160,0 +Humberto,2019,9,14,18,27,-77,tropical storm,NA,45,1003,170,0 +Humberto,2019,9,15,0,27.5,-77.3,tropical storm,NA,50,998,170,0 +Humberto,2019,9,15,6,28,-77.6,tropical storm,NA,50,997,180,0 +Humberto,2019,9,15,12,28.6,-77.9,tropical storm,NA,55,995,180,0 +Humberto,2019,9,15,18,29.1,-78.1,tropical storm,NA,60,993,190,0 +Humberto,2019,9,16,0,29.2,-77.8,hurricane,1,65,987,190,25 +Humberto,2019,9,16,6,29.5,-77.3,hurricane,1,70,982,200,40 +Humberto,2019,9,16,12,29.8,-76.7,hurricane,1,75,979,200,45 +Humberto,2019,9,16,18,30.1,-76.1,hurricane,1,75,975,210,45 +Humberto,2019,9,17,0,30.3,-75.4,hurricane,1,80,966,220,50 +Humberto,2019,9,17,6,30.5,-74.7,hurricane,2,85,964,230,60 +Humberto,2019,9,17,12,30.7,-73.8,hurricane,2,90,961,250,80 +Humberto,2019,9,17,18,30.9,-72.9,hurricane,2,95,956,270,90 +Humberto,2019,9,18,0,31.2,-71.6,hurricane,3,100,952,280,110 +Humberto,2019,9,18,6,31.5,-70.3,hurricane,3,105,951,290,110 +Humberto,2019,9,18,12,32,-68.8,hurricane,3,105,951,310,130 +Humberto,2019,9,18,18,32.5,-67.2,hurricane,3,110,950,310,130 +Humberto,2019,9,19,0,33.2,-65,hurricane,3,110,950,340,140 +Humberto,2019,9,19,3,33.8,-64,hurricane,3,110,950,370,140 +Humberto,2019,9,19,6,34.5,-62.9,hurricane,3,105,951,400,140 +Humberto,2019,9,19,12,36,-60.8,hurricane,2,95,955,470,140 +Humberto,2019,9,19,18,37.7,-59.3,hurricane,1,80,961,530,130 +Humberto,2019,9,20,0,39.1,-58.5,extratropical,NA,70,967,550,130 +Humberto,2019,9,20,6,40.4,-58,extratropical,NA,60,972,570,0 +Humberto,2019,9,20,12,41.5,-57.5,extratropical,NA,50,977,570,0 +Jerry,2019,9,17,0,12.6,-42.6,other low,NA,25,1009,0,0 +Jerry,2019,9,17,6,12.8,-43.5,tropical depression,NA,30,1007,0,0 +Jerry,2019,9,17,12,13,-44.4,tropical depression,NA,30,1007,0,0 +Jerry,2019,9,17,18,13.3,-45.4,tropical depression,NA,30,1007,0,0 +Jerry,2019,9,18,0,13.6,-46.3,tropical depression,NA,30,1006,0,0 +Jerry,2019,9,18,6,14,-47.4,tropical storm,NA,35,1005,70,0 +Jerry,2019,9,18,12,14.4,-48.6,tropical storm,NA,45,1002,70,0 +Jerry,2019,9,18,18,14.8,-49.9,tropical storm,NA,50,1000,80,0 +Jerry,2019,9,19,0,15.2,-51.2,tropical storm,NA,55,998,80,0 +Jerry,2019,9,19,6,15.8,-52.5,tropical storm,NA,60,996,80,0 +Jerry,2019,9,19,12,16.5,-53.8,hurricane,1,70,990,90,20 +Jerry,2019,9,19,18,17.2,-55.2,hurricane,1,80,981,90,20 +Jerry,2019,9,20,0,17.7,-56.6,hurricane,2,90,976,100,30 +Jerry,2019,9,20,6,18.1,-58.1,hurricane,2,85,983,100,30 +Jerry,2019,9,20,12,18.5,-59.7,hurricane,1,75,990,100,15 +Jerry,2019,9,20,18,19.2,-61.2,hurricane,1,65,991,120,15 +Jerry,2019,9,21,0,20.1,-62.4,tropical storm,NA,60,993,130,0 +Jerry,2019,9,21,6,21,-63.5,tropical storm,NA,55,995,130,0 +Jerry,2019,9,21,12,21.7,-64.5,tropical storm,NA,55,998,140,0 +Jerry,2019,9,21,18,22.5,-65.5,tropical storm,NA,55,998,130,0 +Jerry,2019,9,22,0,23.6,-66.1,tropical storm,NA,55,998,130,0 +Jerry,2019,9,22,6,24.5,-66.5,tropical storm,NA,55,998,130,0 +Jerry,2019,9,22,12,25.4,-66.6,tropical storm,NA,55,997,130,0 +Jerry,2019,9,22,18,26.3,-66.8,tropical storm,NA,55,994,130,0 +Jerry,2019,9,23,0,27,-67.2,tropical storm,NA,55,993,180,0 +Jerry,2019,9,23,6,27.4,-67.7,tropical storm,NA,55,992,220,0 +Jerry,2019,9,23,12,27.7,-68,tropical storm,NA,55,991,220,0 +Jerry,2019,9,23,18,28.2,-68.3,tropical storm,NA,55,991,220,0 +Jerry,2019,9,24,0,28.9,-68.6,tropical storm,NA,55,991,220,0 +Jerry,2019,9,24,6,29.7,-68.9,tropical storm,NA,50,991,230,0 +Jerry,2019,9,24,12,30.5,-69.1,tropical storm,NA,45,991,230,0 +Jerry,2019,9,24,18,30.9,-69.1,other low,NA,45,993,210,0 +Jerry,2019,9,25,0,31.3,-68.9,other low,NA,40,996,180,0 +Jerry,2019,9,25,6,31.6,-68.4,other low,NA,40,997,120,0 +Jerry,2019,9,25,12,31.8,-67.4,other low,NA,35,999,120,0 +Jerry,2019,9,25,18,32,-66.1,other low,NA,30,1000,0,0 +Jerry,2019,9,26,0,32.3,-64.9,other low,NA,25,1001,0,0 +Jerry,2019,9,26,6,32.9,-63.8,other low,NA,25,1003,0,0 +Jerry,2019,9,26,12,33.6,-62.9,other low,NA,25,1005,0,0 +Jerry,2019,9,26,18,34.1,-62.2,other low,NA,25,1005,0,0 +Jerry,2019,9,27,0,34.6,-61.4,other low,NA,25,1006,0,0 +Jerry,2019,9,27,6,35,-60.5,other low,NA,25,1006,0,0 +Jerry,2019,9,27,12,35.3,-59.4,other low,NA,25,1006,0,0 +Jerry,2019,9,27,18,35.3,-58.7,other low,NA,25,1006,0,0 +Jerry,2019,9,28,0,35.1,-58.3,other low,NA,20,1007,0,0 +Imelda,2019,9,17,12,28.3,-95.7,tropical depression,NA,30,1008,0,0 +Imelda,2019,9,17,15,28.6,-95.5,tropical storm,NA,35,1006,40,0 +Imelda,2019,9,17,17,28.9,-95.4,tropical storm,NA,40,1003,40,0 +Imelda,2019,9,17,18,29,-95.4,tropical storm,NA,40,1003,40,0 +Imelda,2019,9,18,0,29.5,-95.5,tropical depression,NA,30,1007,0,0 +Imelda,2019,9,18,6,29.9,-95.6,tropical depression,NA,30,1007,0,0 +Imelda,2019,9,18,12,30.4,-95.5,tropical depression,NA,30,1007,0,0 +Imelda,2019,9,18,18,30.6,-95,tropical depression,NA,30,1007,0,0 +Imelda,2019,9,19,0,31.1,-94.8,tropical depression,NA,25,1009,0,0 +Karen,2019,9,22,0,11.5,-58.8,tropical depression,NA,30,1007,0,0 +Karen,2019,9,22,6,11.8,-59.9,tropical storm,NA,35,1007,110,0 +Karen,2019,9,22,12,12.1,-61.1,tropical storm,NA,35,1007,90,0 +Karen,2019,9,22,18,12.5,-62.2,tropical storm,NA,35,1007,90,0 +Karen,2019,9,23,0,13,-63.2,tropical storm,NA,35,1007,90,0 +Karen,2019,9,23,6,13.7,-64.1,tropical depression,NA,30,1007,0,0 +Karen,2019,9,23,12,14.4,-64.8,tropical depression,NA,30,1007,0,0 +Karen,2019,9,23,18,15.1,-65.4,tropical depression,NA,30,1007,0,0 +Karen,2019,9,24,0,15.7,-65.7,tropical depression,NA,30,1007,0,0 +Karen,2019,9,24,6,16.4,-65.8,tropical storm,NA,35,1006,70,0 +Karen,2019,9,24,12,17,-65.8,tropical storm,NA,35,1006,70,0 +Karen,2019,9,24,18,17.7,-65.6,tropical storm,NA,40,1004,70,0 +Karen,2019,9,24,22,18.1,-65.4,tropical storm,NA,40,1004,70,0 +Karen,2019,9,24,23,18.3,-65.3,tropical storm,NA,40,1004,70,0 +Karen,2019,9,25,0,18.5,-65.2,tropical storm,NA,40,1003,70,0 +Karen,2019,9,25,6,19.7,-65,tropical storm,NA,40,1003,60,0 +Karen,2019,9,25,12,21,-64.8,tropical storm,NA,35,1004,60,0 +Karen,2019,9,25,18,22.3,-64.5,tropical storm,NA,35,1004,50,0 +Karen,2019,9,26,0,23.6,-64.2,tropical storm,NA,35,1004,50,0 +Karen,2019,9,26,6,24.8,-64,tropical storm,NA,35,1004,50,0 +Karen,2019,9,26,12,25.9,-63.7,tropical storm,NA,40,1004,100,0 +Karen,2019,9,26,18,26.9,-63.1,tropical storm,NA,40,1005,100,0 +Karen,2019,9,27,0,27.7,-62.3,tropical storm,NA,35,1005,50,0 +Karen,2019,9,27,6,28.3,-61.2,tropical storm,NA,35,1005,50,0 +Karen,2019,9,27,12,28.8,-60,tropical depression,NA,30,1006,0,0 +Lorenzo,2019,9,22,18,10.9,-18.8,other low,NA,25,1008,0,0 +Lorenzo,2019,9,23,0,11,-20.4,tropical depression,NA,30,1007,0,0 +Lorenzo,2019,9,23,6,11,-21.9,tropical storm,NA,35,1007,20,0 +Lorenzo,2019,9,23,12,11.1,-23.3,tropical storm,NA,40,1006,20,0 +Lorenzo,2019,9,23,18,11.2,-24.6,tropical storm,NA,45,1004,50,0 +Lorenzo,2019,9,24,0,11.4,-25.9,tropical storm,NA,50,1002,120,0 +Lorenzo,2019,9,24,6,11.8,-27.2,tropical storm,NA,55,999,150,0 +Lorenzo,2019,9,24,12,12.2,-28.7,tropical storm,NA,55,997,260,0 +Lorenzo,2019,9,24,18,12.6,-30.2,tropical storm,NA,55,997,290,0 +Lorenzo,2019,9,25,0,13,-31.6,tropical storm,NA,60,993,320,0 +Lorenzo,2019,9,25,6,13.4,-33,hurricane,1,70,988,320,20 +Lorenzo,2019,9,25,12,13.9,-34.5,hurricane,1,75,983,300,20 +Lorenzo,2019,9,25,18,14.4,-36,hurricane,1,80,979,300,35 +Lorenzo,2019,9,26,0,14.5,-37.5,hurricane,2,85,975,300,40 +Lorenzo,2019,9,26,6,14.7,-38.8,hurricane,2,95,967,300,50 +Lorenzo,2019,9,26,12,15.2,-39.8,hurricane,3,105,955,350,65 +Lorenzo,2019,9,26,18,16,-40.6,hurricane,4,115,947,350,65 +Lorenzo,2019,9,27,0,17.1,-41.2,hurricane,4,125,937,380,65 +Lorenzo,2019,9,27,6,18.1,-41.9,hurricane,4,125,937,380,70 +Lorenzo,2019,9,27,12,18.9,-42.7,hurricane,4,120,943,400,70 +Lorenzo,2019,9,27,18,19.6,-43.5,hurricane,3,110,948,400,70 +Lorenzo,2019,9,28,0,20.3,-44.2,hurricane,3,105,952,400,85 +Lorenzo,2019,9,28,6,21.1,-44.6,hurricane,3,100,957,400,85 +Lorenzo,2019,9,28,12,22,-44.9,hurricane,3,105,957,380,90 +Lorenzo,2019,9,28,18,22.9,-45,hurricane,4,115,951,380,90 +Lorenzo,2019,9,29,0,23.8,-45,hurricane,4,130,936,380,90 +Lorenzo,2019,9,29,3,24.3,-45,hurricane,5,140,925,380,90 +Lorenzo,2019,9,29,6,24.7,-45,hurricane,4,130,933,380,100 +Lorenzo,2019,9,29,12,25.6,-44.8,hurricane,3,110,945,380,130 +Lorenzo,2019,9,29,18,26.4,-44.4,hurricane,2,90,950,400,130 +Lorenzo,2019,9,30,0,27.2,-44,hurricane,2,90,954,450,140 +Lorenzo,2019,9,30,6,28.2,-43.6,hurricane,2,90,955,450,140 +Lorenzo,2019,9,30,12,29.2,-43.2,hurricane,2,90,955,470,150 +Lorenzo,2019,9,30,18,30.2,-42.7,hurricane,2,90,955,500,160 +Lorenzo,2019,10,1,0,31.2,-41.9,hurricane,2,90,956,520,160 +Lorenzo,2019,10,1,6,32.6,-40.7,hurricane,2,85,957,520,160 +Lorenzo,2019,10,1,12,34.3,-39,hurricane,2,85,957,540,160 +Lorenzo,2019,10,1,18,35.9,-36.8,hurricane,2,85,958,590,190 +Lorenzo,2019,10,2,0,37.8,-34.4,hurricane,2,85,959,610,230 +Lorenzo,2019,10,2,6,40.2,-31.4,hurricane,1,80,959,610,230 +Lorenzo,2019,10,2,12,43,-28,extratropical,NA,70,959,610,90 +Lorenzo,2019,10,2,18,45.9,-24.4,extratropical,NA,65,960,610,80 +Lorenzo,2019,10,3,0,49.2,-21.5,extratropical,NA,60,961,650,0 +Lorenzo,2019,10,3,6,52,-18.7,extratropical,NA,60,962,650,0 +Lorenzo,2019,10,3,12,54.5,-15.7,extratropical,NA,60,963,650,0 +Lorenzo,2019,10,3,18,55.8,-13.3,extratropical,NA,60,966,600,0 +Lorenzo,2019,10,4,0,55.4,-10.5,extratropical,NA,55,977,580,0 +Lorenzo,2019,10,4,6,54.5,-8.2,extratropical,NA,50,985,200,0 +Melissa,2019,10,8,18,35,-74.1,extratropical,NA,40,1009,240,0 +Melissa,2019,10,9,0,36.1,-72.4,extratropical,NA,40,1009,270,0 +Melissa,2019,10,9,6,37,-70.4,extratropical,NA,45,1008,300,0 +Melissa,2019,10,9,12,37.7,-68.8,extratropical,NA,45,1007,330,0 +Melissa,2019,10,9,18,38.4,-68.1,extratropical,NA,50,1006,300,0 +Melissa,2019,10,10,0,38.9,-68.2,extratropical,NA,55,1004,330,0 +Melissa,2019,10,10,6,38.9,-68.7,extratropical,NA,55,1002,360,0 +Melissa,2019,10,10,12,38.6,-69.2,extratropical,NA,55,1000,390,0 +Melissa,2019,10,10,18,38,-69.2,extratropical,NA,55,998,420,0 +Melissa,2019,10,11,0,37.9,-68.4,extratropical,NA,55,996,450,0 +Melissa,2019,10,11,6,38.4,-68.7,subtropical storm,NA,55,994,480,0 +Melissa,2019,10,11,12,38.6,-69.4,subtropical storm,NA,50,995,480,0 +Melissa,2019,10,11,18,38.2,-69.7,subtropical storm,NA,50,996,450,0 +Melissa,2019,10,12,0,37.8,-69.1,subtropical storm,NA,50,997,390,0 +Melissa,2019,10,12,6,37.9,-68.4,subtropical storm,NA,45,998,330,0 +Melissa,2019,10,12,12,38,-67.5,tropical storm,NA,45,998,270,0 +Melissa,2019,10,12,18,38.2,-66.3,tropical storm,NA,45,998,120,0 +Melissa,2019,10,13,0,38.6,-64.9,tropical storm,NA,45,998,90,0 +Melissa,2019,10,13,6,39.1,-63.5,tropical storm,NA,40,999,60,0 +Melissa,2019,10,13,12,39.5,-61.7,tropical storm,NA,40,1000,60,0 +Melissa,2019,10,13,18,39.7,-59.8,tropical storm,NA,35,1001,60,0 +Melissa,2019,10,14,0,40,-57.9,tropical storm,NA,35,1002,60,0 +Melissa,2019,10,14,6,40.5,-55.5,tropical storm,NA,35,1003,60,0 +Melissa,2019,10,14,12,40.8,-52.9,extratropical,NA,35,1004,90,0 +Melissa,2019,10,14,18,40.9,-49.8,extratropical,NA,35,1004,90,0 +Fifteen,2019,10,14,12,12.6,-19.3,tropical depression,NA,30,1006,0,0 +Fifteen,2019,10,14,18,13.3,-20,tropical depression,NA,30,1006,0,0 +Fifteen,2019,10,15,0,14.2,-20.4,tropical depression,NA,30,1006,0,0 +Fifteen,2019,10,15,6,15,-21,tropical depression,NA,30,1006,0,0 +Fifteen,2019,10,15,12,15.7,-21.7,tropical depression,NA,30,1006,0,0 +Fifteen,2019,10,15,18,16.3,-22.6,tropical depression,NA,30,1007,0,0 +Fifteen,2019,10,16,0,17,-23.4,tropical depression,NA,30,1009,0,0 +Fifteen,2019,10,16,6,17.6,-24.4,other low,NA,25,1009,0,0 +Fifteen,2019,10,16,12,18.2,-25.4,other low,NA,25,1009,0,0 +Fifteen,2019,10,16,18,18.7,-26.8,other low,NA,25,1009,0,0 +Fifteen,2019,10,17,0,19.2,-28.3,other low,NA,25,1009,0,0 +Fifteen,2019,10,17,6,19.5,-29.8,other low,NA,25,1009,0,0 +Fifteen,2019,10,17,12,19.3,-31,other low,NA,25,1009,0,0 +Nestor,2019,10,17,12,22.2,-95.7,disturbance,NA,35,1007,60,0 +Nestor,2019,10,17,18,22.6,-95.2,disturbance,NA,35,1005,100,0 +Nestor,2019,10,18,0,23.2,-94.5,disturbance,NA,40,1003,100,0 +Nestor,2019,10,18,6,24.1,-93,disturbance,NA,45,1002,100,0 +Nestor,2019,10,18,12,25.2,-91.2,disturbance,NA,50,1001,150,0 +Nestor,2019,10,18,18,26.4,-89.4,tropical storm,NA,50,1000,160,0 +Nestor,2019,10,19,0,27.8,-87.8,tropical storm,NA,50,996,160,0 +Nestor,2019,10,19,6,28.6,-87.1,tropical storm,NA,50,996,140,0 +Nestor,2019,10,19,12,29.3,-86.4,extratropical,NA,40,996,140,0 +Nestor,2019,10,19,18,30.2,-85.4,extratropical,NA,40,999,210,0 +Nestor,2019,10,20,0,31.2,-84.2,extratropical,NA,35,1000,240,0 +Nestor,2019,10,20,6,33.1,-81.7,extratropical,NA,40,1002,240,0 +Nestor,2019,10,20,12,35.1,-79.1,extratropical,NA,40,1002,240,0 +Nestor,2019,10,20,18,37,-76.7,extratropical,NA,40,1002,240,0 +Nestor,2019,10,21,0,37.5,-74.5,extratropical,NA,40,1001,240,0 +Olga,2019,10,25,12,24.7,-94.8,tropical storm,NA,35,1004,80,0 +Olga,2019,10,25,18,25.9,-93.6,tropical storm,NA,40,998,80,0 +Olga,2019,10,26,0,27,-92.5,extratropical,NA,45,996,140,0 +Olga,2019,10,26,6,28.8,-91.2,extratropical,NA,45,994,140,0 +Olga,2019,10,26,12,31.7,-90,extratropical,NA,45,993,140,0 +Olga,2019,10,26,18,36.2,-89.3,extratropical,NA,40,993,140,0 +Olga,2019,10,27,0,40.1,-88,extratropical,NA,30,992,0,0 +Olga,2019,10,27,6,42.5,-87,extratropical,NA,30,992,0,0 +Olga,2019,10,27,12,44.5,-84.7,extratropical,NA,30,994,0,0 +Olga,2019,10,27,18,46,-80.3,extratropical,NA,30,998,0,0 +Pablo,2019,10,23,18,40,-38.3,extratropical,NA,40,1000,120,0 +Pablo,2019,10,24,0,40.2,-38.4,extratropical,NA,50,998,240,0 +Pablo,2019,10,24,6,39,-39.9,extratropical,NA,50,995,270,0 +Pablo,2019,10,24,12,36.9,-39.3,extratropical,NA,50,990,390,0 +Pablo,2019,10,24,18,35.8,-36.9,extratropical,NA,45,988,60,0 +Pablo,2019,10,25,0,35.9,-35.1,subtropical storm,NA,45,988,60,0 +Pablo,2019,10,25,6,36.3,-34,subtropical storm,NA,45,988,60,0 +Pablo,2019,10,25,12,36.4,-33.2,subtropical storm,NA,40,989,20,0 +Pablo,2019,10,25,18,35.9,-32.7,tropical storm,NA,40,990,20,0 +Pablo,2019,10,26,0,35.5,-31.8,tropical storm,NA,40,990,30,0 +Pablo,2019,10,26,6,35.2,-30.7,tropical storm,NA,40,990,60,0 +Pablo,2019,10,26,12,35.1,-29.1,tropical storm,NA,45,989,60,0 +Pablo,2019,10,26,18,35.6,-26.6,tropical storm,NA,50,987,60,0 +Pablo,2019,10,27,0,37,-23.8,tropical storm,NA,55,985,90,0 +Pablo,2019,10,27,6,39.5,-20.7,tropical storm,NA,60,983,90,0 +Pablo,2019,10,27,12,41.9,-18.8,hurricane,1,65,980,90,10 +Pablo,2019,10,27,18,44.1,-17.3,hurricane,1,70,977,90,10 +Pablo,2019,10,28,0,45.5,-17,tropical storm,NA,60,982,70,0 +Pablo,2019,10,28,6,46.3,-17.6,tropical storm,NA,45,990,60,0 +Pablo,2019,10,28,12,46.5,-17.9,extratropical,NA,35,995,50,0 +Pablo,2019,10,28,18,46.6,-17.6,extratropical,NA,35,995,50,0 +Pablo,2019,10,29,0,46.8,-16.4,extratropical,NA,30,995,0,0 +Sebastien,2019,11,19,6,19.4,-58.1,tropical storm,NA,35,1006,90,0 +Sebastien,2019,11,19,12,19.9,-58.5,tropical storm,NA,40,1004,120,0 +Sebastien,2019,11,19,18,20.3,-59.4,tropical storm,NA,40,1004,140,0 +Sebastien,2019,11,20,0,20.4,-60.3,tropical storm,NA,40,1002,140,0 +Sebastien,2019,11,20,6,20.5,-61,tropical storm,NA,45,1000,140,0 +Sebastien,2019,11,20,12,20.8,-61.7,tropical storm,NA,45,999,140,0 +Sebastien,2019,11,20,18,21.3,-61.7,tropical storm,NA,45,999,140,0 +Sebastien,2019,11,21,0,21.9,-61.7,tropical storm,NA,50,996,140,0 +Sebastien,2019,11,21,6,22.4,-61.4,tropical storm,NA,50,996,140,0 +Sebastien,2019,11,21,12,22.9,-60.9,tropical storm,NA,50,996,140,0 +Sebastien,2019,11,21,18,23.5,-60.1,tropical storm,NA,50,996,140,0 +Sebastien,2019,11,22,0,24.2,-58.8,tropical storm,NA,50,996,220,0 +Sebastien,2019,11,22,6,24.5,-57.3,tropical storm,NA,50,996,200,0 +Sebastien,2019,11,22,12,25,-55.8,tropical storm,NA,50,996,190,0 +Sebastien,2019,11,22,18,25.8,-54.4,tropical storm,NA,55,994,190,0 +Sebastien,2019,11,23,0,26.7,-52.6,tropical storm,NA,60,991,190,0 +Sebastien,2019,11,23,6,28.1,-50.5,tropical storm,NA,60,991,190,0 +Sebastien,2019,11,23,12,29.6,-48.4,tropical storm,NA,55,994,170,0 +Sebastien,2019,11,23,18,31.5,-46.4,tropical storm,NA,55,994,140,0 +Sebastien,2019,11,24,0,33.5,-44.4,tropical storm,NA,55,994,140,0 +Sebastien,2019,11,24,6,35.2,-41.7,tropical storm,NA,55,994,160,0 +Sebastien,2019,11,24,12,36.6,-38.5,tropical storm,NA,55,994,210,0 +Sebastien,2019,11,24,18,38.2,-34.7,tropical storm,NA,55,994,260,0 +Sebastien,2019,11,25,0,40,-30.9,extratropical,NA,55,992,310,0 +Sebastien,2019,11,25,6,41.9,-26.7,extratropical,NA,60,988,330,0 +Sebastien,2019,11,25,12,44,-22,extratropical,NA,60,982,350,0 +Sebastien,2019,11,25,18,46.4,-16.3,extratropical,NA,60,978,320,0 +Sebastien,2019,11,26,0,48.8,-12.2,extratropical,NA,55,974,300,0 +Sebastien,2019,11,26,6,51.3,-9.3,extratropical,NA,50,972,310,0 +Sebastien,2019,11,26,12,52.2,-9.3,extratropical,NA,45,970,330,0 +Sebastien,2019,11,26,18,52.2,-8.9,extratropical,NA,40,972,330,0 +Sebastien,2019,11,27,0,51.8,-8.2,extratropical,NA,40,974,210,0 +Sebastien,2019,11,27,6,51.4,-6,extratropical,NA,40,976,180,0 +Sebastien,2019,11,27,12,51.3,-2.1,extratropical,NA,40,980,120,0 +Arthur,2020,5,16,18,28,-78.7,tropical depression,NA,30,1008,0,0 +Arthur,2020,5,17,0,28.9,-78,tropical storm,NA,35,1006,70,0 +Arthur,2020,5,17,6,29.6,-77.6,tropical storm,NA,35,1004,70,0 +Arthur,2020,5,17,12,30.3,-77.5,tropical storm,NA,35,1003,90,0 +Arthur,2020,5,17,18,31,-77.3,tropical storm,NA,40,1003,90,0 +Arthur,2020,5,18,0,31.9,-77,tropical storm,NA,40,1003,90,0 +Arthur,2020,5,18,6,33.1,-76.7,tropical storm,NA,40,1002,90,0 +Arthur,2020,5,18,12,34.4,-75.9,tropical storm,NA,45,1000,110,0 +Arthur,2020,5,18,18,35.5,-74.7,tropical storm,NA,45,993,140,0 +Arthur,2020,5,19,0,36.2,-73.1,tropical storm,NA,50,991,200,0 +Arthur,2020,5,19,6,36.8,-71.4,tropical storm,NA,50,990,310,0 +Arthur,2020,5,19,12,37,-69.5,extratropical,NA,55,989,400,0 +Arthur,2020,5,19,18,36.9,-67.8,extratropical,NA,50,991,400,0 +Arthur,2020,5,20,0,36.2,-66.8,extratropical,NA,50,993,330,0 +Arthur,2020,5,20,6,35.5,-66,extratropical,NA,50,997,290,0 +Arthur,2020,5,20,12,34.6,-65.6,extratropical,NA,50,1002,290,0 +Arthur,2020,5,20,18,33.7,-65.3,extratropical,NA,45,1006,200,0 +Arthur,2020,5,21,0,32.8,-65,extratropical,NA,40,1008,200,0 +Bertha,2020,5,27,6,31.5,-78.8,tropical storm,NA,40,1006,20,0 +Bertha,2020,5,27,12,32.6,-79.5,tropical storm,NA,45,1005,20,0 +Bertha,2020,5,27,13,32.9,-79.7,tropical storm,NA,45,1005,20,0 +Bertha,2020,5,27,18,33.7,-80.1,tropical depression,NA,30,1007,0,0 +Bertha,2020,5,28,0,34.9,-80.7,tropical depression,NA,25,1008,0,0 +Bertha,2020,5,28,6,37.1,-81.1,extratropical,NA,20,1011,0,0 +Bertha,2020,5,28,12,39.9,-80.6,extratropical,NA,20,1011,0,0 +Cristobal,2020,6,1,18,19.4,-90.9,tropical depression,NA,25,1006,0,0 +Cristobal,2020,6,2,0,19.6,-91.6,tropical depression,NA,25,1005,0,0 +Cristobal,2020,6,2,6,19.6,-92.1,tropical depression,NA,30,1005,0,0 +Cristobal,2020,6,2,12,19.5,-92.5,tropical storm,NA,35,1004,60,0 +Cristobal,2020,6,2,18,19.2,-92.6,tropical storm,NA,40,1001,120,0 +Cristobal,2020,6,3,0,19,-92.5,tropical storm,NA,45,996,110,0 +Cristobal,2020,6,3,6,18.9,-92.3,tropical storm,NA,50,994,90,0 +Cristobal,2020,6,3,12,18.8,-92.2,tropical storm,NA,50,993,90,0 +Cristobal,2020,6,3,13,18.7,-92.1,tropical storm,NA,50,993,90,0 +Cristobal,2020,6,3,18,18.5,-91.9,tropical storm,NA,45,994,90,0 +Cristobal,2020,6,4,0,18.2,-91.7,tropical storm,NA,40,995,80,0 +Cristobal,2020,6,4,6,17.9,-91.5,tropical storm,NA,35,997,70,0 +Cristobal,2020,6,4,12,17.7,-91.2,tropical depression,NA,30,999,0,0 +Cristobal,2020,6,4,18,17.6,-90.8,tropical depression,NA,30,999,0,0 +Cristobal,2020,6,5,0,17.9,-90.4,tropical depression,NA,30,999,0,0 +Cristobal,2020,6,5,6,18.6,-90.1,tropical storm,NA,35,998,210,0 +Cristobal,2020,6,5,12,19.6,-89.9,tropical storm,NA,40,997,210,0 +Cristobal,2020,6,5,18,20.8,-89.9,tropical storm,NA,45,997,300,0 +Cristobal,2020,6,6,0,22,-90,tropical storm,NA,50,996,300,0 +Cristobal,2020,6,6,6,23,-90.1,tropical storm,NA,50,994,300,0 +Cristobal,2020,6,6,12,23.9,-90.2,tropical storm,NA,45,992,310,0 +Cristobal,2020,6,6,18,24.8,-90.2,tropical storm,NA,45,992,320,0 +Cristobal,2020,6,7,0,25.8,-90.1,tropical storm,NA,45,992,320,0 +Cristobal,2020,6,7,6,26.9,-90,tropical storm,NA,45,992,320,0 +Cristobal,2020,6,7,12,28,-89.9,tropical storm,NA,45,991,320,0 +Cristobal,2020,6,7,18,29,-89.8,tropical storm,NA,45,990,320,0 +Cristobal,2020,6,7,22,29.3,-89.8,tropical storm,NA,45,990,320,0 +Cristobal,2020,6,8,0,29.8,-89.9,tropical storm,NA,45,990,240,0 +Cristobal,2020,6,8,6,30.6,-90.6,tropical storm,NA,35,991,180,0 +Cristobal,2020,6,8,12,31.7,-91.5,tropical depression,NA,30,993,0,0 +Cristobal,2020,6,8,18,32.9,-92,tropical depression,NA,30,994,0,0 +Cristobal,2020,6,9,0,34.2,-92.1,tropical depression,NA,25,994,0,0 +Cristobal,2020,6,9,6,35.8,-92.2,tropical depression,NA,25,993,0,0 +Cristobal,2020,6,9,12,38,-92.1,tropical depression,NA,25,991,0,0 +Cristobal,2020,6,9,18,40.3,-91.7,tropical depression,NA,30,988,0,0 +Cristobal,2020,6,10,0,42.6,-90.8,extratropical,NA,30,986,0,0 +Cristobal,2020,6,10,6,45,-89.3,extratropical,NA,35,983,120,0 +Cristobal,2020,6,10,12,47.5,-87.4,extratropical,NA,35,982,150,0 +Cristobal,2020,6,10,18,49.8,-85.1,extratropical,NA,35,982,180,0 +Cristobal,2020,6,11,0,51.7,-82.6,extratropical,NA,30,983,0,0 +Cristobal,2020,6,11,6,52.7,-81.2,extratropical,NA,30,985,0,0 +Cristobal,2020,6,11,12,53.2,-80.4,extratropical,NA,35,987,240,0 +Cristobal,2020,6,11,18,53.4,-79.8,extratropical,NA,35,989,240,0 +Cristobal,2020,6,12,0,53.3,-79.4,extratropical,NA,35,992,150,0 +Cristobal,2020,6,12,6,52.5,-79.1,extratropical,NA,35,998,120,0 +Dolly,2020,6,22,6,38.6,-67.1,other low,NA,30,1010,0,0 +Dolly,2020,6,22,12,38.4,-66.9,subtropical depression,NA,30,1009,0,0 +Dolly,2020,6,22,18,38.1,-66.2,subtropical depression,NA,30,1008,0,0 +Dolly,2020,6,23,0,38.5,-65.1,subtropical depression,NA,30,1007,0,0 +Dolly,2020,6,23,6,39,-63.9,subtropical storm,NA,35,1003,60,0 +Dolly,2020,6,23,12,39.4,-62.7,tropical storm,NA,40,1000,60,0 +Dolly,2020,6,23,18,39.8,-61.6,tropical storm,NA,40,1000,60,0 +Dolly,2020,6,24,0,40.2,-60.6,tropical storm,NA,35,1002,60,0 +Dolly,2020,6,24,6,41,-59.6,other low,NA,30,1005,0,0 +Dolly,2020,6,24,12,42,-58.5,other low,NA,30,1007,0,0 +Dolly,2020,6,24,18,43,-57.1,other low,NA,25,1008,0,0 +Dolly,2020,6,25,0,44.1,-55.6,other low,NA,25,1009,0,0 +Edouard,2020,7,4,6,30.4,-71.2,other low,NA,30,1009,0,0 +Edouard,2020,7,4,12,30.9,-69.4,tropical depression,NA,30,1009,0,0 +Edouard,2020,7,4,18,31.5,-68,tropical depression,NA,30,1007,0,0 +Edouard,2020,7,5,0,32.1,-67,tropical depression,NA,30,1007,0,0 +Edouard,2020,7,5,6,32.9,-65.8,tropical depression,NA,30,1007,0,0 +Edouard,2020,7,5,12,33.8,-64.2,tropical depression,NA,30,1007,0,0 +Edouard,2020,7,5,18,35,-61.9,tropical depression,NA,30,1007,0,0 +Edouard,2020,7,6,0,36.4,-58.5,tropical storm,NA,35,1006,50,0 +Edouard,2020,7,6,6,38.1,-55.3,tropical storm,NA,35,1006,90,0 +Edouard,2020,7,6,12,39.9,-51.7,tropical storm,NA,40,1006,120,0 +Edouard,2020,7,6,18,41.7,-47.8,tropical storm,NA,40,1005,120,0 +Edouard,2020,7,7,0,43.6,-44.1,extratropical,NA,40,1005,120,0 +Edouard,2020,7,7,6,45.5,-40.3,extratropical,NA,40,1006,120,0 +Edouard,2020,7,7,12,47.6,-36.6,extratropical,NA,40,1006,120,0 +Edouard,2020,7,7,18,49.5,-32.5,extratropical,NA,40,1006,120,0 +Edouard,2020,7,8,0,51,-28,extratropical,NA,35,1007,120,0 +Edouard,2020,7,8,6,52,-23.5,extratropical,NA,30,1008,0,0 +Edouard,2020,7,8,12,52,-19,extratropical,NA,30,1008,0,0 +Edouard,2020,7,8,18,52,-14,extratropical,NA,30,1008,0,0 +Edouard,2020,7,9,0,52,-9,extratropical,NA,30,1009,0,0 +Edouard,2020,7,9,6,52,-4,extratropical,NA,30,1009,0,0 +Edouard,2020,7,9,12,52,0,extratropical,NA,25,1010,0,0 +Fay,2020,7,5,12,27.7,-88.8,other low,NA,20,1012,0,0 +Fay,2020,7,5,18,28.1,-87.7,other low,NA,25,1010,0,0 +Fay,2020,7,6,0,28.9,-86.2,other low,NA,30,1008,0,0 +Fay,2020,7,6,6,29.9,-85.4,other low,NA,30,1008,0,0 +Fay,2020,7,6,12,30.8,-85,other low,NA,20,1011,0,0 +Fay,2020,7,6,18,31.5,-84.6,other low,NA,20,1013,0,0 +Fay,2020,7,7,0,32.2,-84.2,other low,NA,20,1013,0,0 +Fay,2020,7,7,6,32.8,-83.7,other low,NA,20,1014,0,0 +Fay,2020,7,7,12,33.3,-83.2,other low,NA,20,1014,0,0 +Fay,2020,7,7,18,33.3,-82.5,other low,NA,20,1014,0,0 +Fay,2020,7,8,0,33.3,-81.6,other low,NA,20,1013,0,0 +Fay,2020,7,8,6,33.3,-80.5,other low,NA,20,1012,0,0 +Fay,2020,7,8,12,33.3,-79.2,other low,NA,20,1011,0,0 +Fay,2020,7,8,18,33.7,-77.9,other low,NA,25,1010,0,0 +Fay,2020,7,9,0,33.9,-77.1,other low,NA,25,1009,0,0 +Fay,2020,7,9,6,34.1,-76.8,other low,NA,25,1008,0,0 +Fay,2020,7,9,12,34.1,-76.8,other low,NA,30,1007,0,0 +Fay,2020,7,9,18,35.4,-74.9,tropical storm,NA,40,1006,120,0 +Fay,2020,7,10,0,36,-74.8,tropical storm,NA,40,1005,120,0 +Fay,2020,7,10,6,36.8,-74.8,tropical storm,NA,45,1004,120,0 +Fay,2020,7,10,12,37.7,-74.7,tropical storm,NA,50,998,190,0 +Fay,2020,7,10,18,38.9,-74.4,tropical storm,NA,50,998,160,0 +Fay,2020,7,10,20,39.4,-74.4,tropical storm,NA,45,999,160,0 +Fay,2020,7,11,0,40.2,-74.3,tropical storm,NA,35,1000,120,0 +Fay,2020,7,11,6,41.5,-74.2,other low,NA,30,1001,0,0 +Fay,2020,7,11,12,43.4,-74,other low,NA,25,1001,0,0 +Fay,2020,7,11,18,45.4,-73.8,other low,NA,20,999,0,0 +Gonzalo,2020,7,20,12,8.9,-36.8,other low,NA,20,1010,0,0 +Gonzalo,2020,7,20,18,8.6,-37.5,other low,NA,25,1009,0,0 +Gonzalo,2020,7,21,0,8.6,-38.2,other low,NA,25,1009,0,0 +Gonzalo,2020,7,21,6,8.8,-38.8,other low,NA,25,1009,0,0 +Gonzalo,2020,7,21,12,9.2,-39.3,other low,NA,25,1009,0,0 +Gonzalo,2020,7,21,18,9.7,-40,tropical depression,NA,30,1008,0,0 +Gonzalo,2020,7,22,0,9.8,-40.9,tropical depression,NA,30,1008,0,0 +Gonzalo,2020,7,22,6,9.8,-41.9,tropical storm,NA,35,1006,20,0 +Gonzalo,2020,7,22,12,9.9,-43,tropical storm,NA,40,1003,20,0 +Gonzalo,2020,7,22,18,9.9,-44.2,tropical storm,NA,45,1000,50,0 +Gonzalo,2020,7,23,0,9.9,-45.4,tropical storm,NA,50,998,50,0 +Gonzalo,2020,7,23,6,9.7,-46.6,tropical storm,NA,55,997,50,0 +Gonzalo,2020,7,23,12,9.7,-47.6,tropical storm,NA,55,997,50,0 +Gonzalo,2020,7,23,18,9.7,-48.8,tropical storm,NA,50,1000,50,0 +Gonzalo,2020,7,24,0,9.8,-50.2,tropical storm,NA,50,1000,50,0 +Gonzalo,2020,7,24,6,9.9,-51.6,tropical storm,NA,50,1001,50,0 +Gonzalo,2020,7,24,12,9.9,-53.3,tropical storm,NA,45,1003,50,0 +Gonzalo,2020,7,24,18,9.9,-54.8,tropical storm,NA,35,1008,40,0 +Gonzalo,2020,7,25,0,10,-56.3,tropical storm,NA,35,1008,40,0 +Gonzalo,2020,7,25,6,10.1,-57.9,tropical storm,NA,35,1008,40,0 +Gonzalo,2020,7,25,12,10.3,-59.8,tropical storm,NA,35,1008,30,0 +Gonzalo,2020,7,25,15,10.5,-61,tropical depression,NA,30,1009,0,0 +Gonzalo,2020,7,25,18,10.8,-62.1,tropical depression,NA,30,1009,0,0 +Hanna,2020,7,23,0,25.7,-88.3,tropical depression,NA,25,1009,0,0 +Hanna,2020,7,23,6,25.8,-89,tropical depression,NA,25,1009,0,0 +Hanna,2020,7,23,12,25.9,-89.7,tropical depression,NA,30,1009,0,0 +Hanna,2020,7,23,18,26,-90.4,tropical depression,NA,30,1006,0,0 +Hanna,2020,7,24,0,26.2,-91.1,tropical storm,NA,35,1002,30,0 +Hanna,2020,7,24,6,26.6,-92,tropical storm,NA,40,1001,40,0 +Hanna,2020,7,24,12,27.1,-92.8,tropical storm,NA,45,1000,50,0 +Hanna,2020,7,24,18,27.2,-93.7,tropical storm,NA,50,997,50,0 +Hanna,2020,7,25,0,27.1,-94.5,tropical storm,NA,55,993,100,0 +Hanna,2020,7,25,6,27.1,-95.3,tropical storm,NA,60,988,150,0 +Hanna,2020,7,25,12,27.1,-96,hurricane,1,70,981,180,20 +Hanna,2020,7,25,18,26.9,-96.8,hurricane,1,80,973,180,45 +Hanna,2020,7,25,22,26.8,-97.3,hurricane,1,80,973,180,45 +Hanna,2020,7,25,23,26.7,-97.5,hurricane,1,80,974,170,45 +Hanna,2020,7,26,0,26.7,-97.6,hurricane,1,75,976,160,25 +Hanna,2020,7,26,6,26.5,-98.5,tropical storm,NA,55,987,140,0 +Hanna,2020,7,26,12,26.2,-99.3,tropical storm,NA,40,996,120,0 +Hanna,2020,7,26,18,25.8,-100.3,tropical depression,NA,30,1000,0,0 +Isaias,2020,7,28,12,12.5,-54,disturbance,NA,35,1007,200,0 +Isaias,2020,7,28,18,13.2,-56.4,disturbance,NA,35,1006,200,0 +Isaias,2020,7,29,0,14.1,-58.3,disturbance,NA,40,1005,240,0 +Isaias,2020,7,29,6,14.8,-60.3,disturbance,NA,40,1005,240,0 +Isaias,2020,7,29,12,15.2,-62.2,disturbance,NA,40,1005,240,0 +Isaias,2020,7,29,18,15.3,-64,disturbance,NA,40,1005,300,0 +Isaias,2020,7,30,0,15.8,-65.7,tropical storm,NA,45,1004,300,0 +Isaias,2020,7,30,6,16.7,-67.2,tropical storm,NA,50,1003,300,0 +Isaias,2020,7,30,12,17.7,-68.5,tropical storm,NA,55,1002,270,0 +Isaias,2020,7,30,16,18.4,-69.3,tropical storm,NA,55,1002,270,0 +Isaias,2020,7,30,18,18.9,-69.8,tropical storm,NA,60,999,270,0 +Isaias,2020,7,31,0,19.9,-71.2,hurricane,1,65,996,240,25 +Isaias,2020,7,31,6,20.5,-72.7,hurricane,1,70,990,240,50 +Isaias,2020,7,31,9,20.9,-73.4,hurricane,1,70,990,240,50 +Isaias,2020,7,31,12,21.3,-74,hurricane,1,65,992,240,40 +Isaias,2020,7,31,18,22.1,-75.1,hurricane,1,70,990,200,40 +Isaias,2020,8,1,0,22.9,-75.9,hurricane,1,75,987,200,40 +Isaias,2020,8,1,6,23.6,-76.7,hurricane,1,75,987,200,40 +Isaias,2020,8,1,12,24.3,-77.5,hurricane,1,70,987,170,35 +Isaias,2020,8,1,13,24.4,-77.7,hurricane,1,70,989,170,35 +Isaias,2020,8,1,18,24.8,-78.3,tropical storm,NA,60,993,160,0 +Isaias,2020,8,2,0,25.3,-78.9,tropical storm,NA,60,995,160,0 +Isaias,2020,8,2,6,25.9,-79.2,tropical storm,NA,55,996,140,0 +Isaias,2020,8,2,12,26.6,-79.5,tropical storm,NA,55,995,140,0 +Isaias,2020,8,2,18,27.4,-79.6,tropical storm,NA,60,995,140,0 +Isaias,2020,8,3,0,28.2,-79.7,tropical storm,NA,60,995,140,0 +Isaias,2020,8,3,6,29.1,-79.9,tropical storm,NA,60,995,170,0 +Isaias,2020,8,3,12,30.1,-80,tropical storm,NA,60,995,170,0 +Isaias,2020,8,3,18,31.2,-79.7,hurricane,1,65,991,170,20 +Isaias,2020,8,4,0,32.8,-79.1,hurricane,1,80,986,170,40 +Isaias,2020,8,4,3,33.9,-78.5,hurricane,1,80,986,170,40 +Isaias,2020,8,4,6,35,-78.1,tropical storm,NA,60,992,160,0 +Isaias,2020,8,4,12,37.7,-76.8,tropical storm,NA,60,993,160,0 +Isaias,2020,8,4,18,40.9,-75.1,tropical storm,NA,55,994,190,0 +Isaias,2020,8,5,0,44,-73.1,extratropical,NA,45,998,150,0 +Isaias,2020,8,5,6,46.7,-71.8,extratropical,NA,35,1000,90,0 +Ten,2020,7,29,18,12.7,-19.7,other low,NA,25,1009,0,0 +Ten,2020,7,30,0,12.7,-20.1,other low,NA,25,1009,0,0 +Ten,2020,7,30,6,12.8,-20.4,other low,NA,25,1009,0,0 +Ten,2020,7,30,12,13,-20.4,other low,NA,30,1008,0,0 +Ten,2020,7,30,18,13.1,-20.2,other low,NA,30,1008,0,0 +Ten,2020,7,31,0,13.2,-20,other low,NA,30,1008,0,0 +Ten,2020,7,31,6,13.7,-19.7,other low,NA,30,1008,0,0 +Ten,2020,7,31,12,14.5,-19.4,other low,NA,30,1008,0,0 +Ten,2020,7,31,18,15.5,-19.7,tropical depression,NA,30,1008,0,0 +Ten,2020,8,1,0,16.5,-20.3,tropical depression,NA,30,1008,0,0 +Ten,2020,8,1,6,17.4,-21,tropical depression,NA,30,1008,0,0 +Ten,2020,8,1,12,18.3,-21.8,tropical depression,NA,25,1009,0,0 +Ten,2020,8,1,18,19,-23,tropical depression,NA,25,1009,0,0 +Ten,2020,8,2,0,19.4,-24.4,other low,NA,20,1010,0,0 +Josephine,2020,8,10,18,11.1,-34.2,other low,NA,25,1009,0,0 +Josephine,2020,8,11,0,11.3,-35.4,other low,NA,30,1008,0,0 +Josephine,2020,8,11,6,11.4,-36.8,tropical depression,NA,30,1008,0,0 +Josephine,2020,8,11,12,11.5,-38.2,tropical depression,NA,30,1008,0,0 +Josephine,2020,8,11,18,11.7,-39.6,tropical depression,NA,30,1008,0,0 +Josephine,2020,8,12,0,11.9,-41,tropical depression,NA,30,1008,0,0 +Josephine,2020,8,12,6,12,-42.3,tropical depression,NA,30,1008,0,0 +Josephine,2020,8,12,12,12.1,-43.7,tropical depression,NA,30,1007,0,0 +Josephine,2020,8,12,18,12.2,-44.9,tropical depression,NA,30,1007,0,0 +Josephine,2020,8,13,0,12.4,-46.1,tropical depression,NA,30,1007,0,0 +Josephine,2020,8,13,6,12.7,-47.3,tropical depression,NA,30,1007,0,0 +Josephine,2020,8,13,12,13.4,-48.6,tropical storm,NA,40,1005,90,0 +Josephine,2020,8,13,18,14,-50,tropical storm,NA,40,1005,80,0 +Josephine,2020,8,14,0,14.5,-51.3,tropical storm,NA,35,1005,70,0 +Josephine,2020,8,14,6,15.1,-52.8,tropical storm,NA,35,1005,70,0 +Josephine,2020,8,14,12,16.2,-54.2,tropical storm,NA,35,1005,70,0 +Josephine,2020,8,14,18,17.4,-55.6,tropical storm,NA,40,1004,80,0 +Josephine,2020,8,15,0,18,-56.9,tropical storm,NA,40,1004,80,0 +Josephine,2020,8,15,6,18.4,-58.3,tropical storm,NA,40,1005,80,0 +Josephine,2020,8,15,12,18.8,-59.7,tropical storm,NA,35,1007,90,0 +Josephine,2020,8,15,18,19.6,-60.9,tropical storm,NA,35,1009,100,0 +Josephine,2020,8,16,0,19.8,-62.1,tropical storm,NA,35,1009,100,0 +Josephine,2020,8,16,6,20,-63.4,tropical depression,NA,30,1010,0,0 +Josephine,2020,8,16,12,20.2,-64.5,tropical depression,NA,30,1010,0,0 +Kyle,2020,8,14,12,36.6,-74.2,tropical storm,NA,35,1008,90,0 +Kyle,2020,8,14,18,37.4,-72.6,tropical storm,NA,35,1007,90,0 +Kyle,2020,8,15,0,38,-71,tropical storm,NA,40,1005,90,0 +Kyle,2020,8,15,6,38.4,-69.1,tropical storm,NA,45,1003,70,0 +Kyle,2020,8,15,12,38.8,-66.7,tropical storm,NA,45,1000,70,0 +Kyle,2020,8,15,18,39.3,-64.2,tropical storm,NA,40,1001,150,0 +Kyle,2020,8,16,0,39.7,-61.6,extratropical,NA,35,1003,220,0 +Laura,2020,8,20,0,14.4,-47.3,tropical depression,NA,30,1008,0,0 +Laura,2020,8,20,6,15.4,-49.6,tropical depression,NA,30,1008,0,0 +Laura,2020,8,20,12,16.1,-51.6,tropical depression,NA,30,1008,0,0 +Laura,2020,8,20,18,16.6,-53.4,tropical depression,NA,30,1008,0,0 +Laura,2020,8,21,0,16.8,-55.5,tropical depression,NA,30,1008,0,0 +Laura,2020,8,21,6,16.9,-57.5,tropical depression,NA,30,1008,0,0 +Laura,2020,8,21,12,17,-59.4,tropical storm,NA,40,1008,130,0 +Laura,2020,8,21,18,17.1,-61.1,tropical storm,NA,40,1007,150,0 +Laura,2020,8,21,20,17.1,-61.8,tropical storm,NA,40,1007,150,0 +Laura,2020,8,21,23,17.1,-62.6,tropical storm,NA,40,1007,150,0 +Laura,2020,8,22,0,17.1,-62.8,tropical storm,NA,40,1007,180,0 +Laura,2020,8,22,6,17.4,-64.4,tropical storm,NA,40,1007,180,0 +Laura,2020,8,22,12,17.7,-65.9,tropical storm,NA,45,1006,180,0 +Laura,2020,8,22,18,17.9,-67.4,tropical storm,NA,45,1004,180,0 +Laura,2020,8,23,0,18.2,-68.8,tropical storm,NA,45,1004,180,0 +Laura,2020,8,23,4,18.4,-70,tropical storm,NA,45,1004,180,0 +Laura,2020,8,23,6,18.5,-70.3,tropical storm,NA,45,1004,180,0 +Laura,2020,8,23,12,18.8,-72.3,tropical storm,NA,45,1004,160,0 +Laura,2020,8,23,18,19.4,-74.3,tropical storm,NA,55,1002,160,0 +Laura,2020,8,24,0,19.8,-76,tropical storm,NA,55,1000,160,0 +Laura,2020,8,24,2,20,-76.6,tropical storm,NA,55,1000,160,0 +Laura,2020,8,24,6,20.2,-77.8,tropical storm,NA,50,1000,150,0 +Laura,2020,8,24,12,20.8,-79.7,tropical storm,NA,50,1002,150,0 +Laura,2020,8,24,18,21.5,-81.5,tropical storm,NA,50,1001,150,0 +Laura,2020,8,25,0,22.3,-83.3,tropical storm,NA,55,998,150,0 +Laura,2020,8,25,6,22.8,-84.8,tropical storm,NA,60,995,230,0 +Laura,2020,8,25,12,23.4,-86.2,hurricane,1,65,990,230,40 +Laura,2020,8,25,18,24.1,-87.5,hurricane,1,70,990,230,40 +Laura,2020,8,26,0,24.9,-88.9,hurricane,1,75,983,230,80 +Laura,2020,8,26,6,25.6,-90.2,hurricane,2,90,978,230,90 +Laura,2020,8,26,12,26.4,-91.4,hurricane,3,100,963,230,90 +Laura,2020,8,26,18,27.3,-92.5,hurricane,4,120,952,260,90 +Laura,2020,8,27,0,28.5,-93,hurricane,4,130,937,250,90 +Laura,2020,8,27,6,29.8,-93.3,hurricane,4,130,939,230,80 +Laura,2020,8,27,12,31.2,-93.3,hurricane,2,85,970,180,50 +Laura,2020,8,27,18,32.8,-92.9,tropical storm,NA,55,988,120,0 +Laura,2020,8,28,0,34.4,-92.5,tropical storm,NA,35,993,120,0 +Laura,2020,8,28,6,35.4,-92,tropical depression,NA,25,998,0,0 +Laura,2020,8,28,12,36.1,-91.2,tropical depression,NA,25,1000,0,0 +Laura,2020,8,28,18,37,-90,tropical depression,NA,25,1003,0,0 +Laura,2020,8,29,0,37.5,-88,tropical depression,NA,25,1004,0,0 +Laura,2020,8,29,6,38.3,-84.8,other low,NA,20,1004,0,0 +Marco,2020,8,20,18,14.1,-80.5,other low,NA,30,1009,0,0 +Marco,2020,8,21,0,14.6,-81.8,other low,NA,30,1007,0,0 +Marco,2020,8,21,6,15.3,-82.9,tropical depression,NA,30,1007,0,0 +Marco,2020,8,21,12,16.3,-83.7,tropical depression,NA,30,1008,0,0 +Marco,2020,8,21,18,17.4,-84.2,tropical depression,NA,30,1007,0,0 +Marco,2020,8,22,0,18.3,-84.6,tropical storm,NA,35,1006,80,0 +Marco,2020,8,22,6,19.2,-85.1,tropical storm,NA,40,1004,60,0 +Marco,2020,8,22,12,20.3,-85.2,tropical storm,NA,55,993,70,0 +Marco,2020,8,22,18,21.3,-85.5,tropical storm,NA,55,992,120,0 +Marco,2020,8,23,0,22.2,-86.1,tropical storm,NA,55,994,100,0 +Marco,2020,8,23,6,23.2,-86.7,tropical storm,NA,60,994,80,0 +Marco,2020,8,23,12,24.3,-87.2,hurricane,1,65,991,100,15 +Marco,2020,8,23,18,25.3,-87.4,hurricane,1,65,992,130,15 +Marco,2020,8,24,0,26.4,-87.6,tropical storm,NA,55,997,120,0 +Marco,2020,8,24,6,27.3,-87.9,tropical storm,NA,50,1003,90,0 +Marco,2020,8,24,12,28.1,-88.3,tropical storm,NA,45,1006,90,0 +Marco,2020,8,24,18,28.7,-88.6,tropical storm,NA,40,1007,70,0 +Marco,2020,8,25,0,28.9,-89.3,tropical storm,NA,35,1006,70,0 +Marco,2020,8,25,6,28.7,-90.5,other low,NA,25,1008,0,0 +Marco,2020,8,25,12,28.6,-91.4,other low,NA,20,1009,0,0 +Marco,2020,8,25,18,29.1,-92.3,other low,NA,20,1009,0,0 +Omar,2020,8,30,18,30.2,-80.7,other low,NA,25,1011,0,0 +Omar,2020,8,31,0,30.2,-79.4,other low,NA,25,1010,0,0 +Omar,2020,8,31,6,30.6,-78.2,tropical depression,NA,30,1009,0,0 +Omar,2020,8,31,12,31.5,-77.4,tropical depression,NA,30,1009,0,0 +Omar,2020,8,31,18,32.2,-76.9,tropical depression,NA,30,1008,0,0 +Omar,2020,9,1,0,32.9,-76.2,tropical depression,NA,30,1007,0,0 +Omar,2020,9,1,6,33.8,-75,tropical depression,NA,30,1005,0,0 +Omar,2020,9,1,12,34.6,-73.7,tropical storm,NA,35,1003,70,0 +Omar,2020,9,1,18,35.2,-72.2,tropical storm,NA,35,1003,70,0 +Omar,2020,9,2,0,35.8,-70.7,tropical storm,NA,35,1003,70,0 +Omar,2020,9,2,6,36.1,-69.3,tropical storm,NA,35,1003,70,0 +Omar,2020,9,2,12,36.2,-68,tropical storm,NA,35,1003,70,0 +Omar,2020,9,2,18,36.2,-66.4,tropical storm,NA,35,1004,70,0 +Omar,2020,9,3,0,36.2,-64.8,tropical depression,NA,30,1005,0,0 +Omar,2020,9,3,6,36.1,-63,tropical depression,NA,30,1005,0,0 +Omar,2020,9,3,12,36.1,-61.7,tropical depression,NA,30,1005,0,0 +Omar,2020,9,3,18,35.6,-60.5,tropical depression,NA,30,1005,0,0 +Omar,2020,9,4,0,35.3,-59.5,tropical depression,NA,30,1006,0,0 +Omar,2020,9,4,6,35.3,-58.8,tropical depression,NA,30,1006,0,0 +Omar,2020,9,4,12,35.3,-58,tropical depression,NA,30,1006,0,0 +Omar,2020,9,4,18,35.3,-57.5,tropical depression,NA,30,1006,0,0 +Omar,2020,9,5,0,35.5,-57.3,tropical depression,NA,30,1007,0,0 +Omar,2020,9,5,6,36,-57.3,tropical depression,NA,30,1008,0,0 +Omar,2020,9,5,12,36.8,-57.3,tropical depression,NA,30,1009,0,0 +Omar,2020,9,5,18,37.7,-57.1,other low,NA,30,1010,0,0 +Omar,2020,9,6,0,38.8,-56.8,other low,NA,30,1011,0,0 +Omar,2020,9,6,6,40.4,-55.6,other low,NA,30,1012,0,0 +Nana,2020,9,1,6,15.9,-75.2,tropical storm,NA,35,1006,60,0 +Nana,2020,9,1,12,16.3,-76.8,tropical storm,NA,40,1004,60,0 +Nana,2020,9,1,18,16.7,-78.4,tropical storm,NA,50,1002,60,0 +Nana,2020,9,2,0,17,-80.1,tropical storm,NA,50,1000,90,0 +Nana,2020,9,2,6,17,-81.9,tropical storm,NA,50,998,90,0 +Nana,2020,9,2,12,17.1,-83.7,tropical storm,NA,50,998,90,0 +Nana,2020,9,2,18,17.1,-85.3,tropical storm,NA,50,998,90,0 +Nana,2020,9,3,0,17,-86.8,tropical storm,NA,60,994,100,0 +Nana,2020,9,3,3,16.9,-87.5,hurricane,1,65,994,100,10 +Nana,2020,9,3,6,16.8,-88.3,hurricane,1,65,994,100,10 +Nana,2020,9,3,12,16.4,-89.6,tropical storm,NA,45,1001,80,0 +Nana,2020,9,3,18,16.1,-90.5,tropical depression,NA,30,1005,0,0 +Nana,2020,9,4,0,15.8,-91.4,other low,NA,20,1007,0,0 +Paulette,2020,9,7,0,16.9,-41.3,tropical depression,NA,30,1006,0,0 +Paulette,2020,9,7,6,17,-41.8,tropical depression,NA,30,1006,0,0 +Paulette,2020,9,7,12,17.1,-42.1,tropical storm,NA,35,1005,60,0 +Paulette,2020,9,7,18,17.3,-42.3,tropical storm,NA,35,1005,60,0 +Paulette,2020,9,8,0,17.6,-42.4,tropical storm,NA,40,1004,70,0 +Paulette,2020,9,8,6,17.9,-42.6,tropical storm,NA,45,1000,140,0 +Paulette,2020,9,8,12,18.3,-43,tropical storm,NA,50,997,140,0 +Paulette,2020,9,8,18,18.6,-43.7,tropical storm,NA,50,997,140,0 +Paulette,2020,9,9,0,18.9,-44.5,tropical storm,NA,50,997,160,0 +Paulette,2020,9,9,6,19.2,-45.2,tropical storm,NA,50,997,190,0 +Paulette,2020,9,9,12,19.6,-46,tropical storm,NA,50,996,240,0 +Paulette,2020,9,9,18,20,-46.8,tropical storm,NA,50,996,240,0 +Paulette,2020,9,10,0,20.4,-47.6,tropical storm,NA,50,996,240,0 +Paulette,2020,9,10,6,20.8,-48.3,tropical storm,NA,50,996,240,0 +Paulette,2020,9,10,12,21.3,-48.9,tropical storm,NA,45,998,240,0 +Paulette,2020,9,10,18,21.8,-49.6,tropical storm,NA,45,998,240,0 +Paulette,2020,9,11,0,22.3,-50.3,tropical storm,NA,50,994,240,0 +Paulette,2020,9,11,6,22.8,-51.1,tropical storm,NA,55,991,240,0 +Paulette,2020,9,11,12,23.4,-52.1,tropical storm,NA,55,990,240,0 +Paulette,2020,9,11,18,24.3,-53.1,tropical storm,NA,55,989,240,0 +Paulette,2020,9,12,0,25.4,-54.3,tropical storm,NA,60,987,250,0 +Paulette,2020,9,12,6,26.4,-55.6,tropical storm,NA,60,986,250,0 +Paulette,2020,9,12,12,27.3,-56.7,tropical storm,NA,60,985,250,0 +Paulette,2020,9,12,18,28,-57.8,tropical storm,NA,60,984,270,0 +Paulette,2020,9,13,0,28.6,-59.1,hurricane,1,65,981,270,40 +Paulette,2020,9,13,6,29.1,-60.3,hurricane,1,65,980,270,40 +Paulette,2020,9,13,12,29.6,-61.4,hurricane,1,70,976,270,50 +Paulette,2020,9,13,18,30.2,-62.6,hurricane,1,75,974,250,50 +Paulette,2020,9,14,0,30.9,-63.6,hurricane,1,75,974,250,50 +Paulette,2020,9,14,6,31.8,-64.4,hurricane,1,80,973,250,50 +Paulette,2020,9,14,8,32.3,-64.7,hurricane,2,85,971,250,50 +Paulette,2020,9,14,12,32.9,-64.9,hurricane,2,85,968,250,50 +Paulette,2020,9,14,18,33.9,-64.4,hurricane,2,90,965,290,70 +Paulette,2020,9,15,0,35.1,-63.3,hurricane,2,90,965,330,100 +Paulette,2020,9,15,6,36.3,-62,hurricane,2,90,965,350,100 +Paulette,2020,9,15,12,37.6,-59.5,hurricane,2,90,965,380,100 +Paulette,2020,9,15,18,38.7,-56.7,hurricane,2,85,966,420,100 +Paulette,2020,9,16,0,40,-54,hurricane,2,85,966,420,100 +Paulette,2020,9,16,6,41.2,-50.8,hurricane,1,80,968,440,130 +Paulette,2020,9,16,12,42.6,-46.9,extratropical,NA,75,973,440,130 +Paulette,2020,9,16,18,44.3,-43.1,extratropical,NA,70,974,450,120 +Paulette,2020,9,17,0,45.9,-39.3,extratropical,NA,65,975,460,90 +Paulette,2020,9,17,6,47,-36.5,extratropical,NA,60,977,460,0 +Paulette,2020,9,17,12,47,-34.5,extratropical,NA,55,979,430,0 +Paulette,2020,9,17,18,46.6,-33,extratropical,NA,50,982,400,0 +Paulette,2020,9,18,0,46,-31.8,extratropical,NA,45,986,380,0 +Paulette,2020,9,18,6,44.6,-31.4,extratropical,NA,45,989,380,0 +Paulette,2020,9,18,12,42.8,-31.3,extratropical,NA,40,997,200,0 +Paulette,2020,9,18,18,41,-31.2,extratropical,NA,40,999,200,0 +Paulette,2020,9,19,0,39.1,-31.1,extratropical,NA,40,1002,120,0 +Paulette,2020,9,19,6,37.7,-31.1,other low,NA,40,1002,120,0 +Paulette,2020,9,19,12,36.5,-30.5,other low,NA,40,1006,120,0 +Paulette,2020,9,19,18,35.9,-29.8,other low,NA,35,1008,120,0 +Paulette,2020,9,20,0,35.7,-29.5,other low,NA,35,1008,90,0 +Paulette,2020,9,20,6,35.5,-29.4,other low,NA,35,1008,90,0 +Paulette,2020,9,20,12,35.1,-29.7,other low,NA,35,1008,90,0 +Paulette,2020,9,20,18,34.7,-30.6,tropical storm,NA,35,1008,90,0 +Paulette,2020,9,21,0,34.1,-31.2,tropical storm,NA,35,1008,90,0 +Paulette,2020,9,21,6,33.3,-31.2,tropical storm,NA,35,1008,90,0 +Paulette,2020,9,21,12,32.9,-29.8,tropical storm,NA,35,1008,90,0 +Paulette,2020,9,21,18,33.3,-28.1,tropical storm,NA,40,1008,130,0 +Paulette,2020,9,22,0,33.8,-26.3,tropical storm,NA,50,1004,100,0 +Paulette,2020,9,22,6,34.5,-24.6,tropical storm,NA,50,1002,90,0 +Paulette,2020,9,22,12,34.8,-23.1,other low,NA,40,1004,80,0 +Paulette,2020,9,22,18,34.7,-21.8,other low,NA,35,1006,80,0 +Paulette,2020,9,23,0,34.8,-20.5,other low,NA,35,1006,80,0 +Paulette,2020,9,23,6,35,-19.2,other low,NA,40,1006,70,0 +Paulette,2020,9,23,12,35.6,-18.1,other low,NA,45,1003,80,0 +Paulette,2020,9,23,18,36.2,-17.2,other low,NA,45,1003,80,0 +Paulette,2020,9,24,0,36.2,-16.7,other low,NA,40,1008,90,0 +Paulette,2020,9,24,6,35.9,-16.6,other low,NA,35,1010,70,0 +Paulette,2020,9,24,12,35.4,-17.2,other low,NA,35,1012,70,0 +Paulette,2020,9,24,18,34.6,-18.4,other low,NA,35,1013,70,0 +Paulette,2020,9,25,0,33.7,-19.8,other low,NA,35,1016,70,0 +Paulette,2020,9,25,6,33.4,-21.4,other low,NA,30,1017,0,0 +Paulette,2020,9,25,12,33,-23.2,other low,NA,30,1017,0,0 +Paulette,2020,9,25,18,33,-25.1,other low,NA,30,1017,0,0 +Paulette,2020,9,26,0,33.2,-26.8,other low,NA,30,1017,0,0 +Paulette,2020,9,26,6,33.7,-28.4,other low,NA,25,1017,0,0 +Paulette,2020,9,26,12,34.6,-29.5,other low,NA,25,1017,0,0 +Paulette,2020,9,26,18,35.4,-30.2,other low,NA,25,1017,0,0 +Paulette,2020,9,27,0,36.3,-30.3,other low,NA,25,1017,0,0 +Paulette,2020,9,27,6,36.7,-29.5,other low,NA,25,1017,0,0 +Paulette,2020,9,27,12,37,-28.4,other low,NA,25,1017,0,0 +Paulette,2020,9,27,18,36.9,-27.3,other low,NA,20,1018,0,0 +Paulette,2020,9,28,0,36.8,-26.4,other low,NA,20,1018,0,0 +Paulette,2020,9,28,6,36.5,-25.8,other low,NA,20,1018,0,0 +Paulette,2020,9,28,12,36.1,-25.5,other low,NA,20,1018,0,0 +Rene,2020,9,6,18,14.6,-18.1,other low,NA,25,1006,0,0 +Rene,2020,9,7,0,14.8,-19,other low,NA,25,1005,0,0 +Rene,2020,9,7,6,15.2,-19.8,tropical depression,NA,30,1004,0,0 +Rene,2020,9,7,12,15.6,-20.7,tropical depression,NA,30,1003,0,0 +Rene,2020,9,7,18,15.9,-21.8,tropical storm,NA,35,1002,40,0 +Rene,2020,9,8,0,16.1,-22.9,tropical storm,NA,35,1001,40,0 +Rene,2020,9,8,6,16.3,-24.2,tropical storm,NA,35,1001,40,0 +Rene,2020,9,8,12,16.4,-25.7,tropical storm,NA,35,1001,40,0 +Rene,2020,9,8,18,16.6,-27.1,tropical depression,NA,30,1003,0,0 +Rene,2020,9,9,0,16.8,-28.6,tropical depression,NA,30,1004,0,0 +Rene,2020,9,9,6,17.1,-30,tropical depression,NA,30,1004,0,0 +Rene,2020,9,9,12,17.3,-31.2,tropical storm,NA,35,1003,60,0 +Rene,2020,9,9,18,17.6,-32.4,tropical storm,NA,35,1003,60,0 +Rene,2020,9,10,0,17.9,-33.5,tropical storm,NA,35,1003,60,0 +Rene,2020,9,10,6,18.1,-34.4,tropical storm,NA,35,1003,60,0 +Rene,2020,9,10,12,18.4,-35.3,tropical storm,NA,40,1002,80,0 +Rene,2020,9,10,18,18.8,-36.3,tropical storm,NA,40,1002,80,0 +Rene,2020,9,11,0,19.1,-37.2,tropical storm,NA,35,1003,80,0 +Rene,2020,9,11,6,19.5,-38.2,tropical storm,NA,35,1003,80,0 +Rene,2020,9,11,12,19.9,-39.3,tropical storm,NA,35,1004,60,0 +Rene,2020,9,11,18,20.4,-40.6,tropical storm,NA,35,1004,60,0 +Rene,2020,9,12,0,21.1,-41.8,tropical storm,NA,35,1004,60,0 +Rene,2020,9,12,6,21.9,-42.9,tropical storm,NA,35,1004,50,0 +Rene,2020,9,12,12,22.8,-44,tropical depression,NA,30,1006,0,0 +Rene,2020,9,12,18,23.7,-45,tropical depression,NA,30,1007,0,0 +Rene,2020,9,13,0,24.7,-46,tropical depression,NA,30,1008,0,0 +Rene,2020,9,13,6,25.8,-46.9,tropical depression,NA,30,1009,0,0 +Rene,2020,9,13,12,26.7,-47.3,tropical depression,NA,30,1009,0,0 +Rene,2020,9,13,18,27.4,-47.5,tropical depression,NA,25,1009,0,0 +Rene,2020,9,14,0,27.5,-47.8,tropical depression,NA,25,1009,0,0 +Rene,2020,9,14,6,27.6,-48,tropical depression,NA,25,1009,0,0 +Rene,2020,9,14,12,27.5,-48.4,tropical depression,NA,25,1009,0,0 +Sally,2020,9,11,18,25.4,-78.6,tropical depression,NA,30,1007,0,0 +Sally,2020,9,12,0,25.6,-79.4,tropical depression,NA,30,1004,0,0 +Sally,2020,9,12,6,25.6,-80.2,tropical depression,NA,30,1003,0,0 +Sally,2020,9,12,12,25.5,-80.8,tropical storm,NA,35,1003,60,0 +Sally,2020,9,12,18,25.6,-81.6,tropical storm,NA,35,1003,70,0 +Sally,2020,9,13,0,26,-82.5,tropical storm,NA,35,1003,80,0 +Sally,2020,9,13,6,26.7,-83.5,tropical storm,NA,45,1001,100,0 +Sally,2020,9,13,12,27.2,-84.5,tropical storm,NA,50,996,120,0 +Sally,2020,9,13,18,27.6,-85.4,tropical storm,NA,50,996,150,0 +Sally,2020,9,14,0,27.9,-86,tropical storm,NA,50,996,170,0 +Sally,2020,9,14,6,28.2,-86.5,tropical storm,NA,55,996,210,0 +Sally,2020,9,14,12,28.4,-86.9,hurricane,1,65,991,210,20 +Sally,2020,9,14,18,28.6,-87.3,hurricane,1,75,986,200,30 +Sally,2020,9,15,0,28.7,-87.7,hurricane,1,75,986,200,35 +Sally,2020,9,15,6,28.8,-88,hurricane,1,70,984,200,45 +Sally,2020,9,15,12,29,-88.1,hurricane,1,70,982,200,50 +Sally,2020,9,15,18,29.3,-88.1,hurricane,1,70,981,190,45 +Sally,2020,9,16,0,29.6,-88,hurricane,1,75,975,190,55 +Sally,2020,9,16,6,29.9,-87.9,hurricane,2,95,967,190,55 +Sally,2020,9,16,9,30.3,-87.7,hurricane,2,95,965,180,55 +Sally,2020,9,16,12,30.5,-87.6,hurricane,2,85,967,190,50 +Sally,2020,9,16,18,31.1,-87.2,tropical storm,NA,60,982,200,0 +Sally,2020,9,17,0,31.6,-86.7,tropical storm,NA,35,994,140,0 +Sally,2020,9,17,6,32.1,-86.1,tropical depression,NA,30,1000,0,0 +Sally,2020,9,17,12,32.6,-85.2,extratropical,NA,30,1003,0,0 +Sally,2020,9,17,18,33.2,-83.8,extratropical,NA,30,1004,0,0 +Sally,2020,9,18,0,33.7,-82.3,extratropical,NA,30,1004,0,0 +Sally,2020,9,18,6,34.1,-80.8,extratropical,NA,30,1005,0,0 +Teddy,2020,9,12,6,11,-31.4,tropical depression,NA,25,1007,0,0 +Teddy,2020,9,12,12,11.2,-32.4,tropical depression,NA,30,1006,0,0 +Teddy,2020,9,12,18,11.4,-33.3,tropical depression,NA,30,1005,0,0 +Teddy,2020,9,13,0,11.6,-34.2,tropical depression,NA,30,1005,0,0 +Teddy,2020,9,13,6,11.9,-35.1,tropical depression,NA,30,1005,0,0 +Teddy,2020,9,13,12,12.2,-36.2,tropical depression,NA,30,1006,0,0 +Teddy,2020,9,13,18,12.6,-37.4,tropical depression,NA,30,1006,0,0 +Teddy,2020,9,14,0,12.9,-38.7,tropical storm,NA,35,1004,40,0 +Teddy,2020,9,14,6,12.9,-40.4,tropical storm,NA,35,1004,40,0 +Teddy,2020,9,14,12,12.9,-42.1,tropical storm,NA,35,1004,80,0 +Teddy,2020,9,14,18,12.9,-43.4,tropical storm,NA,40,1003,110,0 +Teddy,2020,9,15,0,13,-44.5,tropical storm,NA,45,1002,130,0 +Teddy,2020,9,15,6,13.4,-45.5,tropical storm,NA,50,1001,170,0 +Teddy,2020,9,15,12,13.8,-46.6,tropical storm,NA,55,999,220,0 +Teddy,2020,9,15,18,14.2,-47.4,tropical storm,NA,55,997,240,0 +Teddy,2020,9,16,0,14.7,-48,hurricane,1,65,987,230,20 +Teddy,2020,9,16,6,15.4,-48.6,hurricane,1,80,978,230,30 +Teddy,2020,9,16,12,16.1,-49.3,hurricane,2,85,972,240,45 +Teddy,2020,9,16,18,16.8,-50.2,hurricane,2,85,972,270,55 +Teddy,2020,9,17,0,17.4,-51.1,hurricane,2,85,970,300,55 +Teddy,2020,9,17,6,18.1,-52,hurricane,2,90,966,300,55 +Teddy,2020,9,17,12,18.9,-52.8,hurricane,3,100,960,300,70 +Teddy,2020,9,17,18,19.7,-53.7,hurricane,4,115,948,330,90 +Teddy,2020,9,18,0,20.4,-54.4,hurricane,4,120,945,330,90 +Teddy,2020,9,18,6,21.1,-55.1,hurricane,4,115,946,320,90 +Teddy,2020,9,18,12,21.7,-55.8,hurricane,3,110,947,320,90 +Teddy,2020,9,18,18,22.5,-56.5,hurricane,3,105,949,320,90 +Teddy,2020,9,19,0,23.5,-57.2,hurricane,3,105,945,320,90 +Teddy,2020,9,19,6,24.4,-57.9,hurricane,3,100,947,350,90 +Teddy,2020,9,19,12,25.4,-58.7,hurricane,3,100,950,350,90 +Teddy,2020,9,19,18,26.2,-59.7,hurricane,3,100,953,350,100 +Teddy,2020,9,20,0,26.9,-60.8,hurricane,2,95,956,360,130 +Teddy,2020,9,20,6,27.5,-61.9,hurricane,2,90,958,360,130 +Teddy,2020,9,20,12,28,-62.6,hurricane,2,85,963,360,120 +Teddy,2020,9,20,18,28.5,-63.3,hurricane,1,80,964,370,120 +Teddy,2020,9,21,0,29,-63.7,hurricane,1,80,963,370,120 +Teddy,2020,9,21,6,29.7,-63.5,hurricane,1,80,962,350,110 +Teddy,2020,9,21,12,30.5,-62.9,hurricane,1,80,960,350,120 +Teddy,2020,9,21,18,32.2,-61.8,hurricane,1,80,958,420,120 +Teddy,2020,9,22,0,34.6,-61.4,hurricane,2,85,956,420,130 +Teddy,2020,9,22,6,37.6,-62.1,hurricane,2,90,952,480,170 +Teddy,2020,9,22,12,39.1,-63.5,hurricane,2,90,949,740,200 +Teddy,2020,9,22,18,40.3,-64.2,hurricane,1,80,952,740,190 +Teddy,2020,9,23,0,41.8,-64.2,hurricane,1,65,954,740,190 +Teddy,2020,9,23,6,43.2,-63.3,extratropical,NA,60,957,700,0 +Teddy,2020,9,23,12,45,-62.1,extratropical,NA,55,964,360,0 +Teddy,2020,9,23,18,47.4,-60.4,extratropical,NA,50,974,360,0 +Teddy,2020,9,24,0,49.7,-58.2,extratropical,NA,45,975,360,0 +Teddy,2020,9,24,6,52.8,-55.8,extratropical,NA,40,977,210,0 +Vicky,2020,9,14,0,17.5,-28.2,tropical depression,NA,30,1008,0,0 +Vicky,2020,9,14,6,18,-28.3,tropical storm,NA,35,1006,90,0 +Vicky,2020,9,14,12,18.5,-28.6,tropical storm,NA,40,1003,90,0 +Vicky,2020,9,14,18,19,-29.1,tropical storm,NA,45,1002,90,0 +Vicky,2020,9,15,0,19.5,-29.6,tropical storm,NA,45,1002,90,0 +Vicky,2020,9,15,6,20,-30.1,tropical storm,NA,45,1002,90,0 +Vicky,2020,9,15,12,20.5,-30.8,tropical storm,NA,45,1001,100,0 +Vicky,2020,9,15,18,21,-31.6,tropical storm,NA,45,1001,100,0 +Vicky,2020,9,16,0,21.4,-32.6,tropical storm,NA,45,1004,120,0 +Vicky,2020,9,16,6,21.5,-33.5,tropical storm,NA,40,1005,100,0 +Vicky,2020,9,16,12,21.4,-34.3,tropical storm,NA,35,1007,100,0 +Vicky,2020,9,16,18,21.5,-35,tropical storm,NA,35,1007,100,0 +Vicky,2020,9,17,0,21.6,-35.6,tropical storm,NA,35,1007,60,0 +Vicky,2020,9,17,6,21.7,-36.4,tropical storm,NA,35,1008,60,0 +Vicky,2020,9,17,12,21.6,-37.6,tropical depression,NA,30,1008,0,0 +Vicky,2020,9,17,18,21.3,-38.7,tropical depression,NA,25,1008,0,0 +Vicky,2020,9,18,0,20.8,-39.4,other low,NA,25,1009,0,0 +Vicky,2020,9,18,6,20.5,-40.2,other low,NA,25,1009,0,0 +Vicky,2020,9,18,12,20.4,-41,other low,NA,25,1009,0,0 +Vicky,2020,9,18,18,20.3,-41.9,other low,NA,25,1009,0,0 +Vicky,2020,9,19,0,20.1,-42.9,other low,NA,20,1010,0,0 +Vicky,2020,9,19,6,19.9,-44,other low,NA,20,1011,0,0 +Vicky,2020,9,19,12,19.6,-45.1,other low,NA,20,1011,0,0 +Vicky,2020,9,19,18,19.3,-46.3,other low,NA,20,1012,0,0 +Beta,2020,9,17,6,21.1,-94.9,other low,NA,30,1007,0,0 +Beta,2020,9,17,12,21.5,-94.7,tropical depression,NA,30,1007,0,0 +Beta,2020,9,17,18,21.8,-94.4,tropical depression,NA,30,1005,0,0 +Beta,2020,9,18,0,22,-94.2,tropical depression,NA,30,1005,0,0 +Beta,2020,9,18,6,22.6,-94.1,tropical depression,NA,30,1005,0,0 +Beta,2020,9,18,12,23.2,-93.8,tropical depression,NA,30,1005,0,0 +Beta,2020,9,18,18,24.1,-93.1,tropical storm,NA,40,1003,90,0 +Beta,2020,9,19,0,25.2,-92.3,tropical storm,NA,50,1000,190,0 +Beta,2020,9,19,6,25.8,-92.3,tropical storm,NA,50,996,190,0 +Beta,2020,9,19,12,26.4,-92.4,tropical storm,NA,50,994,190,0 +Beta,2020,9,19,18,26.6,-92.2,tropical storm,NA,50,995,190,0 +Beta,2020,9,20,0,26.8,-92.1,tropical storm,NA,50,997,200,0 +Beta,2020,9,20,6,26.9,-92.5,tropical storm,NA,50,998,210,0 +Beta,2020,9,20,12,27.1,-92.8,tropical storm,NA,50,996,210,0 +Beta,2020,9,20,18,27.5,-93.6,tropical storm,NA,55,996,210,0 +Beta,2020,9,21,0,27.5,-94.1,tropical storm,NA,50,993,210,0 +Beta,2020,9,21,6,27.6,-94.8,tropical storm,NA,45,995,190,0 +Beta,2020,9,21,12,27.8,-95.5,tropical storm,NA,45,997,190,0 +Beta,2020,9,21,18,28.1,-96,tropical storm,NA,40,999,190,0 +Beta,2020,9,22,0,28.3,-96.3,tropical storm,NA,45,998,150,0 +Beta,2020,9,22,2,28.4,-96.4,tropical storm,NA,45,997,150,0 +Beta,2020,9,22,6,28.6,-96.6,tropical storm,NA,40,999,120,0 +Beta,2020,9,22,12,28.8,-96.8,tropical storm,NA,35,1002,110,0 +Beta,2020,9,22,18,28.9,-96.5,tropical depression,NA,25,1006,0,0 +Beta,2020,9,23,0,29,-95.8,extratropical,NA,25,1007,0,0 +Beta,2020,9,23,6,29.4,-95.4,extratropical,NA,25,1007,0,0 +Beta,2020,9,23,12,30,-94.6,extratropical,NA,25,1007,0,0 +Beta,2020,9,23,18,30.3,-93.8,extratropical,NA,25,1006,0,0 +Beta,2020,9,24,0,30.8,-92.4,extratropical,NA,25,1005,0,0 +Beta,2020,9,24,6,31.6,-91.5,extratropical,NA,25,1004,0,0 +Beta,2020,9,24,12,32.4,-90.6,extratropical,NA,25,1003,0,0 +Beta,2020,9,24,18,33,-89.1,extratropical,NA,20,1008,0,0 +Beta,2020,9,25,0,33.6,-87.6,extratropical,NA,20,1009,0,0 +Beta,2020,9,25,6,34.1,-86.5,extratropical,NA,15,1010,0,0 +Wilfred,2020,9,17,0,10.2,-25,other low,NA,25,1009,0,0 +Wilfred,2020,9,17,6,10.3,-25.9,other low,NA,25,1009,0,0 +Wilfred,2020,9,17,12,10.5,-27,other low,NA,30,1008,0,0 +Wilfred,2020,9,17,18,10.8,-28.1,tropical storm,NA,35,1007,130,0 +Wilfred,2020,9,18,0,11.1,-29.3,tropical storm,NA,35,1006,130,0 +Wilfred,2020,9,18,6,11.4,-30.6,tropical storm,NA,35,1006,120,0 +Wilfred,2020,9,18,12,11.7,-32,tropical storm,NA,35,1006,110,0 +Wilfred,2020,9,18,18,12,-33.5,tropical storm,NA,35,1006,100,0 +Wilfred,2020,9,19,0,12.4,-35,tropical storm,NA,35,1006,90,0 +Wilfred,2020,9,19,6,12.8,-36.2,tropical storm,NA,35,1006,140,0 +Wilfred,2020,9,19,12,13.2,-37.3,tropical storm,NA,35,1006,130,0 +Wilfred,2020,9,19,18,13.7,-38.5,tropical storm,NA,35,1006,90,0 +Wilfred,2020,9,20,0,14.3,-39.9,tropical storm,NA,35,1007,90,0 +Wilfred,2020,9,20,6,14.9,-41.5,tropical storm,NA,35,1007,90,0 +Wilfred,2020,9,20,12,15.4,-43.2,tropical depression,NA,30,1008,0,0 +Wilfred,2020,9,20,18,15.8,-45,tropical depression,NA,30,1009,0,0 +Wilfred,2020,9,21,0,15.8,-46.7,tropical depression,NA,30,1009,0,0 +Gamma,2020,10,2,0,16.6,-83.3,other low,NA,30,1006,0,0 +Gamma,2020,10,2,6,17.2,-83.9,tropical depression,NA,30,1006,0,0 +Gamma,2020,10,2,12,17.8,-84.4,tropical depression,NA,30,1005,0,0 +Gamma,2020,10,2,18,18.4,-85,tropical storm,NA,35,1002,40,0 +Gamma,2020,10,3,0,18.8,-85.8,tropical storm,NA,40,998,40,0 +Gamma,2020,10,3,6,19.2,-86.6,tropical storm,NA,45,995,80,0 +Gamma,2020,10,3,12,19.7,-87.1,tropical storm,NA,55,986,120,0 +Gamma,2020,10,3,16,20.2,-87.4,hurricane,1,65,978,120,15 +Gamma,2020,10,3,18,20.4,-87.5,tropical storm,NA,60,980,120,0 +Gamma,2020,10,4,0,21,-87.9,tropical storm,NA,50,991,160,0 +Gamma,2020,10,4,6,21.8,-88.2,tropical storm,NA,45,997,120,0 +Gamma,2020,10,4,12,22.3,-88.1,tropical storm,NA,50,995,160,0 +Gamma,2020,10,4,18,22.7,-87.7,tropical storm,NA,55,994,200,0 +Gamma,2020,10,5,0,22.9,-87.4,tropical storm,NA,50,998,210,0 +Gamma,2020,10,5,6,22.8,-87.4,tropical storm,NA,45,999,140,0 +Gamma,2020,10,5,12,22.6,-87.5,tropical storm,NA,40,1001,140,0 +Gamma,2020,10,5,18,22.3,-87.9,tropical depression,NA,30,1005,0,0 +Gamma,2020,10,6,0,21.9,-88.2,tropical depression,NA,30,1005,0,0 +Gamma,2020,10,6,3,21.6,-88.4,tropical depression,NA,30,1005,0,0 +Gamma,2020,10,6,6,21.3,-88.5,tropical depression,NA,30,1005,0,0 +Gamma,2020,10,6,12,20.6,-88.5,tropical depression,NA,25,1007,0,0 +Delta,2020,10,4,18,16.4,-76.2,tropical depression,NA,30,1006,0,0 +Delta,2020,10,5,0,16.4,-77,tropical depression,NA,30,1006,0,0 +Delta,2020,10,5,6,16.4,-77.7,tropical depression,NA,30,1006,0,0 +Delta,2020,10,5,12,16.4,-78.4,tropical storm,NA,40,1004,70,0 +Delta,2020,10,5,18,16.4,-79.1,tropical storm,NA,55,985,110,0 +Delta,2020,10,6,0,16.6,-79.8,hurricane,1,65,980,100,15 +Delta,2020,10,6,6,17.1,-80.7,hurricane,1,75,973,120,30 +Delta,2020,10,6,12,17.8,-82,hurricane,3,100,959,150,30 +Delta,2020,10,6,18,18.5,-83.3,hurricane,4,120,953,160,40 +Delta,2020,10,7,0,19.3,-84.6,hurricane,3,100,962,160,40 +Delta,2020,10,7,6,20.1,-85.9,hurricane,2,90,968,190,35 +Delta,2020,10,7,10,20.8,-86.9,hurricane,2,90,971,200,35 +Delta,2020,10,7,12,21.1,-87.4,hurricane,2,85,973,190,45 +Delta,2020,10,7,18,21.7,-88.8,hurricane,1,75,978,190,45 +Delta,2020,10,8,0,22.3,-90.2,hurricane,1,80,973,190,45 +Delta,2020,10,8,6,23,-91.4,hurricane,2,85,973,210,45 +Delta,2020,10,8,12,23.7,-92.4,hurricane,2,90,969,220,50 +Delta,2020,10,8,18,24.5,-93.1,hurricane,3,100,960,240,50 +Delta,2020,10,9,0,25.3,-93.5,hurricane,3,105,953,240,60 +Delta,2020,10,9,6,26.3,-93.7,hurricane,3,105,953,240,60 +Delta,2020,10,9,12,27.5,-93.8,hurricane,3,100,958,240,60 +Delta,2020,10,9,18,28.7,-93.6,hurricane,2,90,966,250,60 +Delta,2020,10,9,23,29.8,-93.1,hurricane,2,85,970,250,60 +Delta,2020,10,10,0,30.1,-92.9,hurricane,1,75,971,240,40 +Delta,2020,10,10,6,31.4,-92.2,tropical storm,NA,50,985,210,0 +Delta,2020,10,10,12,32.5,-91.4,tropical storm,NA,35,993,60,0 +Delta,2020,10,10,18,33.3,-90.6,extratropical,NA,25,998,0,0 +Delta,2020,10,11,0,33.9,-89.6,extratropical,NA,25,1002,0,0 +Delta,2020,10,11,6,34.4,-88.6,extratropical,NA,25,1004,0,0 +Delta,2020,10,11,12,34.8,-87.5,extratropical,NA,20,1005,0,0 +Delta,2020,10,11,18,35.1,-86.3,extratropical,NA,20,1007,0,0 +Epsilon,2020,10,16,12,31.5,-54.9,other low,NA,20,1013,0,0 +Epsilon,2020,10,16,18,31.2,-55.1,other low,NA,25,1011,0,0 +Epsilon,2020,10,17,0,30.9,-55.5,other low,NA,30,1009,0,0 +Epsilon,2020,10,17,6,30.7,-55.9,other low,NA,30,1009,0,0 +Epsilon,2020,10,17,12,30.3,-56.2,other low,NA,30,1008,0,0 +Epsilon,2020,10,17,18,29.7,-56.3,other low,NA,30,1008,0,0 +Epsilon,2020,10,18,0,28.9,-56.3,other low,NA,30,1006,0,0 +Epsilon,2020,10,18,6,28.1,-56.3,other low,NA,30,1004,0,0 +Epsilon,2020,10,18,12,27.3,-56.4,other low,NA,30,1004,0,0 +Epsilon,2020,10,18,18,26.4,-56.6,other low,NA,30,1003,0,0 +Epsilon,2020,10,19,0,25.7,-56.3,other low,NA,30,1003,0,0 +Epsilon,2020,10,19,6,25.5,-55.9,tropical depression,NA,30,1003,0,0 +Epsilon,2020,10,19,12,25.4,-55.6,tropical storm,NA,35,1000,200,0 +Epsilon,2020,10,19,18,25.3,-55.4,tropical storm,NA,40,998,270,0 +Epsilon,2020,10,20,0,25.2,-55.2,tropical storm,NA,40,998,300,0 +Epsilon,2020,10,20,6,25.5,-54.9,tropical storm,NA,45,996,320,0 +Epsilon,2020,10,20,12,26.2,-54.7,tropical storm,NA,50,994,360,0 +Epsilon,2020,10,20,18,27.3,-55.3,tropical storm,NA,55,992,400,0 +Epsilon,2020,10,21,0,28.3,-56.3,hurricane,1,65,987,460,20 +Epsilon,2020,10,21,6,28.7,-57.7,hurricane,1,75,976,460,35 +Epsilon,2020,10,21,12,28.9,-58.7,hurricane,2,85,968,460,35 +Epsilon,2020,10,21,18,29.3,-59.6,hurricane,3,100,955,460,35 +Epsilon,2020,10,22,0,29.5,-60.4,hurricane,3,100,952,450,35 +Epsilon,2020,10,22,6,30.2,-60.9,hurricane,2,90,958,470,35 +Epsilon,2020,10,22,12,30.8,-61.3,hurricane,1,80,965,440,25 +Epsilon,2020,10,22,18,31.5,-61.5,hurricane,1,75,968,410,25 +Epsilon,2020,10,23,0,32.2,-61.6,hurricane,1,75,968,430,25 +Epsilon,2020,10,23,6,32.9,-61.6,hurricane,1,75,968,450,30 +Epsilon,2020,10,23,12,33.7,-61.6,hurricane,1,75,966,470,50 +Epsilon,2020,10,23,18,34.9,-61.7,hurricane,1,75,964,490,70 +Epsilon,2020,10,24,0,36.1,-62,hurricane,1,75,962,520,100 +Epsilon,2020,10,24,6,36.8,-62.1,hurricane,1,75,957,560,110 +Epsilon,2020,10,24,12,37.4,-61.3,hurricane,1,75,957,610,120 +Epsilon,2020,10,24,18,38.6,-59.7,hurricane,1,70,960,610,70 +Epsilon,2020,10,25,0,40.3,-57.6,hurricane,1,65,962,600,60 +Epsilon,2020,10,25,6,42,-55.2,hurricane,1,65,963,580,60 +Epsilon,2020,10,25,12,43.3,-51.8,hurricane,1,65,964,560,60 +Epsilon,2020,10,25,18,45,-46.9,tropical storm,NA,60,966,550,0 +Epsilon,2020,10,26,0,47.2,-41.2,tropical storm,NA,60,968,560,0 +Epsilon,2020,10,26,6,49.5,-34.7,extratropical,NA,60,969,540,0 +Epsilon,2020,10,26,12,52.1,-28.5,extratropical,NA,60,964,520,0 +Zeta,2020,10,24,12,18.4,-82.6,tropical depression,NA,25,1007,0,0 +Zeta,2020,10,24,18,18.2,-83,tropical depression,NA,30,1006,0,0 +Zeta,2020,10,25,0,18,-83.2,tropical storm,NA,35,1005,60,0 +Zeta,2020,10,25,6,17.7,-83.5,tropical storm,NA,40,1004,70,0 +Zeta,2020,10,25,12,17.8,-83.6,tropical storm,NA,45,1003,70,0 +Zeta,2020,10,25,18,18,-83.7,tropical storm,NA,50,1000,120,0 +Zeta,2020,10,26,0,18.2,-83.8,tropical storm,NA,55,996,150,0 +Zeta,2020,10,26,6,18.5,-84.1,hurricane,1,65,993,150,20 +Zeta,2020,10,26,12,18.9,-84.8,hurricane,1,65,990,150,20 +Zeta,2020,10,26,18,19.4,-85.7,hurricane,1,70,984,170,20 +Zeta,2020,10,27,0,19.9,-86.6,hurricane,1,70,980,180,40 +Zeta,2020,10,27,3,20.4,-87.4,hurricane,1,75,977,180,40 +Zeta,2020,10,27,6,20.6,-87.9,hurricane,1,65,981,190,20 +Zeta,2020,10,27,12,21.3,-89,tropical storm,NA,60,985,190,0 +Zeta,2020,10,27,18,22.2,-90,tropical storm,NA,55,988,190,0 +Zeta,2020,10,28,0,23.2,-90.8,tropical storm,NA,55,990,190,0 +Zeta,2020,10,28,6,24.4,-91.5,hurricane,1,65,984,190,30 +Zeta,2020,10,28,12,26,-91.7,hurricane,1,80,978,190,30 +Zeta,2020,10,28,18,28,-91.1,hurricane,2,95,973,190,30 +Zeta,2020,10,28,21,29.2,-90.6,hurricane,3,100,970,190,35 +Zeta,2020,10,29,0,30.2,-89.9,hurricane,2,85,973,160,40 +Zeta,2020,10,29,6,32.8,-87.5,tropical storm,NA,60,986,150,0 +Zeta,2020,10,29,12,35.3,-83.6,tropical storm,NA,45,990,180,0 +Zeta,2020,10,29,18,37.8,-78.2,extratropical,NA,45,992,270,0 +Zeta,2020,10,30,0,39.5,-71.7,extratropical,NA,45,993,450,0 +Eta,2020,10,31,18,14.9,-72.4,tropical depression,NA,30,1006,0,0 +Eta,2020,11,1,0,14.9,-73.6,tropical storm,NA,35,1005,50,0 +Eta,2020,11,1,6,14.9,-75.1,tropical storm,NA,35,1005,50,0 +Eta,2020,11,1,12,14.9,-76.7,tropical storm,NA,40,1002,50,0 +Eta,2020,11,1,18,14.9,-78.2,tropical storm,NA,50,992,120,0 +Eta,2020,11,2,0,14.9,-79.4,tropical storm,NA,60,988,160,0 +Eta,2020,11,2,6,14.9,-80.4,hurricane,1,70,982,180,20 +Eta,2020,11,2,12,14.8,-81.2,hurricane,2,90,972,150,30 +Eta,2020,11,2,18,14.7,-82,hurricane,4,115,948,160,35 +Eta,2020,11,3,0,14.3,-82.5,hurricane,4,130,929,160,40 +Eta,2020,11,3,6,14,-82.9,hurricane,4,130,922,160,40 +Eta,2020,11,3,12,13.6,-83.1,hurricane,4,125,936,170,40 +Eta,2020,11,3,18,13.7,-83.3,hurricane,4,120,940,160,40 +Eta,2020,11,3,21,13.8,-83.5,hurricane,4,120,940,160,40 +Eta,2020,11,4,0,13.8,-83.7,hurricane,2,95,965,160,40 +Eta,2020,11,4,6,13.8,-84.3,hurricane,1,70,980,160,40 +Eta,2020,11,4,12,13.8,-84.9,tropical storm,NA,50,993,140,0 +Eta,2020,11,4,18,13.9,-85.4,tropical storm,NA,40,998,110,0 +Eta,2020,11,5,0,14,-86,tropical depression,NA,30,1002,0,0 +Eta,2020,11,5,6,14.2,-86.7,disturbance,NA,25,1006,0,0 +Eta,2020,11,5,12,14.5,-87.5,disturbance,NA,25,1005,0,0 +Eta,2020,11,5,18,15.3,-87.8,disturbance,NA,30,1005,0,0 +Eta,2020,11,6,0,16.2,-87.8,disturbance,NA,30,1004,0,0 +Eta,2020,11,6,6,16.7,-87.6,tropical depression,NA,30,1004,0,0 +Eta,2020,11,6,12,16.9,-87.4,tropical depression,NA,30,1004,0,0 +Eta,2020,11,6,18,17.1,-87.1,tropical depression,NA,30,1004,0,0 +Eta,2020,11,7,0,17.5,-86.4,tropical depression,NA,30,1002,0,0 +Eta,2020,11,7,6,18.2,-85.1,tropical storm,NA,35,1001,50,0 +Eta,2020,11,7,12,19.1,-83.2,tropical storm,NA,45,997,50,0 +Eta,2020,11,7,18,19.8,-81.5,tropical storm,NA,55,994,120,0 +Eta,2020,11,8,0,20.4,-80.2,tropical storm,NA,55,991,150,0 +Eta,2020,11,8,6,21.1,-79.5,tropical storm,NA,55,991,180,0 +Eta,2020,11,8,8,21.5,-79.2,tropical storm,NA,55,991,180,0 +Eta,2020,11,8,12,22.2,-79,tropical storm,NA,50,993,220,0 +Eta,2020,11,8,18,23.5,-79.2,tropical storm,NA,55,993,240,0 +Eta,2020,11,9,0,24.5,-80.1,tropical storm,NA,55,993,250,0 +Eta,2020,11,9,4,24.9,-80.7,tropical storm,NA,55,993,250,0 +Eta,2020,11,9,6,25,-81.4,tropical storm,NA,55,992,200,0 +Eta,2020,11,9,12,24.9,-82.9,tropical storm,NA,50,992,170,0 +Eta,2020,11,9,18,24.2,-84.1,tropical storm,NA,45,995,150,0 +Eta,2020,11,10,0,23.4,-85,tropical storm,NA,45,995,120,0 +Eta,2020,11,10,6,23,-85.4,tropical storm,NA,45,995,120,0 +Eta,2020,11,10,12,22.6,-85.3,tropical storm,NA,50,992,120,0 +Eta,2020,11,10,18,22.9,-85.1,tropical storm,NA,50,992,120,0 +Eta,2020,11,11,0,23.5,-84.6,tropical storm,NA,55,990,140,0 +Eta,2020,11,11,6,24.5,-84.2,tropical storm,NA,60,987,140,0 +Eta,2020,11,11,12,25.8,-83.9,hurricane,1,65,983,140,50 +Eta,2020,11,11,18,26.8,-83.7,tropical storm,NA,60,990,190,0 +Eta,2020,11,12,0,27.9,-83.5,tropical storm,NA,55,992,190,0 +Eta,2020,11,12,6,28.7,-83.2,tropical storm,NA,50,994,160,0 +Eta,2020,11,12,9,29.2,-82.9,tropical storm,NA,45,996,160,0 +Eta,2020,11,12,12,29.7,-82.5,tropical storm,NA,40,1001,160,0 +Eta,2020,11,12,18,30.9,-81.3,tropical storm,NA,35,1003,160,0 +Eta,2020,11,13,0,31.9,-79.9,tropical storm,NA,40,1004,160,0 +Eta,2020,11,13,6,32.7,-78,tropical storm,NA,40,1004,160,0 +Eta,2020,11,13,12,34,-75.3,extratropical,NA,40,1004,160,0 +Eta,2020,11,13,18,35.1,-72.5,extratropical,NA,40,1005,160,0 +Eta,2020,11,14,0,35.7,-69.2,extratropical,NA,35,1006,160,0 +Theta,2020,11,8,12,28.4,-47.5,extratropical,NA,25,1010,0,0 +Theta,2020,11,8,18,28.4,-46.8,extratropical,NA,25,1010,0,0 +Theta,2020,11,9,0,28.5,-45.9,extratropical,NA,25,1010,0,0 +Theta,2020,11,9,6,28.6,-44.9,extratropical,NA,30,1007,0,0 +Theta,2020,11,9,12,28.8,-43.7,extratropical,NA,35,1005,70,0 +Theta,2020,11,9,18,28.8,-42.4,extratropical,NA,40,1003,70,0 +Theta,2020,11,10,0,28.8,-41,subtropical storm,NA,50,999,170,0 +Theta,2020,11,10,6,28.8,-39.5,subtropical storm,NA,55,994,170,0 +Theta,2020,11,10,12,28.9,-38,subtropical storm,NA,60,989,210,0 +Theta,2020,11,10,18,29,-36.7,tropical storm,NA,60,987,210,0 +Theta,2020,11,11,0,29.2,-35.8,tropical storm,NA,55,988,270,0 +Theta,2020,11,11,6,29.4,-34.9,tropical storm,NA,55,988,270,0 +Theta,2020,11,11,12,29.6,-33.8,tropical storm,NA,55,989,270,0 +Theta,2020,11,11,18,30.3,-32.5,tropical storm,NA,55,989,270,0 +Theta,2020,11,12,0,31.1,-31.9,tropical storm,NA,60,987,280,0 +Theta,2020,11,12,6,31.5,-30.8,tropical storm,NA,55,988,280,0 +Theta,2020,11,12,12,31.5,-29.4,tropical storm,NA,55,989,280,0 +Theta,2020,11,12,18,31.7,-28,tropical storm,NA,55,990,280,0 +Theta,2020,11,13,0,31.9,-26.7,tropical storm,NA,50,992,310,0 +Theta,2020,11,13,6,31.9,-25.4,tropical storm,NA,50,993,310,0 +Theta,2020,11,13,12,31.9,-24.2,tropical storm,NA,45,994,310,0 +Theta,2020,11,13,18,32,-23.1,tropical storm,NA,45,996,290,0 +Theta,2020,11,14,0,32,-22.1,tropical storm,NA,40,997,210,0 +Theta,2020,11,14,6,31.9,-21.2,tropical storm,NA,35,999,160,0 +Theta,2020,11,14,12,31.8,-20.4,tropical storm,NA,35,1000,160,0 +Theta,2020,11,14,18,31.7,-19.6,tropical storm,NA,35,1002,160,0 +Theta,2020,11,15,0,31.7,-18.9,tropical storm,NA,35,1003,80,0 +Theta,2020,11,15,6,31.6,-18.5,tropical depression,NA,30,1005,0,0 +Theta,2020,11,15,12,31.4,-18.3,other low,NA,30,1009,0,0 +Theta,2020,11,15,18,31.6,-18,other low,NA,30,1012,0,0 +Theta,2020,11,16,0,32.1,-17.9,other low,NA,30,1013,0,0 +Theta,2020,11,16,6,32.7,-18.2,other low,NA,25,1014,0,0 +Theta,2020,11,16,12,33.4,-18.6,other low,NA,25,1014,0,0 +Iota,2020,11,12,12,15.5,-70.9,other low,NA,25,1009,0,0 +Iota,2020,11,12,18,15.3,-71.9,other low,NA,25,1009,0,0 +Iota,2020,11,13,0,15,-72.7,other low,NA,25,1008,0,0 +Iota,2020,11,13,6,14.7,-73.3,other low,NA,25,1007,0,0 +Iota,2020,11,13,12,14.4,-73.7,tropical depression,NA,30,1006,0,0 +Iota,2020,11,13,18,14,-74.1,tropical storm,NA,35,1005,80,0 +Iota,2020,11,14,0,13.6,-74.5,tropical storm,NA,35,1005,80,0 +Iota,2020,11,14,6,13.3,-75,tropical storm,NA,35,1004,80,0 +Iota,2020,11,14,12,12.9,-75.7,tropical storm,NA,40,1002,80,0 +Iota,2020,11,14,18,12.5,-76.4,tropical storm,NA,45,997,80,0 +Iota,2020,11,15,0,12.6,-76.7,tropical storm,NA,55,992,150,0 +Iota,2020,11,15,6,13,-77.1,hurricane,1,65,988,170,20 +Iota,2020,11,15,12,13.1,-78,hurricane,1,70,982,190,40 +Iota,2020,11,15,18,13.2,-78.9,hurricane,1,75,974,220,40 +Iota,2020,11,16,0,13.2,-79.8,hurricane,2,90,961,260,50 +Iota,2020,11,16,6,13.4,-80.7,hurricane,4,120,935,290,65 +Iota,2020,11,16,12,13.5,-81.5,hurricane,4,135,917,310,70 +Iota,2020,11,16,18,13.5,-82.3,hurricane,4,130,918,310,70 +Iota,2020,11,17,0,13.6,-83,hurricane,4,130,918,310,70 +Iota,2020,11,17,3,13.6,-83.5,hurricane,4,125,922,310,65 +Iota,2020,11,17,6,13.7,-83.8,hurricane,3,110,935,310,50 +Iota,2020,11,17,12,13.7,-84.7,hurricane,1,75,965,270,30 +Iota,2020,11,17,18,13.7,-85.7,tropical storm,NA,55,988,210,0 +Iota,2020,11,18,0,13.8,-86.7,tropical storm,NA,40,1000,140,0 +Iota,2020,11,18,6,13.8,-87.8,tropical storm,NA,35,1005,140,0 +Iota,2020,11,18,12,13.7,-89,tropical depression,NA,25,1006,0,0 +Ana,2021,5,20,0,30.3,-55.5,extratropical,NA,30,1015,0,0 +Ana,2021,5,20,6,31.5,-54.5,extratropical,NA,35,1013,100,0 +Ana,2021,5,20,12,33,-53,extratropical,NA,40,1012,150,0 +Ana,2021,5,20,18,34.2,-53.8,extratropical,NA,45,1010,210,0 +Ana,2021,5,21,0,34.8,-55,extratropical,NA,50,1008,270,0 +Ana,2021,5,21,6,35.5,-57,extratropical,NA,50,1006,300,0 +Ana,2021,5,21,12,35.7,-59.3,extratropical,NA,45,1005,330,0 +Ana,2021,5,21,18,35,-61.1,extratropical,NA,45,1005,270,0 +Ana,2021,5,22,0,34.5,-61.8,extratropical,NA,40,1006,180,0 +Ana,2021,5,22,6,34.2,-62.1,subtropical storm,NA,35,1006,120,0 +Ana,2021,5,22,12,34.3,-62.7,subtropical storm,NA,35,1006,90,0 +Ana,2021,5,22,18,34.2,-62.4,subtropical storm,NA,35,1006,40,0 +Ana,2021,5,23,0,34.7,-61.8,tropical storm,NA,40,1005,40,0 +Ana,2021,5,23,6,35.4,-61.1,tropical storm,NA,40,1004,40,0 +Ana,2021,5,23,12,36.1,-60.3,tropical storm,NA,35,1005,30,0 +Ana,2021,5,23,18,36.8,-58.7,other low,NA,35,1006,30,0 +Ana,2021,5,24,0,37.6,-56.7,other low,NA,35,1007,30,0 +Bill,2021,6,13,18,31.9,-78.1,other low,NA,20,1008,0,0 +Bill,2021,6,14,0,32.5,-77.1,other low,NA,20,1007,0,0 +Bill,2021,6,14,6,33.2,-75.9,tropical depression,NA,25,1006,0,0 +Bill,2021,6,14,12,34,-74.5,tropical depression,NA,30,1005,0,0 +Bill,2021,6,14,18,34.9,-72.8,tropical storm,NA,35,1003,60,0 +Bill,2021,6,15,0,36,-70.8,tropical storm,NA,40,1000,80,0 +Bill,2021,6,15,6,37.6,-67.8,tropical storm,NA,50,996,80,0 +Bill,2021,6,15,12,39.4,-64,tropical storm,NA,55,992,80,0 +Bill,2021,6,15,18,40.9,-60.8,tropical storm,NA,45,997,100,0 +Bill,2021,6,16,0,42.5,-57.9,extratropical,NA,35,1002,100,0 +Claudette,2021,6,17,18,22.5,-92.2,disturbance,NA,25,1008,0,0 +Claudette,2021,6,18,0,23.5,-91.8,disturbance,NA,30,1007,0,0 +Claudette,2021,6,18,6,24.6,-91.4,disturbance,NA,35,1007,150,0 +Claudette,2021,6,18,12,25.9,-91.2,disturbance,NA,35,1007,150,0 +Claudette,2021,6,18,18,27.2,-91.1,disturbance,NA,40,1006,180,0 +Claudette,2021,6,19,0,28.4,-91.2,tropical storm,NA,40,1005,180,0 +Claudette,2021,6,19,4,29.2,-91,tropical storm,NA,40,1003,180,0 +Claudette,2021,6,19,6,29.5,-90.8,tropical storm,NA,40,1003,180,0 +Claudette,2021,6,19,12,30.6,-89.9,tropical storm,NA,35,1004,180,0 +Claudette,2021,6,19,18,31.5,-88.8,tropical depression,NA,30,1005,0,0 +Claudette,2021,6,20,0,32.4,-87.8,tropical depression,NA,25,1005,0,0 +Claudette,2021,6,20,6,33.1,-86.5,tropical depression,NA,25,1006,0,0 +Claudette,2021,6,20,12,33.5,-84.8,tropical depression,NA,25,1007,0,0 +Claudette,2021,6,20,18,33.8,-83.1,tropical depression,NA,25,1008,0,0 +Claudette,2021,6,21,0,34.2,-81.2,tropical depression,NA,30,1007,0,0 +Claudette,2021,6,21,6,35,-79.1,tropical storm,NA,40,1006,110,0 +Claudette,2021,6,21,12,36,-76.5,tropical storm,NA,40,1005,130,0 +Claudette,2021,6,21,18,37,-73.5,tropical storm,NA,40,1004,130,0 +Claudette,2021,6,22,0,38.4,-70.7,tropical storm,NA,40,1004,150,0 +Claudette,2021,6,22,6,39.7,-67.8,extratropical,NA,40,1004,170,0 +Claudette,2021,6,22,12,41.2,-65.2,extratropical,NA,40,1004,170,0 +Claudette,2021,6,22,18,42.6,-62.4,extratropical,NA,40,1004,170,0 +Claudette,2021,6,23,0,44.1,-59.6,extratropical,NA,35,1004,100,0 +Danny,2021,6,27,18,29.8,-72.8,tropical depression,NA,30,1013,0,0 +Danny,2021,6,28,0,30.1,-74.5,tropical depression,NA,30,1013,0,0 +Danny,2021,6,28,6,30.7,-76.1,tropical storm,NA,35,1011,40,0 +Danny,2021,6,28,12,31.5,-77.6,tropical storm,NA,35,1011,70,0 +Danny,2021,6,28,18,32,-79.5,tropical storm,NA,40,1009,70,0 +Danny,2021,6,28,23,32.3,-80.5,tropical storm,NA,35,1010,40,0 +Danny,2021,6,29,0,32.4,-80.7,tropical depression,NA,30,1011,0,0 +Elsa,2021,6,30,18,9.4,-42.8,tropical depression,NA,30,1008,0,0 +Elsa,2021,7,1,0,9.3,-45.3,tropical storm,NA,35,1007,90,0 +Elsa,2021,7,1,6,9.4,-47.7,tropical storm,NA,35,1006,90,0 +Elsa,2021,7,1,12,9.9,-50.2,tropical storm,NA,40,1005,160,0 +Elsa,2021,7,1,18,10.7,-52.6,tropical storm,NA,45,1004,170,0 +Elsa,2021,7,2,0,11.5,-55,tropical storm,NA,50,1002,190,0 +Elsa,2021,7,2,6,12.3,-57.3,tropical storm,NA,55,1000,210,0 +Elsa,2021,7,2,12,13,-59.8,hurricane,1,65,995,210,20 +Elsa,2021,7,2,18,13.8,-62.4,hurricane,1,75,991,210,20 +Elsa,2021,7,3,0,14.7,-65.1,hurricane,1,70,995,230,20 +Elsa,2021,7,3,6,15.7,-67.9,hurricane,1,65,998,210,20 +Elsa,2021,7,3,12,16.6,-70.3,tropical storm,NA,60,1000,190,0 +Elsa,2021,7,3,18,17.2,-72.5,tropical storm,NA,60,1002,180,0 +Elsa,2021,7,4,0,17.6,-74.4,tropical storm,NA,55,1004,190,0 +Elsa,2021,7,4,6,18,-75.5,tropical storm,NA,55,1006,170,0 +Elsa,2021,7,4,12,18.5,-76.5,tropical storm,NA,50,1007,150,0 +Elsa,2021,7,4,18,19.3,-77.6,tropical storm,NA,50,1007,140,0 +Elsa,2021,7,5,0,20.1,-78.6,tropical storm,NA,55,1005,130,0 +Elsa,2021,7,5,6,20.7,-79.6,tropical storm,NA,55,1005,120,0 +Elsa,2021,7,5,12,21.3,-80.7,tropical storm,NA,55,1005,110,0 +Elsa,2021,7,5,18,22.1,-81.5,tropical storm,NA,55,1005,110,0 +Elsa,2021,7,5,18,22.2,-81.6,tropical storm,NA,55,1005,110,0 +Elsa,2021,7,6,0,22.9,-82,tropical storm,NA,50,1005,100,0 +Elsa,2021,7,6,6,23.7,-82.4,tropical storm,NA,50,1005,100,0 +Elsa,2021,7,6,12,24.6,-82.7,tropical storm,NA,55,1003,110,0 +Elsa,2021,7,6,18,25.5,-82.9,tropical storm,NA,60,997,130,0 +Elsa,2021,7,7,0,26.6,-83.2,hurricane,1,65,996,140,20 +Elsa,2021,7,7,6,27.8,-83.5,tropical storm,NA,55,998,140,0 +Elsa,2021,7,7,12,29.1,-83.6,tropical storm,NA,55,999,130,0 +Elsa,2021,7,7,14,29.8,-83.5,tropical storm,NA,55,1000,130,0 +Elsa,2021,7,7,18,30.3,-83.4,tropical storm,NA,45,1002,90,0 +Elsa,2021,7,8,0,31.5,-82.7,tropical storm,NA,45,1005,100,0 +Elsa,2021,7,8,6,32.8,-81.8,tropical storm,NA,40,1006,100,0 +Elsa,2021,7,8,12,34.2,-80.5,tropical storm,NA,40,1006,120,0 +Elsa,2021,7,8,18,35.5,-79,tropical storm,NA,45,1004,140,0 +Elsa,2021,7,9,0,36.8,-77.4,tropical storm,NA,45,1003,140,0 +Elsa,2021,7,9,6,38.4,-75.5,tropical storm,NA,50,1001,140,0 +Elsa,2021,7,9,12,40.3,-73.1,tropical storm,NA,50,999,140,0 +Elsa,2021,7,9,15,40.9,-72.3,tropical storm,NA,50,999,140,0 +Elsa,2021,7,9,16,41.4,-71.7,tropical storm,NA,50,999,140,0 +Elsa,2021,7,9,18,42,-71,extratropical,NA,45,999,120,0 +Elsa,2021,7,10,0,44,-68.3,extratropical,NA,40,997,120,0 +Elsa,2021,7,10,6,46.8,-64.4,extratropical,NA,35,999,120,0 +Fred,2021,8,9,18,13.9,-58.7,disturbance,NA,30,1011,0,0 +Fred,2021,8,10,0,14.6,-60.1,disturbance,NA,30,1011,0,0 +Fred,2021,8,10,6,15.3,-61.6,disturbance,NA,30,1011,0,0 +Fred,2021,8,10,12,16,-63.1,disturbance,NA,30,1011,0,0 +Fred,2021,8,10,18,16.7,-64.6,disturbance,NA,30,1011,0,0 +Fred,2021,8,11,0,17.3,-66.1,tropical storm,NA,35,1009,40,0 +Fred,2021,8,11,6,17.7,-67.6,tropical storm,NA,35,1007,40,0 +Fred,2021,8,11,12,18,-69,tropical storm,NA,40,1005,50,0 +Fred,2021,8,11,17,18.4,-70.1,tropical storm,NA,40,1005,50,0 +Fred,2021,8,11,18,18.5,-70.4,tropical storm,NA,35,1006,50,0 +Fred,2021,8,12,0,19.2,-71.7,tropical depression,NA,30,1009,0,0 +Fred,2021,8,12,6,20,-72.9,tropical depression,NA,30,1010,0,0 +Fred,2021,8,12,12,20.5,-73.9,tropical depression,NA,30,1010,0,0 +Fred,2021,8,12,18,20.9,-74.7,tropical depression,NA,30,1010,0,0 +Fred,2021,8,13,0,21.2,-75.5,tropical storm,NA,35,1010,60,0 +Fred,2021,8,13,6,21.6,-76.6,tropical storm,NA,35,1010,60,0 +Fred,2021,8,13,12,22,-77.7,tropical depression,NA,30,1010,0,0 +Fred,2021,8,13,18,22.3,-79,tropical depression,NA,30,1011,0,0 +Fred,2021,8,14,0,22.5,-80.2,disturbance,NA,30,1012,0,0 +Fred,2021,8,14,6,22.7,-81.3,disturbance,NA,30,1012,0,0 +Fred,2021,8,14,12,22.9,-82.5,disturbance,NA,30,1012,0,0 +Fred,2021,8,14,18,23.3,-83.5,disturbance,NA,30,1012,0,0 +Fred,2021,8,15,0,24.1,-84.1,disturbance,NA,35,1011,130,0 +Fred,2021,8,15,6,25,-84.4,disturbance,NA,35,1010,110,0 +Fred,2021,8,15,12,25.7,-84.7,tropical storm,NA,35,1008,90,0 +Fred,2021,8,15,18,26.4,-85.2,tropical storm,NA,40,1005,80,0 +Fred,2021,8,16,0,27,-85.8,tropical storm,NA,50,999,80,0 +Fred,2021,8,16,6,27.8,-85.9,tropical storm,NA,50,996,90,0 +Fred,2021,8,16,12,28.7,-85.7,tropical storm,NA,50,993,140,0 +Fred,2021,8,16,18,29.5,-85.4,tropical storm,NA,55,991,140,0 +Fred,2021,8,16,19,29.7,-85.4,tropical storm,NA,55,991,140,0 +Fred,2021,8,17,0,30.6,-85.4,tropical storm,NA,45,998,120,0 +Fred,2021,8,17,6,31.7,-85.4,tropical storm,NA,35,1004,40,0 +Fred,2021,8,17,12,32.8,-85.2,tropical depression,NA,25,1006,0,0 +Fred,2021,8,17,18,34,-84.7,tropical depression,NA,25,1008,0,0 +Fred,2021,8,18,0,35.9,-83.6,other low,NA,25,1009,0,0 +Fred,2021,8,18,6,37.7,-82.3,other low,NA,20,1010,0,0 +Fred,2021,8,18,12,39.2,-81.1,other low,NA,20,1011,0,0 +Fred,2021,8,18,18,40.4,-79.7,other low,NA,20,1013,0,0 +Fred,2021,8,19,0,41.2,-78.2,extratropical,NA,20,1012,0,0 +Fred,2021,8,19,6,41.9,-76.7,extratropical,NA,20,1011,0,0 +Fred,2021,8,19,12,42.4,-75.1,extratropical,NA,20,1011,0,0 +Fred,2021,8,19,18,42.7,-73.5,extratropical,NA,25,1010,0,0 +Fred,2021,8,20,0,42.7,-72.2,extratropical,NA,25,1009,0,0 +Fred,2021,8,20,6,42.6,-71,extratropical,NA,25,1008,0,0 +Grace,2021,8,13,6,15,-46.7,tropical depression,NA,30,1010,0,0 +Grace,2021,8,13,12,15.2,-48.7,tropical depression,NA,30,1010,0,0 +Grace,2021,8,13,18,15.3,-50.8,tropical depression,NA,30,1010,0,0 +Grace,2021,8,14,0,15.4,-52.8,tropical depression,NA,30,1010,0,0 +Grace,2021,8,14,6,15.7,-54.8,tropical depression,NA,30,1010,0,0 +Grace,2021,8,14,12,16.1,-57.2,tropical storm,NA,35,1009,30,0 +Grace,2021,8,14,18,16.2,-59.5,tropical storm,NA,35,1009,30,0 +Grace,2021,8,15,0,16.5,-61.7,tropical depression,NA,30,1010,0,0 +Grace,2021,8,15,6,16.7,-63.7,tropical depression,NA,30,1010,0,0 +Grace,2021,8,15,12,16.9,-65.4,tropical depression,NA,30,1010,0,0 +Grace,2021,8,15,18,17,-66.7,tropical depression,NA,30,1011,0,0 +Grace,2021,8,16,0,17.1,-68.1,tropical depression,NA,30,1011,0,0 +Grace,2021,8,16,6,17.2,-69.6,tropical depression,NA,30,1010,0,0 +Grace,2021,8,16,12,17.5,-70.8,tropical storm,NA,35,1007,30,0 +Grace,2021,8,16,16,17.7,-71.4,tropical storm,NA,35,1007,40,0 +Grace,2021,8,16,18,17.8,-71.7,tropical storm,NA,35,1007,40,0 +Grace,2021,8,17,0,17.9,-73.2,tropical storm,NA,35,1006,30,0 +Grace,2021,8,17,6,18,-74.8,tropical storm,NA,40,1006,50,0 +Grace,2021,8,17,12,18.2,-76.1,tropical storm,NA,45,1005,100,0 +Grace,2021,8,17,14,18.2,-76.6,tropical storm,NA,50,1004,100,0 +Grace,2021,8,17,18,18.3,-77.4,tropical storm,NA,50,1003,110,0 +Grace,2021,8,18,0,18.3,-78.6,tropical storm,NA,50,1000,140,0 +Grace,2021,8,18,6,18.7,-80.1,tropical storm,NA,55,998,150,0 +Grace,2021,8,18,12,19.2,-81.5,hurricane,1,65,993,170,20 +Grace,2021,8,18,18,19.6,-83,hurricane,1,70,990,170,25 +Grace,2021,8,19,0,19.7,-84.8,hurricane,1,70,988,190,40 +Grace,2021,8,19,6,19.9,-86.4,hurricane,1,70,985,200,40 +Grace,2021,8,19,9,20.1,-87.5,hurricane,1,75,978,200,40 +Grace,2021,8,19,12,20.2,-88.1,tropical storm,NA,60,994,180,0 +Grace,2021,8,19,18,20.5,-89.5,tropical storm,NA,45,998,180,0 +Grace,2021,8,20,0,20.8,-91.1,tropical storm,NA,55,994,170,0 +Grace,2021,8,20,6,20.7,-92.6,tropical storm,NA,60,991,210,0 +Grace,2021,8,20,12,20.6,-93.8,hurricane,1,75,982,230,30 +Grace,2021,8,20,18,20.6,-94.7,hurricane,2,85,975,230,40 +Grace,2021,8,21,0,20.7,-95.8,hurricane,3,105,967,200,60 +Grace,2021,8,21,5,20.6,-97.1,hurricane,3,105,967,210,60 +Grace,2021,8,21,6,20.6,-97.2,hurricane,3,100,969,210,50 +Grace,2021,8,21,12,20.2,-98,tropical storm,NA,60,988,120,0 +Henri,2021,8,15,0,35.8,-63.4,other low,NA,25,1014,0,0 +Henri,2021,8,15,6,35.4,-63.1,other low,NA,25,1012,0,0 +Henri,2021,8,15,12,34.8,-62.8,other low,NA,25,1012,0,0 +Henri,2021,8,15,18,34.1,-62.7,tropical depression,NA,25,1011,0,0 +Henri,2021,8,16,0,33.4,-62.7,tropical depression,NA,30,1010,0,0 +Henri,2021,8,16,6,32.5,-62.7,tropical depression,NA,30,1010,0,0 +Henri,2021,8,16,12,31.6,-62.7,tropical depression,NA,30,1010,0,0 +Henri,2021,8,16,18,31.1,-62.9,tropical storm,NA,35,1009,40,0 +Henri,2021,8,17,0,30.8,-63.1,tropical storm,NA,40,1008,40,0 +Henri,2021,8,17,6,30.6,-63.3,tropical storm,NA,45,1004,50,0 +Henri,2021,8,17,12,30.4,-63.6,tropical storm,NA,45,1004,50,0 +Henri,2021,8,17,18,30.3,-63.9,tropical storm,NA,55,1000,100,0 +Henri,2021,8,18,0,30.2,-64.5,tropical storm,NA,55,998,120,0 +Henri,2021,8,18,6,30.1,-65.3,tropical storm,NA,55,998,120,0 +Henri,2021,8,18,12,30,-66.2,tropical storm,NA,55,998,120,0 +Henri,2021,8,18,18,29.9,-67.1,tropical storm,NA,60,995,120,0 +Henri,2021,8,19,0,29.7,-68,tropical storm,NA,60,995,140,0 +Henri,2021,8,19,6,29.5,-69,tropical storm,NA,60,995,140,0 +Henri,2021,8,19,12,29.5,-70,tropical storm,NA,60,995,140,0 +Henri,2021,8,19,18,29.6,-71,tropical storm,NA,55,999,140,0 +Henri,2021,8,20,0,29.7,-72,tropical storm,NA,55,997,140,0 +Henri,2021,8,20,6,29.9,-72.9,tropical storm,NA,55,995,140,0 +Henri,2021,8,20,12,30.1,-73.6,tropical storm,NA,55,995,170,0 +Henri,2021,8,20,18,30.8,-73.8,tropical storm,NA,60,994,170,0 +Henri,2021,8,21,0,31.6,-73.7,tropical storm,NA,60,993,170,0 +Henri,2021,8,21,6,32.5,-73.4,tropical storm,NA,60,993,170,0 +Henri,2021,8,21,12,33.6,-72.7,hurricane,1,65,991,200,40 +Henri,2021,8,21,18,35.4,-71.8,hurricane,1,65,990,200,40 +Henri,2021,8,22,0,37.6,-70.9,hurricane,1,65,988,200,30 +Henri,2021,8,22,6,39.4,-71,hurricane,1,65,986,160,30 +Henri,2021,8,22,12,40.7,-71.3,tropical storm,NA,55,986,140,0 +Henri,2021,8,22,15,41.2,-71.6,tropical storm,NA,55,987,100,0 +Henri,2021,8,22,16,41.3,-71.8,tropical storm,NA,55,988,100,0 +Henri,2021,8,22,18,41.5,-72,tropical storm,NA,40,991,60,0 +Henri,2021,8,23,0,41.8,-73,tropical depression,NA,30,1000,0,0 +Henri,2021,8,23,6,41.7,-74.4,tropical depression,NA,25,1005,0,0 +Henri,2021,8,23,12,41.6,-74.2,tropical depression,NA,25,1005,0,0 +Henri,2021,8,23,18,41.5,-73.8,other low,NA,25,1005,0,0 +Henri,2021,8,24,0,41.4,-72.7,other low,NA,20,1006,0,0 +Henri,2021,8,24,6,41.9,-71.2,other low,NA,20,1006,0,0 +Henri,2021,8,24,12,42.2,-69.6,other low,NA,20,1007,0,0 +Henri,2021,8,24,18,42.3,-67.3,other low,NA,25,1008,0,0 +Ida,2021,8,26,12,16.5,-78.9,tropical depression,NA,30,1006,0,0 +Ida,2021,8,26,18,17.4,-79.5,tropical storm,NA,35,1006,60,0 +Ida,2021,8,27,0,18.3,-80.2,tropical storm,NA,40,1004,60,0 +Ida,2021,8,27,6,19.4,-80.9,tropical storm,NA,45,1002,70,0 +Ida,2021,8,27,12,20.4,-81.7,tropical storm,NA,55,996,120,0 +Ida,2021,8,27,18,21.5,-82.6,hurricane,1,70,987,120,20 +Ida,2021,8,27,23,22.4,-83.2,hurricane,1,70,988,120,20 +Ida,2021,8,28,0,22.6,-83.5,hurricane,1,70,989,140,20 +Ida,2021,8,28,6,23.5,-84.7,hurricane,1,70,987,140,20 +Ida,2021,8,28,12,24.4,-85.7,hurricane,1,70,986,180,25 +Ida,2021,8,28,18,25.6,-86.6,hurricane,1,80,976,200,40 +Ida,2021,8,29,0,26.7,-87.6,hurricane,2,90,967,210,60 +Ida,2021,8,29,6,27.6,-88.7,hurricane,4,115,950,210,60 +Ida,2021,8,29,12,28.5,-89.6,hurricane,4,130,929,220,65 +Ida,2021,8,29,16,29.1,-90.2,hurricane,4,130,931,220,65 +Ida,2021,8,29,18,29.2,-90.4,hurricane,4,125,932,210,65 +Ida,2021,8,30,0,29.9,-90.6,hurricane,3,105,944,190,50 +Ida,2021,8,30,6,30.6,-90.8,hurricane,1,65,978,170,30 +Ida,2021,8,30,12,31.5,-90.9,tropical storm,NA,40,992,190,0 +Ida,2021,8,30,18,32.2,-90.5,tropical storm,NA,35,996,160,0 +Ida,2021,8,31,0,33,-90,tropical depression,NA,30,996,0,0 +Ida,2021,8,31,6,33.8,-89.4,tropical depression,NA,25,996,0,0 +Ida,2021,8,31,12,34.4,-88.4,tropical depression,NA,25,996,0,0 +Ida,2021,8,31,18,35.1,-87.1,tropical depression,NA,20,999,0,0 +Ida,2021,9,1,0,35.8,-85.5,tropical depression,NA,20,1000,0,0 +Ida,2021,9,1,6,36.7,-83.6,tropical depression,NA,20,1000,0,0 +Ida,2021,9,1,12,37.7,-81.5,extratropical,NA,25,1000,0,0 +Ida,2021,9,1,18,39,-78.5,extratropical,NA,30,999,0,0 +Ida,2021,9,2,0,39.8,-75.6,extratropical,NA,35,997,150,0 +Ida,2021,9,2,6,40.6,-72.8,extratropical,NA,40,997,150,0 +Ida,2021,9,2,12,41.4,-69.7,extratropical,NA,40,997,180,0 +Ida,2021,9,2,18,43.3,-67.2,extratropical,NA,40,996,150,0 +Ida,2021,9,3,0,45.4,-64.7,extratropical,NA,40,995,150,0 +Ida,2021,9,3,6,46.6,-63.6,extratropical,NA,45,992,300,0 +Ida,2021,9,3,12,47.5,-62.7,extratropical,NA,45,991,240,0 +Ida,2021,9,3,18,48.6,-62.4,extratropical,NA,45,992,370,0 +Ida,2021,9,4,0,48.8,-63.1,extratropical,NA,45,992,270,0 +Ida,2021,9,4,6,48.7,-63.9,extratropical,NA,40,992,120,0 +Ida,2021,9,4,12,47.6,-63.9,extratropical,NA,35,996,120,0 +Ida,2021,9,4,18,46.6,-63.5,extratropical,NA,30,999,0,0 +Kate,2021,8,27,12,13.1,-47.3,other low,NA,25,1009,0,0 +Kate,2021,8,27,18,13.3,-48.4,other low,NA,25,1009,0,0 +Kate,2021,8,28,0,13.5,-49.5,other low,NA,25,1009,0,0 +Kate,2021,8,28,6,13.7,-49.8,tropical depression,NA,30,1008,0,0 +Kate,2021,8,28,12,14.5,-50,tropical depression,NA,30,1008,0,0 +Kate,2021,8,28,18,15.2,-50,tropical depression,NA,30,1008,0,0 +Kate,2021,8,29,0,16.2,-49.9,tropical depression,NA,30,1008,0,0 +Kate,2021,8,29,6,17.3,-50,tropical depression,NA,30,1008,0,0 +Kate,2021,8,29,12,18.4,-50.2,tropical depression,NA,30,1008,0,0 +Kate,2021,8,29,18,19.2,-50.3,tropical depression,NA,30,1008,0,0 +Kate,2021,8,30,0,19.8,-50.5,tropical depression,NA,30,1008,0,0 +Kate,2021,8,30,6,20.5,-50.6,tropical storm,NA,35,1006,30,0 +Kate,2021,8,30,12,21.3,-50.8,tropical storm,NA,40,1004,40,0 +Kate,2021,8,30,18,22.1,-50.9,tropical storm,NA,35,1006,40,0 +Kate,2021,8,31,0,22.6,-50.9,tropical storm,NA,35,1006,40,0 +Kate,2021,8,31,6,22.8,-50.9,tropical storm,NA,35,1006,40,0 +Kate,2021,8,31,12,23.2,-50.9,tropical depression,NA,30,1007,0,0 +Kate,2021,8,31,18,23.9,-50.9,tropical depression,NA,30,1007,0,0 +Kate,2021,9,1,0,24.6,-51.2,tropical depression,NA,30,1007,0,0 +Kate,2021,9,1,6,25.3,-51.5,tropical depression,NA,30,1008,0,0 +Kate,2021,9,1,12,26.6,-52.3,tropical depression,NA,30,1009,0,0 +Julian,2021,8,28,12,32.1,-51.7,other low,NA,25,1010,0,0 +Julian,2021,8,28,18,32.2,-51,tropical depression,NA,30,1008,0,0 +Julian,2021,8,29,0,32.6,-50.1,tropical depression,NA,30,1006,0,0 +Julian,2021,8,29,6,33.5,-49.3,tropical storm,NA,35,1003,60,0 +Julian,2021,8,29,12,34.5,-47.8,tropical storm,NA,45,997,70,0 +Julian,2021,8,29,18,35.9,-45.7,tropical storm,NA,50,995,100,0 +Julian,2021,8,30,0,37.1,-42.6,tropical storm,NA,50,994,110,0 +Julian,2021,8,30,6,38.9,-40,tropical storm,NA,50,993,130,0 +Julian,2021,8,30,12,40.6,-37.9,extratropical,NA,50,993,140,0 +Julian,2021,8,30,18,42.5,-36,extratropical,NA,45,995,140,0 +Julian,2021,8,31,0,44.8,-35.1,extratropical,NA,45,997,130,0 +Julian,2021,8,31,6,47.5,-34.5,extratropical,NA,45,999,150,0 +Julian,2021,8,31,12,50.5,-35.5,extratropical,NA,45,1000,180,0 +Larry,2021,8,31,18,11.5,-20.6,tropical depression,NA,30,1006,0,0 +Larry,2021,9,1,0,11.9,-22.5,tropical storm,NA,35,1005,60,0 +Larry,2021,9,1,6,12.2,-24.5,tropical storm,NA,40,1004,80,0 +Larry,2021,9,1,12,12.4,-26.5,tropical storm,NA,45,1003,90,0 +Larry,2021,9,1,18,12.5,-28.4,tropical storm,NA,55,999,110,0 +Larry,2021,9,2,0,12.7,-30,tropical storm,NA,60,996,110,0 +Larry,2021,9,2,6,13,-31.6,hurricane,1,65,991,160,30 +Larry,2021,9,2,12,13.3,-33.3,hurricane,1,70,987,200,30 +Larry,2021,9,2,18,13.6,-35,hurricane,1,70,987,200,35 +Larry,2021,9,3,0,13.9,-36.7,hurricane,1,75,985,220,35 +Larry,2021,9,3,6,14.1,-38.4,hurricane,1,80,983,220,35 +Larry,2021,9,3,12,14.4,-40,hurricane,1,80,980,230,35 +Larry,2021,9,3,18,14.7,-41.4,hurricane,2,90,973,230,45 +Larry,2021,9,4,0,15.2,-42.7,hurricane,3,100,964,230,50 +Larry,2021,9,4,6,15.8,-44,hurricane,3,110,956,230,50 +Larry,2021,9,4,12,16.4,-45.3,hurricane,3,110,956,230,55 +Larry,2021,9,4,18,17,-46.5,hurricane,3,105,958,250,65 +Larry,2021,9,5,0,17.7,-47.5,hurricane,3,105,958,260,65 +Larry,2021,9,5,6,18.4,-48.5,hurricane,3,105,958,270,65 +Larry,2021,9,5,12,19.2,-49.4,hurricane,3,110,953,280,65 +Larry,2021,9,5,18,20,-50.3,hurricane,3,110,953,290,80 +Larry,2021,9,6,0,20.7,-51.2,hurricane,3,110,953,290,100 +Larry,2021,9,6,6,21.2,-52,hurricane,3,105,956,290,100 +Larry,2021,9,6,12,21.6,-52.7,hurricane,3,105,956,290,100 +Larry,2021,9,6,18,22.1,-53.5,hurricane,3,105,956,290,100 +Larry,2021,9,7,0,22.7,-54.2,hurricane,3,105,956,290,100 +Larry,2021,9,7,6,23.3,-54.8,hurricane,3,100,960,300,100 +Larry,2021,9,7,12,24,-55.4,hurricane,2,95,963,300,100 +Larry,2021,9,7,18,24.7,-56,hurricane,2,95,965,300,100 +Larry,2021,9,8,0,25.4,-56.5,hurricane,2,95,966,300,100 +Larry,2021,9,8,6,26.2,-57.1,hurricane,2,95,966,320,100 +Larry,2021,9,8,12,27.2,-57.9,hurricane,2,90,966,350,100 +Larry,2021,9,8,18,28.2,-58.9,hurricane,2,90,967,350,100 +Larry,2021,9,9,0,29.1,-59.9,hurricane,2,85,968,340,110 +Larry,2021,9,9,6,30.1,-60.8,hurricane,1,80,968,340,110 +Larry,2021,9,9,12,31.3,-61.5,hurricane,1,80,966,340,110 +Larry,2021,9,9,18,32.8,-62.1,hurricane,1,80,966,340,110 +Larry,2021,9,10,0,34.4,-62.3,hurricane,1,80,966,350,110 +Larry,2021,9,10,6,36.5,-62.2,hurricane,1,75,964,370,120 +Larry,2021,9,10,12,38.9,-61.1,hurricane,1,70,961,400,90 +Larry,2021,9,10,18,41.9,-59.5,hurricane,1,70,958,400,90 +Larry,2021,9,11,0,45.1,-56.6,hurricane,1,70,958,400,90 +Larry,2021,9,11,3,47.3,-54.6,hurricane,1,70,958,400,90 +Larry,2021,9,11,6,48.8,-53.3,hurricane,1,65,959,420,90 +Larry,2021,9,11,12,52.5,-49.7,extratropical,NA,60,963,450,0 +Larry,2021,9,11,18,55.3,-46.8,extratropical,NA,55,967,450,0 +Mindy,2021,9,8,18,28.4,-86.8,tropical storm,NA,35,1006,30,0 +Mindy,2021,9,9,0,29.5,-85.4,tropical storm,NA,45,1001,40,0 +Mindy,2021,9,9,1,29.7,-85.1,tropical storm,NA,50,1000,40,0 +Mindy,2021,9,9,6,30.5,-83.9,tropical storm,NA,35,1001,40,0 +Mindy,2021,9,9,12,31.2,-81.8,tropical depression,NA,30,1005,0,0 +Mindy,2021,9,9,18,31.7,-79.4,tropical depression,NA,30,1005,0,0 +Mindy,2021,9,10,0,32.1,-76.8,other low,NA,30,1005,0,0 +Mindy,2021,9,10,6,32.6,-74,other low,NA,30,1005,0,0 +Mindy,2021,9,10,12,33.2,-71.8,other low,NA,30,1005,0,0 +Mindy,2021,9,10,18,33.7,-69.8,other low,NA,30,1006,0,0 +Nicholas,2021,9,12,12,21,-95.2,tropical storm,NA,35,1008,90,0 +Nicholas,2021,9,12,18,22.4,-95.6,tropical storm,NA,35,1008,90,0 +Nicholas,2021,9,13,0,23.7,-96.1,tropical storm,NA,40,1007,100,0 +Nicholas,2021,9,13,6,24.8,-96.5,tropical storm,NA,50,1001,100,0 +Nicholas,2021,9,13,12,25.9,-96.7,tropical storm,NA,50,1000,110,0 +Nicholas,2021,9,13,18,27,-96.6,tropical storm,NA,55,998,140,0 +Nicholas,2021,9,14,0,28,-96.2,hurricane,1,65,988,170,0 +Nicholas,2021,9,14,5,28.7,-95.7,hurricane,1,65,991,170,45 +Nicholas,2021,9,14,6,28.8,-95.7,hurricane,1,65,991,190,25 +Nicholas,2021,9,14,12,29.3,-95.4,tropical storm,NA,50,999,190,0 +Nicholas,2021,9,14,18,29.6,-94.9,tropical storm,NA,35,1003,160,0 +Nicholas,2021,9,15,0,29.9,-94.4,tropical depression,NA,30,1003,0,0 +Nicholas,2021,9,15,6,30.2,-93.8,tropical depression,NA,30,1004,0,0 +Nicholas,2021,9,15,12,30.3,-93.1,tropical depression,NA,25,1006,0,0 +Nicholas,2021,9,15,18,30.2,-92.4,other low,NA,25,1006,0,0 +Nicholas,2021,9,16,0,29.9,-91.8,other low,NA,25,1006,0,0 +Nicholas,2021,9,16,6,29.3,-91.6,other low,NA,20,1007,0,0 +Nicholas,2021,9,16,12,29.7,-91.7,other low,NA,20,1007,0,0 +Nicholas,2021,9,16,18,29.9,-92.2,other low,NA,20,1009,0,0 +Nicholas,2021,9,17,0,30.3,-92.6,other low,NA,15,1009,0,0 +Nicholas,2021,9,17,6,30.8,-93,other low,NA,15,1010,0,0 +Odette,2021,9,16,6,30.4,-74.3,other low,NA,30,1011,0,0 +Odette,2021,9,16,12,31.4,-74.8,other low,NA,30,1011,0,0 +Odette,2021,9,16,18,32.3,-75.2,other low,NA,30,1011,0,0 +Odette,2021,9,17,0,33.3,-75.3,other low,NA,30,1011,0,0 +Odette,2021,9,17,6,34.1,-74.9,other low,NA,30,1011,0,0 +Odette,2021,9,17,12,35,-73.9,other low,NA,30,1011,0,0 +Odette,2021,9,17,18,35.9,-72.7,tropical storm,NA,35,1010,180,0 +Odette,2021,9,18,0,36.8,-71.4,tropical storm,NA,40,1008,180,0 +Odette,2021,9,18,6,37.6,-70.1,tropical storm,NA,40,1005,210,0 +Odette,2021,9,18,12,38.3,-68.3,extratropical,NA,40,1002,240,0 +Odette,2021,9,18,18,38.7,-66.2,extratropical,NA,40,1001,270,0 +Odette,2021,9,19,0,39.2,-64.1,extratropical,NA,45,999,300,0 +Odette,2021,9,19,6,39.9,-61.9,extratropical,NA,45,997,330,0 +Odette,2021,9,19,12,41.1,-59.4,extratropical,NA,45,995,360,0 +Odette,2021,9,19,18,42.7,-56.6,extratropical,NA,50,992,360,0 +Odette,2021,9,20,0,44.1,-54.1,extratropical,NA,55,989,370,0 +Odette,2021,9,20,6,45,-51.6,extratropical,NA,55,989,370,0 +Odette,2021,9,20,12,44.7,-49.7,extratropical,NA,50,990,370,0 +Odette,2021,9,20,18,44.2,-48.1,extratropical,NA,50,993,370,0 +Odette,2021,9,21,0,43.2,-46.6,extratropical,NA,50,993,370,0 +Odette,2021,9,21,6,41.8,-45.4,extratropical,NA,50,995,360,0 +Odette,2021,9,21,12,40.4,-43.8,extratropical,NA,45,997,360,0 +Odette,2021,9,21,18,39.9,-41.9,extratropical,NA,45,997,360,0 +Odette,2021,9,22,0,40.2,-40.1,extratropical,NA,45,998,360,0 +Odette,2021,9,22,6,41.3,-39.9,extratropical,NA,45,999,360,0 +Odette,2021,9,22,12,42.4,-40.2,extratropical,NA,45,999,330,0 +Odette,2021,9,22,18,43.5,-40.8,extratropical,NA,40,1000,270,0 +Odette,2021,9,23,0,44.1,-41.2,extratropical,NA,40,1000,210,0 +Odette,2021,9,23,6,44.2,-41.8,extratropical,NA,40,1000,210,0 +Odette,2021,9,23,12,44.1,-42.4,extratropical,NA,40,1000,200,0 +Odette,2021,9,23,18,43.8,-42,extratropical,NA,35,1000,150,0 +Odette,2021,9,24,0,44.1,-41.4,extratropical,NA,35,1001,120,0 +Odette,2021,9,24,6,44.1,-41,extratropical,NA,35,1001,120,0 +Odette,2021,9,24,12,43.6,-40.5,extratropical,NA,35,1002,120,0 +Odette,2021,9,24,18,42.7,-40,other low,NA,35,1003,120,0 +Odette,2021,9,25,0,41.6,-39.4,other low,NA,35,1004,90,0 +Odette,2021,9,25,6,40.3,-38.7,other low,NA,35,1005,90,0 +Odette,2021,9,25,12,38.9,-38,other low,NA,35,1006,90,0 +Odette,2021,9,25,18,37.3,-38.1,other low,NA,35,1007,90,0 +Odette,2021,9,26,0,35.8,-38.6,other low,NA,35,1008,90,0 +Odette,2021,9,26,6,34.4,-39.5,other low,NA,30,1009,0,0 +Odette,2021,9,26,12,32.9,-40.5,other low,NA,30,1010,0,0 +Odette,2021,9,26,18,31.5,-41.4,other low,NA,30,1010,0,0 +Peter,2021,9,19,0,16.4,-52.7,tropical depression,NA,30,1007,0,0 +Peter,2021,9,19,6,16.8,-54.4,tropical storm,NA,35,1006,90,0 +Peter,2021,9,19,12,17.3,-55.8,tropical storm,NA,40,1006,100,0 +Peter,2021,9,19,18,17.9,-57,tropical storm,NA,45,1005,110,0 +Peter,2021,9,20,0,18.4,-58,tropical storm,NA,45,1005,110,0 +Peter,2021,9,20,6,18.8,-59,tropical storm,NA,45,1005,110,0 +Peter,2021,9,20,12,19.2,-60.1,tropical storm,NA,45,1006,110,0 +Peter,2021,9,20,18,19.5,-61.2,tropical storm,NA,45,1007,130,0 +Peter,2021,9,21,0,19.6,-62.3,tropical storm,NA,45,1007,150,0 +Peter,2021,9,21,6,19.6,-63.2,tropical storm,NA,40,1007,150,0 +Peter,2021,9,21,12,19.8,-64,tropical storm,NA,35,1008,130,0 +Peter,2021,9,21,18,20.2,-64.6,tropical depression,NA,30,1008,0,0 +Peter,2021,9,22,0,20.6,-65.2,tropical depression,NA,30,1008,0,0 +Peter,2021,9,22,6,21,-65.8,tropical depression,NA,30,1008,0,0 +Peter,2021,9,22,12,21.4,-66.4,tropical depression,NA,30,1008,0,0 +Peter,2021,9,22,18,21.7,-66.9,tropical depression,NA,30,1008,0,0 +Rose,2021,9,19,0,10.4,-27.4,tropical depression,NA,30,1008,0,0 +Rose,2021,9,19,6,11.3,-27.8,tropical depression,NA,30,1008,0,0 +Rose,2021,9,19,12,12.6,-28.4,tropical depression,NA,30,1008,0,0 +Rose,2021,9,19,18,13.8,-29.4,tropical storm,NA,35,1007,30,0 +Rose,2021,9,20,0,14.7,-30.6,tropical storm,NA,35,1007,30,0 +Rose,2021,9,20,6,15.6,-31.8,tropical storm,NA,35,1007,60,0 +Rose,2021,9,20,12,16.7,-32.9,tropical storm,NA,35,1007,60,0 +Rose,2021,9,20,18,17.7,-34.1,tropical storm,NA,40,1006,100,0 +Rose,2021,9,21,0,18.8,-35.3,tropical storm,NA,50,1004,120,0 +Rose,2021,9,21,6,20,-36.1,tropical storm,NA,40,1006,120,0 +Rose,2021,9,21,12,21.1,-36.7,tropical storm,NA,35,1007,80,0 +Rose,2021,9,21,18,22.1,-37.3,tropical storm,NA,35,1007,80,0 +Rose,2021,9,22,0,22.7,-37.7,tropical storm,NA,35,1008,90,0 +Rose,2021,9,22,6,23.1,-38.1,tropical depression,NA,30,1009,0,0 +Rose,2021,9,22,12,23.4,-38.8,other low,NA,30,1009,0,0 +Rose,2021,9,22,18,23.8,-39.7,other low,NA,30,1010,0,0 +Rose,2021,9,23,0,24.2,-40.6,other low,NA,30,1010,0,0 +Rose,2021,9,23,6,25,-41.4,other low,NA,30,1010,0,0 +Rose,2021,9,23,12,26,-41.9,other low,NA,25,1010,0,0 +Rose,2021,9,23,18,27,-42,other low,NA,25,1010,0,0 +Rose,2021,9,24,0,27.8,-42,other low,NA,25,1010,0,0 +Rose,2021,9,24,6,28.3,-41.7,other low,NA,25,1010,0,0 +Sam,2021,9,22,18,10,-33.1,tropical depression,NA,30,1008,0,0 +Sam,2021,9,23,0,10.2,-34.4,tropical depression,NA,30,1008,0,0 +Sam,2021,9,23,6,10.4,-36,tropical storm,NA,35,1006,30,0 +Sam,2021,9,23,12,10.7,-37.6,tropical storm,NA,45,1003,40,0 +Sam,2021,9,23,18,10.9,-39,tropical storm,NA,50,1000,70,0 +Sam,2021,9,24,0,11.1,-40.3,tropical storm,NA,60,997,70,0 +Sam,2021,9,24,6,11.4,-41.6,hurricane,1,65,993,80,15 +Sam,2021,9,24,12,11.6,-43,hurricane,1,65,993,80,15 +Sam,2021,9,24,18,11.9,-44.3,hurricane,1,70,989,90,15 +Sam,2021,9,25,0,12.3,-45.4,hurricane,2,85,982,90,20 +Sam,2021,9,25,6,12.6,-46.3,hurricane,2,95,973,90,30 +Sam,2021,9,25,12,12.8,-47.2,hurricane,3,105,960,150,30 +Sam,2021,9,25,18,13.1,-48.1,hurricane,4,115,950,150,40 +Sam,2021,9,26,0,13.4,-48.8,hurricane,4,130,943,150,40 +Sam,2021,9,26,6,13.6,-49.4,hurricane,4,130,943,140,40 +Sam,2021,9,26,12,13.8,-50,hurricane,4,130,939,150,45 +Sam,2021,9,26,18,14.1,-50.3,hurricane,4,135,927,150,45 +Sam,2021,9,27,0,14.5,-50.6,hurricane,4,130,940,150,45 +Sam,2021,9,27,6,15,-51.1,hurricane,4,115,948,160,45 +Sam,2021,9,27,12,15.4,-51.7,hurricane,3,105,955,160,45 +Sam,2021,9,27,18,15.9,-52.3,hurricane,3,105,958,160,45 +Sam,2021,9,28,0,16.5,-52.9,hurricane,3,105,955,180,60 +Sam,2021,9,28,6,16.9,-53.5,hurricane,4,115,952,180,60 +Sam,2021,9,28,12,17.3,-54.1,hurricane,4,115,952,230,60 +Sam,2021,9,28,18,17.7,-54.7,hurricane,4,115,947,230,60 +Sam,2021,9,29,0,18.1,-55.3,hurricane,4,115,947,210,60 +Sam,2021,9,29,6,18.6,-55.9,hurricane,4,115,952,210,60 +Sam,2021,9,29,12,19.1,-56.6,hurricane,4,115,952,210,60 +Sam,2021,9,29,18,19.7,-57.3,hurricane,4,115,945,210,60 +Sam,2021,9,30,0,20.3,-58,hurricane,4,125,940,220,85 +Sam,2021,9,30,6,21,-58.8,hurricane,4,125,937,230,85 +Sam,2021,9,30,12,22,-59.6,hurricane,4,125,937,230,85 +Sam,2021,9,30,18,23,-60.4,hurricane,4,125,941,240,85 +Sam,2021,10,1,0,24.3,-61,hurricane,4,125,938,250,90 +Sam,2021,10,1,6,25.8,-61.6,hurricane,4,130,936,250,95 +Sam,2021,10,1,12,27.4,-61.9,hurricane,4,130,936,310,85 +Sam,2021,10,1,18,29.2,-61.9,hurricane,4,130,937,310,85 +Sam,2021,10,2,0,30.8,-61.5,hurricane,4,125,940,310,85 +Sam,2021,10,2,6,32.1,-61,hurricane,4,120,945,340,95 +Sam,2021,10,2,12,33.4,-60.1,hurricane,4,115,948,400,100 +Sam,2021,10,2,18,34.7,-59.1,hurricane,3,110,950,400,100 +Sam,2021,10,3,0,35.8,-57.9,hurricane,3,100,954,400,100 +Sam,2021,10,3,6,36.7,-56.6,hurricane,2,90,960,400,60 +Sam,2021,10,3,12,37.3,-55.4,hurricane,2,85,964,400,60 +Sam,2021,10,3,18,38,-53.9,hurricane,2,85,964,420,70 +Sam,2021,10,4,0,38.7,-52.2,hurricane,2,90,957,420,100 +Sam,2021,10,4,6,39.9,-49.9,hurricane,2,90,957,440,60 +Sam,2021,10,4,12,41.4,-47.1,hurricane,2,85,960,440,60 +Sam,2021,10,4,18,43.8,-43.6,hurricane,1,80,965,500,70 +Sam,2021,10,5,0,46.5,-40.5,hurricane,1,75,965,570,70 +Sam,2021,10,5,6,49.4,-39.7,extratropical,NA,70,965,570,70 +Sam,2021,10,5,12,52.2,-39.6,extratropical,NA,65,966,630,60 +Sam,2021,10,5,18,50.6,-42.1,extratropical,NA,65,966,630,60 +Sam,2021,10,6,0,49.9,-38.9,extratropical,NA,60,967,780,0 +Sam,2021,10,6,6,50.5,-35.5,extratropical,NA,55,968,720,0 +Sam,2021,10,6,12,51.5,-32.4,extratropical,NA,50,969,450,0 +Sam,2021,10,6,18,53.1,-29,extratropical,NA,45,971,450,0 +Sam,2021,10,7,0,55.2,-25.4,extratropical,NA,45,973,270,0 +Sam,2021,10,7,6,58.1,-22.3,extratropical,NA,40,976,270,0 +Victor,2021,9,29,0,7,-22,other low,NA,30,1008,0,0 +Victor,2021,9,29,6,7.4,-23,other low,NA,30,1007,0,0 +Victor,2021,9,29,12,7.8,-24.1,tropical depression,NA,30,1006,0,0 +Victor,2021,9,29,18,8.1,-25.1,tropical storm,NA,35,1005,50,0 +Victor,2021,9,30,0,8.3,-26,tropical storm,NA,35,1005,50,0 +Victor,2021,9,30,6,8.7,-27.1,tropical storm,NA,40,1004,70,0 +Victor,2021,9,30,12,9.2,-28.4,tropical storm,NA,40,1003,90,0 +Victor,2021,9,30,18,9.8,-29.5,tropical storm,NA,45,1001,90,0 +Victor,2021,10,1,0,10.5,-30.6,tropical storm,NA,50,999,170,0 +Victor,2021,10,1,6,11,-31.8,tropical storm,NA,50,998,180,0 +Victor,2021,10,1,12,11.4,-33,tropical storm,NA,55,997,200,0 +Victor,2021,10,1,18,11.8,-33.9,tropical storm,NA,55,997,200,0 +Victor,2021,10,2,0,12.1,-34.9,tropical storm,NA,50,999,180,0 +Victor,2021,10,2,6,12.5,-35.8,tropical storm,NA,45,1001,140,0 +Victor,2021,10,2,12,12.7,-36.7,tropical storm,NA,35,1005,60,0 +Victor,2021,10,2,18,13.5,-37.7,tropical depression,NA,30,1007,0,0 +Victor,2021,10,3,0,14.4,-38.4,tropical depression,NA,30,1007,0,0 +Victor,2021,10,3,6,15.1,-39.2,tropical depression,NA,30,1007,0,0 +Victor,2021,10,3,12,15.7,-40,tropical depression,NA,30,1007,0,0 +Victor,2021,10,3,18,16.5,-41,tropical depression,NA,30,1007,0,0 +Victor,2021,10,4,0,17.2,-42.1,tropical depression,NA,30,1007,0,0 +Victor,2021,10,4,6,17.8,-43.1,tropical depression,NA,25,1009,0,0 +Wanda,2021,10,25,18,32.5,-76.3,extratropical,NA,35,1006,60,0 +Wanda,2021,10,26,0,34.2,-74.1,extratropical,NA,45,1002,180,0 +Wanda,2021,10,26,6,35.9,-71.3,extratropical,NA,45,996,240,0 +Wanda,2021,10,26,12,37.7,-69.1,extratropical,NA,50,992,300,0 +Wanda,2021,10,26,18,39.5,-68.2,extratropical,NA,55,984,330,0 +Wanda,2021,10,27,0,40.8,-67.6,extratropical,NA,60,979,360,0 +Wanda,2021,10,27,6,41.4,-69.4,extratropical,NA,60,973,510,0 +Wanda,2021,10,27,12,39.9,-70.1,extratropical,NA,55,976,660,0 +Wanda,2021,10,27,18,38.7,-68.5,extratropical,NA,50,980,720,0 +Wanda,2021,10,28,0,39,-65.9,extratropical,NA,45,981,780,0 +Wanda,2021,10,28,6,39.4,-63.9,extratropical,NA,45,982,780,0 +Wanda,2021,10,28,12,39.8,-61.9,extratropical,NA,45,982,780,0 +Wanda,2021,10,28,18,40.2,-59.8,extratropical,NA,45,982,690,0 +Wanda,2021,10,29,0,40.6,-58.1,extratropical,NA,45,982,630,0 +Wanda,2021,10,29,6,40.7,-56.8,extratropical,NA,45,982,570,0 +Wanda,2021,10,29,12,40.6,-55.5,extratropical,NA,45,981,540,0 +Wanda,2021,10,29,18,40.4,-54,extratropical,NA,45,981,510,0 +Wanda,2021,10,30,0,40.1,-52.4,extratropical,NA,45,982,420,0 +Wanda,2021,10,30,6,39.4,-51.2,extratropical,NA,40,984,310,0 +Wanda,2021,10,30,12,38.5,-49.6,subtropical storm,NA,40,986,240,0 +Wanda,2021,10,30,18,37.5,-47.8,subtropical storm,NA,40,988,180,0 +Wanda,2021,10,31,0,36.5,-46,subtropical storm,NA,45,987,150,0 +Wanda,2021,10,31,6,36.6,-44.2,subtropical storm,NA,50,985,130,0 +Wanda,2021,10,31,12,36.5,-43.4,subtropical storm,NA,50,983,120,0 +Wanda,2021,10,31,18,36.4,-43.5,subtropical storm,NA,50,985,120,0 +Wanda,2021,11,1,0,35.8,-44,subtropical storm,NA,45,989,120,0 +Wanda,2021,11,1,6,34.8,-44.2,subtropical storm,NA,40,991,110,0 +Wanda,2021,11,1,12,34.1,-43.4,tropical storm,NA,40,993,80,0 +Wanda,2021,11,1,18,34.1,-42.6,tropical storm,NA,35,997,80,0 +Wanda,2021,11,2,0,34.4,-41.9,tropical storm,NA,35,997,100,0 +Wanda,2021,11,2,6,34.9,-41.3,tropical storm,NA,40,996,100,0 +Wanda,2021,11,2,12,35.5,-40.7,tropical storm,NA,40,996,80,0 +Wanda,2021,11,2,18,36.2,-40.5,tropical storm,NA,40,996,90,0 +Wanda,2021,11,3,0,36.9,-40.4,tropical storm,NA,40,996,110,0 +Wanda,2021,11,3,6,37.6,-40.2,tropical storm,NA,40,995,110,0 +Wanda,2021,11,3,12,38.4,-39.9,tropical storm,NA,40,994,120,0 +Wanda,2021,11,3,18,39.3,-39.7,tropical storm,NA,45,992,130,0 +Wanda,2021,11,4,0,40.2,-39.7,tropical storm,NA,45,992,150,0 +Wanda,2021,11,4,6,41,-39.7,tropical storm,NA,45,992,140,0 +Wanda,2021,11,4,12,41.7,-39.7,tropical storm,NA,40,994,120,0 +Wanda,2021,11,4,18,42.1,-39.6,tropical storm,NA,40,994,120,0 +Wanda,2021,11,5,0,42.3,-39,tropical storm,NA,45,992,140,0 +Wanda,2021,11,5,6,42,-38.3,tropical storm,NA,45,992,150,0 +Wanda,2021,11,5,12,41.1,-37.8,tropical storm,NA,45,993,160,0 +Wanda,2021,11,5,18,39.6,-37.5,tropical storm,NA,45,996,150,0 +Wanda,2021,11,6,0,38.4,-38,tropical storm,NA,45,999,130,0 +Wanda,2021,11,6,6,37.6,-38.3,tropical storm,NA,45,1000,110,0 +Wanda,2021,11,6,12,37.2,-38.4,tropical storm,NA,40,1001,100,0 +Wanda,2021,11,6,18,37.1,-38,tropical storm,NA,35,1002,100,0 +Wanda,2021,11,7,0,37.4,-37.4,tropical storm,NA,35,1003,60,0 +Wanda,2021,11,7,6,38.1,-36.4,tropical storm,NA,35,1004,60,0 +Wanda,2021,11,7,12,39.2,-34.9,other low,NA,35,1006,90,0 +Wanda,2021,11,7,18,40.9,-32.8,other low,NA,40,1006,90,0 +Wanda,2021,11,8,0,43.2,-29.7,other low,NA,40,1006,70,0 diff --git a/friday_exercise_jed_week_2.Rmd b/friday_exercise_jed_week_2.Rmd new file mode 100644 index 0000000..e8fc570 --- /dev/null +++ b/friday_exercise_jed_week_2.Rmd @@ -0,0 +1,66 @@ +# how do storms change over time? + +```{r} +packageLoad <- + function(x) { + for (i in 1:length(x)) { + if (!x[i] %in% installed.packages()) { + install.packages(x[i]) + } + library(x[i], character.only = TRUE) + } + } + +# create a string of package names +packages <- c('tidyverse', + 'palmerpenguins', + 'lterdatasampler','purrr','rstatix') + +packageLoad(packages) + +``` + +```{r} +storms <- read_csv("data/storms.csv") +``` + +```{r} +storms %>% +ggplot() + + geom_line(aes(x=year,y=wind)) + +``` + +```{r} +storms %>% + ggplot() + + geom_histogram(aes(x=category)) + +``` + +```{r} +mutate <- sum(storms$status == 'hurricane') +``` + +```{r} +huricane <- filter(storms, status == 'hurricane') +hurricanefreq <- huricane %>% + distinct(name,year) %>% + mutate(Gret=ifelse(name=="Katie", "yes", "no")) +ggplot(hurricanefreq)+ + geom_histogram(aes(x=year, color=Gret)) +``` + +```{r} +storms %>% + ggplot() + + (aes(x=status)) + +``` + +```{r} +storms %>% +ggplot() + + geom_col(aes(x=month,y=status)) + +``` diff --git a/lessons/CopyOfcode_debugging_assignment_jed_lichtensztajn.Rmd b/lessons/CopyOfcode_debugging_assignment_jed_lichtensztajn.Rmd new file mode 100644 index 0000000..d1241b4 --- /dev/null +++ b/lessons/CopyOfcode_debugging_assignment_jed_lichtensztajn.Rmd @@ -0,0 +1,77 @@ +--- +title: "Code Review/Debugging Assignment" +author: +date: "`r Sys.Date()`" +output: html_document +--- + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = FALSE, warning= FALSE, message = FALSE) +``` + +```{r} +source('setup.R') +``` + +## The Assignment: + +*Tip: View this in the visual editor in RStudio* + +You want to re-create the HTML document in the `lessons/` folder in this repo titled `code_debugging_output.html`. Below is the workflow to do so, ***however*** you will notice if you attempt to render this R Markdown document as is it does NOT reproduce the `code_debugging_output.html` file, and won't even render until you fix some of the mistakes/missing elements. Therefore, this workflow is not reproducible! Your task is to fix the below coding workflow so that it renders and **exactly** matches the output of `code_debugging_output.html` (*including* whether or not certain code chunks and/or outputs are shown). + +There are a total of **5 fixes** you need to make to the workflow below. To complete this assignment you must ***1)*** Identify the 5 errors and specify what they are below (*4 pts each*) and ***2)*** fix the errors and render this entire .Rmd as am HTML doc where the content below matches that of the `code_debugging_output.html` (*5 pts*). + +**List here the 5 errors you had to fix in this workflow:** + +1. color = species for scatter plot + +2. Adelie was spelled wrong + +3. In set up script added echo = FALSE + +4. created a new object for adelie adelie <- penguins %>% + filter(species == 'Adelie') + +5. source('setup.R') + +## The workflow you need to fix begins here: + +In this workflow, we want to explore the Palmer Penguins data set collected at the Palmer Station LTER in Antarctica. This data is stored in the {palmerpenguins} data package. + +We read in the data and initially explore its structure: + +```{r} +data("penguins") +summary(penguins) +``` + +Let's first explore body mass among all the penguin species with a histogram: + +```{r warning=FALSE} +penguins %>% + ggplot()+ + geom_histogram(aes(x = body_mass_g)) +``` + +Now we want to visualize the relationship between body mass and bill length *among species*: + +```{r warning=FALSE} +penguins %>% + ggplot() + + geom_point(aes(x = body_mass_g, y = bill_length_mm, color = species)) +``` + +Finally, let's create a new data frame called `adelie` that contains data for just the *Adelie* penguin species, and then visualize the differences in that species' body mass among islands. + +```{r} +adelie <- penguins %>% + filter(species == 'Adelie') +``` + +```{r warning=FALSE} +adelie %>% + ggplot() + + geom_boxplot(aes(x = island, y = body_mass_g)) +``` + +This figure suggests *Adelie* individuals on the Dream island are slightly smaller that those on the Biscoe and Torgersen islands. diff --git a/lessons/CopyOfcode_debugging_assignment_jed_lichtensztajn.html b/lessons/CopyOfcode_debugging_assignment_jed_lichtensztajn.html new file mode 100644 index 0000000..0d934c7 --- /dev/null +++ b/lessons/CopyOfcode_debugging_assignment_jed_lichtensztajn.html @@ -0,0 +1,481 @@ + + + + + + + + + + + + + + + +Code Review/Debugging Assignment + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + +
+

The Assignment:

+

Tip: View this in the visual editor in RStudio

+

You want to re-create the HTML document in the lessons/ +folder in this repo titled code_debugging_output.html. +Below is the workflow to do so, however you +will notice if you attempt to render this R Markdown document as is it +does NOT reproduce the code_debugging_output.html file, and +won’t even render until you fix some of the mistakes/missing elements. +Therefore, this workflow is not reproducible! Your task is to fix the +below coding workflow so that it renders and exactly +matches the output of code_debugging_output.html +(including whether or not certain code chunks and/or outputs +are shown).

+

There are a total of 5 fixes you need to make to the +workflow below. To complete this assignment you must +1) Identify the 5 errors and specify what they +are below (4 pts each) and 2) fix the +errors and render this entire .Rmd as am HTML doc where the content +below matches that of the code_debugging_output.html (5 +pts).

+

List here the 5 errors you had to fix in this +workflow:

+
    +
  1. color = species for scatter plot

  2. +
  3. Adelie was spelled wrong

  4. +
  5. In set up script added echo = FALSE

  6. +
  7. created a new object for adelie adelie <- penguins %>% +filter(species == ‘Adelie’)

  8. +
  9. +
+
+
+

The workflow you need to fix begins here:

+

In this workflow, we want to explore the Palmer Penguins data set +collected at the Palmer Station LTER in Antarctica. This data is stored +in the {palmerpenguins} data package.

+

We read in the data and initially explore its structure:

+
##       species          island    bill_length_mm  bill_depth_mm  
+##  Adelie   :152   Biscoe   :168   Min.   :32.10   Min.   :13.10  
+##  Chinstrap: 68   Dream    :124   1st Qu.:39.23   1st Qu.:15.60  
+##  Gentoo   :124   Torgersen: 52   Median :44.45   Median :17.30  
+##                                  Mean   :43.92   Mean   :17.15  
+##                                  3rd Qu.:48.50   3rd Qu.:18.70  
+##                                  Max.   :59.60   Max.   :21.50  
+##                                  NA's   :2       NA's   :2      
+##  flipper_length_mm  body_mass_g       sex           year     
+##  Min.   :172.0     Min.   :2700   female:165   Min.   :2007  
+##  1st Qu.:190.0     1st Qu.:3550   male  :168   1st Qu.:2007  
+##  Median :197.0     Median :4050   NA's  : 11   Median :2008  
+##  Mean   :200.9     Mean   :4202                Mean   :2008  
+##  3rd Qu.:213.0     3rd Qu.:4750                3rd Qu.:2009  
+##  Max.   :231.0     Max.   :6300                Max.   :2009  
+##  NA's   :2         NA's   :2
+

Let’s first explore body mass among all the penguin species with a +histogram:

+

+

Now we want to visualize the relationship between body mass and bill +length among species:

+

+

Finally, let’s create a new data frame called adelie +that contains data for just the Adelie penguin species, and +then visualize the differences in that species’ body mass among +islands.

+

+

This figure suggests Adelie individuals on the Dream island +are slightly smaller that those on the Biscoe and Torgersen islands.

+
+ + + + +
+ + + + + + + + + + + + + + + diff --git a/setup.R b/setup.R new file mode 100644 index 0000000..77ad36b --- /dev/null +++ b/setup.R @@ -0,0 +1,16 @@ +packageLoad <- + function(x) { + for (i in 1:length(x)) { + if (!x[i] %in% installed.packages()) { + install.packages(x[i]) + } + library(x[i], character.only = TRUE) + } + } + +# create a string of package names +packages <- c('tidyverse', + 'palmerpenguins', + 'lterdatasampler','purrr','rstatix') + +packageLoad(packages)