Welcome

Photo from: https://www.centralparknyc.org/



Squirrels are familiar neighbors to all New Yorkers. Central Park provides over 800 acres of prime habitat for approximately 2,300 squirrels. (That’s roughly 2.74 squirrels per acre!)1

Our team hopes to close the divide between squirrels and New Yorkers by creating fun and engaging visual descriptions of Manhattan’s fuzziest population. Explore our website to learn more about Central Park’s squirrels using observational data from the 2018 Squirrel Census2.




Screen cast


Meet the squirrels!

Hover over each point on the map to learn more about the name, age, and fur color of the squirrel spotted at that location!

geo_coord = squirrel_census |> 
  mutate(
    activity = case_when(
      running == "TRUE" ~ "running",
      chasing == "TRUE" ~ "chasing",
      climbing == "TRUE" ~ "climbing",
      foraging == "TRUE" ~ "foraging",
      is.na(other_activities) ~ "sedentary") 
  ) |> select(x, y, name, age, combination_of_primary_and_highlight_color, primary_fur_color, activity)

map_squirrels = 
  geo_coord |> 
  mutate(squirrel_deets = str_c(name, age, combination_of_primary_and_highlight_color, activity, sep = "<br />")) |>
  plot_ly(
    lat = ~y,
    lon = ~x,
    color = ~primary_fur_color,
    colors = "Set2",
    marker = list(color = "Dark"),
    type = 'scattermapbox',
    hovertext = ~squirrel_deets,
    mode   = 'markers', 
    alpha = 0.7)

map_squirrels = 
  map_squirrels |> 
  layout(
    mapbox = list(
      style = 'carto-positron',
      zoom = 12.75,
      center = list(lon = -73.96473, lat = 40.78396))) 

map_squirrels 

For more informartion about New York’s Squirrels, check out these references:

  1. https://www.centralparknyc.org/articles/getting-to-know-central-parks-squirrels
  2. https://www.thesquirrelcensus.com/data