This commit is contained in:
eneller
2025-10-30 23:11:22 +01:00
parent e6de4d4b8c
commit 96f536b613
2 changed files with 869 additions and 0 deletions

39
ex02.Rmd Normal file
View File

@@ -0,0 +1,39 @@
---
title: "Location Based Services Assignment 02"
author: "Erik Neller"
date: "`r Sys.Date()`"
output:
html_document:
df_print: paged
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
```{r geo}
# Load required packages
library(leaflet)
library(readr)
library(dplyr)
# Load RTKLIB output (.pos)
pos <- read_table("./record.pos",
comment = "%") # % denotes comments, ignore those rows
# Add column names
colnames(pos) <- c("date", "time", "lat", "lon", "height", "Q", "ns", "sdn", "sde", "sdu",
"sdne", "sdeu", "sdun", "age", "ratio")[1:ncol(pos)]
# Inspect data
head(pos)
# Create interactive map
leaflet(pos) %>%
addTiles() %>%
addPolylines(lng = ~lon, lat = ~lat, color = "blue") %>%
addMarkers(lng = ~lon[1], lat = ~lat[1], popup = "Start") %>%
addMarkers(lng = ~lon[nrow(pos)], lat = ~lat[nrow(pos)], popup = "End")
```

830
renv.lock
View File

