====== World maps ====== * [[http://gadm.org/download_world.html|GADM]] - individual country maps * [[http://thematicmapping.org/downloads/world_borders.php|thematicmapping]] * [[https://tapiquen-sig.jimdo.com/english-version/free-downloads/world/|tapiquen]] - GOOD, missing: Cyprus, Kosovo, Vatican * [[https://wagda.lib.washington.edu/data/geography/world/|Wagda]], world * [[https://koordinates.com/layer/1103-world-country-boundaries/|Koordinates]], world * [[https://cmapsconnect.com/data/|C maps]], World 2013, LOW, missing: Gibraltar, Jan Mayen, Svarlbar * [[http://www.naturalearthdata.com/downloads/|Natural Earth]], [[http://www.naturalearthdata.com/downloads/50m-cultural-vectors/50m-admin-0-countries-2/|world 50m]] > library(maptools) > library(rgdal) > setwd("C:/Users/batagelj/Documents/papers/2018/CRoNoS/shape/TM_world") > W<-readShapePoly("TM_WORLD_BORDERS-0.3.shp") > plot(W) > plot(W,xlim=c(-25,48),ylim=c(40,67)) > plot(W,xlim=c(-10,45),ylim=c(52,60)) > setwd("C:/Users/batagelj/Documents/papers/2018/CRoNoS/shape/nEarth") > W<-readShapePoly("ne_50m_admin_0_countries.shp") > plot(W,xlim=c(-10,45),ylim=c(52,60)) > plot(W,xlim=c(15,20),ylim=c(52,60)) > plot(W,xlim=c(12,20),ylim=c(40,50)) > setwd("C:/Users/batagelj/Documents/papers/2018/CRoNoS/shape/world") > W<-readShapePoly("world.shp") > plot(W,xlim=c(-10,45),ylim=c(52,60))