From ed326f7b01957377bdcbc2f3754510ccc61c4a7b Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 13 Aug 2024 16:09:24 +0200 Subject: [PATCH 01/29] Create sunsetter.R #25 --- R/sunsetter.R | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 R/sunsetter.R diff --git a/R/sunsetter.R b/R/sunsetter.R new file mode 100644 index 0000000..7eb7d75 --- /dev/null +++ b/R/sunsetter.R @@ -0,0 +1,44 @@ +#' @param StartDate Date in %y-%m-%d format indicating startdate of dataframe. Defaults to today +#' @param EndDate Date in %y-%m-%d format indicating enddate of dataframe. Defaults to today +#' @param lat Numeric indicating the latitude. Defaults to Herman Teirlinck building in Brussels +#' @param lng Numeric indicating the longitude. Defaults to Herman Teirlinck building in Brussels +#' +#' @return dataframe containing the dates between the startdate and enddate, the corresponding sunrise time and sunset time. + +SunSetter <- function(StartDate = Sys.Date(), EndDate = Sys.Date(), lat = 50.866572, lng = 4.350309){ + require(httr) + require(jsonlite) + require(tidyverse) + + if(is.character(StartDate)){ + StartDate <- as.Date.character(StartDate, origin = "1970-01-01") + } + + if(is.character(EndDate)){ + EndDate <- as.Date.character(EndDate, origin = "1970-01-01") + } + + #Create blank dataframe + temp_data2 <- data.frame(matrix(ncol = 12)) + names(temp_data2) <- c( "Datum", "results.sunrise", "results.sunset", "results.solar_noon" , "results.day_length", "results.civil_twilight_begin", + "results.civil_twilight_end" , "results.nautical_twilight_begin", "results.nautical_twilight_end", "results.astronomical_twilight_begin", + "results.astronomical_twilight_end", "status") + + for(i in StartDate:EndDate){ + temp_data <- data.frame() + url <- paste0("https://api.sunrise-sunset.org/json?lat=", lat, "&lng=", lng, "&date=", as.Date(i, origin = "1970-01-01")) + con <- GET(url) + temp_data <- as.data.frame(content(con)) + temp_data$Datum <- as.character(as.Date(i, origin = "1970-01-01")) + temp_data2 <- rbind(temp_data2, temp_data) + } + + temp_data_final <- + temp_data2 %>% + filter(!is.na(Datum)) %>% + mutate(Zonsopgang = format(as.POSIXct(results.sunrise , format = "%I:%M:%S %p", tz = "UTC"), "%H:%M:%S", tz = Sys.timezone()), + Zonsondergang = format(as.POSIXct(results.sunset, format = "%I:%M:%S %p", tz = "UTC"), "%H:%M:%S", tz = Sys.timezone())) %>% + dplyr::select(Datum, Zonsopgang, Zonsondergang) + + return(temp_data_final) +} From 018200c171ba98cb543631d0334590426a52e059 Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 13 Aug 2024 16:24:24 +0200 Subject: [PATCH 02/29] functionize sunsetter #25 --- R/sunsetter.R | 82 ++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 62 insertions(+), 20 deletions(-) diff --git a/R/sunsetter.R b/R/sunsetter.R index 7eb7d75..231f888 100644 --- a/R/sunsetter.R +++ b/R/sunsetter.R @@ -1,44 +1,86 @@ +#' Calculate the sunrise and sunset times for a given date and location +#' #' @param StartDate Date in %y-%m-%d format indicating startdate of dataframe. Defaults to today #' @param EndDate Date in %y-%m-%d format indicating enddate of dataframe. Defaults to today #' @param lat Numeric indicating the latitude. Defaults to Herman Teirlinck building in Brussels #' @param lng Numeric indicating the longitude. Defaults to Herman Teirlinck building in Brussels -#' +#' +#' @details +#' This function uses the sunrise-sunset API to calculate the sunrise and sunset times for a given date and location. +#' +#' @examples +#' \dontrun{ +#' # Example of how to use the sunsetter function +#' sunsetter(StartDate = "2021-01-01", EndDate = "2021-01-10", lat = 50.866572, lng = 4.350309) +#' } +#' +#' @family temporal +#' @export +#' @author Sander Devisscher +#' #' @return dataframe containing the dates between the startdate and enddate, the corresponding sunrise time and sunset time. -SunSetter <- function(StartDate = Sys.Date(), EndDate = Sys.Date(), lat = 50.866572, lng = 4.350309){ - require(httr) - require(jsonlite) - require(tidyverse) - +sunsetter <- function(StartDate = Sys.Date(), EndDate = Sys.Date(), lat = 50.866572, lng = 4.350309){ + # check if StartDate is character if(is.character(StartDate)){ StartDate <- as.Date.character(StartDate, origin = "1970-01-01") } - + + # check if EndDate is character if(is.character(EndDate)){ EndDate <- as.Date.character(EndDate, origin = "1970-01-01") } - + + # check if lat is numeric + if(!is.numeric(lat)){ + lat <- as.numeric(lat) + } + + # check if lat is not NA + if(is.na(lat)){ + stop("Latitude is NA") + } + + # check if lng is numeric + if(!is.numeric(lng)){ + lng <- as.numeric(lng) + } + + # check if lng is not NA + if(is.na(lng)){ + stop("Longitude is NA") + } + #Create blank dataframe temp_data2 <- data.frame(matrix(ncol = 12)) - names(temp_data2) <- c( "Datum", "results.sunrise", "results.sunset", "results.solar_noon" , "results.day_length", "results.civil_twilight_begin", - "results.civil_twilight_end" , "results.nautical_twilight_begin", "results.nautical_twilight_end", "results.astronomical_twilight_begin", - "results.astronomical_twilight_end", "status") - + names(temp_data2) <- c( "Datum", + "results.sunrise", + "results.sunset", + "results.solar_noon", + "results.day_length", + "results.civil_twilight_begin", + "results.civil_twilight_end", + "results.nautical_twilight_begin", + "results.nautical_twilight_end", + "results.astronomical_twilight_begin", + "results.astronomical_twilight_end", + "status") + for(i in StartDate:EndDate){ temp_data <- data.frame() url <- paste0("https://api.sunrise-sunset.org/json?lat=", lat, "&lng=", lng, "&date=", as.Date(i, origin = "1970-01-01")) - con <- GET(url) - temp_data <- as.data.frame(content(con)) + con <- httr::GET(url) + temp_data <- as.data.frame(httr::content(con)) temp_data$Datum <- as.character(as.Date(i, origin = "1970-01-01")) temp_data2 <- rbind(temp_data2, temp_data) } - + temp_data_final <- - temp_data2 %>% - filter(!is.na(Datum)) %>% - mutate(Zonsopgang = format(as.POSIXct(results.sunrise , format = "%I:%M:%S %p", tz = "UTC"), "%H:%M:%S", tz = Sys.timezone()), - Zonsondergang = format(as.POSIXct(results.sunset, format = "%I:%M:%S %p", tz = "UTC"), "%H:%M:%S", tz = Sys.timezone())) %>% + temp_data2 %>% + dplyr::filter(!is.na(Datum)) %>% + dplyr::mutate(Zonsopgang = format(as.POSIXct(results.sunrise , format = "%I:%M:%S %p", tz = "UTC"), "%H:%M:%S", tz = Sys.timezone()), + Zonsondergang = format(as.POSIXct(results.sunset, format = "%I:%M:%S %p", tz = "UTC"), "%H:%M:%S", tz = Sys.timezone())) %>% dplyr::select(Datum, Zonsopgang, Zonsondergang) - + return(temp_data_final) } From e045b39e762b8df50fb5952b0d04e8d30f9137fa Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 13 Aug 2024 16:24:51 +0200 Subject: [PATCH 03/29] Create sunsetter.Rd #25 --- man/sunsetter.Rd | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 man/sunsetter.Rd diff --git a/man/sunsetter.Rd b/man/sunsetter.Rd new file mode 100644 index 0000000..a052324 --- /dev/null +++ b/man/sunsetter.Rd @@ -0,0 +1,42 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/sunsetter.R +\name{sunsetter} +\alias{sunsetter} +\title{Calculate the sunrise and sunset times for a given date and location} +\usage{ +sunsetter( + StartDate = Sys.Date(), + EndDate = Sys.Date(), + lat = 50.866572, + lng = 4.350309 +) +} +\arguments{ +\item{StartDate}{Date in \%y-\%m-\%d format indicating startdate of dataframe. Defaults to today} + +\item{EndDate}{Date in \%y-\%m-\%d format indicating enddate of dataframe. Defaults to today} + +\item{lat}{Numeric indicating the latitude. Defaults to Herman Teirlinck building in Brussels} + +\item{lng}{Numeric indicating the longitude. Defaults to Herman Teirlinck building in Brussels} +} +\value{ +dataframe containing the dates between the startdate and enddate, the corresponding sunrise time and sunset time. +} +\description{ +Calculate the sunrise and sunset times for a given date and location +} +\details{ +This function uses the sunrise-sunset API to calculate the sunrise and sunset times for a given date and location. +} +\examples{ +\dontrun{ +# Example of how to use the sunsetter function +sunsetter(StartDate = "2021-01-01", EndDate = "2021-01-10", lat = 50.866572, lng = 4.350309) +} + +} +\author{ +Sander Devisscher +} +\concept{temporal} From c568c5483a67a89d7ad6a79646952c8e7091e5f0 Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 13 Aug 2024 16:24:58 +0200 Subject: [PATCH 04/29] Update NAMESPACE #25 --- NAMESPACE | 1 + 1 file changed, 1 insertion(+) diff --git a/NAMESPACE b/NAMESPACE index 9d56c7f..f2944a8 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -14,6 +14,7 @@ export(download_gdrive_if_missing) export(download_seq_media) export(install_sp) export(label_converter) +export(sunsetter) importClassesFrom(sp,CRS) importFrom(magrittr,"%>%") importFrom(sp,CRS) From 7dcd7cde279fd7f0cad154c6463de07a9bf34bca Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 13 Aug 2024 17:02:01 +0200 Subject: [PATCH 05/29] add sunsetter2 #25 --- R/sunsetter.R | 154 ++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 144 insertions(+), 10 deletions(-) diff --git a/R/sunsetter.R b/R/sunsetter.R index 231f888..7bbbd2c 100644 --- a/R/sunsetter.R +++ b/R/sunsetter.R @@ -1,4 +1,5 @@ -#' Calculate the sunrise and sunset times for a given date and location +#' @title sunsetter +#' Calculate the sunrise and sunset times for a given range of dates and location #' #' @param StartDate Date in %y-%m-%d format indicating startdate of dataframe. Defaults to today #' @param EndDate Date in %y-%m-%d format indicating enddate of dataframe. Defaults to today @@ -6,12 +7,22 @@ #' @param lng Numeric indicating the longitude. Defaults to Herman Teirlinck building in Brussels #' #' @details -#' This function uses the sunrise-sunset API to calculate the sunrise and sunset times for a given date and location. +#' This function uses the sunrise-sunset API to calculate the sunrise and sunset +#' times for a given range of dates and fixed location. +#' The default location is the Herman Teirlinck building in Brussels. +#' +#' if StartDate and EndDate are not specified, the function will return the sunrise +#' and sunset times for today. +#' +#' #' #' @examples #' \dontrun{ -#' # Example of how to use the sunsetter function +#' # sunrise and sunset times for the first 10 days of 2021 in Brussels #' sunsetter(StartDate = "2021-01-01", EndDate = "2021-01-10", lat = 50.866572, lng = 4.350309) +#' +#' # sunrise and sunset times for today in Brussels +#' sunsetter() #' } #' #' @family temporal @@ -52,23 +63,32 @@ sunsetter <- function(StartDate = Sys.Date(), EndDate = Sys.Date(), lat = 50.866 } #Create blank dataframe - temp_data2 <- data.frame(matrix(ncol = 12)) + temp_data2 <- data.frame(matrix(ncol = 13)) names(temp_data2) <- c( "Datum", "results.sunrise", "results.sunset", "results.solar_noon", "results.day_length", "results.civil_twilight_begin", - "results.civil_twilight_end", + "results.civil_twilight_end", "results.nautical_twilight_begin", "results.nautical_twilight_end", "results.astronomical_twilight_begin", - "results.astronomical_twilight_end", - "status") + "results.astronomical_twilight_end", + "status", + "tzid") + # initiate progress bar + pb <- progress::progress_bar$new(format = " [:bar] :percent ETA: :eta", + total = length(StartDate:EndDate), + clear = FALSE, + width = 60) + # loop over dates for(i in StartDate:EndDate){ + pb$tick() temp_data <- data.frame() - url <- paste0("https://api.sunrise-sunset.org/json?lat=", lat, "&lng=", lng, "&date=", as.Date(i, origin = "1970-01-01")) + url <- paste0("https://api.sunrise-sunset.org/json?lat=", lat, "&lng=", + lng, "&date=", as.Date(i, origin = "1970-01-01")) con <- httr::GET(url) temp_data <- as.data.frame(httr::content(con)) temp_data$Datum <- as.character(as.Date(i, origin = "1970-01-01")) @@ -78,9 +98,123 @@ sunsetter <- function(StartDate = Sys.Date(), EndDate = Sys.Date(), lat = 50.866 temp_data_final <- temp_data2 %>% dplyr::filter(!is.na(Datum)) %>% - dplyr::mutate(Zonsopgang = format(as.POSIXct(results.sunrise , format = "%I:%M:%S %p", tz = "UTC"), "%H:%M:%S", tz = Sys.timezone()), - Zonsondergang = format(as.POSIXct(results.sunset, format = "%I:%M:%S %p", tz = "UTC"), "%H:%M:%S", tz = Sys.timezone())) %>% + dplyr::mutate(Zonsopgang = format(as.POSIXct(results.sunrise , + format = "%I:%M:%S %p", + tz = "UTC"), "%H:%M:%S", + tz = Sys.timezone()), + Zonsondergang = format(as.POSIXct(results.sunset, + format = "%I:%M:%S %p", + tz = "UTC"), "%H:%M:%S", + tz = Sys.timezone())) %>% dplyr::select(Datum, Zonsopgang, Zonsondergang) return(temp_data_final) } + +#' @title sunsetter2 +#' +#' @description +#' Calculate the sunrise and sunset times for a given set of date and location combinations +#' +#' @param df A dataframe containing the dates, latitudes and longitudes +#' @param dates A vector of dates contained in the dataframe +#' @param lat A vector of latitudes contained in the dataframe +#' @param lng A vector of longitudes contained in the dataframe +#' +#' @details +#' This function uses the sunrise-sunset API to calculate the sunrise and sunset +#' times for a given set of date and location combinations. +#' +#' @examples +#' \dontrun{ +#' # create a dataframe with dates, latitudes and longitudes +#' df <- data.frame(dates = c("2021-01-01", "2021-01-01", "2020-12-25"), +#' location = c("Brussels", "Amsterdam", "Brussels"), +#' lat = c(50.866572, 52.367573, 50.866572), +#' lng = c(4.350309, 4.904138, 4.350309), +#' remarks = c("New Year's Day", "New Year's Day", "Christmas Day")) +#' +#' # calculate the sunrise and sunset times for the dataframe +#' sunsets <- sunsetter2(df) +#' +#' # add the sunrise and sunset times to the dataframe +#' df <- dplyr::bind_cols(df, sunsets %>% dplyr::select(-dates)) +#' df +#' } +#' +#' @family temporal +#' @export +#' @author Sander Devisscher +#' +#' @return dataframe containing the dates, latitudes, longitudes, sunrise time and sunset time. + +sunsetter2 <- function(df){ + # check if df is a dataframe + if(!is.data.frame(df)){ + stop("df is not a dataframe") + } + + # check if dates is a column in df + if(!"dates" %in% colnames(df)){ + stop("dates is not a column in df") + } + + # check if lat is a column in df + if(!"lat" %in% colnames(df)){ + stop("lat is not a column in df") + } + + # check if lng is a column in df + if(!"lng" %in% colnames(df)){ + stop("lng is not a column in df") + } + + # create a empty dataframe + temp_data2 <- data.frame(matrix(ncol = 13)) + names(temp_data2) <- c( "Datum", + "results.sunrise", + "results.sunset", + "results.solar_noon", + "results.day_length", + "results.civil_twilight_begin", + "results.civil_twilight_end", + "results.nautical_twilight_begin", + "results.nautical_twilight_end", + "results.astronomical_twilight_begin", + "results.astronomical_twilight_end", + "status", + "tzid") + + # initiate progress bar + pb <- progress::progress_bar$new(format = " [:bar] :percent ETA: :eta", + total = nrow(df), + clear = FALSE, + width = 60) + + # loop over rows in df + for(i in 1:nrow(df)){ + pb$tick() + temp_data <- data.frame() + url <- paste0("https://api.sunrise-sunset.org/json?lat=", df$lat[i], "&lng=", + df$lng[i], "&date=", as.Date(df$dates[i], origin = "1970-01-01")) + con <- httr::GET(url) + temp_data <- as.data.frame(httr::content(con)) + temp_data$Datum <- as.character(as.Date(df$dates[i], origin = "1970-01-01")) + temp_data2 <- rbind(temp_data2, temp_data) + } + + temp_data_final <- + temp_data2 %>% + dplyr::filter(!is.na(Datum)) %>% + dplyr::mutate(Zonsopgang = format(as.POSIXct(results.sunrise , + format = "%I:%M:%S %p", + tz = "UTC"), "%H:%M:%S", + tz = Sys.timezone()), + Zonsondergang = format(as.POSIXct(results.sunset, + format = "%I:%M:%S %p", + tz = "UTC"), "%H:%M:%S", + tz = Sys.timezone())) %>% + dplyr::select(dates = Datum, Zonsopgang, Zonsondergang) + + return(temp_data_final) +} From 51aea926f8c69f7e7b200e7021ba2602005f4950 Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 13 Aug 2024 17:02:08 +0200 Subject: [PATCH 06/29] Update sunsetter.Rd #25 --- man/sunsetter.Rd | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/man/sunsetter.Rd b/man/sunsetter.Rd index a052324..a67b952 100644 --- a/man/sunsetter.Rd +++ b/man/sunsetter.Rd @@ -2,7 +2,8 @@ % Please edit documentation in R/sunsetter.R \name{sunsetter} \alias{sunsetter} -\title{Calculate the sunrise and sunset times for a given date and location} +\title{sunsetter +Calculate the sunrise and sunset times for a given range of dates and location} \usage{ sunsetter( StartDate = Sys.Date(), @@ -24,17 +25,30 @@ sunsetter( dataframe containing the dates between the startdate and enddate, the corresponding sunrise time and sunset time. } \description{ -Calculate the sunrise and sunset times for a given date and location +sunsetter +Calculate the sunrise and sunset times for a given range of dates and location } \details{ -This function uses the sunrise-sunset API to calculate the sunrise and sunset times for a given date and location. +This function uses the sunrise-sunset API to calculate the sunrise and sunset +times for a given range of dates and fixed location. +The default location is the Herman Teirlinck building in Brussels. + +if StartDate and EndDate are not specified, the function will return the sunrise +and sunset times for today. } \examples{ \dontrun{ -# Example of how to use the sunsetter function +# sunrise and sunset times for the first 10 days of 2021 in Brussels sunsetter(StartDate = "2021-01-01", EndDate = "2021-01-10", lat = 50.866572, lng = 4.350309) + +# sunrise and sunset times for today in Brussels +sunsetter() } +} +\seealso{ +Other temporal: +\code{\link{sunsetter2}()} } \author{ Sander Devisscher From f7759853730f90b10a088c7bfd7c9fc02c817f54 Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 13 Aug 2024 17:12:44 +0200 Subject: [PATCH 07/29] Create sunsetter2.Rd #25 --- man/sunsetter2.Rd | 53 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 man/sunsetter2.Rd diff --git a/man/sunsetter2.Rd b/man/sunsetter2.Rd new file mode 100644 index 0000000..cb58fac --- /dev/null +++ b/man/sunsetter2.Rd @@ -0,0 +1,53 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/sunsetter.R +\name{sunsetter2} +\alias{sunsetter2} +\title{sunsetter2} +\usage{ +sunsetter2(df) +} +\arguments{ +\item{df}{A dataframe containing the dates, latitudes and longitudes} + +\item{dates}{A vector of dates contained in the dataframe} + +\item{lat}{A vector of latitudes contained in the dataframe} + +\item{lng}{A vector of longitudes contained in the dataframe} +} +\value{ +dataframe containing the dates, latitudes, longitudes, sunrise time and sunset time. +} +\description{ +Calculate the sunrise and sunset times for a given set of date and location combinations +} +\details{ +This function uses the sunrise-sunset API to calculate the sunrise and sunset +times for a given set of date and location combinations. +} +\examples{ +\dontrun{ +# create a dataframe with dates, latitudes and longitudes +df <- data.frame(dates = c("2021-01-01", "2021-01-01", "2020-12-25"), + location = c("Brussels", "Amsterdam", "Brussels"), + lat = c(50.866572, 52.367573, 50.866572), + lng = c(4.350309, 4.904138, 4.350309), + remarks = c("New Year's Day", "New Year's Day", "Christmas Day")) + +# calculate the sunrise and sunset times for the dataframe +sunsets <- sunsetter2(df) + +# add the sunrise and sunset times to the dataframe +df <- dplyr::bind_cols(df, sunsets \%>\% dplyr::select(-dates)) +df +} + +} +\seealso{ +Other temporal: +\code{\link{sunsetter}()} +} +\author{ +Sander Devisscher +} +\concept{temporal} From 9fa513e4095ce0cb7e250879b2fe4cd3dc549f66 Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 13 Aug 2024 17:13:27 +0200 Subject: [PATCH 08/29] Update NAMESPACE #25 --- NAMESPACE | 1 + 1 file changed, 1 insertion(+) diff --git a/NAMESPACE b/NAMESPACE index f2944a8..96d9060 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -15,6 +15,7 @@ export(download_seq_media) export(install_sp) export(label_converter) export(sunsetter) +export(sunsetter2) importClassesFrom(sp,CRS) importFrom(magrittr,"%>%") importFrom(sp,CRS) From 4e856881f20a57c5bcbb1008a4a0b7d692797f2e Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 13 Aug 2024 17:14:27 +0200 Subject: [PATCH 09/29] Increment version number to 1.2.0 --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index da1cf5a..b4746e3 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: fistools Title: Tools & data used for wildlife management & invasive species in Flanders -Version: 1.1.4 +Version: 1.2.0 Authors@R: c( person(given = "Sander", middle = "", family = "Devisscher", "sander.devisscher@inbo.be", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2015-5731")), From 86cfa64a0311fd7085ab982b383df7d60dc7fcb0 Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 13 Aug 2024 17:21:06 +0200 Subject: [PATCH 10/29] Update sunsetter.R #25 --- R/sunsetter.R | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/R/sunsetter.R b/R/sunsetter.R index 7bbbd2c..619c847 100644 --- a/R/sunsetter.R +++ b/R/sunsetter.R @@ -148,7 +148,10 @@ sunsetter <- function(StartDate = Sys.Date(), EndDate = Sys.Date(), lat = 50.866 #' #' @return dataframe containing the dates, latitudes, longitudes, sunrise time and sunset time. -sunsetter2 <- function(df){ +sunsetter2 <- function(df, + dates, + lat, + lng){ # check if df is a dataframe if(!is.data.frame(df)){ stop("df is not a dataframe") From d756c15dae7a9d1f81d2c588b3229ab6ed946a44 Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Tue, 13 Aug 2024 17:21:21 +0200 Subject: [PATCH 11/29] Update sunsetter2.Rd #25 --- man/sunsetter2.Rd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/sunsetter2.Rd b/man/sunsetter2.Rd index cb58fac..4a72188 100644 --- a/man/sunsetter2.Rd +++ b/man/sunsetter2.Rd @@ -4,7 +4,7 @@ \alias{sunsetter2} \title{sunsetter2} \usage{ -sunsetter2(df) +sunsetter2(df, dates, lat, lng) } \arguments{ \item{df}{A dataframe containing the dates, latitudes and longitudes} From 637ace6519a96fad543ab8485df748bb07a74677 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 13 Aug 2024 15:51:49 +0000 Subject: [PATCH 12/29] Build pkgdown site [skip ci] --- docs/404.html | 2 +- docs/CODE_OF_CONDUCT.html | 2 +- docs/LICENSE-text.html | 2 +- docs/LICENSE.html | 2 +- docs/authors.html | 6 +- docs/index.html | 2 +- docs/pkgdown.yml | 2 +- docs/reference/CRS_extracter.html | 2 +- docs/reference/UUID_List.html | 2 +- docs/reference/apply_grtsdb.html | 2 +- docs/reference/boswachterijen.html | 2 +- .../reference/calculate_polygon_centroid.html | 2 +- docs/reference/check.html | 2 +- docs/reference/cleanup_sqlite.html | 2 +- docs/reference/col_content_compare.html | 2 +- docs/reference/colcompare.html | 2 +- docs/reference/collect_osm_features.html | 2 +- docs/reference/download_dep_media.html | 2 +- .../reference/download_gdrive_if_missing.html | 2 +- docs/reference/download_seq_media.html | 2 +- docs/reference/drg_example.html | 2 +- docs/reference/index.html | 10 +- docs/reference/install_sp.html | 2 +- docs/reference/label_converter.html | 2 +- docs/reference/lib_crs.html | 2 +- docs/reference/sunsetter.html | 134 ++++++++++++++++++ docs/reference/sunsetter2.html | 132 +++++++++++++++++ docs/sitemap.xml | 2 + 28 files changed, 303 insertions(+), 27 deletions(-) create mode 100644 docs/reference/sunsetter.html create mode 100644 docs/reference/sunsetter2.html diff --git a/docs/404.html b/docs/404.html index 5266f32..326e129 100644 --- a/docs/404.html +++ b/docs/404.html @@ -32,7 +32,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/CODE_OF_CONDUCT.html b/docs/CODE_OF_CONDUCT.html index cd137a0..54519ee 100644 --- a/docs/CODE_OF_CONDUCT.html +++ b/docs/CODE_OF_CONDUCT.html @@ -17,7 +17,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html index f2c9e2f..4ad3e95 100644 --- a/docs/LICENSE-text.html +++ b/docs/LICENSE-text.html @@ -17,7 +17,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/LICENSE.html b/docs/LICENSE.html index e7f928f..aae3cec 100644 --- a/docs/LICENSE.html +++ b/docs/LICENSE.html @@ -17,7 +17,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/authors.html b/docs/authors.html index 713eab7..0b50255 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -17,7 +17,7 @@ fistools - 1.1.4 + 1.2.0 @@ -70,13 +70,13 @@

Citation

Devisscher S, Pallemaerts L, Delva S, Cartuyvels E, Bollen M (2024). fistools: Tools & data used for wildlife management & invasive species in Flanders. -R package version 1.1.4. +R package version 1.2.0.

@Manual{,
   title = {fistools: Tools & data used for wildlife management & invasive species in Flanders},
   author = {Sander Devisscher and Lynn Pallemaerts and Soria Delva and Emma Cartuyvels and Martijn Bollen},
   year = {2024},
-  note = {R package version 1.1.4},
+  note = {R package version 1.2.0},
 }
diff --git a/docs/index.html b/docs/index.html index 0261494..3c28fc0 100644 --- a/docs/index.html +++ b/docs/index.html @@ -33,7 +33,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index 039ab6f..9802edf 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-07T11:00Z +last_built: 2024-08-13T15:51Z diff --git a/docs/reference/CRS_extracter.html b/docs/reference/CRS_extracter.html index 3669f98..51b3b09 100644 --- a/docs/reference/CRS_extracter.html +++ b/docs/reference/CRS_extracter.html @@ -19,7 +19,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/reference/UUID_List.html b/docs/reference/UUID_List.html index 902b9e4..41211c1 100644 --- a/docs/reference/UUID_List.html +++ b/docs/reference/UUID_List.html @@ -17,7 +17,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/reference/apply_grtsdb.html b/docs/reference/apply_grtsdb.html index 9b46912..deaf3fb 100644 --- a/docs/reference/apply_grtsdb.html +++ b/docs/reference/apply_grtsdb.html @@ -18,7 +18,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/reference/boswachterijen.html b/docs/reference/boswachterijen.html index ba8b5d3..cbef93c 100644 --- a/docs/reference/boswachterijen.html +++ b/docs/reference/boswachterijen.html @@ -18,7 +18,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/reference/calculate_polygon_centroid.html b/docs/reference/calculate_polygon_centroid.html index 725c7c5..cc45dbe 100644 --- a/docs/reference/calculate_polygon_centroid.html +++ b/docs/reference/calculate_polygon_centroid.html @@ -17,7 +17,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/reference/check.html b/docs/reference/check.html index 37fa115..9f79a66 100644 --- a/docs/reference/check.html +++ b/docs/reference/check.html @@ -17,7 +17,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/reference/cleanup_sqlite.html b/docs/reference/cleanup_sqlite.html index 47adae3..be72312 100644 --- a/docs/reference/cleanup_sqlite.html +++ b/docs/reference/cleanup_sqlite.html @@ -17,7 +17,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/reference/col_content_compare.html b/docs/reference/col_content_compare.html index 9a716ae..d431929 100644 --- a/docs/reference/col_content_compare.html +++ b/docs/reference/col_content_compare.html @@ -19,7 +19,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/reference/colcompare.html b/docs/reference/colcompare.html index 76ebed9..05d8bd4 100644 --- a/docs/reference/colcompare.html +++ b/docs/reference/colcompare.html @@ -17,7 +17,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/reference/collect_osm_features.html b/docs/reference/collect_osm_features.html index 5d0c59a..a59bcdc 100644 --- a/docs/reference/collect_osm_features.html +++ b/docs/reference/collect_osm_features.html @@ -23,7 +23,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/reference/download_dep_media.html b/docs/reference/download_dep_media.html index 56bc549..5ce44c5 100644 --- a/docs/reference/download_dep_media.html +++ b/docs/reference/download_dep_media.html @@ -18,7 +18,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/reference/download_gdrive_if_missing.html b/docs/reference/download_gdrive_if_missing.html index 2766496..35a6d76 100644 --- a/docs/reference/download_gdrive_if_missing.html +++ b/docs/reference/download_gdrive_if_missing.html @@ -19,7 +19,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/reference/download_seq_media.html b/docs/reference/download_seq_media.html index 5686e79..480f30f 100644 --- a/docs/reference/download_seq_media.html +++ b/docs/reference/download_seq_media.html @@ -18,7 +18,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/reference/drg_example.html b/docs/reference/drg_example.html index 255cd88..0c0bc03 100644 --- a/docs/reference/drg_example.html +++ b/docs/reference/drg_example.html @@ -17,7 +17,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/reference/index.html b/docs/reference/index.html index 832c255..7474240 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -17,7 +17,7 @@ fistools - 1.1.4 + 1.2.0 @@ -129,6 +129,14 @@

