-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.qmd
86 lines (52 loc) · 2.72 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
81
82
83
84
85
86
---
title: "Northern New Mexico Plateau Subregion Landscape Assessment"
author: "Alex Mezera, Conservation Data Lab"
---
<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 the Northern New Mexico Plateau Subregion, one of the [Southern Rockies Fire Science Network's](https://www.southernrockiesfirescience.org/){target="blank"} (SRFSN) five Subregions
* 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
The SRFSN Northern New Mexico Plateau Subregion is located in south/central Colorado, north/central New Mexico [Read more](https://www.southernrockiesfirescience.org/wyoming-sagebrush/){target="blank"}.
<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/nmpla_allinc.gpkg") %>%
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 = 'Northern New Mexico Plateau Subregion',)
quickmap
```
## How to use this web report
* All maps, input datasets and further assistance can be obtained by contacting the authors, [Randy Swaty](mailto:[email protected]), Nature Conservancy Ecologist, Conservation Data Lab co-lead or [Alex Mezera](mailto:[email protected]).
* 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