forked from libjohn/map-spring2019
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexercise-1_xy.Rmd
More file actions
36 lines (20 loc) · 739 Bytes
/
exercise-1_xy.Rmd
File metadata and controls
36 lines (20 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
title: "Exercise 1: Georeferencing"
---
**QUESTION**
1. What four packages do you need for this exercise? (Hint: 01_georeference.Rmd) Load those packages below.
## Load Libraries
```{r}
```
## Load Data
The data is a CSV file named "mockaroo_latlon.csv" located in the data directory.
1. Use the `read_csv()` function to import the data and assign to an object named "xy_locations"
```{r}
```
### Plot XY on the Map
1. Using the `mapview()` function, plot the latitude and longitude variables of `xy_location`
2. There are at least two ways to do this (see 01_georeference.Rmd), Try the second method
3. Create a high contrast (black and white) map
4. Save the high contrast map as a jpeg file
```{r makemap}
```