Skip to content

Commit d8ed6a2

Browse files
authored
Merge pull request #1 from WeatherGod/typo-fixes
Fix some typos in the readme
2 parents 89c0f68 + ea47458 commit d8ed6a2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

05-interactive_temperature.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import matplotlib.pyplot as plt
22
from cycler import cycler
33
from pddc_helpers import (load_bwi_data, aggregate_by_month, aggregate_by_day,
4-
plot_aggregated_errorbar,
54
extract_day_of_hourly, extract_month_of_daily)
65

76

99-get_data.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ def get_filtered_isd(data_dir, s_date=None, f_date=None,
2121
fname = 'isd-history.csv'
2222
target_file = os.path.join(data_dir, fname)
2323

24+
os.makedirs(data_dir, exist_ok=True)
2425
if not os.path.exists(target_file) and allow_download:
2526
url_target = 'ftp://ftp.ncdc.noaa.gov/pub/data/noaa/isd-history.csv'
2627
with open(target_file, 'wb') as fout:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ for windows
1616

1717
### for 99-get_data
1818

19-
$ conda install -c cartopy proj4
19+
$ conda install -c conda-forge cartopy proj4
2020

2121
## Running
2222

2323
All of the examples should be run from IPython as
2424

2525
%run -i NN-FILE.py
2626

27-
and sholud each be self-contained.
27+
and should each be self-contained.

0 commit comments

Comments
 (0)