@@ -338,6 +338,73 @@
"NeedsCompilation": "yes", "NeedsCompilation": "yes",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"bit": {
"Package": "bit",
"Version": "4.6.0",
"Source": "Repository",
"Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections",
"Authors@R": "c( person(\"Michael\", \"Chirico\", email = \"MichaelChirico4@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Jens\", \"Oehlschlägel\", role = \"aut\"), person(\"Brian\", \"Ripley\", role = \"ctb\") )",
"Depends": [
"R (>= 3.4.0)"
],
"Suggests": [
"testthat (>= 3.0.0)",
"roxygen2",
"knitr",
"markdown",
"rmarkdown",
"microbenchmark",
"bit64 (>= 4.0.0)",
"ff (>= 4.0.0)"
],
"Description": "Provided are classes for boolean and skewed boolean vectors, fast boolean methods, fast unique and non-unique integer sorting, fast set operations on sorted and unsorted sets of integers, and foundations for ff (range index, compression, chunked processing).",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"Encoding": "UTF-8",
"URL": "https://github.com/r-lib/bit",
"VignetteBuilder": "knitr, rmarkdown",
"RoxygenNote": "7.3.2",
"Config/testthat/edition": "3",
"NeedsCompilation": "yes",
"Author": "Michael Chirico [aut, cre], Jens Oehlschlägel [aut], Brian Ripley [ctb]",
"Maintainer": "Michael Chirico <MichaelChirico4@gmail.com>",
"Repository": "CRAN"
},
"bit64": {
"Package": "bit64",
"Version": "4.6.0-1",
"Source": "Repository",
"Title": "A S3 Class for Vectors of 64bit Integers",
"Authors@R": "c( person(\"Michael\", \"Chirico\", email = \"michaelchirico4@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Jens\", \"Oehlschlägel\", role = \"aut\"), person(\"Leonardo\", \"Silvestri\", role = \"ctb\"), person(\"Ofek\", \"Shilon\", role = \"ctb\") )",
"Depends": [
"R (>= 3.4.0)",
"bit (>= 4.0.0)"
],
"Description": "Package 'bit64' provides serializable S3 atomic 64bit (signed) integers. These are useful for handling database keys and exact counting in +-2^63. WARNING: do not use them as replacement for 32bit integers, integer64 are not supported for subscripting by R-core and they have different semantics when combined with double, e.g. integer64 + double => integer64. Class integer64 can be used in vectors, matrices, arrays and data.frames. Methods are available for coercion from and to logicals, integers, doubles, characters and factors as well as many elementwise and summary functions. Many fast algorithmic operations such as 'match' and 'order' support inter- active data exploration and manipulation and optionally leverage caching.",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"URL": "https://github.com/r-lib/bit64",
"Encoding": "UTF-8",
"Imports": [
"graphics",
"methods",
"stats",
"utils"
],
"Suggests": [
"testthat (>= 3.0.3)",
"withr"
],
"Config/testthat/edition": "3",
"Config/needs/development": "testthat",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "yes",
"Author": "Michael Chirico [aut, cre], Jens Oehlschlägel [aut], Leonardo Silvestri [ctb], Ofek Shilon [ctb]",
"Maintainer": "Michael Chirico <michaelchirico4@gmail.com>",
"Repository": "CRAN"
},
"bslib": { "bslib": {
"Package": "bslib", "Package": "bslib",
"Version": "0.9.0", "Version": "0.9.0",
@@ -532,6 +599,37 @@
"Maintainer": "Gábor Csárdi <gabor@posit.co>", "Maintainer": "Gábor Csárdi <gabor@posit.co>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"clipr": {
"Package": "clipr",
"Version": "0.8.0",
"Source": "Repository",
"Type": "Package",
"Title": "Read and Write from the System Clipboard",
"Authors@R": "c( person(\"Matthew\", \"Lincoln\", , \"matthew.d.lincoln@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4387-3384\")), person(\"Louis\", \"Maddox\", role = \"ctb\"), person(\"Steve\", \"Simpson\", role = \"ctb\"), person(\"Jennifer\", \"Bryan\", role = \"ctb\") )",
"Description": "Simple utility functions to read from and write to the Windows, OS X, and X11 clipboards.",
"License": "GPL-3",
"URL": "https://github.com/mdlincoln/clipr, http://matthewlincoln.net/clipr/",
"BugReports": "https://github.com/mdlincoln/clipr/issues",
"Imports": [
"utils"
],
"Suggests": [
"covr",
"knitr",
"rmarkdown",
"rstudioapi (>= 0.5)",
"testthat (>= 2.0.0)"
],
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.1.2",
"SystemRequirements": "xclip (https://github.com/astrand/xclip) or xsel (http://www.vergenet.net/~conrad/software/xsel/) for accessing the X11 clipboard, or wl-clipboard (https://github.com/bugaevc/wl-clipboard) for systems using Wayland.",
"NeedsCompilation": "no",
"Author": "Matthew Lincoln [aut, cre] (<https://orcid.org/0000-0002-4387-3384>), Louis Maddox [ctb], Steve Simpson [ctb], Jennifer Bryan [ctb]",
"Maintainer": "Matthew Lincoln <matthew.d.lincoln@gmail.com>",
"Repository": "CRAN"
},
"cpp11": { "cpp11": {
"Package": "cpp11", "Package": "cpp11",
"Version": "0.5.2", "Version": "0.5.2",
@@ -579,6 +677,68 @@
"Maintainer": "Davis Vaughan <davis@posit.co>", "Maintainer": "Davis Vaughan <davis@posit.co>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"crayon": {
"Package": "crayon",
"Version": "1.5.3",
"Source": "Repository",
"Title": "Colored Terminal Output",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Brodie\", \"Gaslam\", , \"brodie.gaslam@yahoo.com\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "The crayon package is now superseded. Please use the 'cli' package for new projects. Colored terminal output on terminals that support 'ANSI' color and highlight codes. It also works in 'Emacs' 'ESS'. 'ANSI' color support is automatically detected. Colors and highlighting can be combined and nested. New styles can also be created easily. This package was inspired by the 'chalk' 'JavaScript' project.",
"License": "MIT + file LICENSE",
"URL": "https://r-lib.github.io/crayon/, https://github.com/r-lib/crayon",
"BugReports": "https://github.com/r-lib/crayon/issues",
"Imports": [
"grDevices",
"methods",
"utils"
],
"Suggests": [
"mockery",
"rstudioapi",
"testthat",
"withr"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"Collate": "'aaa-rstudio-detect.R' 'aaaa-rematch2.R' 'aab-num-ansi-colors.R' 'aac-num-ansi-colors.R' 'ansi-256.R' 'ansi-palette.R' 'combine.R' 'string.R' 'utils.R' 'crayon-package.R' 'disposable.R' 'enc-utils.R' 'has_ansi.R' 'has_color.R' 'link.R' 'styles.R' 'machinery.R' 'parts.R' 'print.R' 'style-var.R' 'show.R' 'string_operations.R'",
"NeedsCompilation": "no",
"Author": "Gábor Csárdi [aut, cre], Brodie Gaslam [ctb], Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN"
},
"crosstalk": {
"Package": "crosstalk",
"Version": "1.2.2",
"Source": "Repository",
"Type": "Package",
"Title": "Inter-Widget Interactivity for HTML Widgets",
"Authors@R": "c( person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(, \"jQuery Foundation\", role = \"cph\", comment = \"jQuery library and jQuery UI library\"), person(, \"jQuery contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"), person(\"Mark\", \"Otto\", role = \"ctb\", comment = \"Bootstrap library\"), person(\"Jacob\", \"Thornton\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js library\"), person(\"Kristopher Michael\", \"Kowal\", role = c(\"ctb\", \"cph\"), comment = \"es5-shim library\"), person(, \"es5-shim contributors\", role = c(\"ctb\", \"cph\"), comment = \"es5-shim library\"), person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"), comment = \"ion.rangeSlider library\"), person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"), comment = \"Javascript strftime library\") )",
"Description": "Provides building blocks for allowing HTML widgets to communicate with each other, with Shiny or without (i.e. static .html files). Currently supports linked brushing and filtering.",
"License": "MIT + file LICENSE",
"URL": "https://rstudio.github.io/crosstalk/, https://github.com/rstudio/crosstalk",
"BugReports": "https://github.com/rstudio/crosstalk/issues",
"Imports": [
"htmltools (>= 0.3.6)",
"jsonlite",
"lazyeval",
"R6"
],
"Suggests": [
"bslib",
"ggplot2",
"sass",
"shiny",
"testthat (>= 2.1.0)"
],
"Config/Needs/website": "jcheng5/d3scatter, DT, leaflet, rmarkdown",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Joe Cheng [aut], Carson Sievert [aut, cre] (ORCID: <https://orcid.org/0000-0002-4958-2844>), Posit Software, PBC [cph, fnd], jQuery Foundation [cph] (jQuery library and jQuery UI library), jQuery contributors [ctb, cph] (jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt), Mark Otto [ctb] (Bootstrap library), Jacob Thornton [ctb] (Bootstrap library), Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Brian Reavis [ctb, cph] (selectize.js library), Kristopher Michael Kowal [ctb, cph] (es5-shim library), es5-shim contributors [ctb, cph] (es5-shim library), Denis Ineshin [ctb, cph] (ion.rangeSlider library), Sami Samhuri [ctb, cph] (Javascript strftime library)",
"Maintainer": "Carson Sievert <carson@posit.co>",
"Repository": "CRAN"
},
"data.table": { "data.table": {
"Package": "data.table", "Package": "data.table",
"Version": "1.17.8", "Version": "1.17.8",
@@ -724,6 +884,69 @@
"Repository": "CRAN", "Repository": "CRAN",
"Encoding": "UTF-8" "Encoding": "UTF-8"
}, },
"dplyr": {
"Package": "dplyr",
"Version": "1.1.4",
"Source": "Repository",
"Type": "Package",
"Title": "A Grammar of Data Manipulation",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Lionel\", \"Henry\", role = \"aut\"), person(\"Kirill\", \"Müller\", role = \"aut\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "A fast, consistent tool for working with data frame like objects, both in memory and out of memory.",
"License": "MIT + file LICENSE",
"URL": "https://dplyr.tidyverse.org, https://github.com/tidyverse/dplyr",
"BugReports": "https://github.com/tidyverse/dplyr/issues",
"Depends": [
"R (>= 3.5.0)"
],
"Imports": [
"cli (>= 3.4.0)",
"generics",
"glue (>= 1.3.2)",
"lifecycle (>= 1.0.3)",
"magrittr (>= 1.5)",
"methods",
"pillar (>= 1.9.0)",
"R6",
"rlang (>= 1.1.0)",
"tibble (>= 3.2.0)",
"tidyselect (>= 1.2.0)",
"utils",
"vctrs (>= 0.6.4)"
],
"Suggests": [
"bench",
"broom",
"callr",
"covr",
"DBI",
"dbplyr (>= 2.2.1)",
"ggplot2",
"knitr",
"Lahman",
"lobstr",
"microbenchmark",
"nycflights13",
"purrr",
"rmarkdown",
"RMySQL",
"RPostgreSQL",
"RSQLite",
"stringi (>= 1.7.6)",
"testthat (>= 3.1.5)",
"tidyr (>= 1.3.0)",
"withr"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse, shiny, pkgdown, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Author": "Hadley Wickham [aut, cre] (<https://orcid.org/0000-0003-4757-117X>), Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>), Lionel Henry [aut], Kirill Müller [aut] (<https://orcid.org/0000-0002-1416-3412>), Davis Vaughan [aut] (<https://orcid.org/0000-0003-4777-038X>), Posit Software, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "CRAN"
},
"e1071": { "e1071": {
"Package": "e1071", "Package": "e1071",
"Version": "1.7-16", "Version": "1.7-16",
@@ -945,6 +1168,38 @@
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>", "Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"generics": {
"Package": "generics",
"Version": "0.1.4",
"Source": "Repository",
"Title": "Common S3 Generics not Provided by Base R Methods Related to Model Fitting",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"aut\"), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"https://ror.org/03wc8by49\")) )",
"Description": "In order to reduce potential package dependencies and conflicts, generics provides a number of commonly used S3 generics.",
"License": "MIT + file LICENSE",
"URL": "https://generics.r-lib.org, https://github.com/r-lib/generics",
"BugReports": "https://github.com/r-lib/generics/issues",
"Depends": [
"R (>= 3.6)"
],
"Imports": [
"methods"
],
"Suggests": [
"covr",
"pkgload",
"testthat (>= 3.0.0)",
"tibble",
"withr"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut, cre] (ORCID: <https://orcid.org/0000-0003-4757-117X>), Max Kuhn [aut], Davis Vaughan [aut], Posit Software, PBC [cph, fnd] (ROR: <https://ror.org/03wc8by49>)",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "CRAN"
},
"ggplot2": { "ggplot2": {
"Package": "ggplot2", "Package": "ggplot2",
"Version": "4.0.0", "Version": "4.0.0",
@@ -1159,6 +1414,40 @@
"Maintainer": "Yihui Xie <xie@yihui.name>", "Maintainer": "Yihui Xie <xie@yihui.name>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"hms": {
"Package": "hms",
"Version": "1.1.4",
"Source": "Repository",
"Title": "Pretty Time of Day",
"Date": "2025-10-11",
"Authors@R": "c( person(\"Kirill\", \"Müller\", , \"kirill@cynkra.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"R Consortium\", role = \"fnd\"), person(\"Posit Software, PBC\", role = \"fnd\", comment = c(ROR = \"03wc8by49\")) )",
"Description": "Implements an S3 class for storing and formatting time-of-day values, based on the 'difftime' class.",
"License": "MIT + file LICENSE",
"URL": "https://hms.tidyverse.org/, https://github.com/tidyverse/hms",
"BugReports": "https://github.com/tidyverse/hms/issues",
"Imports": [
"cli",
"lifecycle",
"methods",
"pkgconfig",
"rlang (>= 1.0.2)",
"vctrs (>= 0.3.8)"
],
"Suggests": [
"crayon",
"lubridate",
"pillar (>= 1.1.0)",
"testthat (>= 3.0.0)"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.3.9000",
"NeedsCompilation": "no",
"Author": "Kirill Müller [aut, cre] (ORCID: <https://orcid.org/0000-0002-1416-3412>), R Consortium [fnd], Posit Software, PBC [fnd] (ROR: <https://ror.org/03wc8by49>)",
"Maintainer": "Kirill Müller <kirill@cynkra.com>",
"Repository": "CRAN"
},
"htmltools": { "htmltools": {
"Package": "htmltools", "Package": "htmltools",
"Version": "0.5.8.1", "Version": "0.5.8.1",
@@ -1513,6 +1802,120 @@
"Maintainer": "Deepayan Sarkar <deepayan.sarkar@r-project.org>", "Maintainer": "Deepayan Sarkar <deepayan.sarkar@r-project.org>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"lazyeval": {
"Package": "lazyeval",
"Version": "0.2.2",
"Source": "Repository",
"Title": "Lazy (Non-Standard) Evaluation",
"Description": "An alternative approach to non-standard evaluation using formulas. Provides a full implementation of LISP style 'quasiquotation', making it easier to generate code with other code.",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", ,\"hadley@rstudio.com\", c(\"aut\", \"cre\")), person(\"RStudio\", role = \"cph\") )",
"License": "GPL-3",
"LazyData": "true",
"Depends": [
"R (>= 3.1.0)"
],
"Suggests": [
"knitr",
"rmarkdown (>= 0.2.65)",
"testthat",
"covr"
],
"VignetteBuilder": "knitr",
"RoxygenNote": "6.1.1",
"NeedsCompilation": "yes",
"Author": "Hadley Wickham [aut, cre], RStudio [cph]",
"Maintainer": "Hadley Wickham <hadley@rstudio.com>",
"Repository": "CRAN",
"Encoding": "UTF-8"
},
"leaflet": {
"Package": "leaflet",
"Version": "2.2.3",
"Source": "Repository",
"Type": "Package",
"Title": "Create Interactive Web Maps with the JavaScript 'Leaflet' Library",
"Authors@R": "c( person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Bhaskar\", \"Karambelkar\", role = \"aut\"), person(\"Yihui\", \"Xie\", role = \"aut\"), person(\"Garrick\", \"Aden-Buie\", , \"garrick@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-7111-0077\")), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Kenton\", \"Russell\", role = \"ctb\"), person(\"Kent\", \"Johnson\", role = \"ctb\"), person(\"Vladimir\", \"Agafonkin\", role = c(\"ctb\", \"cph\"), comment = \"Leaflet library\"), person(\"CloudMade\", role = \"cph\", comment = \"Leaflet library\"), person(\"Leaflet contributors\", role = \"ctb\", comment = \"Leaflet library\"), person(\"Brandon Copeland\", role = c(\"ctb\", \"cph\"), comment = \"leaflet-measure plugin\"), person(\"Joerg Dietrich\", role = c(\"ctb\", \"cph\"), comment = \"Leaflet.Terminator plugin\"), person(\"Benjamin Becquet\", role = c(\"ctb\", \"cph\"), comment = \"Leaflet.MagnifyingGlass plugin\"), person(\"Norkart AS\", role = c(\"ctb\", \"cph\"), comment = \"Leaflet.MiniMap plugin\"), person(\"L. Voogdt\", role = c(\"ctb\", \"cph\"), comment = \"Leaflet.awesome-markers plugin\"), person(\"Daniel Montague\", role = c(\"ctb\", \"cph\"), comment = \"Leaflet.EasyButton plugin\"), person(\"Kartena AB\", role = c(\"ctb\", \"cph\"), comment = \"Proj4Leaflet plugin\"), person(\"Robert Kajic\", role = c(\"ctb\", \"cph\"), comment = \"leaflet-locationfilter plugin\"), person(\"Mapbox\", role = c(\"ctb\", \"cph\"), comment = \"leaflet-omnivore plugin\"), person(\"Michael Bostock\", role = c(\"ctb\", \"cph\"), comment = \"topojson\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Create and customize interactive maps using the 'Leaflet' JavaScript library and the 'htmlwidgets' package. These maps can be used directly from the R console, from 'RStudio', in Shiny applications and R Markdown documents.",
"License": "MIT + file LICENSE",
"URL": "https://rstudio.github.io/leaflet/, https://github.com/rstudio/leaflet",
"BugReports": "https://github.com/rstudio/leaflet/issues",
"Depends": [
"R (>= 3.5)"
],
"Imports": [
"crosstalk",
"htmltools",
"htmlwidgets (>= 1.5.4)",
"jquerylib",
"leaflet.providers (>= 2.0.0)",
"magrittr",
"methods",
"png",
"raster (>= 3.6.3)",
"RColorBrewer",
"rlang",
"scales (>= 1.0.0)",
"sf (>= 0.9-6)",
"stats",
"viridisLite",
"xfun"
],
"Suggests": [
"knitr",
"maps",
"purrr",
"R6",
"RJSONIO",
"rmarkdown",
"s2",
"shiny (>= 1.0.0)",
"sp",
"terra",
"testthat (>= 3.0.0)"
],
"Config/Needs/website": "dplyr, ncdf4, rnaturalearth, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Joe Cheng [aut], Barret Schloerke [aut] (ORCID: <https://orcid.org/0000-0001-9986-114X>), Bhaskar Karambelkar [aut], Yihui Xie [aut], Garrick Aden-Buie [aut, cre] (ORCID: <https://orcid.org/0000-0002-7111-0077>), Hadley Wickham [ctb], Kenton Russell [ctb], Kent Johnson [ctb], Vladimir Agafonkin [ctb, cph] (Leaflet library), CloudMade [cph] (Leaflet library), Leaflet contributors [ctb] (Leaflet library), Brandon Copeland [ctb, cph] (leaflet-measure plugin), Joerg Dietrich [ctb, cph] (Leaflet.Terminator plugin), Benjamin Becquet [ctb, cph] (Leaflet.MagnifyingGlass plugin), Norkart AS [ctb, cph] (Leaflet.MiniMap plugin), L. Voogdt [ctb, cph] (Leaflet.awesome-markers plugin), Daniel Montague [ctb, cph] (Leaflet.EasyButton plugin), Kartena AB [ctb, cph] (Proj4Leaflet plugin), Robert Kajic [ctb, cph] (leaflet-locationfilter plugin), Mapbox [ctb, cph] (leaflet-omnivore plugin), Michael Bostock [ctb, cph] (topojson), Posit Software, PBC [cph, fnd]",
"Maintainer": "Garrick Aden-Buie <garrick@posit.co>",
"Repository": "CRAN"
},
"leaflet.providers": {
"Package": "leaflet.providers",
"Version": "2.0.0",
"Source": "Repository",
"Type": "Package",
"Title": "Leaflet Providers",
"Authors@R": "c( person(\"Leslie\", \"Huang\", , \"lesliehuang@nyu.edu\", role = \"aut\"), person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = c(\"ctb\", \"cre\"), comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Leaflet Providers contributors\", role = c(\"ctb\", \"cph\"), comment = \"Leaflet Providers plugin\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Contains third-party map tile provider information from 'Leaflet.js', <https://github.com/leaflet-extras/leaflet-providers>, to be used with the 'leaflet' R package. Additionally, 'leaflet.providers' enables users to retrieve up-to-date provider information between package updates.",
"License": "BSD_2_clause + file LICENSE",
"URL": "https://rstudio.github.io/leaflet.providers/, https://github.com/rstudio/leaflet.providers",
"BugReports": "https://github.com/rstudio/leaflet.providers/issues",
"Depends": [
"R (>= 2.10)"
],
"Imports": [
"htmltools"
],
"Suggests": [
"jsonlite",
"testthat (>= 3.0.0)",
"V8"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.2.3",
"Collate": "'providers_data.R' 'get_current_providers.R' 'leaflet.providers-package.R' 'zzz.R'",
"NeedsCompilation": "no",
"Author": "Leslie Huang [aut], Barret Schloerke [ctb, cre] (<https://orcid.org/0000-0001-9986-114X>), Leaflet Providers contributors [ctb, cph] (Leaflet Providers plugin), Posit Software, PBC [cph, fnd]",
"Maintainer": "Barret Schloerke <barret@posit.co>",
"Repository": "CRAN"
},
"lifecycle": { "lifecycle": {
"Package": "lifecycle", "Package": "lifecycle",
"Version": "1.0.4", "Version": "1.0.4",
@@ -1705,6 +2108,63 @@
"Maintainer": "Christopher Gandrud <christopher.gandrud@gmail.com>", "Maintainer": "Christopher Gandrud <christopher.gandrud@gmail.com>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"pillar": {
"Package": "pillar",
"Version": "1.11.1",
"Source": "Repository",
"Title": "Coloured Formatting for Columns",
"Authors@R": "c(person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Hadley\", family = \"Wickham\", role = \"aut\"), person(given = \"RStudio\", role = \"cph\"))",
"Description": "Provides 'pillar' and 'colonnade' generics designed for formatting columns of data using the full range of colours provided by modern terminals.",
"License": "MIT + file LICENSE",
"URL": "https://pillar.r-lib.org/, https://github.com/r-lib/pillar",
"BugReports": "https://github.com/r-lib/pillar/issues",
"Imports": [
"cli (>= 2.3.0)",
"glue",
"lifecycle",
"rlang (>= 1.0.2)",
"utf8 (>= 1.1.0)",
"utils",
"vctrs (>= 0.5.0)"
],
"Suggests": [
"bit64",
"DBI",
"debugme",
"DiagrammeR",
"dplyr",
"formattable",
"ggplot2",
"knitr",
"lubridate",
"nanotime",
"nycflights13",
"palmerpenguins",
"rmarkdown",
"scales",
"stringi",
"survival",
"testthat (>= 3.1.1)",
"tibble",
"units (>= 0.7.2)",
"vdiffr",
"withr"
],
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.3.9000",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "format_multi_fuzz, format_multi_fuzz_2, format_multi, ctl_colonnade, ctl_colonnade_1, ctl_colonnade_2",
"Config/autostyle/scope": "line_breaks",
"Config/autostyle/strict": "true",
"Config/gha/extra-packages": "units=?ignore-before-r=4.3.0",
"Config/Needs/website": "tidyverse/tidytemplate",
"NeedsCompilation": "no",
"Author": "Kirill Müller [aut, cre] (ORCID: <https://orcid.org/0000-0002-1416-3412>), Hadley Wickham [aut], RStudio [cph]",
"Maintainer": "Kirill Müller <kirill@cynkra.com>",
"Repository": "CRAN"
},
"pkgconfig": { "pkgconfig": {
"Package": "pkgconfig", "Package": "pkgconfig",
"Version": "2.0.3", "Version": "2.0.3",
@@ -1766,6 +2226,82 @@
"Maintainer": "Hadley Wickham <hadley@rstudio.com>", "Maintainer": "Hadley Wickham <hadley@rstudio.com>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"png": {
"Package": "png",
"Version": "0.1-8",
"Source": "Repository",
"Title": "Read and write PNG images",
"Author": "Simon Urbanek <Simon.Urbanek@r-project.org>",
"Maintainer": "Simon Urbanek <Simon.Urbanek@r-project.org>",
"Depends": [
"R (>= 2.9.0)"
],
"Description": "This package provides an easy and simple way to read, write and display bitmap images stored in the PNG format. It can read and write both files and in-memory raw vectors.",
"License": "GPL-2 | GPL-3",
"SystemRequirements": "libpng",
"URL": "http://www.rforge.net/png/",
"NeedsCompilation": "yes",
"Repository": "CRAN",
"Encoding": "UTF-8"
},
"prettyunits": {
"Package": "prettyunits",
"Version": "1.2.0",
"Source": "Repository",
"Title": "Pretty, Human Readable Formatting of Quantities",
"Authors@R": "c( person(\"Gabor\", \"Csardi\", email=\"csardi.gabor@gmail.com\", role=c(\"aut\", \"cre\")), person(\"Bill\", \"Denney\", email=\"wdenney@humanpredictions.com\", role=c(\"ctb\"), comment=c(ORCID=\"0000-0002-5759-428X\")), person(\"Christophe\", \"Regouby\", email=\"christophe.regouby@free.fr\", role=c(\"ctb\")) )",
"Description": "Pretty, human readable formatting of quantities. Time intervals: '1337000' -> '15d 11h 23m 20s'. Vague time intervals: '2674000' -> 'about a month ago'. Bytes: '1337' -> '1.34 kB'. Rounding: '99' with 3 significant digits -> '99.0' p-values: '0.00001' -> '<0.0001'. Colors: '#FF0000' -> 'red'. Quantities: '1239437' -> '1.24 M'.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/prettyunits",
"BugReports": "https://github.com/r-lib/prettyunits/issues",
"Depends": [
"R(>= 2.10)"
],
"Suggests": [
"codetools",
"covr",
"testthat"
],
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Author": "Gabor Csardi [aut, cre], Bill Denney [ctb] (<https://orcid.org/0000-0002-5759-428X>), Christophe Regouby [ctb]",
"Maintainer": "Gabor Csardi <csardi.gabor@gmail.com>",
"Repository": "CRAN"
},
"progress": {
"Package": "progress",
"Version": "1.2.3",
"Source": "Repository",
"Title": "Terminal Progress Bars",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Rich\", \"FitzJohn\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Configurable Progress bars, they may include percentage, elapsed time, and/or the estimated completion time. They work in terminals, in 'Emacs' 'ESS', 'RStudio', 'Windows' 'Rgui' and the 'macOS' 'R.app'. The package also provides a 'C++' 'API', that works with or without 'Rcpp'.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/progress#readme, http://r-lib.github.io/progress/",
"BugReports": "https://github.com/r-lib/progress/issues",
"Depends": [
"R (>= 3.6)"
],
"Imports": [
"crayon",
"hms",
"prettyunits",
"R6"
],
"Suggests": [
"Rcpp",
"testthat (>= 3.0.0)",
"withr"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Author": "Gábor Csárdi [aut, cre], Rich FitzJohn [aut], Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN"
},
"proxy": { "proxy": {
"Package": "proxy", "Package": "proxy",
"Version": "0.4-27", "Version": "0.4-27",
@@ -1864,6 +2400,62 @@
"Repository": "CRAN", "Repository": "CRAN",
"Encoding": "UTF-8" "Encoding": "UTF-8"
}, },
"readr": {
"Package": "readr",
"Version": "2.1.5",
"Source": "Repository",
"Title": "Read Rectangular Text Data",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Romain\", \"Francois\", role = \"ctb\"), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Shelby\", \"Bearrows\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"https://github.com/mandreyel/\", role = \"cph\", comment = \"mio library\"), person(\"Jukka\", \"Jylänki\", role = c(\"ctb\", \"cph\"), comment = \"grisu3 implementation\"), person(\"Mikkel\", \"Jørgensen\", role = c(\"ctb\", \"cph\"), comment = \"grisu3 implementation\") )",
"Description": "The goal of 'readr' is to provide a fast and friendly way to read rectangular data (like 'csv', 'tsv', and 'fwf'). It is designed to flexibly parse many types of data found in the wild, while still cleanly failing when data unexpectedly changes.",
"License": "MIT + file LICENSE",
"URL": "https://readr.tidyverse.org, https://github.com/tidyverse/readr",
"BugReports": "https://github.com/tidyverse/readr/issues",
"Depends": [
"R (>= 3.6)"
],
"Imports": [
"cli (>= 3.2.0)",
"clipr",
"crayon",
"hms (>= 0.4.1)",
"lifecycle (>= 0.2.0)",
"methods",
"R6",
"rlang",
"tibble",
"utils",
"vroom (>= 1.6.0)"
],
"Suggests": [
"covr",
"curl",
"datasets",
"knitr",
"rmarkdown",
"spelling",
"stringi",
"testthat (>= 3.2.0)",
"tzdb (>= 0.1.1)",
"waldo",
"withr",
"xml2"
],
"LinkingTo": [
"cpp11",
"tzdb (>= 0.1.1)"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "false",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Author": "Hadley Wickham [aut], Jim Hester [aut], Romain Francois [ctb], Jennifer Bryan [aut, cre] (<https://orcid.org/0000-0002-6983-2759>), Shelby Bearrows [ctb], Posit Software, PBC [cph, fnd], https://github.com/mandreyel/ [cph] (mio library), Jukka Jylänki [ctb, cph] (grisu3 implementation), Mikkel Jørgensen [ctb, cph] (grisu3 implementation)",
"Maintainer": "Jennifer Bryan <jenny@posit.co>",
"Repository": "CRAN"
},
"renv": { "renv": {
"Package": "renv", "Package": "renv",
"Version": "1.1.5", "Version": "1.1.5",
@@ -2489,6 +3081,113 @@
"Author": "Robert J. Hijmans [cre, aut] (ORCID: <https://orcid.org/0000-0001-5872-2872>), Márcia Barbosa [ctb] (ORCID: <https://orcid.org/0000-0001-8972-7713>), Roger Bivand [ctb] (ORCID: <https://orcid.org/0000-0003-2392-6140>), Andrew Brown [ctb] (ORCID: <https://orcid.org/0000-0002-4565-533X>), Michael Chirico [ctb] (ORCID: <https://orcid.org/0000-0003-0787-087X>), Emanuele Cordano [ctb] (ORCID: <https://orcid.org/0000-0002-3508-5898>), Krzysztof Dyba [ctb] (ORCID: <https://orcid.org/0000-0002-8614-3816>), Edzer Pebesma [ctb] (ORCID: <https://orcid.org/0000-0001-8049-7069>), Barry Rowlingson [ctb] (ORCID: <https://orcid.org/0000-0002-8586-6625>), Michael D. Sumner [ctb] (ORCID: <https://orcid.org/0000-0002-2471-7511>)", "Author": "Robert J. Hijmans [cre, aut] (ORCID: <https://orcid.org/0000-0001-5872-2872>), Márcia Barbosa [ctb] (ORCID: <https://orcid.org/0000-0001-8972-7713>), Roger Bivand [ctb] (ORCID: <https://orcid.org/0000-0003-2392-6140>), Andrew Brown [ctb] (ORCID: <https://orcid.org/0000-0002-4565-533X>), Michael Chirico [ctb] (ORCID: <https://orcid.org/0000-0003-0787-087X>), Emanuele Cordano [ctb] (ORCID: <https://orcid.org/0000-0002-3508-5898>), Krzysztof Dyba [ctb] (ORCID: <https://orcid.org/0000-0002-8614-3816>), Edzer Pebesma [ctb] (ORCID: <https://orcid.org/0000-0001-8049-7069>), Barry Rowlingson [ctb] (ORCID: <https://orcid.org/0000-0002-8586-6625>), Michael D. Sumner [ctb] (ORCID: <https://orcid.org/0000-0002-2471-7511>)",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"tibble": {
"Package": "tibble",
"Version": "3.3.0",
"Source": "Repository",
"Title": "Simple Data Frames",
"Authors@R": "c(person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Hadley\", family = \"Wickham\", role = \"aut\", email = \"hadley@rstudio.com\"), person(given = \"Romain\", family = \"Francois\", role = \"ctb\", email = \"romain@r-enthusiasts.com\"), person(given = \"Jennifer\", family = \"Bryan\", role = \"ctb\", email = \"jenny@rstudio.com\"), person(given = \"RStudio\", role = c(\"cph\", \"fnd\")))",
"Description": "Provides a 'tbl_df' class (the 'tibble') with stricter checking and better formatting than the traditional data frame.",
"License": "MIT + file LICENSE",
"URL": "https://tibble.tidyverse.org/, https://github.com/tidyverse/tibble",
"BugReports": "https://github.com/tidyverse/tibble/issues",
"Depends": [
"R (>= 3.4.0)"
],
"Imports": [
"cli",
"lifecycle (>= 1.0.0)",
"magrittr",
"methods",
"pillar (>= 1.8.1)",
"pkgconfig",
"rlang (>= 1.0.2)",
"utils",
"vctrs (>= 0.5.0)"
],
"Suggests": [
"bench",
"bit64",
"blob",
"brio",
"callr",
"DiagrammeR",
"dplyr",
"evaluate",
"formattable",
"ggplot2",
"here",
"hms",
"htmltools",
"knitr",
"lubridate",
"nycflights13",
"pkgload",
"purrr",
"rmarkdown",
"stringi",
"testthat (>= 3.0.2)",
"tidyr",
"withr"
],
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2.9000",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "vignette-formats, as_tibble, add, invariants",
"Config/autostyle/scope": "line_breaks",
"Config/autostyle/strict": "true",
"Config/autostyle/rmd": "false",
"Config/Needs/website": "tidyverse/tidytemplate",
"NeedsCompilation": "yes",
"Author": "Kirill Müller [aut, cre] (ORCID: <https://orcid.org/0000-0002-1416-3412>), Hadley Wickham [aut], Romain Francois [ctb], Jennifer Bryan [ctb], RStudio [cph, fnd]",
"Maintainer": "Kirill Müller <kirill@cynkra.com>",
"Repository": "CRAN"
},
"tidyselect": {
"Package": "tidyselect",
"Version": "1.2.1",
"Source": "Repository",
"Title": "Select from a Set of Strings",
"Authors@R": "c( person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "A backend for the selecting functions of the 'tidyverse'. It makes it easy to implement select-like functions in your own packages in a way that is consistent with other 'tidyverse' interfaces for selection.",
"License": "MIT + file LICENSE",
"URL": "https://tidyselect.r-lib.org, https://github.com/r-lib/tidyselect",
"BugReports": "https://github.com/r-lib/tidyselect/issues",
"Depends": [
"R (>= 3.4)"
],
"Imports": [
"cli (>= 3.3.0)",
"glue (>= 1.3.0)",
"lifecycle (>= 1.0.3)",
"rlang (>= 1.0.4)",
"vctrs (>= 0.5.2)",
"withr"
],
"Suggests": [
"covr",
"crayon",
"dplyr",
"knitr",
"magrittr",
"rmarkdown",
"stringr",
"testthat (>= 3.1.1)",
"tibble (>= 2.1.3)"
],
"VignetteBuilder": "knitr",
"ByteCompile": "true",
"Config/testthat/edition": "3",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.0.9000",
"NeedsCompilation": "yes",
"Author": "Lionel Henry [aut, cre], Hadley Wickham [aut], Posit Software, PBC [cph, fnd]",
"Maintainer": "Lionel Henry <lionel@posit.co>",
"Repository": "CRAN"
},
"tinytex": { "tinytex": {
"Package": "tinytex", "Package": "tinytex",
"Version": "0.57", "Version": "0.57",
@@ -2514,6 +3213,36 @@
"Maintainer": "Yihui Xie <xie@yihui.name>", "Maintainer": "Yihui Xie <xie@yihui.name>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"tzdb": {
"Package": "tzdb",
"Version": "0.5.0",
"Source": "Repository",
"Title": "Time Zone Database Information",
"Authors@R": "c( person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"Howard\", \"Hinnant\", role = \"cph\", comment = \"Author of the included date library\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Provides an up-to-date copy of the Internet Assigned Numbers Authority (IANA) Time Zone Database. It is updated periodically to reflect changes made by political bodies to time zone boundaries, UTC offsets, and daylight saving time rules. Additionally, this package provides a C++ interface for working with the 'date' library. 'date' provides comprehensive support for working with dates and date-times, which this package exposes to make it easier for other R packages to utilize. Headers are provided for calendar specific calculations, along with a limited interface for time zone manipulations.",
"License": "MIT + file LICENSE",
"URL": "https://tzdb.r-lib.org, https://github.com/r-lib/tzdb",
"BugReports": "https://github.com/r-lib/tzdb/issues",
"Depends": [
"R (>= 4.0.0)"
],
"Suggests": [
"covr",
"testthat (>= 3.0.0)"
],
"LinkingTo": [
"cpp11 (>= 0.5.2)"
],
"Biarch": "yes",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "yes",
"Author": "Davis Vaughan [aut, cre], Howard Hinnant [cph] (Author of the included date library), Posit Software, PBC [cph, fnd]",
"Maintainer": "Davis Vaughan <davis@posit.co>",
"Repository": "CRAN"
},
"units": { "units": {
"Package": "units", "Package": "units",
"Version": "1.0-0", "Version": "1.0-0",
@@ -2558,6 +3287,37 @@
"Maintainer": "Edzer Pebesma <edzer.pebesma@uni-muenster.de>", "Maintainer": "Edzer Pebesma <edzer.pebesma@uni-muenster.de>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"utf8": {
"Package": "utf8",
"Version": "1.2.6",
"Source": "Repository",
"Title": "Unicode Text Processing",
"Authors@R": "c(person(given = c(\"Patrick\", \"O.\"), family = \"Perry\", role = c(\"aut\", \"cph\")), person(given = \"Kirill\", family = \"M\\u00fcller\", role = \"cre\", email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Unicode, Inc.\", role = c(\"cph\", \"dtc\"), comment = \"Unicode Character Database\"))",
"Description": "Process and print 'UTF-8' encoded international text (Unicode). Input, validate, normalize, encode, format, and display.",
"License": "Apache License (== 2.0) | file LICENSE",
"URL": "https://krlmlr.github.io/utf8/, https://github.com/krlmlr/utf8",
"BugReports": "https://github.com/krlmlr/utf8/issues",
"Depends": [
"R (>= 2.10)"
],
"Suggests": [
"cli",
"covr",
"knitr",
"rlang",
"rmarkdown",
"testthat (>= 3.0.0)",
"withr"
],
"VignetteBuilder": "knitr, rmarkdown",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2.9000",
"NeedsCompilation": "yes",
"Author": "Patrick O. Perry [aut, cph], Kirill Müller [cre] (ORCID: <https://orcid.org/0000-0002-1416-3412>), Unicode, Inc. [cph, dtc] (Unicode Character Database)",
"Maintainer": "Kirill Müller <kirill@cynkra.com>",
"Repository": "CRAN"
},
"vctrs": { "vctrs": {
"Package": "vctrs", "Package": "vctrs",
"Version": "0.6.5", "Version": "0.6.5",
@@ -2633,6 +3393,76 @@
"Author": "Simon Garnier [aut, cre], Noam Ross [ctb, cph], Bob Rudis [ctb, cph], Marco Sciaini [ctb, cph], Antônio Pedro Camargo [ctb, cph], Cédric Scherer [ctb, cph]", "Author": "Simon Garnier [aut, cre], Noam Ross [ctb, cph], Bob Rudis [ctb, cph], Marco Sciaini [ctb, cph], Antônio Pedro Camargo [ctb, cph], Cédric Scherer [ctb, cph]",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"vroom": {
"Package": "vroom",
"Version": "1.6.6",
"Source": "Repository",
"Title": "Read and Write Rectangular Text Data Quickly",
"Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Shelby\", \"Bearrows\", role = \"ctb\"), person(\"https://github.com/mandreyel/\", role = \"cph\", comment = \"mio library\"), person(\"Jukka\", \"Jylänki\", role = \"cph\", comment = \"grisu3 implementation\"), person(\"Mikkel\", \"Jørgensen\", role = \"cph\", comment = \"grisu3 implementation\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "The goal of 'vroom' is to read and write data (like 'csv', 'tsv' and 'fwf') quickly. When reading it uses a quick initial indexing step, then reads the values lazily , so only the data you actually use needs to be read. The writer formats the data in parallel and writes to disk asynchronously from formatting.",
"License": "MIT + file LICENSE",
"URL": "https://vroom.r-lib.org, https://github.com/tidyverse/vroom",
"BugReports": "https://github.com/tidyverse/vroom/issues",
"Depends": [
"R (>= 3.6)"
],
"Imports": [
"bit64",
"cli (>= 3.2.0)",
"crayon",
"glue",
"hms",
"lifecycle (>= 1.0.3)",
"methods",
"rlang (>= 0.4.2)",
"stats",
"tibble (>= 2.0.0)",
"tidyselect",
"tzdb (>= 0.1.1)",
"vctrs (>= 0.2.0)",
"withr"
],
"Suggests": [
"archive",
"bench (>= 1.1.0)",
"covr",
"curl",
"dplyr",
"forcats",
"fs",
"ggplot2",
"knitr",
"patchwork",
"prettyunits",
"purrr",
"rmarkdown",
"rstudioapi",
"scales",
"spelling",
"testthat (>= 2.1.0)",
"tidyr",
"utils",
"waldo",
"xml2"
],
"LinkingTo": [
"cpp11 (>= 0.2.0)",
"progress (>= 1.2.3)",
"tzdb (>= 0.1.1)"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "nycflights13, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "false",
"Copyright": "file COPYRIGHTS",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.3.3",
"NeedsCompilation": "yes",
"Author": "Jim Hester [aut] (ORCID: <https://orcid.org/0000-0002-2739-7082>), Hadley Wickham [aut] (ORCID: <https://orcid.org/0000-0003-4757-117X>), Jennifer Bryan [aut, cre] (ORCID: <https://orcid.org/0000-0002-6983-2759>), Shelby Bearrows [ctb], https://github.com/mandreyel/ [cph] (mio library), Jukka Jylänki [cph] (grisu3 implementation), Mikkel Jørgensen [cph] (grisu3 implementation), Posit Software, PBC [cph, fnd]",
"Maintainer": "Jennifer Bryan <jenny@posit.co>",
"Repository": "CRAN"
},
"withr": { "withr": {
"Package": "withr", "Package": "withr",
"Version": "3.0.2", "Version": "3.0.2",