Other functions label_converter()

label converter

+ +

sunsetter()

+ +

sunsetter Calculate the sunrise and sunset times for a given range of dates and location

+ +

sunsetter2()

+ +

sunsetter2

diff --git a/docs/reference/label_converter.html b/docs/reference/label_converter.html index 3a35540..217c58e 100644 --- a/docs/reference/label_converter.html +++ b/docs/reference/label_converter.html @@ -17,7 +17,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/reference/lib_crs.html b/docs/reference/lib_crs.html index b6fa300..6caa3e7 100644 --- a/docs/reference/lib_crs.html +++ b/docs/reference/lib_crs.html @@ -17,7 +17,7 @@ fistools - 1.1.4 + 1.2.0 diff --git a/docs/reference/sunsetter.html b/docs/reference/sunsetter.html new file mode 100644 index 0000000..fa3b2c4 --- /dev/null +++ b/docs/reference/sunsetter.html @@ -0,0 +1,134 @@ + +sunsetter Calculate the sunrise and sunset times for a given range of dates and location — sunsetter • fistools + + +
+
+ + + +
+
+ + +
+

sunsetter +Calculate the sunrise and sunset times for a given range of dates and location

+
+ +
+
sunsetter(
+  StartDate = Sys.Date(),
+  EndDate = Sys.Date(),
+  lat = 50.866572,
+  lng = 4.350309
+)
+
+ +
+

