Used to read csv data downloaded from Blitzorg's historical data section. Converts these data to a Geopandas DF, and can plot in Folium.
By default, Storm() will read from an example data resource included with the package. To set this to read a file you download call it as:
>>> stormstats.Storm(f='path_to_file/filename.csv')
Currently features are limited, more will be added over time
In [2]:
import stormstats
In [3]:
S =stormstats.Storm()
In [4]:
S.df.head()
Out[4]:
In [5]:
S.get_map(create_html=False)
Out[5]:
In [ ]: