Nova Scotia Climate Data
Searches:
- Clicking this and then selecting "Download Data" will get you daily weather info for all of 1920 for this particular Nova Scotian (Prov=NS) station (StationID=6355) -- Halifax.
- The Readme.txt file at their "Get more data" site has instructions for automatically retrieving data, using shell scripts, and linux:
- This command gets all daily data from Pictou in 04 and 05:
for year in `seq 1904 1905`;do wget --content-disposition "http://climate.weather.gc.ca/climate_data/bulk_data_e.html?format=csv&stationID=6430&Year=${year}&Month=1&Day=14&timeframe=2&submit=Download+Data" ;done
- Then we'll have to paste the csv files together, to get a single file. I can create a script to do this, I suppose... I should....
- The station ids used in the command above are given in the Station%20Inventory%20EN.csv file. Station ID is not the same as Climate ID.
Analysis
Here are some examples of what I have been doing with the climate data. Each plot shows a mean temperature for each year over time. Unsurprisingly, maximum, minimum, and mean temperatures appear to show the same patterns for each station. There are similarities between stations as well, such as the dip in temperatures leading up to 1905.