From f2de1ecd0f3fef8e00b1743d65d7b7f1361a087e Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 6 Aug 2024 11:17:45 +0200 Subject: [PATCH 01/11] Update pkgdown.yml #51 --- docs/pkgdown.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index d834230..4c2de7c 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -3,3 +3,20 @@ pkgdown: 2.1.0 pkgdown_sha: ~ articles: {} last_built: 2024-07-31T18:46Z + +reference: +- title: Spatial functions + contents: + - has_concept("Spatial") +- title: Dataframe comparison functions + contents: + - has_concept("dataframe_comparison") +- title: Other functions + contents: + - other +- title: Datasets + contents: + - has_concept("dataset") +- title: Libraries + contents: + - has_concept("library") From c2a1221809bf10450079658942c20433f8fdb064 Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 6 Aug 2024 11:19:32 +0200 Subject: [PATCH 02/11] small s #51 --- docs/pkgdown.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index 4c2de7c..716135a 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -7,7 +7,7 @@ last_built: 2024-07-31T18:46Z reference: - title: Spatial functions contents: - - has_concept("Spatial") + - has_concept("spatial") - title: Dataframe comparison functions contents: - has_concept("dataframe_comparison") From b9c89cfac01d3bfd2e66a52a113d9a7ac6979676 Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 6 Aug 2024 11:19:48 +0200 Subject: [PATCH 03/11] add some families #51 --- R/apply_grtsdb.R | 2 ++ R/boswachterijen.R | 1 + R/calculate_polygon_centroid.R | 2 ++ 3 files changed, 5 insertions(+) diff --git a/R/apply_grtsdb.R b/R/apply_grtsdb.R index 1ee5b9e..6e8f592 100644 --- a/R/apply_grtsdb.R +++ b/R/apply_grtsdb.R @@ -19,6 +19,8 @@ #' #' @export #' +#' @family spatial +#' #' @examples #' \dontrun{ #' # Preparation diff --git a/R/boswachterijen.R b/R/boswachterijen.R index 90e87ea..75520f0 100644 --- a/R/boswachterijen.R +++ b/R/boswachterijen.R @@ -11,5 +11,6 @@ #' \item{telefoon}{Telefoon nr van de boswachter} #' ... #' } +#' @family dataset #' @source "boswachterijen" diff --git a/R/calculate_polygon_centroid.R b/R/calculate_polygon_centroid.R index 15b5f4f..207030e 100644 --- a/R/calculate_polygon_centroid.R +++ b/R/calculate_polygon_centroid.R @@ -18,6 +18,8 @@ #' #' @return A data frame with the unique identifier, latitude, longitude and uncertainty of the centroid #' +#' @family spatial +#' #' @examples #' \dontrun{ #' # Example of how to use the calculate_polygon_centroid function From 0c12c19d6a48f92529f2c68973f1b4a6d9d21751 Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 6 Aug 2024 11:23:12 +0200 Subject: [PATCH 04/11] Create _pkgdown.yml #51 --- docs/_pkgdown.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 docs/_pkgdown.yml diff --git a/docs/_pkgdown.yml b/docs/_pkgdown.yml new file mode 100644 index 0000000..716135a --- /dev/null +++ b/docs/_pkgdown.yml @@ -0,0 +1,22 @@ +pandoc: 2.9.2.1 +pkgdown: 2.1.0 +pkgdown_sha: ~ +articles: {} +last_built: 2024-07-31T18:46Z + +reference: +- title: Spatial functions + contents: + - has_concept("spatial") +- title: Dataframe comparison functions + contents: + - has_concept("dataframe_comparison") +- title: Other functions + contents: + - other +- title: Datasets + contents: + - has_concept("dataset") +- title: Libraries + contents: + - has_concept("library") From ceef11e3ef9ea5cbb57bb2eb289c7b18389e0855 Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 6 Aug 2024 11:29:03 +0200 Subject: [PATCH 05/11] move _pkgdown.yml #51 --- {docs => pkgdown/pkgdown}/_pkgdown.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {docs => pkgdown/pkgdown}/_pkgdown.yml (100%) diff --git a/docs/_pkgdown.yml b/pkgdown/pkgdown/_pkgdown.yml similarity index 100% rename from docs/_pkgdown.yml rename to pkgdown/pkgdown/_pkgdown.yml From 321f809aaaab976819283835393efa0c241ceda9 Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 6 Aug 2024 16:27:59 +0200 Subject: [PATCH 06/11] add families #51 --- R/colcompare.R | 2 ++ R/download_dep_media.R | 2 ++ R/download_gdrive_if_missing.R | 2 ++ R/download_seq_media.R | 2 ++ R/drg_example.R | 3 +++ R/lib_crs.R | 3 +++ 6 files changed, 14 insertions(+) diff --git a/R/colcompare.R b/R/colcompare.R index b76c134..d6ee5c5 100644 --- a/R/colcompare.R +++ b/R/colcompare.R @@ -12,6 +12,8 @@ #' a list of columns present in x but not in y and a list of columns #' present in y and not in x. #' +#' @family column comparison +#' #' @examples #' \dontrun{ #' # create example dataframes diff --git a/R/download_dep_media.R b/R/download_dep_media.R index 7527894..e29bd03 100644 --- a/R/download_dep_media.R +++ b/R/download_dep_media.R @@ -19,6 +19,8 @@ #' If you are getting an Authorization Error (#403), this probably means your Agouti project has Restrict Images on. This needs to be turned off. #' If depID = "all" and favorite = TRUE, the function will download all favorited pictures in the whole dataset. #' +#' @family download +#' #' @returns Downloads the specified media files into the outputfolder #' #' @examples diff --git a/R/download_gdrive_if_missing.R b/R/download_gdrive_if_missing.R index 438b98f..451e5bd 100644 --- a/R/download_gdrive_if_missing.R +++ b/R/download_gdrive_if_missing.R @@ -18,6 +18,8 @@ #' achieved by adding email as an item in a .renviron file or even beter by using #' more robust encryption methods. #' +#' @family download +#' #' @returns If the destination file was missing it is now downloaded from the #' googledrive. #' diff --git a/R/download_seq_media.R b/R/download_seq_media.R index dedb20f..9997235 100644 --- a/R/download_seq_media.R +++ b/R/download_seq_media.R @@ -17,6 +17,8 @@ #' @details #' If you are getting an Authorization Error (#403), this probably means your Agouti project has Restrict Images on. This needs to be turned off. #' +#' @family download +#' #' @returns Downloads the specified media files into the outputfolder #' #' @examples diff --git a/R/drg_example.R b/R/drg_example.R index a548770..11e3ba4 100644 --- a/R/drg_example.R +++ b/R/drg_example.R @@ -8,5 +8,8 @@ #' \item{observations}{Observaties van de geselecteerde deployments} #' \item{media}{Lijst van media-urls van de geselecteerde deployments} #' } +#' +#' @family dataset +#' #' @source "drg_example" diff --git a/R/lib_crs.R b/R/lib_crs.R index a1293a9..68c396d 100644 --- a/R/lib_crs.R +++ b/R/lib_crs.R @@ -8,6 +8,9 @@ #' \item{Proj4s}{Javascript Object Notation (JSON) of the CRS} #' \item{ESPG}{EPSG code of the CRS} #' } +#' +#' @family library +#' #' @source WGS #' @source BEL72 "lib_crs" From 81671596ce3846e4960c886689da17afeeb8c755 Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Wed, 7 Aug 2024 12:06:06 +0200 Subject: [PATCH 07/11] add family #51 --- R/col_content_compare.R | 2 ++ _pkgdown.yml | 25 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 _pkgdown.yml diff --git a/R/col_content_compare.R b/R/col_content_compare.R index 330d134..39e7db6 100644 --- a/R/col_content_compare.R +++ b/R/col_content_compare.R @@ -10,6 +10,8 @@ #' @param df2 A data frame #' @param col2 A column name of df2 #' +#' @family column comparison +#' #' @return A list of values missing from the first column, missing from the second column, #' and the values that are in both columns. #' diff --git a/_pkgdown.yml b/_pkgdown.yml new file mode 100644 index 0000000..c02cd88 --- /dev/null +++ b/_pkgdown.yml @@ -0,0 +1,25 @@ +pandoc: 2.9.2.1 +pkgdown: 2.1.0 +pkgdown_sha: ~ +articles: {} +last_built: 2024-07-31T18:46Z + +reference: +- title: Spatial functions + contents: + - has_concept("spatial") +- title: Dataframe comparison functions + contents: + - has_concept("dataframe_comparison") +- title: Download functions + contents: + - has_concept("download") +- title: Datasets + contents: + - has_concept("dataset") +- title: Libraries + contents: + - has_concept("library") +- title: Other functions + contents: + - lacks_concepts(c("spatial", "dataframe_comparison", "dataset", "library", "download")) From 02df85b95bbaa6764a1730379b8660d6cbb84ae3 Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Wed, 7 Aug 2024 12:10:27 +0200 Subject: [PATCH 08/11] update rd's #51 --- _pkgdown.yml | 4 +++- man/apply_grtsdb.Rd | 5 +++++ man/boswachterijen.Rd | 5 +++++ man/calculate_polygon_centroid.Rd | 5 +++++ man/col_content_compare.Rd | 7 +++++++ man/colcompare.Rd | 5 +++++ man/download_dep_media.Rd | 6 ++++++ man/download_gdrive_if_missing.Rd | 6 ++++++ man/download_seq_media.Rd | 6 ++++++ man/drg_example.Rd | 5 +++++ man/lib_crs.Rd | 1 + 11 files changed, 54 insertions(+), 1 deletion(-) diff --git a/_pkgdown.yml b/_pkgdown.yml index c02cd88..2ca5dbe 100644 --- a/_pkgdown.yml +++ b/_pkgdown.yml @@ -1,7 +1,6 @@ pandoc: 2.9.2.1 pkgdown: 2.1.0 pkgdown_sha: ~ -articles: {} last_built: 2024-07-31T18:46Z reference: @@ -23,3 +22,6 @@ reference: - title: Other functions contents: - lacks_concepts(c("spatial", "dataframe_comparison", "dataset", "library", "download")) + +build: + without_rdb: true diff --git a/man/apply_grtsdb.Rd b/man/apply_grtsdb.Rd index 56e7863..df7db60 100644 --- a/man/apply_grtsdb.Rd +++ b/man/apply_grtsdb.Rd @@ -66,6 +66,11 @@ sample <- apply_grtsdb(perimeter, color = "black") } } +\seealso{ +Other spatial: +\code{\link{calculate_polygon_centroid}()} +} \author{ Sander Devisscher } +\concept{spatial} diff --git a/man/boswachterijen.Rd b/man/boswachterijen.Rd index 9515ee8..a77fa8c 100644 --- a/man/boswachterijen.Rd +++ b/man/boswachterijen.Rd @@ -26,4 +26,9 @@ boswachterijen Spatiale en andere informatie (o.a. telefoonummers) van de boswachterijen van ANB. } +\seealso{ +Other dataset: +\code{\link{drg_example}} +} +\concept{dataset} \keyword{datasets} diff --git a/man/calculate_polygon_centroid.Rd b/man/calculate_polygon_centroid.Rd index a33577f..c2c9980 100644 --- a/man/calculate_polygon_centroid.Rd +++ b/man/calculate_polygon_centroid.Rd @@ -58,7 +58,12 @@ leaflet() \%>\% color = "red", weight = 1) } +} +\seealso{ +Other spatial: +\code{\link{apply_grtsdb}()} } \author{ Sander Devisscher } +\concept{spatial} diff --git a/man/col_content_compare.Rd b/man/col_content_compare.Rd index 248c3e3..0fa755e 100644 --- a/man/col_content_compare.Rd +++ b/man/col_content_compare.Rd @@ -31,6 +31,13 @@ dataset2 <- data.frame(c = c(1, 2, 3, 4, 5), d = c("a", "b", "f", "d", "e")) col_content_compare(df1 = dataset1, "b", df2 = dataset2, "d") } +} +\seealso{ +Other column comparison: +\code{\link{colcompare}()} + +Other column comparison: +\code{\link{colcompare}()} } \author{ Sander Devisscher diff --git a/man/colcompare.Rd b/man/colcompare.Rd index 24ec9f3..760ff7e 100644 --- a/man/colcompare.Rd +++ b/man/colcompare.Rd @@ -34,7 +34,12 @@ avg_active_hours=c(16, 15, 8, 10)) colcompare(super_sleepers, super_actives) } +} +\seealso{ +Other column comparison: +\code{\link{col_content_compare}()} } \author{ Sander Devisscher } +\concept{column comparison} diff --git a/man/download_dep_media.Rd b/man/download_dep_media.Rd index b059b6f..5744005 100644 --- a/man/download_dep_media.Rd +++ b/man/download_dep_media.Rd @@ -59,6 +59,11 @@ download_dep_media(dataset = drg, favorite = TRUE) } +} +\seealso{ +Other download: +\code{\link{download_gdrive_if_missing}()}, +\code{\link{download_seq_media}()} } \author{ Lynn Pallemaerts @@ -69,3 +74,4 @@ Sander Devisscher Soria Delva } +\concept{download} diff --git a/man/download_gdrive_if_missing.Rd b/man/download_gdrive_if_missing.Rd index 67390df..da83947 100644 --- a/man/download_gdrive_if_missing.Rd +++ b/man/download_gdrive_if_missing.Rd @@ -47,6 +47,12 @@ download_gdrive_if_missing(gfileID = "1FX8DDyREKMH1M3iW9ijWjVjO_tBH8PXi", update_always = TRUE) } } +\seealso{ +Other download: +\code{\link{download_dep_media}()}, +\code{\link{download_seq_media}()} +} \author{ Sander Devisscher } +\concept{download} diff --git a/man/download_seq_media.Rd b/man/download_seq_media.Rd index 384f643..b0e4531 100644 --- a/man/download_seq_media.Rd +++ b/man/download_seq_media.Rd @@ -39,6 +39,11 @@ download_seq_media(dataset = drg, favorite = TRUE) } +} +\seealso{ +Other download: +\code{\link{download_dep_media}()}, +\code{\link{download_gdrive_if_missing}()} } \author{ Lynn Pallemaerts @@ -49,3 +54,4 @@ Sander Devisscher Soria Delva } +\concept{download} diff --git a/man/drg_example.Rd b/man/drg_example.Rd index 5aafd4b..3bd6813 100644 --- a/man/drg_example.Rd +++ b/man/drg_example.Rd @@ -21,4 +21,9 @@ drg_example \description{ Subset of Drongengoed Agouti export for testing of functions } +\seealso{ +Other dataset: +\code{\link{boswachterijen}} +} +\concept{dataset} \keyword{datasets} diff --git a/man/lib_crs.Rd b/man/lib_crs.Rd index 5b52bde..fac1bc7 100644 --- a/man/lib_crs.Rd +++ b/man/lib_crs.Rd @@ -23,4 +23,5 @@ lib_crs \description{ Library of commonly used coordinate reference system (CRS) codes } +\concept{library} \keyword{datasets} From 44f2d542bda2304f3db66671fdabc894c796b4aa Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Wed, 7 Aug 2024 12:10:39 +0200 Subject: [PATCH 09/11] Delete _pkgdown.yml #51 --- pkgdown/pkgdown/_pkgdown.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 pkgdown/pkgdown/_pkgdown.yml diff --git a/pkgdown/pkgdown/_pkgdown.yml b/pkgdown/pkgdown/_pkgdown.yml deleted file mode 100644 index 716135a..0000000 --- a/pkgdown/pkgdown/_pkgdown.yml +++ /dev/null @@ -1,22 +0,0 @@ -pandoc: 2.9.2.1 -pkgdown: 2.1.0 -pkgdown_sha: ~ -articles: {} -last_built: 2024-07-31T18:46Z - -reference: -- title: Spatial functions - contents: - - has_concept("spatial") -- title: Dataframe comparison functions - contents: - - has_concept("dataframe_comparison") -- title: Other functions - contents: - - other -- title: Datasets - contents: - - has_concept("dataset") -- title: Libraries - contents: - - has_concept("library") From b900b8820c2b6a32d13b9a44c786d9b6a983f538 Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Wed, 7 Aug 2024 12:19:18 +0200 Subject: [PATCH 10/11] add correct families #51 --- R/CRS_extracter.R | 2 ++ R/col_content_compare.R | 2 +- R/colcompare.R | 2 +- R/collect_osm_features.R | 2 ++ man/CRS_extracter.Rd | 7 +++++++ man/apply_grtsdb.Rd | 4 +++- man/calculate_polygon_centroid.Rd | 4 +++- man/col_content_compare.Rd | 6 ++---- man/colcompare.Rd | 4 ++-- man/collect_osm_features.Rd | 7 +++++++ 10 files changed, 30 insertions(+), 10 deletions(-) diff --git a/R/CRS_extracter.R b/R/CRS_extracter.R index 881802a..ff74165 100644 --- a/R/CRS_extracter.R +++ b/R/CRS_extracter.R @@ -9,6 +9,8 @@ #' #' @return A CRS object #' +#' @family spatial +#' #' @examples #' \dontrun{ #' # Example of how to use the CRS_extracter function diff --git a/R/col_content_compare.R b/R/col_content_compare.R index 39e7db6..ecc5589 100644 --- a/R/col_content_compare.R +++ b/R/col_content_compare.R @@ -10,7 +10,7 @@ #' @param df2 A data frame #' @param col2 A column name of df2 #' -#' @family column comparison +#' @family dataframe_comparison #' #' @return A list of values missing from the first column, missing from the second column, #' and the values that are in both columns. diff --git a/R/colcompare.R b/R/colcompare.R index d6ee5c5..a979b1c 100644 --- a/R/colcompare.R +++ b/R/colcompare.R @@ -12,7 +12,7 @@ #' a list of columns present in x but not in y and a list of columns #' present in y and not in x. #' -#' @family column comparison +#' @family dataframe_comparison #' #' @examples #' \dontrun{ diff --git a/R/collect_osm_features.R b/R/collect_osm_features.R index b7fc130..f126b2d 100644 --- a/R/collect_osm_features.R +++ b/R/collect_osm_features.R @@ -31,6 +31,8 @@ #' osm_polygons, osm_lines, osm_points. Each sf data frame contains the #' corresponding geometry types. #' +#' @family spatial +#' #' @details #' dplyr and osmdata are automatically installed when missing from your system. #' diff --git a/man/CRS_extracter.Rd b/man/CRS_extracter.Rd index 6c543c3..e745f2d 100644 --- a/man/CRS_extracter.Rd +++ b/man/CRS_extracter.Rd @@ -45,7 +45,14 @@ leaflet() \%>\% addCircles(data = boswachterijen_df, color = "red", radius = 1000) } +} +\seealso{ +Other spatial: +\code{\link{apply_grtsdb}()}, +\code{\link{calculate_polygon_centroid}()}, +\code{\link{collect_osm_features}()} } \author{ Sander Devisscher } +\concept{spatial} diff --git a/man/apply_grtsdb.Rd b/man/apply_grtsdb.Rd index df7db60..f33f83a 100644 --- a/man/apply_grtsdb.Rd +++ b/man/apply_grtsdb.Rd @@ -68,7 +68,9 @@ sample <- apply_grtsdb(perimeter, } \seealso{ Other spatial: -\code{\link{calculate_polygon_centroid}()} +\code{\link{CRS_extracter}()}, +\code{\link{calculate_polygon_centroid}()}, +\code{\link{collect_osm_features}()} } \author{ Sander Devisscher diff --git a/man/calculate_polygon_centroid.Rd b/man/calculate_polygon_centroid.Rd index c2c9980..c31c422 100644 --- a/man/calculate_polygon_centroid.Rd +++ b/man/calculate_polygon_centroid.Rd @@ -61,7 +61,9 @@ leaflet() \%>\% } \seealso{ Other spatial: -\code{\link{apply_grtsdb}()} +\code{\link{CRS_extracter}()}, +\code{\link{apply_grtsdb}()}, +\code{\link{collect_osm_features}()} } \author{ Sander Devisscher diff --git a/man/col_content_compare.Rd b/man/col_content_compare.Rd index 0fa755e..3e26a12 100644 --- a/man/col_content_compare.Rd +++ b/man/col_content_compare.Rd @@ -33,13 +33,11 @@ col_content_compare(df1 = dataset1, "b", df2 = dataset2, "d") } \seealso{ -Other column comparison: -\code{\link{colcompare}()} - -Other column comparison: +Other dataframe_comparison: \code{\link{colcompare}()} } \author{ Sander Devisscher } \concept{column comparison} +\concept{dataframe_comparison} diff --git a/man/colcompare.Rd b/man/colcompare.Rd index 760ff7e..6c9e444 100644 --- a/man/colcompare.Rd +++ b/man/colcompare.Rd @@ -36,10 +36,10 @@ colcompare(super_sleepers, super_actives) } \seealso{ -Other column comparison: +Other dataframe_comparison: \code{\link{col_content_compare}()} } \author{ Sander Devisscher } -\concept{column comparison} +\concept{dataframe_comparison} diff --git a/man/collect_osm_features.Rd b/man/collect_osm_features.Rd index 640cd35..67d1487 100644 --- a/man/collect_osm_features.Rd +++ b/man/collect_osm_features.Rd @@ -99,6 +99,13 @@ p1 + geom_sf(data = osm$osm_lines, aes(col = line_element)) + ylim = proj_bbox[c("ymin", "ymax")]) } } +\seealso{ +Other spatial: +\code{\link{CRS_extracter}()}, +\code{\link{apply_grtsdb}()}, +\code{\link{calculate_polygon_centroid}()} +} \author{ Martijn Bollen } +\concept{spatial} From 020a7e0a1196f3bdb0ee6020d17b0487b7a01ba2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 7 Aug 2024 11:01:06 +0000 Subject: [PATCH 11/11] Build pkgdown site [skip ci] --- docs/pkgdown.yml | 2 +- docs/reference/CRS_extracter.html | 7 ++ docs/reference/apply_grtsdb.html | 7 ++ docs/reference/boswachterijen.html | 5 ++ .../reference/calculate_polygon_centroid.html | 7 ++ docs/reference/col_content_compare.html | 5 ++ docs/reference/colcompare.html | 5 ++ docs/reference/collect_osm_features.html | 7 ++ docs/reference/download_dep_media.html | 6 ++ .../reference/download_gdrive_if_missing.html | 6 ++ docs/reference/download_seq_media.html | 6 ++ docs/reference/drg_example.html | 5 ++ docs/reference/index.html | 70 ++++++++++++------- 13 files changed, 112 insertions(+), 26 deletions(-) diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index bdb70e3..039ab6f 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -2,4 +2,4 @@ pandoc: 2.9.2.1 pkgdown: 2.1.0 pkgdown_sha: ~ articles: {} -last_built: 2024-08-06T14:20Z \ No newline at end of file +last_built: 2024-08-07T11:00Z diff --git a/docs/reference/CRS_extracter.html b/docs/reference/CRS_extracter.html index 5b4e80b..3669f98 100644 --- a/docs/reference/CRS_extracter.html +++ b/docs/reference/CRS_extracter.html @@ -66,6 +66,13 @@

