-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.qmd
83 lines (52 loc) · 2.29 KB
/
index.qmd
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
---
title: "Landscape Assessment for the Rogue River Basin"
author: "Randy Swaty, with substantial code from Myles Walimaa"
---
<font size="4">
**These LANDFIRE-Powered Landscape Assessments allow users to start exploring trends, landscape conversion and natural resource management options. **
</font>
## Goals of this demonstration
We will use [LANDFIRE](https://landfire.gov/){target="blank"} products to:
1. Characterize and map past and present ecosystem conditions.
2. Explore historical disturbance patterns.
3. Summarize patterns of change and management opportunities.
The following charts, maps, and graphs are based on current LANDFIRE products, and provide a starting point for further analysis.
This demonstration will:
* Provide context for the past and present ecosystem conditions of the Rogue River Basin analysis area.
* Demonstrate the power of data visualization to explore ecological patterns and functions using LANDFIRE products.
* Facilitate an understanding of historical and current conditions on a regional scale.
## Location
<br>
```{r libraries, message=FALSE, warning=FALSE, include=FALSE}
library(foreign)
library(sf)
library(terra)
library(tidyverse)
library(raster)
```
```{r read shapefile, message=FALSE, warning=FALSE, include=FALSE}
# read shape
shp <- st_read("data/RBS_Planning_Areas.shp") %>%
st_transform(crs = 5070) %>%
st_union() %>%
st_sf()
```
```{r locator map, message=FALSE, warning=FALSE, echo=FALSE}
library(tmap)
# toggle tmap mode to interactive viewing
tmap_mode("view")
# create a quick interactive map
quickmap <- qtm(shp,
borders = "darkgreen",
fill = NULL,
check.and.fix = TRUE,
basemaps = 'https://server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x}',
title = 'Rogue River Basin',)
quickmap
```
## How to use this web report
* All maps, input datasets and further assistance can be obtained by contacting the author, [Randy Swaty](mailto:[email protected]){target="blank"}.
* Review is ongoing.
* To share this web app, simply share the hyperlink.
* Toggle between dark and light display of this site in the upper right corner of the page.
* Learn more about LANDFIRE and The Nature Conservancy [here](about.qmd){target="blank}.