context("Test that sc_get_comid is getting NHDPlusV21 comid for location data")
gages = readr::read_csv(system.file("extdata","Gages_flowdata.csv",
package = "StreamCatTools"))
gages <- gages[c('SOURCE_FEA','STATION_NM','LON_SITE','LAT_SITE')]
test_that("sc_get_comid for sample gage coordinates", {
gages_coms <- sc_get_comid(gages, xcoord='LON_SITE',
ycoord='LAT_SITE', crsys=4269)
gages$COMID <- strsplit(gages_coms, ",")[[1]]
expect_true(exists("gages_coms"))
expect_equal(nrow(gages), 9)
expect_equal(ncol(gages), 5)
expect_equal(length(gages$COMID), 9)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.