Arguments

Value

A CRS object

+
+
+

See also

+

Author

diff --git a/docs/reference/apply_grtsdb.html b/docs/reference/apply_grtsdb.html index 67358a9..9b46912 100644 --- a/docs/reference/apply_grtsdb.html +++ b/docs/reference/apply_grtsdb.html @@ -77,6 +77,13 @@

Arguments

Details

A function to apply grtsdb to a custom perimeter

GRTSdb is automatically installed when missing from your system.

+
+
+

See also

+

Author

diff --git a/docs/reference/boswachterijen.html b/docs/reference/boswachterijen.html index 044947b..ba8b5d3 100644 --- a/docs/reference/boswachterijen.html +++ b/docs/reference/boswachterijen.html @@ -74,6 +74,11 @@

boswachterijenSource

https://www.who.int/teams/global-tuberculosis-programme/data

+
+

See also

+

Other dataset: +drg_example

+
+
+

See also

+

Author

diff --git a/docs/reference/col_content_compare.html b/docs/reference/col_content_compare.html index a19ee9d..9a716ae 100644 --- a/docs/reference/col_content_compare.html +++ b/docs/reference/col_content_compare.html @@ -75,6 +75,11 @@

Arguments

Value

A list of values missing from the first column, missing from the second column, and the values that are in both columns.

