|
1 | 1 | --- |
2 | 2 | layout: page |
3 | 3 | title: Setup |
4 | | -root: . |
| 4 | +permalink: /setup/ |
5 | 5 | --- |
6 | | -FIXME |
| 6 | + |
| 7 | +# Overview |
| 8 | + |
| 9 | +This workshop is designed to be run on your local machine. To do this, you will need to install all of the software used in the workshop and obtain a copy of the dataset. It is also possible to use a Docker image instead of installing the software locally. The Docker image we use allows participants to run a virtual installation of `R`, RStudio, and the necessary dependencies through their browser with streamlined installation process. Instructions for both of these options are below. |
| 10 | + |
| 11 | +## Option A: Local Installation |
| 12 | + |
| 13 | +### Software |
| 14 | + |
| 15 | +| Software | Install | Manual | Available for | Description | |
| 16 | +| -------- | ------------ | ------ | ------------- | ----------- | |
| 17 | +| [GDAL](http://www.gdal.org) | [Link](http://www.gdal.org/usergroup0.html) | [Link](http://www.gdal.org) | Linux, MacOS, Windows | Geospatial model for reading and writing a variety of formats | |
| 18 | +| [GEOS](https://trac.osgeo.org/geos) | [Link](https://trac.osgeo.org/geos) | [Link](http://geos.osgeo.org/doxygen/) | Linux, MacOS, Windows | Geometry models and operations | |
| 19 | +| [PROJ.4](http://proj4.org) | [Link](http://proj4.org/install.html)| [Link](http://proj4.org/index.html)| Linux, MacOS, Windows | Coordinate reference system transformations | |
| 20 | +| [R](https://www.r-project.org) | [Link](https://cloud.r-project.org) | [Link](https://cloud.r-project.org) | Linux, MacOS, Windows | Software environment for statistical and scientific computing | |
| 21 | +| [RStudio](https://www.rstudio.com) | [Link](https://www.rstudio.com/products/rstudio/download/#download) | | Linux, MacOS, Windows | GUI for R | |
| 22 | +| [UDUNITS](https://www.unidata.ucar.edu/software/udunits/) | [Link](https://www.unidata.ucar.edu/downloads/udunits/index.jsp) | [Link](https://www.unidata.ucar.edu/software/udunits/#documentation) | Linux, MacOS, Windows | Unit conversions | |
| 23 | + |
| 24 | +### QuickStart Software Installation Instructions |
| 25 | + |
| 26 | +These are the QuickStart installation instructions. At points, they assume familiarity with the command line and with installation in general. As there are different operating systems and many different versions of operating systems and environments, these may not work on your computer. If an installation doesn't work for you, please refer to the installation instructions for that software, listed in the table above. |
| 27 | + |
| 28 | +### R |
| 29 | +Participants who do not already have `R` installed should download and install it. |
| 30 | + |
| 31 | +> ## Windows |
| 32 | +> |
| 33 | +>To install `R`, Windows users should select "Download R for Windows" from RStudio and CRAN's [cloud download page](https://cloud.r-project.org), which will automatically detect a CRAN mirror for you to use. Select the `base` subdirectory after choosing the Windows download page. A `.exe` executable file containing the necessary components of base R can be downloaded by clicking on "Download R 3.x.x for Windows". |
| 34 | +> |
| 35 | +{: .solution} |
| 36 | + |
| 37 | +> ## macOS |
| 38 | +> |
| 39 | +>To install `R`, macOS users should select "Download R for (Mac) OS X" from RStudio and CRAN's [cloud download page](https://cloud.r-project.org), which will automatically detect a CRAN mirror for you to use. A `.pkg` file containing the necessary components of base R can be downloaded by clicking on the first available link (this will be the most recent), which will read `R-3.x.x.pkg`. |
| 40 | +> |
| 41 | +{: .solution} |
| 42 | + |
| 43 | +> ## Linux |
| 44 | +> |
| 45 | +>To install `R`, Linux users should select "Download R for Linux" from RStudio and CRAN's [cloud download page](https://cloud.r-project.org), which will automatically detect a CRAN mirror for you to use. Instructions for a number of different Linux operating systems are available. |
| 46 | +> |
| 47 | +{: .solution} |
| 48 | + |
| 49 | +### RStudio |
| 50 | +RStudio is an GUI for using R that is available for Windows, macOS, and various Linux operating systems. It can be downloaded [here](https://www.rstudio.com/products/rstudio/download/). You will need the **free** Desktop version for your computer. |
| 51 | + |
| 52 | +### GDAL, GEOS, and PROJ.4 |
| 53 | + |
| 54 | +The installation of the geospatial libraries GDAL, GEOS, and PROJ.4 varies significantly based on operating system. These are all dependencies for `sf`, the `R` package that we will be using for spatial data operations throughout this workshop. |
| 55 | + |
| 56 | +> ## Windows |
| 57 | +> |
| 58 | +>To install the geospatial libraries, install the latest version [RTools](https://cran.r-project.org/bin/windows/Rtools/) |
| 59 | +> |
| 60 | +{: .solution} |
| 61 | + |
| 62 | +> ## macOS |
| 63 | +> |
| 64 | +> For participants who do not already have [homebrew](https://brew.sh) installed, and who may be less comfortable with the command line, the easiest was to obtain the geospatial libraries is to install the latest version of [Kyng Chaos's pre-built package](http://www.kyngchaos.com/software/frameworks) for GDAL Complete. Be aware that several other libraries are also installed, including the UnixImageIO, SQLite3, and `NumPy`. |
| 65 | +> |
| 66 | +> Alternatively, participants who are comfortable with the command line can install the geospatial libraries individually using [homebrew](https://brew.sh): |
| 67 | +> |
| 68 | +>~~~ |
| 69 | +>$ brew tap osgeo/osgeo4mac && brew tap --repair |
| 70 | +>$ brew install proj |
| 71 | +>$ brew install geos |
| 72 | +>$ brew install gdal2 --with-armadillo --with-complete --with-libkml --with-unsupported |
| 73 | +>$ brew link --force gdal2 |
| 74 | +>~~~ |
| 75 | +>{: .language-bash} |
| 76 | +> |
| 77 | +{: .solution} |
| 78 | +
|
| 79 | +> ## Linux |
| 80 | +> |
| 81 | +> Steps for installing the geospatial will vary based on which form of Linux you are using. These instructions are adapted from the [`sf` package's `README`](https://github.com/r-spatial/sf). |
| 82 | +> |
| 83 | +> For **Ubuntu**: |
| 84 | +> |
| 85 | +>~~~ |
| 86 | +>$ sudo add-apt-repository ppa:ubuntugis |
| 87 | +>$ sudo apt-get update |
| 88 | +>$ sudo apt-get install libgdal-dev libgeos-dev libproj-dev |
| 89 | +>~~~ |
| 90 | +>{: .language-bash} |
| 91 | +> |
| 92 | +> For **Fedora**: |
| 93 | +> |
| 94 | +>~~~ |
| 95 | +>$ sudo dnf install gdal-devel proj-devel proj-epsg proj-nad geos-devel |
| 96 | +>~~~ |
| 97 | +>{: .language-bash} |
| 98 | +> |
| 99 | +> For **Arch**: |
| 100 | +> |
| 101 | +>~~~ |
| 102 | +>$ pacman -S gdal proj geos |
| 103 | +>~~~ |
| 104 | +>{: .language-bash} |
| 105 | +> |
| 106 | +> For **Debian**: The [rocker geospatial](https://github.com/rocker-org/geospatial) Dockerfiles may be helpful. Ubuntu Dockerfiles are found [here](https://github.com/r-spatial/sf/tree/master/inst/docker). |
| 107 | +> |
| 108 | +{: .solution} |
| 109 | +
|
| 110 | +### UDUNITS |
| 111 | +
|
| 112 | +Linux users will have to install UDUNITS separately. Like the geospatial libraries discussed above, this is a dependency for the `R` package `sf`. Due to conflicts, it does not install properly on Linux machines when installed as part of the `sf` installation process. It is therefore necessary to install it using the command line ahead of time. |
| 113 | +
|
| 114 | +> ## Linux |
| 115 | +> |
| 116 | +> Steps for installing the geospatial will vary based on which form of Linux you are using. These instructions are adapted from the [`sf` package's `README`](https://github.com/r-spatial/sf). |
| 117 | +> |
| 118 | +> For **Ubuntu**: |
| 119 | +> |
| 120 | +>~~~ |
| 121 | +>$ sudo apt-get install libudunits2-dev |
| 122 | +>~~~ |
| 123 | +>{: .language-bash} |
| 124 | +> |
| 125 | +> For **Fedora**: |
| 126 | +> |
| 127 | +>~~~ |
| 128 | +>$ sudo dnf install udunits2-devel |
| 129 | +>~~~ |
| 130 | +>{: .language-bash} |
| 131 | +> |
| 132 | +> For **Arch**: |
| 133 | +> |
| 134 | +>~~~ |
| 135 | +>$ pacaur/yaourt/whatever -S udunits |
| 136 | +>~~~ |
| 137 | +>{: .language-bash} |
| 138 | +> |
| 139 | +> For **Debian**: |
| 140 | +> |
| 141 | +>~~~ |
| 142 | +>$ sudo apt-get install -y libudunits2-dev |
| 143 | +>~~~ |
| 144 | +>{: .language-bash} |
| 145 | +> |
| 146 | +{: .solution} |
| 147 | +
|
| 148 | +### R Packages |
| 149 | +
|
| 150 | +The following `R` packages are used in the various geospatial lessons. |
| 151 | +
|
| 152 | +* [`dplyr`](https://cran.r-project.org/package=dplyr) |
| 153 | +* [`raster`](https://cran.r-project.org/package=raster) |
| 154 | +* [`rgdal`](https://cran.r-project.org/package=rgdal) |
| 155 | +* [`rasterVis`](https://cran.r-project.org/package=rasterVis) |
| 156 | +* [`remotes`](https://cran.r-project.org/package=remotes) |
| 157 | +* [`sf`](https://cran.r-project.org/package=sf) |
| 158 | +
|
| 159 | +To install them from the `R` prompt, type: |
| 160 | +
|
| 161 | +```r |
| 162 | +install.packages(c("dplyr", "raster", "rgdal", "rasterVis", "remotes", "sf")) |
| 163 | +``` |
| 164 | +
|
| 165 | +Additionally, you will need to install the *development* version of [`ggplot2`](https://github.com/tidyverse/ggplot2): |
| 166 | +
|
| 167 | +```r |
| 168 | +remotes::install_github("tidyverse/ggplot2") |
| 169 | +``` |
| 170 | +
|
| 171 | +## Option B: Docker |
| 172 | +
|
| 173 | +[Docker](https://www.docker.com) provides developers with a means for creating interactive [containers](https://docs.docker.com/glossary/?term=container) that contain pre-installed software. A selection of pre-installed software in Docker is called an [image](https://docs.docker.com/glossary/?term=image). An image can be downloaded and used to create a local container, allowing end-users to get software up and running quickly. This is particularly useful when a local installation of the software could be complex and time consuming. For `R` users, a Docker image can be used to create a virtual installation of `R` and RStudio that can be run through your web browser. |
| 174 | +
|
| 175 | +Option B involves downloading an Docker image that contains an installation of `R`, RStudio Server, all of the necessary dependencies listed above, and almost all of the `R` packages used in the geospatial lessons. You will need to install the appropriate version of Docker's Community Edition software and then download and use the `rocker/geospatial` Docker image to create a container that will allow you to use `R`, RStudio, and all the required GIS tools without installing any of them locally. |
| 176 | +
|
| 177 | +Once up and running - you'll have full access to RStudio right from your browser: |
| 178 | +
|
| 179 | + |
| 180 | +
|
| 181 | +*Please be aware that the `R` package `rasterVis` is not included in the `rocker/geospatial` Docker image. If your instructor teaches with this package, this will be an `R` package you will need to install yourself. You will also have to install the development version of `ggplot2` until `ggplot2` is released in June 2018 and the updated version is added to `rocker/geospatial`. All other `R` packages will already be installed for you.* |
| 182 | +
|
| 183 | +> ## Downloading and Installing Docker Community Edition |
| 184 | +> |
| 185 | +> To get started with Docker, download the [Docker Community Edition](https://www.docker.com/community-edition) from [Docker's store](https://store.docker.com/search?type=edition&offering=community). Community editions are available for [Windows](https://store.docker.com/editions/community/docker-ce-desktop-windows), [macOS](https://store.docker.com/editions/community/docker-ce-desktop-mac), and Linux operating systems including [Debian](https://store.docker.com/editions/community/docker-ce-server-debian), [Fedora](https://store.docker.com/editions/community/docker-ce-server-fedora), and [Ubuntu](https://store.docker.com/editions/community/docker-ce-server-ubuntu). |
| 186 | +> |
| 187 | +> The download pages for each of these operating systems contain notes about some necessary system requirements and other pre-requisites. Once you download the installer and follow the on-screen prompts. |
| 188 | +> |
| 189 | +> Additional installation notes are available in Docker's documentation for each of these operating systems: [Windows](https://docs.docker.com/docker-for-windows/install/), [macOS](https://docs.docker.com/docker-for-mac/install/), [Debian](https://docs.docker.com/install/linux/docker-ce/debian/), [Fedora](https://docs.docker.com/install/linux/docker-ce/fedora/), and [Ubuntu](https://docs.docker.com/install/linux/docker-ce/ubuntu/). |
| 190 | +> |
| 191 | +{: .solution} |
| 192 | +
|
| 193 | +> ## Using the `rocker/geospatial` Docker Image via the Command Line |
| 194 | +> |
| 195 | +> #### Download and Set-up |
| 196 | +> Once Docker is installed and up and running, you will need to open your computer's command line terminal. We'll use the terminal to download [`rocker/geospatial`](https://github.com/rocker-org/geospatial), a pre-made Docker image that contains an installation of `R`, RStudio Server, all of the necessary dependencies, and all but one of the `R` packages needed for this workshop. |
| 197 | +> |
| 198 | +> You need to have already installed Docker Community Edition (see instructions above) before proceeding. Once you have Docker downloaded and installed, make sure Docker is running and then enter the following command into the terminal to download the `rocker/geospatial` image: |
| 199 | +> |
| 200 | +>~~~ |
| 201 | +>$ docker pull rocker/geospatial |
| 202 | +>~~~ |
| 203 | +>{: .language-bash} |
| 204 | +> |
| 205 | +> Once the pull command is executed, the image needs to be run to become accessible as a container. In the following example, the image is named `rocker/geospatial` and the container is named `gis`. The [image](https://docs.docker.com/glossary/?term=image) contains the software you've downloaded, and the [container](https://docs.docker.com/glossary/?term=container) is the run-time instance of that image. New Docker users should need only one named container per image. |
| 206 | +> |
| 207 | +> When `docker run` is used, you can specify a folder on your computer to become accessible inside your RStudio Server instance. The following `docker run` command exposes Jane's `GitHub` directory to RStudio Server. Enter the file path where your workshop resources and data are stored: |
| 208 | +> |
| 209 | +>~~~ |
| 210 | +>$ docker run -d -P --name gis /Users/jane/GitHub:/home/rstudio/GitHub rocker/geospatial |
| 211 | +>~~~ |
| 212 | +>{: .language-bash} |
| 213 | +> |
| 214 | +> When she opens her RStudio instance below, she will see a `GitHub` folder in her file tab in the lower righthand corner of the screen. Windows and Linux users will have to adapt the file path above to follow the standards of their operating systems. More details are available on [rocker's Wiki](https://github.com/rocker-org/rocker/wiki/Sharing-files-with-host-machine). |
| 215 | +> |
| 216 | +> The last step before launching your container in a browser is to identify the port that your Docker container is running in: |
| 217 | +> |
| 218 | +>~~~ |
| 219 | +>$ docker port gis |
| 220 | +>~~~ |
| 221 | +>{: .language-bash} |
| 222 | +> |
| 223 | +> An output, for example, of `8787/tcp -> 0.0.0.0:32768` would indicate that you should point your browser to `http://localhost:32768/`. If prompted, enter `rstudio` for both the username and the password. |
| 224 | +> |
| 225 | +> #### Stopping a Container |
| 226 | +> When you are done with a Docker session, make sure all of your files are saved locally on your computer **before closing your browser and Docker**. Once you have ensured all of your files are available (they should be saved at the file path designated in `docker run` above), you can stop your Docker container in the terminal: |
| 227 | +> |
| 228 | +>~~~ |
| 229 | +>$ docker stop gis |
| 230 | +>~~~ |
| 231 | +>{: .language-bash} |
| 232 | +> |
| 233 | +> #### Re-starting a Container |
| 234 | +> Once a container has been named and created, you cannot create a container with the same name again using `docker run`. Instead, you can restart it: |
| 235 | +> |
| 236 | +>~~~ |
| 237 | +>$ docker start gis |
| 238 | +>~~~ |
| 239 | +>{: .language-bash} |
| 240 | +> |
| 241 | +> If you cannot remember the name of the container you created, you can use the following command to print a list of all named containers: |
| 242 | +> |
| 243 | +>~~~ |
| 244 | +>$ docker ps -a |
| 245 | +>~~~ |
| 246 | +>{: .language-bash} |
| 247 | +> |
| 248 | +> If you are returning to a session after stopping Docker itself, make sure Docker is running again before re-starting your container! |
| 249 | +> |
| 250 | +{: .solution} |
| 251 | +
|
| 252 | +> ## Using the `rocker/geospatial` Docker Image via Kitematic |
| 253 | +> #### Download and Install Kitematic |
| 254 | +> [Kitematic](https://github.com/docker/kitematic) is the GUI, currently in beta, that Docker has built for accessing images and containers on Windows, macOS, and Ubuntu. You can download the appropriate installer files from Kitematic's [GitHub release page](https://github.com/docker/kitematic/releases/tag/v0.17.3). You need to have already installed Docker Community Edition (see instructions above) before installing Kitematic! |
| 255 | +> |
| 256 | +> #### Opening a Container with Kitematic |
| 257 | +> Once you have installed Kitematic, make sure the Docker application is running and then open Kitematic. You should not need to create a login to use Kitematic. If prompted for login credentials, there is an option to skip that step. Use the search bar in the main window to find `rocker/geospatial` (pictured below) and click `Create` under that Docker repository. |
| 258 | +> |
| 259 | +>  |
| 260 | +> |
| 261 | +> After downloading and installing the image, your container should start automatically. Before opening your browser, connect your Docker image to a local folder where you have your workshop resources stored by clicking on the `Settings` tab and then choosing `Volumes`. Click `Change` and then select the directory you would like to connect to. |
| 262 | +> |
| 263 | +>  |
| 264 | +> |
| 265 | +> When you open RStudio instance below, you will see the contents of the connected folder inside the `kitematic` directory in the file tab located in the lower righthand corner of the screen. |
| 266 | +> |
| 267 | +> When you are ready, copy the `Access URL` from the `Home` tab: |
| 268 | +> |
| 269 | +>  |
| 270 | +> |
| 271 | +> Paste that url into your browser and, if prompted, enter `rstudio` for both the username and the password. |
| 272 | +> |
| 273 | +> #### Stopping and Restarting a Container |
| 274 | +> When you are done with a Docker session, make sure all of your files are saved locally on your computer **before closing your browser and Docker**. Once you have ensured all of your files are available (they should be saved at the file path designated in `docker run` above), you can stop your Docker container by clicking on the `Stop` icon in Kitematic's toolbar. |
| 275 | +> |
| 276 | +> You can restart your container later by clicking the `Restart` button. |
| 277 | +> |
| 278 | +{: .solution} |
| 279 | +
|
| 280 | +> ## Managing Docker Containers and Images |
| 281 | +> To obtain a list of all of your current Docker containers: |
| 282 | +> |
| 283 | +>~~~ |
| 284 | +>$ docker ps -a |
| 285 | +>~~~ |
| 286 | +>{: .language-bash} |
| 287 | +> |
| 288 | +> To list all of the currently downloaded Docker images: |
| 289 | +> |
| 290 | +>~~~ |
| 291 | +>$ docker images -a |
| 292 | +>~~~ |
| 293 | +>{: .language-bash} |
| 294 | +> |
| 295 | +> These images can take up system resources, and if you'd like to remove them, you can use the `docker prune` command. To remove any Docker resources not affiliated with a container listed under `docker ps -a`: |
| 296 | +> |
| 297 | +>~~~ |
| 298 | +>$ docker system prune |
| 299 | +>~~~ |
| 300 | +>{: .language-bash} |
| 301 | +> |
| 302 | +> To remove **all** Docker resources, including currently named containers: |
| 303 | +> |
| 304 | +>~~~ |
| 305 | +>$ docker system prune -a |
| 306 | +>~~~ |
| 307 | +>{: .language-bash} |
| 308 | +> |
| 309 | +{: .solution} |
0 commit comments