How to download prism data for my study area using PRISM package in R

Viewed 12

I am very new to this PRISM package. I want to download daily maximum temperature data from PRISM, for my study area. My study area is Finney County in Kansas, US. (See image). finney_prism_4km

The code below downloads for the entire U.S. How do I download for only Finney county please?

#install.packages("prism")
#Set the download folder using `prism_set_dl_dir()`.
library(prism)

  prism_set_dl_dir("C:\\Users\\kelechi\\OneDrive - Kansas State University\\Desktop\\Research Resources\\Climate Data\\Prism_mining\\Prism_maxtmp2")
  #prism_check_dl_dir()

  get_prism_dailys(
  type = "tmax",
  minDate = "1991-01-01",
  maxDate = "2020-12-31",
  keepZip=FALSE
0 Answers
Related