ropensci / rnaturalearth

An R package to hold and facilitate interaction with natural earth map data :earth_africa:
http://ropensci.github.io/rnaturalearth/
Other
214 stars 24 forks source link

Bad url in function install_rnaturalearthhires() #47

Closed sbegueria closed 2 years ago

sbegueria commented 2 years ago

In function install_rnaturalearthhires() you try to use the following url:

... repos = "http://packages.ropensci.org", type = "source")

but that doesn't work because the site uses https. The command should be:

... repos = "https://packages.ropensci.org", type = "source")

andysouth commented 2 years ago

Thanks @sbegueria this should now be fixed by using the github version. Feel free to re-open if it is still an issue for you.