From 204669adee0b8a30dd0646d75e4e91fd6618705f Mon Sep 17 00:00:00 2001
From: Wright Site built with pkgdown 2.0.6. Site built with pkgdown 2.0.9. Site built with pkgdown 2.0.6. Site built with pkgdown 2.0.9. Site built with pkgdown 2.0.6. Site built with pkgdown 2.0.9. Site built with pkgdown 2.0.6. Site built with pkgdown 2.0.9. Site built with pkgdown 2.0.6. Site built with pkgdown 2.0.9. Site built with pkgdown 2.0.6. Site built with pkgdown 2.0.9. Site built with pkgdown 2.0.6. Site built with pkgdown 2.0.9. Site built with pkgdown 2.0.6. Site built with pkgdown 2.0.9.Page not found (404)
diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html
index 0f578b3..daa2256 100644
--- a/docs/LICENSE-text.html
+++ b/docs/LICENSE-text.html
@@ -1,5 +1,5 @@
-License
diff --git a/docs/LICENSE.html b/docs/LICENSE.html
index 1a3d178..eb36c9b 100644
--- a/docs/LICENSE.html
+++ b/docs/LICENSE.html
@@ -1,5 +1,5 @@
-Statement of Purpose
-
References
-
diff --git a/docs/reference/get_dc_flags.html b/docs/reference/get_dc_flags.html
index 4dfc8ee..6614c76 100644
--- a/docs/reference/get_dc_flags.html
+++ b/docs/reference/get_dc_flags.html
@@ -1,7 +1,5 @@
-Examples
-
diff --git a/docs/reference/generate_ll_from_utm.html b/docs/reference/generate_ll_from_utm.html
index 87eeea6..1fc0674 100644
--- a/docs/reference/generate_ll_from_utm.html
+++ b/docs/reference/generate_ll_from_utm.html
@@ -1,5 +1,5 @@
-Liability Statements
-
All vignettes
diff --git a/docs/authors.html b/docs/authors.html
index 13b343b..db3663a 100644
--- a/docs/authors.html
+++ b/docs/authors.html
@@ -1,5 +1,5 @@
-Dev status
diff --git a/docs/news/index.html b/docs/news/index.html
index 981e8ab..53daa97 100644
--- a/docs/news/index.html
+++ b/docs/news/index.html
@@ -1,5 +1,5 @@
-QCkit 0.1.0.0
diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml
index aafedc5..d290a5d 100644
--- a/docs/pkgdown.yml
+++ b/docs/pkgdown.yml
@@ -1,8 +1,9 @@
-pandoc: 3.1.1
-pkgdown: 2.0.6
+pandoc: 3.1.11
+pkgdown: 2.0.9
pkgdown_sha: ~
articles:
DRR_Purpose_and_Scope: DRR_Purpose_and_Scope.html
Starting-a-DRR: Starting-a-DRR.html
Using-the-DRR-Template: Using-the-DRR-Template.html
-last_built: 2024-05-09T21:28Z
+last_built: 2024-06-04T22:05Z
+
diff --git a/docs/reference/DC_col_check.html b/docs/reference/DC_col_check.html
index 748ddb5..be07306 100644
--- a/docs/reference/DC_col_check.html
+++ b/docs/reference/DC_col_check.html
@@ -1,5 +1,5 @@
-
diff --git a/docs/reference/dot-get_unit_boundary.html b/docs/reference/dot-get_unit_boundary.html
index 18dc057..a8da334 100644
--- a/docs/reference/dot-get_unit_boundary.html
+++ b/docs/reference/dot-get_unit_boundary.html
@@ -1,5 +1,5 @@
-Author
diff --git a/docs/reference/check_dc_cols.html b/docs/reference/check_dc_cols.html
index b67bb19..101d434 100644
--- a/docs/reference/check_dc_cols.html
+++ b/docs/reference/check_dc_cols.html
@@ -1,5 +1,5 @@
-Examples
diff --git a/docs/reference/check_te.html b/docs/reference/check_te.html
index 011adc0..8c49dab 100644
--- a/docs/reference/check_te.html
+++ b/docs/reference/check_te.html
@@ -1,5 +1,5 @@
-Examples
diff --git a/docs/reference/convert_datetime_format.html b/docs/reference/convert_datetime_format.html
index b55e464..06c3069 100644
--- a/docs/reference/convert_datetime_format.html
+++ b/docs/reference/convert_datetime_format.html
@@ -1,5 +1,5 @@
-Examples
diff --git a/docs/reference/convert_long_to_utm.html b/docs/reference/convert_long_to_utm.html
index 052e59a..ecbf43d 100644
--- a/docs/reference/convert_long_to_utm.html
+++ b/docs/reference/convert_long_to_utm.html
@@ -1,5 +1,5 @@
-Examples
diff --git a/docs/reference/fix_utc_offset.html b/docs/reference/fix_utc_offset.html
index 6ad2518..dd68880 100644
--- a/docs/reference/fix_utc_offset.html
+++ b/docs/reference/fix_utc_offset.html
@@ -1,5 +1,5 @@
-Examples
diff --git a/docs/reference/fuzz_location.html b/docs/reference/fuzz_location.html
index 60ef03a..6920e2a 100644
--- a/docs/reference/fuzz_location.html
+++ b/docs/reference/fuzz_location.html
@@ -1,5 +1,5 @@
-Examples
if (FALSE) {
+# Using magrittr pipe (%>%) and unquoted column names
my_dataframe %>%
generate_ll_from_utm(
EastingCol = UTM_X,
@@ -163,6 +168,7 @@
Examples
DatumCol = Datum
)
+# Providing column names as strings (in quotes)
generate_ll_from_utm(
df = mydataframe,
EastingCol = "EastingCoords",
@@ -171,6 +177,23 @@ Examples
DatumCol = "datum",
latlong_datum = "WGS84"
)
+
+# Column names stored as strings in separate variables
+easting <- "EastingCoords"
+northing <- "NorthingCoords"
+zonecol <- "zone"
+datumcol <- "datum"
+latlong_dat <- "WGS84"
+
+generate_ll_from_utm(
+ df = mydataframe,
+ EastingCol = {{easting}}, # enclose variables that store column names in {{}}
+ NorthingCol = {{northing}},
+ ZoneCol = {{zonecol}},
+ DatumCol = {{datumcol}},
+ latlong_datum = latlong_dat # this isn't a column name so it doesn't need {{}}
+)
+
}
Examples
diff --git a/docs/reference/get_custom_flags.html b/docs/reference/get_custom_flags.html
index 363fb20..5abf6eb 100644
--- a/docs/reference/get_custom_flags.html
+++ b/docs/reference/get_custom_flags.html
@@ -1,5 +1,5 @@
-Create Table of Data Quality Flags in Flagging Columns within individual
-data columns
+ Create Table of Data Quality Flags in Flagging Columns within individual data columns
Source: R/summarize_qc_flags.R
get_dc_flags.Rd
Examples
Examples
diff --git a/docs/reference/get_park_polygon.html b/docs/reference/get_park_polygon.html
index 05d4c4b..0235462 100644
--- a/docs/reference/get_park_polygon.html
+++ b/docs/reference/get_park_polygon.html
@@ -1,5 +1,5 @@
-Examples
diff --git a/docs/reference/get_utm_zone.html b/docs/reference/get_utm_zone.html
index 246f82f..dd93d6f 100644
--- a/docs/reference/get_utm_zone.html
+++ b/docs/reference/get_utm_zone.html
@@ -1,5 +1,5 @@
-All functions
order_cols()
Ordering Columns Function 03-21-2023
Remove empty tables from a list
Site built with pkgdown 2.0.6.
+Site built with pkgdown 2.0.9.
diff --git a/docs/reference/order_cols.html b/docs/reference/order_cols.html index 03bacbd..707fee6 100644 --- a/docs/reference/order_cols.html +++ b/docs/reference/order_cols.html @@ -1,5 +1,5 @@ -Remove empty tables from a list
+removeEmptyTables(df_list)
A list of tibbles or dataframes.
The same list but with empty tables removed.
+