Arguments

+ + +
StartDate
+

Date in %y-%m-%d format indicating startdate of dataframe. Defaults to today

+ + +
EndDate
+

Date in %y-%m-%d format indicating enddate of dataframe. Defaults to today

+ + +
lat
+

Numeric indicating the latitude. Defaults to Herman Teirlinck building in Brussels

+ + +
lng
+

Numeric indicating the longitude. Defaults to Herman Teirlinck building in Brussels

+ +
+
+

Value

+

dataframe containing the dates between the startdate and enddate, the corresponding sunrise time and sunset time.

+
+
+

Details

+

This function uses the sunrise-sunset API to calculate the sunrise and sunset +times for a given range of dates and fixed location. +The default location is the Herman Teirlinck building in Brussels.

+

if StartDate and EndDate are not specified, the function will return the sunrise +and sunset times for today.

+
+
+

See also

+

Other temporal: +sunsetter2()

+
+
+

Author

+

Sander Devisscher

+
+ +
+

Examples

+
if (FALSE) { # \dontrun{
+# sunrise and sunset times for the first 10 days of 2021 in Brussels
+sunsetter(StartDate = "2021-01-01", EndDate = "2021-01-10", lat = 50.866572, lng = 4.350309)
+
+# sunrise and sunset times for today in Brussels
+sunsetter()
+} # }
+
+
+
+
+ +
+ + +
+ +
+

Site built with pkgdown 2.1.0.

+
+ +
+ + + + + + + + diff --git a/docs/reference/sunsetter2.html b/docs/reference/sunsetter2.html new file mode 100644 index 0000000..67e284d --- /dev/null +++ b/docs/reference/sunsetter2.html @@ -0,0 +1,132 @@ + +sunsetter2 — sunsetter2 • fistools + + +
+
+ + + +
+
+ + +
+

Calculate the sunrise and sunset times for a given set of date and location combinations

+
+ +
+
sunsetter2(df, dates, lat, lng)
+
+ +
+

Arguments

+ + +
df
+

A dataframe containing the dates, latitudes and longitudes

+ + +
dates
+

A vector of dates contained in the dataframe

+ + +
lat
+

A vector of latitudes contained in the dataframe

+ + +
lng
+

A vector of longitudes contained in the dataframe

+ +
+
+

Value

+

dataframe containing the dates, latitudes, longitudes, sunrise time and sunset time.

+
+
+

Details

+

This function uses the sunrise-sunset API to calculate the sunrise and sunset +times for a given set of date and location combinations.

+
+
+

See also

+

Other temporal: +sunsetter()

+
+
+

Author

+

Sander Devisscher

+
+ +
+

Examples

+
if (FALSE) { # \dontrun{
+# create a dataframe with dates, latitudes and longitudes
+df <- data.frame(dates = c("2021-01-01", "2021-01-01", "2020-12-25"),
+                 location = c("Brussels", "Amsterdam", "Brussels"),
+                 lat = c(50.866572, 52.367573, 50.866572),
+                 lng = c(4.350309, 4.904138, 4.350309),
+                 remarks = c("New Year's Day", "New Year's Day", "Christmas Day"))
+
+# calculate the sunrise and sunset times for the dataframe
+sunsets <- sunsetter2(df)
+
+# add the sunrise and sunset times to the dataframe
+df <- dplyr::bind_cols(df, sunsets %>% dplyr::select(-dates))
+df
+} # }
+
+
+
+
+ +
+ + +
+ +
+

Site built with pkgdown 2.1.0.

+
+ +
+ + + + + + + + diff --git a/docs/sitemap.xml b/docs/sitemap.xml index 121736a..2c074d0 100644 --- a/docs/sitemap.xml +++ b/docs/sitemap.xml @@ -23,5 +23,7 @@ /reference/install_sp.html /reference/label_converter.html /reference/lib_crs.html +/reference/sunsetter.html +/reference/sunsetter2.html From 14f9cb5d19be3bee707f87def7fc8af5ac83afa4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 20 Aug 2024 12:52:53 +0000 Subject: [PATCH 13/29] Build pkgdown site [skip ci] --- docs/pkgdown.yml | 2 +- docs/reference/index.html | 4 + docs/reference/label_selecter.html | 171 +++++++++++++++++++++++++++++ docs/sitemap.xml | 1 + 4 files changed, 177 insertions(+), 1 deletion(-) create mode 100644 docs/reference/label_selecter.html diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index 9802edf..a353a8e 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-13T15:51Z +last_built: 2024-08-20T12:52Z diff --git a/docs/reference/index.html b/docs/reference/index.html index 7474240..2794420 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -129,6 +129,10 @@

Other functions label_converter()

label converter

+ +

label_selecter()

+ +

label_selecter

sunsetter()

diff --git a/docs/reference/label_selecter.html b/docs/reference/label_selecter.html new file mode 100644 index 0000000..2217bb5 --- /dev/null +++ b/docs/reference/label_selecter.html @@ -0,0 +1,171 @@ + +label_selecter — label_selecter • fistools + + +
+
+ + + +
+
+ + +
+

Deze functie onderzoekt of de labels bestaan in de datasets AfschotMelding (AM), ToegekendeLabels (TL), Toekenningen_Cleaned (TL_Cleaned), Dieren_met_onderkaakgegevens (DMOG), Dieren_met_onderkaakgegevens_Georef (DMOGG).

+
+ +
+
label_selecter(
+  label,
+  update = FALSE,
+  label_type,
+  jaar,
+  soort,
+  bo_dir = "~/Github/backoffice-wild-analyse/"
+)
+
+ +
+

Arguments

+ + +
label
+

een character (lijst) met labelnummer(s) die dienen onderzocht te worden. Dit kan in 3 vormen (volgnummer, met streepjes of zonder streepjes) of een combinatie van deze vormen aangeleverd worden

+ + +
update
+

een boolean die aangeeft of ook de nog niet wegeschreven dwh - bestanden moeten worden gecontroleerd.

+ + +
label_type
+

een een character (lijst) met labeltypes die dienen onderzocht te worden.

+ + +
jaar
+

een numerieke (lijst) van jaren die dienen onderzocht te worden.

+ + +
soort
+

een character van de soort die onderzocht dient te worden.

+ + +
bo_dir
+

een character met de directory waar de backoffice-wild-analyse repository staat.

+ +
+
+

Value

+

Een dataframe met de volgende kolommen:

  • INPUTLABEL: de input label

  • +
  • LABELTYPE: de labeltype(s) die onderzocht worden

  • +
  • JAAR: het jaar waarin de labels onderzocht worden

  • +
  • AM_OLD: een boolean die aangeeft of de label(s) in AfschotMelding voorkomen voor de update van DWH_Connect

  • +
  • AM_OLD_LABEL: de label(s) die in AfschotMelding voorkomen voor de update van DWH_Connect

  • +
  • TL_OLD: een boolean die aangeeft of de label(s) in ToegekendeLabels voorkomen voor de update van DWH_Connect

  • +
  • TL_OLD_LABEL: de label(s) die in ToegekendeLabels voorkomen voor de update van DWH_Connect

  • +
  • TL_CLEANED: een boolean die aangeeft of de label(s) in Toekenningen_Cleaned voorkomen

  • +
  • TL_CLEANED_LABEL: de label(s) die in Toekenningen_Cleaned voorkomen

  • +
  • DMOG: een boolean die aangeeft of de label(s) in Dieren_met_onderkaakgegevens voorkomen

  • +
  • DMOG_LABEL: de label(s) die in Dieren_met_onderkaakgegevens voorkomen

  • +
  • DMOG_GEO: een boolean die aangeeft of de label(s) in Dieren_met_onderkaakgegevens_Georef voorkomen

  • +
  • DMOG_GEO_LABEL: de label(s) die in Dieren_met_onderkaakgegevens_Georef voorkomen +Als update = TRUE worden de volgende kolommen toegevoegd:

  • +
  • AM_NEW: een boolean die aangeeft of de label(s) in AfschotMelding voorkomen na de update van DWH_Connect

  • +
  • AM_NEW_LABEL: de label(s) die in AfschotMelding voorkomen na de update van DWH_Connect

  • +
  • TL_NEW: een boolean die aangeeft of de label(s) in ToegekendeLabels voorkomen na de update van DWH_Connect

  • +
  • TL_NEW_LABEL: de label(s) die in ToegekendeLabels voorkomen na de update van DWH_Connect

  • +
+
+

Details

+

De parameter label_type, jaar en soort zijn enkel relevant als één van +de labels de vorm 'volgnummer' heeft. Wanneer deze parameter niet gespecifieerd +worden zal een default waarde voor het jaar (2013 t.e.m. max(AfschotMelding$Jaartal)) +en label_type (c("REEGEIT", "REEKITS", "REEBOK", "WILD ZWIJN", "DAMHERT", "EDELHERT")) +gebruikt worden. Wanneer soort gespecifieerd is zal de lijst van labeltypes +beperkt worden tot deze die op de soort betrekking hebben. Voor ree bvb wordt dit reekits, reegeit en reebok.

+

De parameters label, label_type, jaar en soort kunnen als lijst aangeleverd worden.

+

De parameters label_type, jaar en soort zijn niet hoofdlettergevoelig.

+

bo_dir is de directory waar de backoffice-wild-analyse repository staat. +De functie checkt namelijk of de labels voorkomen in de lokale versie van de backoffice-wild-analyse repository. +Hiervoor is het belangrijk dat de backoffice-wild-analyse repository lokaal aanwezig is en de laatste versie gepulled is.

+

update is een boolean die aangeeft of de nog niet wegeschreven dwh - bestanden moeten worden gecontroleerd. +om dit te kunnen lopen is een verbinding met de DWH nodig. Dit is enkel mogelijk als je met de VPN van het INBO verbonden bent. +Of als je aanwezig bent op een vestiging van de Vlaamse Overheid (VAC).

+
+
+

Author

+

Sander Devisscher

+
+ +
+

Examples

+
if (FALSE) { # \dontrun{
+#enkel label:
+ label <- c(1234, "ANB2016REEGEIT001234", "ANB-2016-REEGEIT001234")
+ output <- label_selecter(label)
+
+#label & labeltype
+ label <- c(1234, "ANB2016REEGEIT001234", "ANB-2016-REEGEIT001234")
+ labeltype <- c("reegeit", "REEBOK")
+ output <- label_selecter(label, label_type = labeltype)
+
+#label & jaar & soort
+ label <- c(1234, "ANB2016REEGEIT001234", "ANB-2016-REEGEIT001234")
+ soort <- "ree"
+ jaar <- c(2018, 2019)
+ output <- label_selecter(label, jaar = jaar , soort = soort)
+} # }
+
+
+
+ +
+ + +
+ +
+

Site built with pkgdown 2.1.0.

