Description Usage Arguments Value Source Examples
View source: R/get_pdxTrees_parks.R
This function pulls the pdxTrees_parks dataset from the GitHub repository: https://github.com/mcconvil/pdxTrees. pdxTrees_parks is a data frame of all the trees in 174 parks in Portland, OR and was collected as part of the Urban Forestry Tree Inventory Project.
1 | get_pdxTrees_parks(park = NULL)
|
park |
A vector of park names for filtering the data. If NULL, all park trees will be returned. |
Returns a data frame of 34 variables where each row is a tree:
ID
Date of data collection
Species of the tree. All dead trees were listed as "unknown"
Common name of the tree
Diameter at breast height (4.5' above ground)
Trees were rated as good, fair, poor, or dead. These general ratings reflect whether or not a tree is likely to continue contributing to the urban forest (good and fair trees) or whether the tree is at or near the end of its life (poor and dead trees).
Height from the ground to the live top of the tree. For dead trees, total height was measured.
North to South canopy width
East to West canopy width
Height from the ground to the lowest live canopy.
Whether data were collect by staff or volunteer
Park where tree is located
Scientific name of the tree
Family of the tree
Genus of the tree
Categorical variable with groups: Broadleaf Deciduous (BD), Broadleaf Evergreen (BE), Coniferous Deciduous (CD), and Coniferous Evergreen (CE)
Categorical variable with groups: Large (L), Medium (M), and Small (S). Categorization is based on the height, canopy width, and general form of the tree at maturity
Whether or not the tree is native
Categorical variable of edible trees
Categorical variable indicating if it is a nuisance species
Monetary value of replacing the tree and the benefits that it provides, based on methods from the Council of Tree and Landscape Appraisers
The amount of carbon (in lbs.) that is bound up in both the above-ground and below-ground parts of the tree
The monetary value associated with tree effects on atmospheric carbon, $129.72/ton. This value is estimated based on the economic damages associated with increases in carbon or carbon dioxide emissions.
The amount of carbon (in lbs.) removed from the atmosphere by the tree, annually.
The monetary value of carbon ($129.72/ton), estimated based on the economic damages associated with increases in carbon or carbon dioxide emissions.
The amount (cubic feet) of avoided stormwater runoff because of rainfall interception by the tree on its leaves and other surfaces.
The monetary value of stormwater runoff that is avoided annually because of the rainfall interception by the tree ($0.008936/gallon), based on the economic damages associated with runoff and costs of stormwater control.
The amount (oz.) of air pollution that is removed from the atmosphere by trees.
The monetary value associated with tree effects on atmospheric pollution, annually.
Sum of the annual benefits
Origin of the tree
Additional information about the tree
Longitude
Latitude
https://www.portlandoregon.gov/parks/article/433143
1 2 3 4 5 6 7 8 9 10 |
# To grab all trees
get_pdxTrees_parks()
# To grab trees from one park
get_pdxTrees_parks(park = "Berkeley Park")
# To grab trees from multiple parks
get_pdxTrees_parks(park = c("Berkeley Park", "East Delta Park"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.