Weather data:
Start by downloading the following weather data.
is the unique int id associated with the weather event.
is the location associated with the weather event.
is the date the event started.
is the time the event started.
is the type of weather event.
are the number of people killed by the weather.
are the number of people injured by the event.
is the $ worth of property damage caused by the event.
is the starting latitude for the event.
is the starting longitude for the event.
Once you read the data into the program, create a WeatherEvent structure and populate the data from the csv file.
Write a function to determine events that caused injuries.
Write a function to determine events that caused deaths.
Write a function to evaluate the Thunderstorms and their start time.
Write a function to display the dates of the Heat events.
Think of three other interesting functions to write to examine the weather data.