data-raw/stations.R

## code to prepare `stations` dataset goes here
library(dplyr)
library(tidyr)
Stations <- zooper::stations%>%
  mutate(Station=paste(Source, Station))%>%
  filter(Source!="YBFMP")%>%
  drop_na(Latitude, Longitude)%>%
  select(-Source)

usethis::use_data(Stations, overwrite=T)
sbashevkin/spacetools documentation built on Feb. 2, 2024, 9:15 p.m.