About Me

Professional Background

I graduated from the University of California, Santa Barbara in 2022 with a B.S. in Zoology. During that time, I assisted in a meta-analysis, extracting global data on ungulate diets to better understand how plant biodiversity is affected by select functional traits of large herbivores. After graduating, I held various positions within the public sector, working for the National Parks Service and later, the California Department of Food and Agriculture.

I am currently pursuing a Master of Environmental Data Science at the UC Santa Barbara, Bren School of Environmental Science & Management. Moving forward, I hope to use spatial data to assess landscape changes, and the impact of ecosystem stressors including climate change, disease, and invasive species.

Education

Master of Environmental Data Science - University of California, Santa Barbara (Expected June 2024)

B.S. Zoology - University of California, Santa Barbara (2022)

Bird Watching

One of my favorite undergraduate classes was my vertebrate lab. I had the opportunity to visit sites across Santa Barbara to go bird watching, and learn about wildlife surveying techniques. I have continued to bird watch ever since, and keep track of my sightings using the Merlin and eBird apps, which are maintained by the Cornell Lab of Ornithology.

I thought it would be fun to visualize my personal bird sightings using a leaflet map:

Code
# add CRS to lat/long points
birds <- birds %>%   st_as_sf(coords = c('longitude', 'latitude'), crs = 'EPSG:4236')

# create map
birds %>% 
  leaflet() %>% 
  addProviderTiles(providers$Jawg.Streets,
                   options = providerTileOptions(accessToken = token)) %>% 
  addMarkers(label = birds$common_name,
             popup = paste0(birds$common_name, ' (',
                            birds$scientific_name, ')'),
             clusterOptions = markerClusterOptions(),
             icon = makeIcon(iconUrl = iconpath,
                             iconWidth = 32, iconHeight = 32))