My first question, so here goes. I've just updated to OSX El Capitan 10.11.4 and it seems to have broken the excellent weatherData package for me. weatherData essentially builds an http url to get data from Wunderground and this is where the problem is. In summary,
a <- read.csv("http://www.wunderground.com/history/airport/LHR/2011/4/15/DailyHistory.html?format=1")
gives an error: Error in file(file, "rt") : cannot open the connection
Replacing http with https and the url works i.e.
a <- read.csv("https://www.wunderground.com/history/airport/LHR/2011/4/15/DailyHistory.html?format=1")
I'm using Revolution R 3.2.3, OSX 10.11.4.
http still works in Windows, hence weatherData is unaffected.
Has anyone experienced anything similar?
Thank you!!