+
+ +
+ + + + + + + + diff --git a/docs/sitemap.xml b/docs/sitemap.xml index 2c074d0..8fa9c15 100644 --- a/docs/sitemap.xml +++ b/docs/sitemap.xml @@ -22,6 +22,7 @@ /reference/index.html /reference/install_sp.html /reference/label_converter.html +/reference/label_selecter.html /reference/lib_crs.html /reference/sunsetter.html /reference/sunsetter2.html From 7c59c763be5a0b2132a72e12e0b2017f43619456 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 23 Aug 2024 08:19:39 +0000 Subject: [PATCH 14/29] Increment version [skip ci] --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 99da7df..962eaab 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: fistools Title: Tools & data used for wildlife management & invasive species in Flanders -Version: 1.2.1 +Version: 1.2.2 Authors@R: c( person(given = "Sander", middle = "", family = "Devisscher", "sander.devisscher@inbo.be", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2015-5731")), From b172b7f5505d17fef52c220dd02995b92f73b4da Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 23 Aug 2024 09:52:33 +0000 Subject: [PATCH 15/29] Increment version [skip ci] --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 962eaab..fac7d98 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: fistools Title: Tools & data used for wildlife management & invasive species in Flanders -Version: 1.2.2 +Version: 1.2.3 Authors@R: c( person(given = "Sander", middle = "", family = "Devisscher", "sander.devisscher@inbo.be", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2015-5731")), From 279162ccb99885adeed804deb7745dbb8ca40dce Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 23 Aug 2024 14:19:05 +0000 Subject: [PATCH 16/29] Increment version [skip ci] --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index fac7d98..4faabaf 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: fistools Title: Tools & data used for wildlife management & invasive species in Flanders -Version: 1.2.3 +Version: 1.2.4 Authors@R: c( person(given = "Sander", middle = "", family = "Devisscher", "sander.devisscher@inbo.be", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2015-5731")), From 8f67e48496b6b778e9f5499886551052ae526f1c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 23 Aug 2024 15:00:01 +0000 Subject: [PATCH 17/29] Increment version [skip ci] --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 4faabaf..7f8a33c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: fistools Title: Tools & data used for wildlife management & invasive species in Flanders -Version: 1.2.4 +Version: 1.2.5 Authors@R: c( person(given = "Sander", middle = "", family = "Devisscher", "sander.devisscher@inbo.be", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2015-5731")), From e8f3e046104c8e3d38d0af3ba84064b7bf7cad62 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 26 Aug 2024 07:48:09 +0000 Subject: [PATCH 18/29] Increment version [skip ci] --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 7f8a33c..c0109da 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: fistools Title: Tools & data used for wildlife management & invasive species in Flanders -Version: 1.2.5 +Version: 1.2.6 Authors@R: c( person(given = "Sander", middle = "", family = "Devisscher", "sander.devisscher@inbo.be", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2015-5731")), From efcb46693944956435acee9a466817caf09e8709 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 26 Aug 2024 11:47:18 +0000 Subject: [PATCH 19/29] Increment version [skip ci] --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index c0109da..14bdd8d 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: fistools Title: Tools & data used for wildlife management & invasive species in Flanders -Version: 1.2.6 +Version: 1.2.7 Authors@R: c( person(given = "Sander", middle = "", family = "Devisscher", "sander.devisscher@inbo.be", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2015-5731")), From 054340471fd74f51b72661e894be36a380a13aa9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 26 Aug 2024 12:32:42 +0000 Subject: [PATCH 20/29] Increment version [skip ci] --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 14bdd8d..ef72cd5 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: fistools Title: Tools & data used for wildlife management & invasive species in Flanders -Version: 1.2.7 +Version: 1.2.8 Authors@R: c( person(given = "Sander", middle = "", family = "Devisscher", "sander.devisscher@inbo.be", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2015-5731")), From b49b3b28fb001eabdf1fbe07b71a36a5e6f1d421 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 26 Aug 2024 13:05:16 +0000 Subject: [PATCH 21/29] Build pkgdown site [skip ci] --- docs/404.html | 2 +- docs/CODE_OF_CONDUCT.html | 2 +- docs/LICENSE-text.html | 2 +- docs/LICENSE.html | 2 +- docs/authors.html | 6 +++--- docs/index.html | 2 +- docs/pkgdown.yml | 2 +- docs/reference/CRS_extracter.html | 2 +- docs/reference/UUID_List.html | 2 +- docs/reference/apply_grtsdb.html | 2 +- docs/reference/boswachterijen.html | 2 +- docs/reference/calculate_polygon_centroid.html | 2 +- docs/reference/check.html | 2 +- docs/reference/cleanup_sqlite.html | 2 +- docs/reference/col_content_compare.html | 2 +- docs/reference/colcompare.html | 2 +- docs/reference/collect_osm_features.html | 2 +- docs/reference/download_dep_media.html | 2 +- docs/reference/download_gdrive_if_missing.html | 2 +- docs/reference/download_seq_media.html | 2 +- docs/reference/drg_example.html | 2 +- docs/reference/index.html | 10 +++++++++- docs/reference/install_sp.html | 2 +- docs/reference/label_converter.html | 2 +- docs/reference/label_selecter.html | 2 +- docs/reference/lib_crs.html | 2 +- docs/reference/sunsetter.html | 2 +- docs/reference/sunsetter2.html | 2 +- 28 files changed, 38 insertions(+), 30 deletions(-) diff --git a/docs/404.html b/docs/404.html index 7ccc9f6..10b24fb 100644 --- a/docs/404.html +++ b/docs/404.html @@ -32,7 +32,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/CODE_OF_CONDUCT.html b/docs/CODE_OF_CONDUCT.html index 19b21fb..6225f72 100644 --- a/docs/CODE_OF_CONDUCT.html +++ b/docs/CODE_OF_CONDUCT.html @@ -17,7 +17,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html index 9e06804..92d6861 100644 --- a/docs/LICENSE-text.html +++ b/docs/LICENSE-text.html @@ -17,7 +17,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/LICENSE.html b/docs/LICENSE.html index 90b9b6a..4873802 100644 --- a/docs/LICENSE.html +++ b/docs/LICENSE.html @@ -17,7 +17,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/authors.html b/docs/authors.html index 9e3d476..2a858bf 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -17,7 +17,7 @@ fistools - 1.2.6 + 1.2.8 @@ -70,13 +70,13 @@

Citation

Devisscher S, Pallemaerts L, Delva S, Cartuyvels E, Bollen M (2024). fistools: Tools & data used for wildlife management & invasive species in Flanders. -R package version 1.2.6. +R package version 1.2.8.

@Manual{,
   title = {fistools: Tools & data used for wildlife management & invasive species in Flanders},
   author = {Sander Devisscher and Lynn Pallemaerts and Soria Delva and Emma Cartuyvels and Martijn Bollen},
   year = {2024},
-  note = {R package version 1.2.6},
+  note = {R package version 1.2.8},
 }
diff --git a/docs/index.html b/docs/index.html index 09c607e..8dae781 100644 --- a/docs/index.html +++ b/docs/index.html @@ -33,7 +33,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index 3d029b0..45b73a6 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-26T11:28Z +last_built: 2024-08-26T13:05Z diff --git a/docs/reference/CRS_extracter.html b/docs/reference/CRS_extracter.html index c5a5222..5359f5b 100644 --- a/docs/reference/CRS_extracter.html +++ b/docs/reference/CRS_extracter.html @@ -19,7 +19,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/UUID_List.html b/docs/reference/UUID_List.html index 6fe3a5d..034de81 100644 --- a/docs/reference/UUID_List.html +++ b/docs/reference/UUID_List.html @@ -17,7 +17,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/apply_grtsdb.html b/docs/reference/apply_grtsdb.html index 6f98092..1a78542 100644 --- a/docs/reference/apply_grtsdb.html +++ b/docs/reference/apply_grtsdb.html @@ -18,7 +18,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/boswachterijen.html b/docs/reference/boswachterijen.html index dd0b230..29e4f0b 100644 --- a/docs/reference/boswachterijen.html +++ b/docs/reference/boswachterijen.html @@ -18,7 +18,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/calculate_polygon_centroid.html b/docs/reference/calculate_polygon_centroid.html index e8a41f3..f4281d1 100644 --- a/docs/reference/calculate_polygon_centroid.html +++ b/docs/reference/calculate_polygon_centroid.html @@ -17,7 +17,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/check.html b/docs/reference/check.html index 62d7593..7afab9d 100644 --- a/docs/reference/check.html +++ b/docs/reference/check.html @@ -17,7 +17,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/cleanup_sqlite.html b/docs/reference/cleanup_sqlite.html index 751c873..4cd66d1 100644 --- a/docs/reference/cleanup_sqlite.html +++ b/docs/reference/cleanup_sqlite.html @@ -17,7 +17,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/col_content_compare.html b/docs/reference/col_content_compare.html index 2758e1c..2e8033a 100644 --- a/docs/reference/col_content_compare.html +++ b/docs/reference/col_content_compare.html @@ -19,7 +19,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/colcompare.html b/docs/reference/colcompare.html index fc07457..1b862d1 100644 --- a/docs/reference/colcompare.html +++ b/docs/reference/colcompare.html @@ -17,7 +17,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/collect_osm_features.html b/docs/reference/collect_osm_features.html index fa97519..5c212c1 100644 --- a/docs/reference/collect_osm_features.html +++ b/docs/reference/collect_osm_features.html @@ -23,7 +23,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/download_dep_media.html b/docs/reference/download_dep_media.html index 01a3f75..4c083a9 100644 --- a/docs/reference/download_dep_media.html +++ b/docs/reference/download_dep_media.html @@ -18,7 +18,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/download_gdrive_if_missing.html b/docs/reference/download_gdrive_if_missing.html index 16d86ed..b494d21 100644 --- a/docs/reference/download_gdrive_if_missing.html +++ b/docs/reference/download_gdrive_if_missing.html @@ -19,7 +19,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/download_seq_media.html b/docs/reference/download_seq_media.html index 6f85c08..392ad99 100644 --- a/docs/reference/download_seq_media.html +++ b/docs/reference/download_seq_media.html @@ -18,7 +18,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/drg_example.html b/docs/reference/drg_example.html index a9bfdf4..49fcace 100644 --- a/docs/reference/drg_example.html +++ b/docs/reference/drg_example.html @@ -17,7 +17,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/index.html b/docs/reference/index.html index 194fa0f..4ca2e85 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -17,7 +17,7 @@ fistools - 1.2.6 + 1.2.8 @@ -133,6 +133,14 @@

Other functions label_selecter()

label_selecter

+ +

sunsetter()

+ +

sunsetter Calculate the sunrise and sunset times for a given range of dates and location

+ +

sunsetter2()

+ +

sunsetter2

diff --git a/docs/reference/label_converter.html b/docs/reference/label_converter.html index 12c412a..f7f6f87 100644 --- a/docs/reference/label_converter.html +++ b/docs/reference/label_converter.html @@ -17,7 +17,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/label_selecter.html b/docs/reference/label_selecter.html index aff2099..2c1d952 100644 --- a/docs/reference/label_selecter.html +++ b/docs/reference/label_selecter.html @@ -17,7 +17,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/lib_crs.html b/docs/reference/lib_crs.html index e8b81b1..1de7b6f 100644 --- a/docs/reference/lib_crs.html +++ b/docs/reference/lib_crs.html @@ -17,7 +17,7 @@ fistools - 1.2.6 + 1.2.8 diff --git a/docs/reference/sunsetter.html b/docs/reference/sunsetter.html index fa3b2c4..9a72b97 100644 --- a/docs/reference/sunsetter.html +++ b/docs/reference/sunsetter.html @@ -18,7 +18,7 @@ fistools - 1.2.0 + 1.2.8 diff --git a/docs/reference/sunsetter2.html b/docs/reference/sunsetter2.html index 67e284d..edaaf8f 100644 --- a/docs/reference/sunsetter2.html +++ b/docs/reference/sunsetter2.html @@ -17,7 +17,7 @@ fistools - 1.2.0 + 1.2.8 From dd06d94aaa04f4d14119e4f1f44acf527c2ef659 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 25 Sep 2024 15:19:45 +0000 Subject: [PATCH 22/29] Increment version [skip ci] --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index ef72cd5..d3fe181 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: fistools Title: Tools & data used for wildlife management & invasive species in Flanders -Version: 1.2.8 +Version: 1.2.9 Authors@R: c( person(given = "Sander", middle = "", family = "Devisscher", "sander.devisscher@inbo.be", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2015-5731")), From 1105067cabd49a51b4c4a1fa1ca1bad7e6d18410 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 25 Sep 2024 15:55:27 +0000 Subject: [PATCH 23/29] Build pkgdown site [skip ci] --- docs/404.html | 4 ++-- docs/CODE_OF_CONDUCT.html | 4 ++-- docs/LICENSE-text.html | 4 ++-- docs/LICENSE.html | 4 ++-- docs/authors.html | 8 ++++---- docs/index.html | 4 ++-- docs/pkgdown.yml | 4 ++-- docs/reference/CRS_extracter.html | 4 ++-- docs/reference/UUID_List.html | 4 ++-- docs/reference/apply_grtsdb.html | 4 ++-- docs/reference/boswachterijen.html | 4 ++-- docs/reference/calculate_polygon_centroid.html | 4 ++-- docs/reference/check.html | 4 ++-- docs/reference/cleanup_sqlite.html | 4 ++-- docs/reference/col_content_compare.html | 4 ++-- docs/reference/colcompare.html | 4 ++-- docs/reference/collect_osm_features.html | 4 ++-- docs/reference/download_dep_media.html | 4 ++-- docs/reference/download_gdrive_if_missing.html | 4 ++-- docs/reference/download_seq_media.html | 4 ++-- docs/reference/drg_example.html | 4 ++-- docs/reference/index.html | 4 ++-- docs/reference/install_sp.html | 4 ++-- docs/reference/label_converter.html | 4 ++-- docs/reference/label_selecter.html | 4 ++-- docs/reference/lib_crs.html | 4 ++-- docs/reference/sunsetter.html | 4 ++-- docs/reference/sunsetter2.html | 4 ++-- 28 files changed, 58 insertions(+), 58 deletions(-) diff --git a/docs/404.html b/docs/404.html index 10b24fb..dd8449d 100644 --- a/docs/404.html +++ b/docs/404.html @@ -32,7 +32,7 @@ fistools - 1.2.8 + 1.2.9 @@ -78,7 +78,7 @@

Page not found (404)

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/CODE_OF_CONDUCT.html b/docs/CODE_OF_CONDUCT.html index 6225f72..ceb7b93 100644 --- a/docs/CODE_OF_CONDUCT.html +++ b/docs/CODE_OF_CONDUCT.html @@ -17,7 +17,7 @@ fistools - 1.2.8 + 1.2.9 @@ -119,7 +119,7 @@

Attribution -

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html index 92d6861..88fe187 100644 --- a/docs/LICENSE-text.html +++ b/docs/LICENSE-text.html @@ -17,7 +17,7 @@ fistools - 1.2.8 + 1.2.9 @@ -56,7 +56,7 @@

License

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/LICENSE.html b/docs/LICENSE.html index 4873802..53b9b01 100644 --- a/docs/LICENSE.html +++ b/docs/LICENSE.html @@ -17,7 +17,7 @@ fistools - 1.2.8 + 1.2.9 @@ -59,7 +59,7 @@

MIT License

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/authors.html b/docs/authors.html index 2a858bf..b7c378f 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -17,7 +17,7 @@ fistools - 1.2.8 + 1.2.9 @@ -70,13 +70,13 @@

Citation

Devisscher S, Pallemaerts L, Delva S, Cartuyvels E, Bollen M (2024). fistools: Tools & data used for wildlife management & invasive species in Flanders. -R package version 1.2.8. +R package version 1.2.9.

@Manual{,
   title = {fistools: Tools & data used for wildlife management & invasive species in Flanders},
   author = {Sander Devisscher and Lynn Pallemaerts and Soria Delva and Emma Cartuyvels and Martijn Bollen},
   year = {2024},
-  note = {R package version 1.2.8},
+  note = {R package version 1.2.9},
 }
@@ -90,7 +90,7 @@

Citation

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/index.html b/docs/index.html index 8dae781..4557801 100644 --- a/docs/index.html +++ b/docs/index.html @@ -33,7 +33,7 @@ fistools - 1.2.8 + 1.2.9 @@ -129,7 +129,7 @@

Dev status

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index 13df208..5fbc9eb 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -1,5 +1,5 @@ pandoc: 2.9.2.1 -pkgdown: 2.1.0 +pkgdown: 2.1.1 pkgdown_sha: ~ articles: {} -last_built: 2024-09-16T12:54Z +last_built: 2024-09-25T15:55Z diff --git a/docs/reference/CRS_extracter.html b/docs/reference/CRS_extracter.html index 5359f5b..e99914d 100644 --- a/docs/reference/CRS_extracter.html +++ b/docs/reference/CRS_extracter.html @@ -19,7 +19,7 @@ fistools - 1.2.8 + 1.2.9 @@ -120,7 +120,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/UUID_List.html b/docs/reference/UUID_List.html index 034de81..09bc2d8 100644 --- a/docs/reference/UUID_List.html +++ b/docs/reference/UUID_List.html @@ -17,7 +17,7 @@ fistools - 1.2.8 + 1.2.9 @@ -68,7 +68,7 @@

Arguments

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/apply_grtsdb.html b/docs/reference/apply_grtsdb.html index 1a78542..e860032 100644 --- a/docs/reference/apply_grtsdb.html +++ b/docs/reference/apply_grtsdb.html @@ -18,7 +18,7 @@ fistools - 1.2.8 + 1.2.9 @@ -144,7 +144,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/boswachterijen.html b/docs/reference/boswachterijen.html index 29e4f0b..a23de27 100644 --- a/docs/reference/boswachterijen.html +++ b/docs/reference/boswachterijen.html @@ -18,7 +18,7 @@ fistools - 1.2.8 + 1.2.9 @@ -92,7 +92,7 @@

See also

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/calculate_polygon_centroid.html b/docs/reference/calculate_polygon_centroid.html index f4281d1..c2e855a 100644 --- a/docs/reference/calculate_polygon_centroid.html +++ b/docs/reference/calculate_polygon_centroid.html @@ -17,7 +17,7 @@ fistools - 1.2.8 + 1.2.9 @@ -130,7 +130,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/check.html b/docs/reference/check.html index 7afab9d..dc01e35 100644 --- a/docs/reference/check.html +++ b/docs/reference/check.html @@ -17,7 +17,7 @@ fistools - 1.2.8 + 1.2.9 @@ -81,7 +81,7 @@

Author

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/cleanup_sqlite.html b/docs/reference/cleanup_sqlite.html index 4cd66d1..ff7cd2a 100644 --- a/docs/reference/cleanup_sqlite.html +++ b/docs/reference/cleanup_sqlite.html @@ -17,7 +17,7 @@ fistools - 1.2.8 + 1.2.9 @@ -68,7 +68,7 @@

Arguments

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/col_content_compare.html b/docs/reference/col_content_compare.html index 2e8033a..97b55af 100644 --- a/docs/reference/col_content_compare.html +++ b/docs/reference/col_content_compare.html @@ -19,7 +19,7 @@ fistools - 1.2.8 + 1.2.9 @@ -108,7 +108,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/colcompare.html b/docs/reference/colcompare.html index 1b862d1..2b0fcb6 100644 --- a/docs/reference/colcompare.html +++ b/docs/reference/colcompare.html @@ -17,7 +17,7 @@ fistools - 1.2.8 + 1.2.9 @@ -105,7 +105,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/collect_osm_features.html b/docs/reference/collect_osm_features.html index 5c212c1..f58c166 100644 --- a/docs/reference/collect_osm_features.html +++ b/docs/reference/collect_osm_features.html @@ -23,7 +23,7 @@ fistools - 1.2.8 + 1.2.9 @@ -178,7 +178,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/download_dep_media.html b/docs/reference/download_dep_media.html index 4c083a9..3105eb9 100644 --- a/docs/reference/download_dep_media.html +++ b/docs/reference/download_dep_media.html @@ -18,7 +18,7 @@ fistools - 1.2.8 + 1.2.9 @@ -142,7 +142,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/download_gdrive_if_missing.html b/docs/reference/download_gdrive_if_missing.html index b494d21..0dcc659 100644 --- a/docs/reference/download_gdrive_if_missing.html +++ b/docs/reference/download_gdrive_if_missing.html @@ -19,7 +19,7 @@ fistools - 1.2.8 + 1.2.9 @@ -133,7 +133,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/download_seq_media.html b/docs/reference/download_seq_media.html index 392ad99..7a07f40 100644 --- a/docs/reference/download_seq_media.html +++ b/docs/reference/download_seq_media.html @@ -18,7 +18,7 @@ fistools - 1.2.8 + 1.2.9 @@ -120,7 +120,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/drg_example.html b/docs/reference/drg_example.html index 49fcace..3c94934 100644 --- a/docs/reference/drg_example.html +++ b/docs/reference/drg_example.html @@ -17,7 +17,7 @@ fistools - 1.2.8 + 1.2.9 @@ -82,7 +82,7 @@

See also

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/index.html b/docs/reference/index.html index 4ca2e85..7cdb0fe 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -17,7 +17,7 @@ fistools - 1.2.8 + 1.2.9 @@ -154,7 +154,7 @@

Other functions -

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/install_sp.html b/docs/reference/install_sp.html index 09eb72d..cac7ee7 100644 --- a/docs/reference/install_sp.html +++ b/docs/reference/install_sp.html @@ -17,7 +17,7 @@ fistools - 1.2.8 + 1.2.9 @@ -79,7 +79,7 @@

Author

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/label_converter.html b/docs/reference/label_converter.html index f7f6f87..c99a187 100644 --- a/docs/reference/label_converter.html +++ b/docs/reference/label_converter.html @@ -17,7 +17,7 @@ fistools - 1.2.8 + 1.2.9 @@ -159,7 +159,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/label_selecter.html b/docs/reference/label_selecter.html index 2c1d952..651233c 100644 --- a/docs/reference/label_selecter.html +++ b/docs/reference/label_selecter.html @@ -17,7 +17,7 @@ fistools - 1.2.8 + 1.2.9 @@ -157,7 +157,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/lib_crs.html b/docs/reference/lib_crs.html index 1de7b6f..2f6973f 100644 --- a/docs/reference/lib_crs.html +++ b/docs/reference/lib_crs.html @@ -17,7 +17,7 @@ fistools - 1.2.8 + 1.2.9 @@ -78,7 +78,7 @@

Source

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/sunsetter.html b/docs/reference/sunsetter.html index 9a72b97..c4613f1 100644 --- a/docs/reference/sunsetter.html +++ b/docs/reference/sunsetter.html @@ -18,7 +18,7 @@ fistools - 1.2.8 + 1.2.9 @@ -120,7 +120,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

diff --git a/docs/reference/sunsetter2.html b/docs/reference/sunsetter2.html index edaaf8f..9262e17 100644 --- a/docs/reference/sunsetter2.html +++ b/docs/reference/sunsetter2.html @@ -17,7 +17,7 @@ fistools - 1.2.8 + 1.2.9 @@ -118,7 +118,7 @@

Examples

-

Site built with pkgdown 2.1.0.

+

Site built with pkgdown 2.1.1.

From 8239ebd6773aaef9d7ea5388a785c0b2e51f0d88 Mon Sep 17 00:00:00 2001 From: Sander Devisscher Date: Fri, 11 Oct 2024 12:04:28 +0200 Subject: [PATCH 24/29] Update NAMESPACE #61 --- NAMESPACE | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NAMESPACE b/NAMESPACE index 3a9adf3..80697da 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -14,10 +14,10 @@ export(download_gdrive_if_missing) export(download_seq_media) export(install_sp) export(label_converter) -export(sunsetter) -export(sunsetter2) export(label_selecter) export(rename_ct_files) +export(sunsetter) +export(sunsetter2) importClassesFrom(sp,CRS) importFrom(magrittr,"%>%") importFrom(sp,CRS) From 5c46618065ed2ab847a79b6b8fef868d499e24aa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 11 Oct 2024 10:08:21 +0000 Subject: [PATCH 25/29] Increment version [skip ci] --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 46bd421..c4e5ad7 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: fistools Title: Tools & data used for wildlife management & invasive species in Flanders -Version: 1.2.11 +Version: 1.2.12 Authors@R: c( person(given = "Sander", middle = "", family = "Devisscher", "sander.devisscher@inbo.be", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2015-5731")), From a65d4a6b380cab577ce3f1b1decd329a9a6a25b3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 11 Oct 2024 10:43:11 +0000 Subject: [PATCH 26/29] Build pkgdown site [skip ci] --- docs/404.html | 2 +- docs/CODE_OF_CONDUCT.html | 2 +- docs/LICENSE-text.html | 2 +- docs/LICENSE.html | 2 +- docs/authors.html | 6 +++--- docs/index.html | 2 +- docs/pkgdown.yml | 2 +- docs/reference/CRS_extracter.html | 2 +- docs/reference/UUID_List.html | 2 +- docs/reference/apply_grtsdb.html | 2 +- docs/reference/boswachterijen.html | 2 +- docs/reference/calculate_polygon_centroid.html | 2 +- docs/reference/check.html | 2 +- docs/reference/cleanup_sqlite.html | 2 +- docs/reference/col_content_compare.html | 2 +- docs/reference/colcompare.html | 2 +- docs/reference/collect_osm_features.html | 2 +- docs/reference/download_dep_media.html | 2 +- docs/reference/download_gdrive_if_missing.html | 2 +- docs/reference/download_seq_media.html | 2 +- docs/reference/drg_example.html | 2 +- docs/reference/index.html | 10 +++++++++- docs/reference/install_sp.html | 2 +- docs/reference/label_converter.html | 2 +- docs/reference/label_selecter.html | 2 +- docs/reference/lib_crs.html | 2 +- docs/reference/rename_ct_files.html | 2 +- docs/reference/sunsetter.html | 2 +- docs/reference/sunsetter2.html | 2 +- docs/sitemap.xml | 2 ++ 30 files changed, 41 insertions(+), 31 deletions(-) diff --git a/docs/404.html b/docs/404.html index a271a88..c5d0273 100644 --- a/docs/404.html +++ b/docs/404.html @@ -32,7 +32,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/CODE_OF_CONDUCT.html b/docs/CODE_OF_CONDUCT.html index 7005b09..85f3b70 100644 --- a/docs/CODE_OF_CONDUCT.html +++ b/docs/CODE_OF_CONDUCT.html @@ -17,7 +17,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html index a5e282d..52d2a7c 100644 --- a/docs/LICENSE-text.html +++ b/docs/LICENSE-text.html @@ -17,7 +17,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/LICENSE.html b/docs/LICENSE.html index 4f3c1a6..7a383d7 100644 --- a/docs/LICENSE.html +++ b/docs/LICENSE.html @@ -17,7 +17,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/authors.html b/docs/authors.html index 3caa924..90b746a 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -17,7 +17,7 @@ fistools - 1.2.10 + 1.2.12 @@ -70,13 +70,13 @@

Citation

Devisscher S, Pallemaerts L, Delva S, Cartuyvels E, Bollen M (2024). fistools: Tools & data used for wildlife management & invasive species in Flanders. -R package version 1.2.10. +R package version 1.2.12.

@Manual{,
   title = {fistools: Tools & data used for wildlife management & invasive species in Flanders},
   author = {Sander Devisscher and Lynn Pallemaerts and Soria Delva and Emma Cartuyvels and Martijn Bollen},
   year = {2024},
-  note = {R package version 1.2.10},
+  note = {R package version 1.2.12},
 }
diff --git a/docs/index.html b/docs/index.html index c56faed..4808dca 100644 --- a/docs/index.html +++ b/docs/index.html @@ -33,7 +33,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index 5298252..d119602 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -2,4 +2,4 @@ pandoc: 2.9.2.1 pkgdown: 2.1.1 pkgdown_sha: ~ articles: {} -last_built: 2024-10-10T13:48Z +last_built: 2024-10-11T10:43Z diff --git a/docs/reference/CRS_extracter.html b/docs/reference/CRS_extracter.html index 473bed0..eb0a2e1 100644 --- a/docs/reference/CRS_extracter.html +++ b/docs/reference/CRS_extracter.html @@ -19,7 +19,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/UUID_List.html b/docs/reference/UUID_List.html index 468268f..ad7284e 100644 --- a/docs/reference/UUID_List.html +++ b/docs/reference/UUID_List.html @@ -17,7 +17,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/apply_grtsdb.html b/docs/reference/apply_grtsdb.html index 2e9cfca..e1d45c3 100644 --- a/docs/reference/apply_grtsdb.html +++ b/docs/reference/apply_grtsdb.html @@ -18,7 +18,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/boswachterijen.html b/docs/reference/boswachterijen.html index 01477ec..71a720c 100644 --- a/docs/reference/boswachterijen.html +++ b/docs/reference/boswachterijen.html @@ -18,7 +18,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/calculate_polygon_centroid.html b/docs/reference/calculate_polygon_centroid.html index 0dfe8a8..2123957 100644 --- a/docs/reference/calculate_polygon_centroid.html +++ b/docs/reference/calculate_polygon_centroid.html @@ -17,7 +17,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/check.html b/docs/reference/check.html index 0a430d6..44a38af 100644 --- a/docs/reference/check.html +++ b/docs/reference/check.html @@ -17,7 +17,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/cleanup_sqlite.html b/docs/reference/cleanup_sqlite.html index 254c575..fba7ceb 100644 --- a/docs/reference/cleanup_sqlite.html +++ b/docs/reference/cleanup_sqlite.html @@ -17,7 +17,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/col_content_compare.html b/docs/reference/col_content_compare.html index fe77da1..e08f52a 100644 --- a/docs/reference/col_content_compare.html +++ b/docs/reference/col_content_compare.html @@ -19,7 +19,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/colcompare.html b/docs/reference/colcompare.html index f106ee0..ce89ddb 100644 --- a/docs/reference/colcompare.html +++ b/docs/reference/colcompare.html @@ -17,7 +17,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/collect_osm_features.html b/docs/reference/collect_osm_features.html index 89f66b3..9eb67a1 100644 --- a/docs/reference/collect_osm_features.html +++ b/docs/reference/collect_osm_features.html @@ -23,7 +23,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/download_dep_media.html b/docs/reference/download_dep_media.html index a17140e..137efce 100644 --- a/docs/reference/download_dep_media.html +++ b/docs/reference/download_dep_media.html @@ -18,7 +18,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/download_gdrive_if_missing.html b/docs/reference/download_gdrive_if_missing.html index 10585db..8b39a96 100644 --- a/docs/reference/download_gdrive_if_missing.html +++ b/docs/reference/download_gdrive_if_missing.html @@ -19,7 +19,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/download_seq_media.html b/docs/reference/download_seq_media.html index 4ed9c0c..2394e13 100644 --- a/docs/reference/download_seq_media.html +++ b/docs/reference/download_seq_media.html @@ -18,7 +18,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/drg_example.html b/docs/reference/drg_example.html index 9ca6625..4f8fd66 100644 --- a/docs/reference/drg_example.html +++ b/docs/reference/drg_example.html @@ -17,7 +17,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/index.html b/docs/reference/index.html index 97fabd2..84d0658 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -17,7 +17,7 @@ fistools - 1.2.10 + 1.2.12 @@ -137,6 +137,14 @@

Other functions rename_ct_files()

Rename camera trap files for upload in Agouti

+ +

sunsetter()

+ +

sunsetter Calculate the sunrise and sunset times for a given range of dates and location

+ +

sunsetter2()

+ +

sunsetter2

diff --git a/docs/reference/label_converter.html b/docs/reference/label_converter.html index 81fba77..dfe4fef 100644 --- a/docs/reference/label_converter.html +++ b/docs/reference/label_converter.html @@ -17,7 +17,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/label_selecter.html b/docs/reference/label_selecter.html index 9cb6095..e04eeec 100644 --- a/docs/reference/label_selecter.html +++ b/docs/reference/label_selecter.html @@ -17,7 +17,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/lib_crs.html b/docs/reference/lib_crs.html index d9bf420..81ddcb9 100644 --- a/docs/reference/lib_crs.html +++ b/docs/reference/lib_crs.html @@ -17,7 +17,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/rename_ct_files.html b/docs/reference/rename_ct_files.html index 2f8cc6a..733fdd5 100644 --- a/docs/reference/rename_ct_files.html +++ b/docs/reference/rename_ct_files.html @@ -21,7 +21,7 @@ fistools - 1.2.10 + 1.2.12 diff --git a/docs/reference/sunsetter.html b/docs/reference/sunsetter.html index c4613f1..40be850 100644 --- a/docs/reference/sunsetter.html +++ b/docs/reference/sunsetter.html @@ -18,7 +18,7 @@ fistools - 1.2.9 + 1.2.12 diff --git a/docs/reference/sunsetter2.html b/docs/reference/sunsetter2.html index 9262e17..62f7d64 100644 --- a/docs/reference/sunsetter2.html +++ b/docs/reference/sunsetter2.html @@ -17,7 +17,7 @@ fistools - 1.2.9 + 1.2.12 diff --git a/docs/sitemap.xml b/docs/sitemap.xml index 19d341c..8fc1cd3 100644 --- a/docs/sitemap.xml +++ b/docs/sitemap.xml @@ -25,5 +25,7 @@ /reference/label_selecter.html /reference/lib_crs.html /reference/rename_ct_files.html +/reference/sunsetter.html +/reference/sunsetter2.html From 3f534e90f9538fc850d6db1e7717be9a8467a9ea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 11 Oct 2024 11:00:41 +0000 Subject: [PATCH 27/29] Increment version [skip ci] --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index c4e5ad7..1e0fa25 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: fistools Title: Tools & data used for wildlife management & invasive species in Flanders -Version: 1.2.12 +Version: 1.2.13 Authors@R: c( person(given = "Sander", middle = "", family = "Devisscher", "sander.devisscher@inbo.be", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2015-5731")), From f2b9b2970b24b7c3a38b7afc8ab36a1d90db0a2c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 11 Oct 2024 11:33:53 +0000 Subject: [PATCH 28/29] Build pkgdown site [skip ci] --- docs/404.html | 2 +- docs/CODE_OF_CONDUCT.html | 2 +- docs/LICENSE-text.html | 2 +- docs/LICENSE.html | 2 +- docs/authors.html | 6 +++--- docs/index.html | 2 +- docs/pkgdown.yml | 2 +- docs/reference/CRS_extracter.html | 2 +- docs/reference/UUID_List.html | 2 +- docs/reference/apply_grtsdb.html | 2 +- docs/reference/boswachterijen.html | 2 +- docs/reference/calculate_polygon_centroid.html | 2 +- docs/reference/check.html | 2 +- docs/reference/cleanup_sqlite.html | 2 +- docs/reference/col_content_compare.html | 2 +- docs/reference/colcompare.html | 2 +- docs/reference/collect_osm_features.html | 2 +- docs/reference/download_dep_media.html | 2 +- docs/reference/download_gdrive_if_missing.html | 2 +- docs/reference/download_seq_media.html | 2 +- docs/reference/drg_example.html | 2 +- docs/reference/index.html | 2 +- docs/reference/install_sp.html | 2 +- docs/reference/label_converter.html | 2 +- docs/reference/label_selecter.html | 2 +- docs/reference/lib_crs.html | 2 +- docs/reference/rename_ct_files.html | 2 +- docs/reference/sunsetter.html | 2 +- docs/reference/sunsetter2.html | 2 +- 29 files changed, 31 insertions(+), 31 deletions(-) diff --git a/docs/404.html b/docs/404.html index c5d0273..8c80bbf 100644 --- a/docs/404.html +++ b/docs/404.html @@ -32,7 +32,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/CODE_OF_CONDUCT.html b/docs/CODE_OF_CONDUCT.html index 85f3b70..fd27571 100644 --- a/docs/CODE_OF_CONDUCT.html +++ b/docs/CODE_OF_CONDUCT.html @@ -17,7 +17,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html index 52d2a7c..a1b1450 100644 --- a/docs/LICENSE-text.html +++ b/docs/LICENSE-text.html @@ -17,7 +17,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/LICENSE.html b/docs/LICENSE.html index 7a383d7..026975f 100644 --- a/docs/LICENSE.html +++ b/docs/LICENSE.html @@ -17,7 +17,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/authors.html b/docs/authors.html index 90b746a..7e26b88 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -17,7 +17,7 @@ fistools - 1.2.12 + 1.2.13 @@ -70,13 +70,13 @@

Citation

Devisscher S, Pallemaerts L, Delva S, Cartuyvels E, Bollen M (2024). fistools: Tools & data used for wildlife management & invasive species in Flanders. -R package version 1.2.12. +R package version 1.2.13.

@Manual{,
   title = {fistools: Tools & data used for wildlife management & invasive species in Flanders},
   author = {Sander Devisscher and Lynn Pallemaerts and Soria Delva and Emma Cartuyvels and Martijn Bollen},
   year = {2024},
-  note = {R package version 1.2.12},
+  note = {R package version 1.2.13},
 }
diff --git a/docs/index.html b/docs/index.html index 4808dca..894be7d 100644 --- a/docs/index.html +++ b/docs/index.html @@ -33,7 +33,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index d119602..edc7c43 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -2,4 +2,4 @@ pandoc: 2.9.2.1 pkgdown: 2.1.1 pkgdown_sha: ~ articles: {} -last_built: 2024-10-11T10:43Z +last_built: 2024-10-11T11:33Z diff --git a/docs/reference/CRS_extracter.html b/docs/reference/CRS_extracter.html index eb0a2e1..c9cfc91 100644 --- a/docs/reference/CRS_extracter.html +++ b/docs/reference/CRS_extracter.html @@ -19,7 +19,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/UUID_List.html b/docs/reference/UUID_List.html index ad7284e..4d3061c 100644 --- a/docs/reference/UUID_List.html +++ b/docs/reference/UUID_List.html @@ -17,7 +17,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/apply_grtsdb.html b/docs/reference/apply_grtsdb.html index e1d45c3..533a626 100644 --- a/docs/reference/apply_grtsdb.html +++ b/docs/reference/apply_grtsdb.html @@ -18,7 +18,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/boswachterijen.html b/docs/reference/boswachterijen.html index 71a720c..eb01a85 100644 --- a/docs/reference/boswachterijen.html +++ b/docs/reference/boswachterijen.html @@ -18,7 +18,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/calculate_polygon_centroid.html b/docs/reference/calculate_polygon_centroid.html index 2123957..3148238 100644 --- a/docs/reference/calculate_polygon_centroid.html +++ b/docs/reference/calculate_polygon_centroid.html @@ -17,7 +17,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/check.html b/docs/reference/check.html index 44a38af..1a8cea0 100644 --- a/docs/reference/check.html +++ b/docs/reference/check.html @@ -17,7 +17,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/cleanup_sqlite.html b/docs/reference/cleanup_sqlite.html index fba7ceb..9c0e208 100644 --- a/docs/reference/cleanup_sqlite.html +++ b/docs/reference/cleanup_sqlite.html @@ -17,7 +17,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/col_content_compare.html b/docs/reference/col_content_compare.html index e08f52a..55f56d3 100644 --- a/docs/reference/col_content_compare.html +++ b/docs/reference/col_content_compare.html @@ -19,7 +19,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/colcompare.html b/docs/reference/colcompare.html index ce89ddb..2015d3c 100644 --- a/docs/reference/colcompare.html +++ b/docs/reference/colcompare.html @@ -17,7 +17,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/collect_osm_features.html b/docs/reference/collect_osm_features.html index 9eb67a1..631b464 100644 --- a/docs/reference/collect_osm_features.html +++ b/docs/reference/collect_osm_features.html @@ -23,7 +23,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/download_dep_media.html b/docs/reference/download_dep_media.html index 137efce..4980453 100644 --- a/docs/reference/download_dep_media.html +++ b/docs/reference/download_dep_media.html @@ -18,7 +18,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/download_gdrive_if_missing.html b/docs/reference/download_gdrive_if_missing.html index 8b39a96..4709ab0 100644 --- a/docs/reference/download_gdrive_if_missing.html +++ b/docs/reference/download_gdrive_if_missing.html @@ -19,7 +19,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/download_seq_media.html b/docs/reference/download_seq_media.html index 2394e13..14037d3 100644 --- a/docs/reference/download_seq_media.html +++ b/docs/reference/download_seq_media.html @@ -18,7 +18,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/drg_example.html b/docs/reference/drg_example.html index 4f8fd66..64114a4 100644 --- a/docs/reference/drg_example.html +++ b/docs/reference/drg_example.html @@ -17,7 +17,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/index.html b/docs/reference/index.html index 84d0658..a795865 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -17,7 +17,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/install_sp.html b/docs/reference/install_sp.html index c2d9551..6a90178 100644 --- a/docs/reference/install_sp.html +++ b/docs/reference/install_sp.html @@ -17,7 +17,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/label_converter.html b/docs/reference/label_converter.html index dfe4fef..80d6e06 100644 --- a/docs/reference/label_converter.html +++ b/docs/reference/label_converter.html @@ -17,7 +17,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/label_selecter.html b/docs/reference/label_selecter.html index e04eeec..c7ca4be 100644 --- a/docs/reference/label_selecter.html +++ b/docs/reference/label_selecter.html @@ -17,7 +17,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/lib_crs.html b/docs/reference/lib_crs.html index 81ddcb9..2072e4f 100644 --- a/docs/reference/lib_crs.html +++ b/docs/reference/lib_crs.html @@ -17,7 +17,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/rename_ct_files.html b/docs/reference/rename_ct_files.html index 733fdd5..fe1c323 100644 --- a/docs/reference/rename_ct_files.html +++ b/docs/reference/rename_ct_files.html @@ -21,7 +21,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/sunsetter.html b/docs/reference/sunsetter.html index 40be850..86d99b8 100644 --- a/docs/reference/sunsetter.html +++ b/docs/reference/sunsetter.html @@ -18,7 +18,7 @@ fistools - 1.2.12 + 1.2.13 diff --git a/docs/reference/sunsetter2.html b/docs/reference/sunsetter2.html index 62f7d64..3e9fb82 100644 --- a/docs/reference/sunsetter2.html +++ b/docs/reference/sunsetter2.html @@ -17,7 +17,7 @@ fistools - 1.2.12 + 1.2.13 From 064388f47e9f585972b9e1ba18be2fb84a8924bd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 9 Dec 2024 13:20:13 +0000 Subject: [PATCH 29/29] Increment version [skip ci] --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 1e0fa25..486e350 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: fistools Title: Tools & data used for wildlife management & invasive species in Flanders -Version: 1.2.13 +Version: 1.2.14 Authors@R: c( person(given = "Sander", middle = "", family = "Devisscher", "sander.devisscher@inbo.be", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2015-5731")),