# \donttest{
df <- lc_get_data(comid='23794487', aoi='catchment', metric='fert')
-#> Error in lc_get_data(comid = "23794487", aoi = "catchment", metric = "fert"): could not find function "lc_get_data"
+#> Rows: 1 Columns: 4
+#> ── Column specification ────────────────────────────────────────────────────────
+#> Delimiter: ","
+#> dbl (4): COMID, WSAREASQKM, CATAREASQKM, FERTCAT
+#>
+#> ℹ Use `spec()` to retrieve the full column specification for this data.
+#> ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
df <- lc_get_data(metric='PctUrbMd2006', aoi='watershed',
comid='24083377')
-#> Error in lc_get_data(metric = "PctUrbMd2006", aoi = "watershed", comid = "24083377"): could not find function "lc_get_data"
+#> Rows: 1 Columns: 3
+#> ── Column specification ────────────────────────────────────────────────────────
+#> Delimiter: ","
+#> dbl (3): COMID, WSAREASQKM, PCTURBMD2006WS
+#>
+#> ℹ Use `spec()` to retrieve the full column specification for this data.
+#> ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
df <- lc_get_data(metric='PctUrbMd2006', aoi='watershed',
comid='24083377', showAreaSqKm=FALSE, showPctFull=TRUE)
-#> Error in lc_get_data(metric = "PctUrbMd2006", aoi = "watershed", comid = "24083377", showAreaSqKm = FALSE, showPctFull = TRUE): could not find function "lc_get_data"
+#> Rows: 1 Columns: 4
+#> ── Column specification ────────────────────────────────────────────────────────
+#> Delimiter: ","
+#> dbl (4): COMID, WSAREASQKM, PCTURBMD2006WS, nlcd2006.WsPctFull
+#>
+#> ℹ Use `spec()` to retrieve the full column specification for this data.
+#> ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
df <- lc_get_data(metric='PctUrbMd2006,DamDens',
aoi='catchment,watershed', comid='23783629,23794487,23812618')
-#> Error in lc_get_data(metric = "PctUrbMd2006,DamDens", aoi = "catchment,watershed", comid = "23783629,23794487,23812618"): could not find function "lc_get_data"
+#> Rows: 3 Columns: 7
+#> ── Column specification ────────────────────────────────────────────────────────
+#> Delimiter: ","
+#> dbl (7): COMID, WSAREASQKM, CATAREASQKM, PCTURBMD2006CAT, PCTURBMD2006WS, DA...
+#>
+#> ℹ Use `spec()` to retrieve the full column specification for this data.
+#> ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
df <- lc_get_data(metric='PctUrbMd2006,DamDens',
aoi='catchment,watershed', comid='23783629,23794487,23812618',
countOnly=TRUE)
-#> Error in lc_get_data(metric = "PctUrbMd2006,DamDens", aoi = "catchment,watershed", comid = "23783629,23794487,23812618", countOnly = TRUE): could not find function "lc_get_data"
+#> Rows: 1 Columns: 2
+#> ── Column specification ────────────────────────────────────────────────────────
+#> Delimiter: ","
+#> dbl (2): ROWCOUNT, COLUMNCOUNT
+#>
+#> ℹ Use `spec()` to retrieve the full column specification for this data.
+#> ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
# }
@@ -155,7 +185,7 @@