-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.qmd
84 lines (54 loc) · 2.5 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
---
title: "Map Zone 15 LANDFIRE Demo, 2023"
author: "Randy Swaty with substantial code contributions 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 quick demonstration
In general we will use [LANDFIRE](https://landfire.gov/) products to:
1. Map and summarize past and present ecosystems and ecosystem conditions
2. Explore historical disturbance regimes
3. Summarize patterns of change and management opportunities
Outputs presented here are the tip of the iceberg of what can be done with these datasets and are intended to help begin brainstorming about appropriate questions that could be explored collaboratively.
## Interacting with this web report
A few notes about using this report:
* As of February 16, 2023 there has been no QAQC. This is a demo only.
* This platform is web-hosted so you can simply share a link with collaborators for their review.
* Maps and charts are intended to represent general patterns, and are almost always limited to most common types (e.g., ecosystems). You can use the "zoom" tool to take a closer look.
* All maps, input datasets and further assistance can be obtained by contacting the author, [Randy Swaty](mailto:[email protected]).
## Location of this assessment
LANDFIRE Map Zone 15.
<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/mz15.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")
# read area of interest shapefile
# shp <- st_read("./DATA/gmnf_ownership.shp") %>%
# st_transform(5072) %>%
# st_union() %>%
# st_sf()
# create a quick interactive map
quickmap <- qtm(shp, borders = "darkgreen", check.and.fix = TRUE)
quickmap
```
* 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}.