get_pdxTrees_parks {pdxTrees} | R Documentation |
Load the pdxTrees_parks data
Description
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.
Usage
get_pdxTrees_parks(park = NULL)
Arguments
park |
A vector of park names for filtering the data. If NULL, all park trees will be returned. |
Value
Returns a data frame of 34 variables where each row is a tree:
- UserID
ID
- Inventory_Date
Date of data collection
- Species
Species of the tree. All dead trees were listed as "unknown"
- Common_Name
Common name of the tree
- DBH
Diameter at breast height (4.5' above ground)
- Condition
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).
- Tree_Height
Height from the ground to the live top of the tree. For dead trees, total height was measured.
- Crown_Width_NS
North to South canopy width
- Crown_Width_EW
East to West canopy width
- Crown_Base_Height
Height from the ground to the lowest live canopy.
- Collected_By
Whether data were collect by staff or volunteer
- Park
Park where tree is located
- Scientific_Name
Scientific name of the tree
- Family
Family of the tree
- Genus
Genus of the tree
- Functional_Type
Categorical variable with groups: Broadleaf Deciduous (BD), Broadleaf Evergreen (BE), Coniferous Deciduous (CD), and Coniferous Evergreen (CE)
- Mature_Size
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
- Native
Whether or not the tree is native
- Edible
Categorical variable of edible trees
- Nuisance
Categorical variable indicating if it is a nuisance species
- Structural_Value
Monetary value of replacing the tree and the benefits that it provides, based on methods from the Council of Tree and Landscape Appraisers
- Carbon_Storage_lb
The amount of carbon (in lbs.) that is bound up in both the above-ground and below-ground parts of the tree
- Carbon_Storage_value
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.
- Carbon_Sequestration_lb
The amount of carbon (in lbs.) removed from the atmosphere by the tree, annually.
- Carbon_Sequestration_value
The monetary value of carbon ($129.72/ton), estimated based on the economic damages associated with increases in carbon or carbon dioxide emissions.
- Stormwater_ft
The amount (cubic feet) of avoided stormwater runoff because of rainfall interception by the tree on its leaves and other surfaces.
- Stormwater_value
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.
- Pollution_Removal_oz
The amount (oz.) of air pollution that is removed from the atmosphere by trees.
- Pollution_Removal_value
The monetary value associated with tree effects on atmospheric pollution, annually.
- Total_Annual_Services
Sum of the annual benefits
- Origin
Origin of the tree
- Species_Factoid
Additional information about the tree
- Longitude
Longitude
- Latitude
Latitude
Source
https://www.portlandoregon.gov/parks/article/433143
Examples
# 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"))