generated from NEFSC/NEFSC-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnother mapping example.Rmd
101 lines (74 loc) · 2.52 KB
/
Another mapping example.Rmd
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
---
title: "Mapping example for Katie"
author: "Andy Jones"
date: "6/7/2019"
output: html_document
editor_options:
chunk_output_type: console
---
```{r}
#loading mapping packages
#some of these you might need to install?
library(tidyverse)
library(maptools)
library(mapdata)
library(marmap)
##############################
#Getting a base map
#This pulls a generic NOAA map
# get bathymetry data
b = getNOAA.bathy(lon1 = -70, lon2 = -62, lat1 = 36, lat2 = 42,
resolution = 1)
#plot.bathy(b)
## Querying NOAA database ...
## This may take seconds to minutes, depending on grid size
## Building bathy matrix ...
# convert bathymetry to data frame
bf = fortify.bathy(b)
# get regional polygons
reg = map_data("world2Hires")
reg = subset(reg, region %in% c('Canada', 'USA'))
# convert lat longs
reg$long = (360 - reg$long)*-1
# set map limits
lons = c(-70, -62)
lats = c(36, 42)
```
```{r}
##############################
#Example data here
EXAMPLE_DATA <- tibble(Species=sample(c('A','B'), 100, replace=TRUE),LON=runif(min=-70,max=-62,n=100),LAT=runif(min=36,max=42,n=100))
```
```{r}
##############################
#Plotting here
# make plot
p <- ggplot() +
# add 100m contour
geom_contour(data = bf,
aes(x=x, y=y, z=z),
breaks=seq(-100,-5000,-100),
size=c(0.3),
colour="grey")+
# add coastline
geom_polygon(data = reg, aes(x = long, y = lat, group = group),
fill = "darkgrey", color = NA) +
#Coordinates
coord_map(xlim = lons, ylim = lats)+
# formatting
ylab("")+xlab("")+
theme_bw() +
theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
scale_fill_viridis_c(direction = -1) +
#adding points for the EXAMPLE DATA records
geom_point(data=EXAMPLE_DATA,aes(x=LON,y=LAT,colour=Species)) +
#Adding labels
labs(x='Longitude',y='Latitude',subtitle='Example data that are just made up',
title='Example data',fill='No. records',
caption='* These are fun made up data')
print(p)
##############################
#This is for printing the map to a pdf if you want to do that
#Some code changes needed
# ggsave('C:/Users/andrew.jones/Desktop/Northeast Canyons and Seamounts Marine National Monument Maps/EXAMPLE_DATA.pdf',sep=''),device = "pdf",width = 9, height = 9, units = c("in"))
```