2025-03-29

Overview

  • The Shiny app CourseRating is meant to help explore disc golf courses in the United States.
  • It does so by marking all the courses on a leaflet map
  • It lets you narrow down the courses to one state.
  • It it compares a selected courses rating against a state or all states
  • It can show users random courses.

Random and flyTo code with leaflet

random <- courses[sample(1:nrow(courses), 1), ]
leaflet::flyTo(map = m, lng = random$lng,lat = random$lat, zoom = 15)

Rating Disterbution Histogram

Clicking on a basket shows how its rating compare

Thank you