+
+
+

See also

+

Other dataframe_comparison: +colcompare()

Author

diff --git a/docs/reference/colcompare.html b/docs/reference/colcompare.html index 5fa0a18..76ebed9 100644 --- a/docs/reference/colcompare.html +++ b/docs/reference/colcompare.html @@ -63,6 +63,11 @@

Arguments

Value

a list of columns present in x but not in y and a list of columns present in y and not in x.

+
+
+

See also

+

Other dataframe_comparison: +col_content_compare()

Author

diff --git a/docs/reference/collect_osm_features.html b/docs/reference/collect_osm_features.html index 62ec871..5d0c59a 100644 --- a/docs/reference/collect_osm_features.html +++ b/docs/reference/collect_osm_features.html @@ -99,6 +99,13 @@

Value

Details

A function to collect custom osm features for a project

dplyr and osmdata are automatically installed when missing from your system.

+
+
+

See also

+

Author

diff --git a/docs/reference/download_dep_media.html b/docs/reference/download_dep_media.html index 613b906..56bc549 100644 --- a/docs/reference/download_dep_media.html +++ b/docs/reference/download_dep_media.html @@ -87,6 +87,12 @@

Value

Details

If you are getting an Authorization Error (#403), this probably means your Agouti project has Restrict Images on. This needs to be turned off. If depID = "all" and favorite = TRUE, the function will download all favorited pictures in the whole dataset.

+
+
+

See also

+

Author

diff --git a/docs/reference/download_gdrive_if_missing.html b/docs/reference/download_gdrive_if_missing.html index ac868e5..2766496 100644 --- a/docs/reference/download_gdrive_if_missing.html +++ b/docs/reference/download_gdrive_if_missing.html @@ -91,6 +91,12 @@

Details

'show, modify and delete all drive files' option is selected. If the error persists please create a new issue on the github page.

+
+
+

See also

+

Other download: +download_dep_media(), +download_seq_media()

Author

diff --git a/docs/reference/download_seq_media.html b/docs/reference/download_seq_media.html index f95a81a..5686e79 100644 --- a/docs/reference/download_seq_media.html +++ b/docs/reference/download_seq_media.html @@ -76,6 +76,12 @@

Value

Details

If you are getting an Authorization Error (#403), this probably means your Agouti project has Restrict Images on. This needs to be turned off.

+
+
+

See also

+

Author

diff --git a/docs/reference/drg_example.html b/docs/reference/drg_example.html index 5069600..255cd88 100644 --- a/docs/reference/drg_example.html +++ b/docs/reference/drg_example.html @@ -64,6 +64,11 @@

Format

Source

https://www.agouti.eu

+
+

See also

+

Other dataset: +boswachterijen

+
- - - - - - - - + + @@ -77,11 +69,11 @@

All functions colcompare()

- - - + @@ -93,10 +85,42 @@

All functions download_seq_media()

+ + + + + + + + + + + + + @@ -105,10 +129,6 @@

All functions label_converter()

- -
-

All functions

+

Spatial functions

CRS_extracter()

CRS_extracter

-

UUID_List()

-

UUID list generator

apply_grtsdb()

apply grtsdb

-

boswachterijen

-

Boswachterijen

calculate_polygon_centroid()

Calculate the centroid of a polygon

-

check()

-

Check

-

cleanup_sqlite()

+

collect_osm_features()

cleanup sqlite

+

collect OpenStreetMaps features

+

Dataframe comparison functions

+

+

col_content_compare()

Compare column contents of two dataframes

Columnname comparison

-

collect_osm_features()

-

collect OpenStreetMaps features

+
+

Download functions

+

+

download_dep_media()

Download deployment media

Download sequence media

+

Datasets

+

+
+

boswachterijen

+

Boswachterijen

drg_example

drg_example

+

Libraries

+

+
+

lib_crs

+

Lib CRS

+

Other functions

+

+
+

UUID_List()

+

UUID list generator

+

check()

+

Check

+

cleanup_sqlite()

+

cleanup sqlite

install_sp()

label converter

-

lib_crs

-

Lib CRS