begin ex01
This commit is contained in:
59
.gitignore
vendored
59
.gitignore
vendored
@@ -1,4 +1,61 @@
|
||||
.Rproj.user
|
||||
# Created by https://www.toptal.com/developers/gitignore/api/R
|
||||
# Edit at https://www.toptal.com/developers/gitignore?templates=R
|
||||
|
||||
### R ###
|
||||
# History files
|
||||
.Rhistory
|
||||
.Rapp.history
|
||||
|
||||
# Session Data files
|
||||
.RData
|
||||
.RDataTmp
|
||||
|
||||
# User-specific files
|
||||
.Ruserdata
|
||||
|
||||
# Example code in package build process
|
||||
*-Ex.R
|
||||
|
||||
# Output files from R CMD build
|
||||
/*.tar.gz
|
||||
|
||||
# Output files from R CMD check
|
||||
/*.Rcheck/
|
||||
|
||||
# RStudio files
|
||||
.Rproj.user/
|
||||
|
||||
# produced vignettes
|
||||
vignettes/*.html
|
||||
vignettes/*.pdf
|
||||
|
||||
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
|
||||
.httr-oauth
|
||||
|
||||
# knitr and R markdown default cache directories
|
||||
*_cache/
|
||||
/cache/
|
||||
|
||||
# Temporary files created by R markdown
|
||||
*.utf8.md
|
||||
*.knit.md
|
||||
|
||||
# R Environment Variables
|
||||
.Renviron
|
||||
|
||||
# pkgdown site
|
||||
docs/
|
||||
|
||||
# translation temp files
|
||||
po/*~
|
||||
|
||||
# RStudio Connect folder
|
||||
rsconnect/
|
||||
|
||||
### R.Bookdown Stack ###
|
||||
# R package: bookdown caching files
|
||||
/*_files/
|
||||
|
||||
# End of https://www.toptal.com/developers/gitignore/api/R
|
||||
|
||||
*.pdf
|
||||
|
||||
32
ex01.Rmd
32
ex01.Rmd
@@ -12,25 +12,23 @@ library(DataExplorer)
|
||||
library(raster)
|
||||
library(rworldmap)
|
||||
library(sp)
|
||||
# TODO library(sf)
|
||||
library(sf) # https://aur.archlinux.org/packages/udunits
|
||||
```
|
||||
|
||||
## R Markdown
|
||||
## Croatian Destinations
|
||||
Write an R script that creates a map of Croatia. On
|
||||
the map, mark 3 places you would like to visit.
|
||||
Use the rworldmap library. Use Geonames to obtain
|
||||
coordinates: https://www.geonames.org
|
||||
|
||||
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
|
||||
|
||||
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
|
||||
|
||||
```{r cars}
|
||||
summary(cars)
|
||||
```{r croatia}
|
||||
library(rworldmap)
|
||||
world <- getMap(resolution = "low")
|
||||
plot(world, xlim = c(20, 30), ylim = c(35, 71)
|
||||
, asp = 1
|
||||
, col = "white"
|
||||
,bg = "lightblue", # background (sea) color
|
||||
)
|
||||
#points(airports$lon, airports$lat, col = "red", cex = .6)
|
||||
```
|
||||
|
||||
## Including Plots
|
||||
|
||||
You can also embed plots, for example:
|
||||
|
||||
```{r pressure, echo=FALSE}
|
||||
plot(pressure)
|
||||
```
|
||||
|
||||
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
|
||||
|
||||
423
renv.lock
423
renv.lock
@@ -9,6 +9,55 @@
|
||||
]
|
||||
},
|
||||
"Packages": {
|
||||
"DBI": {
|
||||
"Package": "DBI",
|
||||
"Version": "1.2.3",
|
||||
"Source": "Repository",
|
||||
"Title": "R Database Interface",
|
||||
"Date": "2024-06-02",
|
||||
"Authors@R": "c( person(\"R Special Interest Group on Databases (R-SIG-DB)\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Kirill\", \"Müller\", , \"kirill@cynkra.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"R Consortium\", role = \"fnd\") )",
|
||||
"Description": "A database interface definition for communication between R and relational database management systems. All classes in this package are virtual and need to be extended by the various R/DBMS implementations.",
|
||||
"License": "LGPL (>= 2.1)",
|
||||
"URL": "https://dbi.r-dbi.org, https://github.com/r-dbi/DBI",
|
||||
"BugReports": "https://github.com/r-dbi/DBI/issues",
|
||||
"Depends": [
|
||||
"methods",
|
||||
"R (>= 3.0.0)"
|
||||
],
|
||||
"Suggests": [
|
||||
"arrow",
|
||||
"blob",
|
||||
"covr",
|
||||
"DBItest",
|
||||
"dbplyr",
|
||||
"downlit",
|
||||
"dplyr",
|
||||
"glue",
|
||||
"hms",
|
||||
"knitr",
|
||||
"magrittr",
|
||||
"nanoarrow (>= 0.3.0.1)",
|
||||
"RMariaDB",
|
||||
"rmarkdown",
|
||||
"rprojroot",
|
||||
"RSQLite (>= 1.1-2)",
|
||||
"testthat (>= 3.0.0)",
|
||||
"vctrs",
|
||||
"xml2"
|
||||
],
|
||||
"VignetteBuilder": "knitr",
|
||||
"Config/autostyle/scope": "line_breaks",
|
||||
"Config/autostyle/strict": "false",
|
||||
"Config/Needs/check": "r-dbi/DBItest",
|
||||
"Encoding": "UTF-8",
|
||||
"RoxygenNote": "7.3.1",
|
||||
"Config/Needs/website": "r-dbi/DBItest, r-dbi/dbitemplate, adbi, AzureKusto, bigrquery, DatabaseConnector, dittodb, duckdb, implyr, lazysf, odbc, pool, RAthena, IMSMWU/RClickhouse, RH2, RJDBC, RMariaDB, RMySQL, RPostgres, RPostgreSQL, RPresto, RSQLite, sergeant, sparklyr, withr",
|
||||
"Config/testthat/edition": "3",
|
||||
"NeedsCompilation": "no",
|
||||
"Author": "R Special Interest Group on Databases (R-SIG-DB) [aut], Hadley Wickham [aut], Kirill Müller [aut, cre] (<https://orcid.org/0000-0002-1416-3412>), R Consortium [fnd]",
|
||||
"Maintainer": "Kirill Müller <kirill@cynkra.com>",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"DataExplorer": {
|
||||
"Package": "DataExplorer",
|
||||
"Version": "0.8.4",
|
||||
@@ -52,6 +101,67 @@
|
||||
"Maintainer": "Boxuan Cui <boxuancui@gmail.com>",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"KernSmooth": {
|
||||
"Package": "KernSmooth",
|
||||
"Version": "2.23-26",
|
||||
"Source": "Repository",
|
||||
"Priority": "recommended",
|
||||
"Date": "2024-12-10",
|
||||
"Title": "Functions for Kernel Smoothing Supporting Wand & Jones (1995)",
|
||||
"Authors@R": "c(person(\"Matt\", \"Wand\", role = \"aut\", email = \"Matt.Wand@uts.edu.au\"), person(\"Cleve\", \"Moler\", role = \"ctb\", comment = \"LINPACK routines in src/d*\"), person(\"Brian\", \"Ripley\", role = c(\"trl\", \"cre\", \"ctb\"), email = \"Brian.Ripley@R-project.org\", comment = \"R port and updates\"))",
|
||||
"Note": "Maintainers are not available to give advice on using a package they did not author.",
|
||||
"Depends": [
|
||||
"R (>= 2.5.0)",
|
||||
"stats"
|
||||
],
|
||||
"Suggests": [
|
||||
"MASS",
|
||||
"carData"
|
||||
],
|
||||
"Description": "Functions for kernel smoothing (and density estimation) corresponding to the book: Wand, M.P. and Jones, M.C. (1995) \"Kernel Smoothing\".",
|
||||
"License": "Unlimited",
|
||||
"ByteCompile": "yes",
|
||||
"NeedsCompilation": "yes",
|
||||
"Author": "Matt Wand [aut], Cleve Moler [ctb] (LINPACK routines in src/d*), Brian Ripley [trl, cre, ctb] (R port and updates)",
|
||||
"Maintainer": "Brian Ripley <Brian.Ripley@R-project.org>",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"MASS": {
|
||||
"Package": "MASS",
|
||||
"Version": "7.3-65",
|
||||
"Source": "Repository",
|
||||
"Priority": "recommended",
|
||||
"Date": "2025-02-19",
|
||||
"Revision": "$Rev: 3681 $",
|
||||
"Depends": [
|
||||
"R (>= 4.4.0)",
|
||||
"grDevices",
|
||||
"graphics",
|
||||
"stats",
|
||||
"utils"
|
||||
],
|
||||
"Imports": [
|
||||
"methods"
|
||||
],
|
||||
"Suggests": [
|
||||
"lattice",
|
||||
"nlme",
|
||||
"nnet",
|
||||
"survival"
|
||||
],
|
||||
"Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"Brian.Ripley@R-project.org\"), person(\"Bill\", \"Venables\", role = c(\"aut\", \"cph\")), person(c(\"Douglas\", \"M.\"), \"Bates\", role = \"ctb\"), person(\"Kurt\", \"Hornik\", role = \"trl\", comment = \"partial port ca 1998\"), person(\"Albrecht\", \"Gebhardt\", role = \"trl\", comment = \"partial port ca 1998\"), person(\"David\", \"Firth\", role = \"ctb\", comment = \"support functions for polr\"))",
|
||||
"Description": "Functions and datasets to support Venables and Ripley, \"Modern Applied Statistics with S\" (4th edition, 2002).",
|
||||
"Title": "Support Functions and Datasets for Venables and Ripley's MASS",
|
||||
"LazyData": "yes",
|
||||
"ByteCompile": "yes",
|
||||
"License": "GPL-2 | GPL-3",
|
||||
"URL": "http://www.stats.ox.ac.uk/pub/MASS4/",
|
||||
"Contact": "<MASS@stats.ox.ac.uk>",
|
||||
"NeedsCompilation": "yes",
|
||||
"Author": "Brian Ripley [aut, cre, cph], Bill Venables [aut, cph], Douglas M. Bates [ctb], Kurt Hornik [trl] (partial port ca 1998), Albrecht Gebhardt [trl] (partial port ca 1998), David Firth [ctb] (support functions for polr)",
|
||||
"Maintainer": "Brian Ripley <Brian.Ripley@R-project.org>",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"Matrix": {
|
||||
"Package": "Matrix",
|
||||
"Version": "1.7-3",
|
||||
@@ -313,6 +423,68 @@
|
||||
"Maintainer": "Winston Chang <winston@posit.co>",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"class": {
|
||||
"Package": "class",
|
||||
"Version": "7.3-23",
|
||||
"Source": "Repository",
|
||||
"Priority": "recommended",
|
||||
"Date": "2025-01-01",
|
||||
"Depends": [
|
||||
"R (>= 3.0.0)",
|
||||
"stats",
|
||||
"utils"
|
||||
],
|
||||
"Imports": [
|
||||
"MASS"
|
||||
],
|
||||
"Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"Brian.Ripley@R-project.org\"), person(\"William\", \"Venables\", role = \"cph\"))",
|
||||
"Description": "Various functions for classification, including k-nearest neighbour, Learning Vector Quantization and Self-Organizing Maps.",
|
||||
"Title": "Functions for Classification",
|
||||
"ByteCompile": "yes",
|
||||
"License": "GPL-2 | GPL-3",
|
||||
"URL": "http://www.stats.ox.ac.uk/pub/MASS4/",
|
||||
"NeedsCompilation": "yes",
|
||||
"Author": "Brian Ripley [aut, cre, cph], William Venables [cph]",
|
||||
"Maintainer": "Brian Ripley <Brian.Ripley@R-project.org>",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"classInt": {
|
||||
"Package": "classInt",
|
||||
"Version": "0.4-11",
|
||||
"Source": "Repository",
|
||||
"Date": "2025-01-06",
|
||||
"Title": "Choose Univariate Class Intervals",
|
||||
"Authors@R": "c( person(\"Roger\", \"Bivand\", role=c(\"aut\", \"cre\"), email=\"Roger.Bivand@nhh.no\", comment=c(ORCID=\"0000-0003-2392-6140\")), person(\"Bill\", \"Denney\", role=\"ctb\", comment=c(ORCID=\"0000-0002-5759-428X\")), person(\"Richard\", \"Dunlap\", role=\"ctb\"), person(\"Diego\", \"Hernangómez\", role=\"ctb\", comment=c(ORCID=\"0000-0001-8457-4658\")), person(\"Hisaji\", \"Ono\", role=\"ctb\"), person(\"Josiah\", \"Parry\", role = \"ctb\", comment = c(ORCID = \"0000-0001-9910-865X\")), person(\"Matthieu\", \"Stigler\", role=\"ctb\", comment =c(ORCID=\"0000-0002-6802-4290\")))",
|
||||
"Depends": [
|
||||
"R (>= 2.2)"
|
||||
],
|
||||
"Imports": [
|
||||
"grDevices",
|
||||
"stats",
|
||||
"graphics",
|
||||
"e1071",
|
||||
"class",
|
||||
"KernSmooth"
|
||||
],
|
||||
"Suggests": [
|
||||
"spData (>= 0.2.6.2)",
|
||||
"units",
|
||||
"knitr",
|
||||
"rmarkdown",
|
||||
"tinytest"
|
||||
],
|
||||
"NeedsCompilation": "yes",
|
||||
"Description": "Selected commonly used methods for choosing univariate class intervals for mapping or other graphics purposes.",
|
||||
"License": "GPL (>= 2)",
|
||||
"URL": "https://r-spatial.github.io/classInt/, https://github.com/r-spatial/classInt/",
|
||||
"BugReports": "https://github.com/r-spatial/classInt/issues/",
|
||||
"RoxygenNote": "6.1.1",
|
||||
"Encoding": "UTF-8",
|
||||
"VignetteBuilder": "knitr",
|
||||
"Author": "Roger Bivand [aut, cre] (<https://orcid.org/0000-0003-2392-6140>), Bill Denney [ctb] (<https://orcid.org/0000-0002-5759-428X>), Richard Dunlap [ctb], Diego Hernangómez [ctb] (<https://orcid.org/0000-0001-8457-4658>), Hisaji Ono [ctb], Josiah Parry [ctb] (<https://orcid.org/0000-0001-9910-865X>), Matthieu Stigler [ctb] (<https://orcid.org/0000-0002-6802-4290>)",
|
||||
"Maintainer": "Roger Bivand <Roger.Bivand@nhh.no>",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"cli": {
|
||||
"Package": "cli",
|
||||
"Version": "3.6.5",
|
||||
@@ -552,6 +724,42 @@
|
||||
"Repository": "CRAN",
|
||||
"Encoding": "UTF-8"
|
||||
},
|
||||
"e1071": {
|
||||
"Package": "e1071",
|
||||
"Version": "1.7-16",
|
||||
"Source": "Repository",
|
||||
"Title": "Misc Functions of the Department of Statistics, Probability Theory Group (Formerly: E1071), TU Wien",
|
||||
"Imports": [
|
||||
"graphics",
|
||||
"grDevices",
|
||||
"class",
|
||||
"stats",
|
||||
"methods",
|
||||
"utils",
|
||||
"proxy"
|
||||
],
|
||||
"Suggests": [
|
||||
"cluster",
|
||||
"mlbench",
|
||||
"nnet",
|
||||
"randomForest",
|
||||
"rpart",
|
||||
"SparseM",
|
||||
"xtable",
|
||||
"Matrix",
|
||||
"MASS",
|
||||
"slam"
|
||||
],
|
||||
"Authors@R": "c(person(given = \"David\", family = \"Meyer\", role = c(\"aut\", \"cre\"), email = \"David.Meyer@R-project.org\", comment = c(ORCID = \"0000-0002-5196-3048\")), person(given = \"Evgenia\", family = \"Dimitriadou\", role = c(\"aut\",\"cph\")), person(given = \"Kurt\", family = \"Hornik\", role = \"aut\", email = \"Kurt.Hornik@R-project.org\", comment = c(ORCID = \"0000-0003-4198-9911\")), person(given = \"Andreas\", family = \"Weingessel\", role = \"aut\"), person(given = \"Friedrich\", family = \"Leisch\", role = \"aut\"), person(given = \"Chih-Chung\", family = \"Chang\", role = c(\"ctb\",\"cph\"), comment = \"libsvm C++-code\"), person(given = \"Chih-Chen\", family = \"Lin\", role = c(\"ctb\",\"cph\"), comment = \"libsvm C++-code\"))",
|
||||
"Description": "Functions for latent class analysis, short time Fourier transform, fuzzy clustering, support vector machines, shortest path computation, bagged clustering, naive Bayes classifier, generalized k-nearest neighbour ...",
|
||||
"License": "GPL-2 | GPL-3",
|
||||
"LazyLoad": "yes",
|
||||
"NeedsCompilation": "yes",
|
||||
"Author": "David Meyer [aut, cre] (<https://orcid.org/0000-0002-5196-3048>), Evgenia Dimitriadou [aut, cph], Kurt Hornik [aut] (<https://orcid.org/0000-0003-4198-9911>), Andreas Weingessel [aut], Friedrich Leisch [aut], Chih-Chung Chang [ctb, cph] (libsvm C++-code), Chih-Chen Lin [ctb, cph] (libsvm C++-code)",
|
||||
"Maintainer": "David Meyer <David.Meyer@R-project.org>",
|
||||
"Repository": "CRAN",
|
||||
"Encoding": "UTF-8"
|
||||
},
|
||||
"evaluate": {
|
||||
"Package": "evaluate",
|
||||
"Version": "1.0.5",
|
||||
@@ -1558,6 +1766,32 @@
|
||||
"Maintainer": "Hadley Wickham <hadley@rstudio.com>",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"proxy": {
|
||||
"Package": "proxy",
|
||||
"Version": "0.4-27",
|
||||
"Source": "Repository",
|
||||
"Type": "Package",
|
||||
"Title": "Distance and Similarity Measures",
|
||||
"Authors@R": "c(person(given = \"David\", family = \"Meyer\", role = c(\"aut\", \"cre\"), email = \"David.Meyer@R-project.org\"), person(given = \"Christian\", family = \"Buchta\", role = \"aut\"))",
|
||||
"Description": "Provides an extensible framework for the efficient calculation of auto- and cross-proximities, along with implementations of the most popular ones.",
|
||||
"Depends": [
|
||||
"R (>= 3.4.0)"
|
||||
],
|
||||
"Imports": [
|
||||
"stats",
|
||||
"utils"
|
||||
],
|
||||
"Suggests": [
|
||||
"cba"
|
||||
],
|
||||
"Collate": "registry.R database.R dist.R similarities.R dissimilarities.R util.R seal.R",
|
||||
"License": "GPL-2",
|
||||
"NeedsCompilation": "yes",
|
||||
"Author": "David Meyer [aut, cre], Christian Buchta [aut]",
|
||||
"Maintainer": "David Meyer <David.Meyer@R-project.org>",
|
||||
"Repository": "CRAN",
|
||||
"Encoding": "UTF-8"
|
||||
},
|
||||
"rappdirs": {
|
||||
"Package": "rappdirs",
|
||||
"Version": "0.3.3",
|
||||
@@ -1860,6 +2094,42 @@
|
||||
"Maintainer": "Andy South <southandy@gmail.com>",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"s2": {
|
||||
"Package": "s2",
|
||||
"Version": "1.1.9",
|
||||
"Source": "Repository",
|
||||
"Title": "Spherical Geometry Operators Using the S2 Geometry Library",
|
||||
"Authors@R": "c( person(given = \"Dewey\", family = \"Dunnington\", role = c(\"aut\"), email = \"dewey@fishandwhistle.net\", comment = c(ORCID = \"0000-0002-9415-4582\")), person(given = \"Edzer\", family = \"Pebesma\", role = c(\"aut\", \"cre\"), email = \"edzer.pebesma@uni-muenster.de\", comment = c(ORCID = \"0000-0001-8049-7069\")), person(\"Ege\", \"Rubak\", email=\"rubak@math.aau.dk\", role = c(\"aut\")), person(\"Jeroen\", \"Ooms\", , \"jeroen.ooms@stat.ucla.edu\", role = \"ctb\", comment = \"configure script\"), person(family = \"Google, Inc.\", role = \"cph\", comment = \"Original s2geometry.io source code\") )",
|
||||
"Description": "Provides R bindings for Google's s2 library for geometric calculations on the sphere. High-performance constructors and exporters provide high compatibility with existing spatial packages, transformers construct new geometries from existing geometries, predicates provide a means to select geometries based on spatial relationships, and accessors extract information about geometries.",
|
||||
"License": "Apache License (== 2.0)",
|
||||
"Encoding": "UTF-8",
|
||||
"LazyData": "true",
|
||||
"RoxygenNote": "7.3.2",
|
||||
"SystemRequirements": "cmake, OpenSSL >= 1.0.1, Abseil >= 20230802.0",
|
||||
"LinkingTo": [
|
||||
"Rcpp",
|
||||
"wk"
|
||||
],
|
||||
"Imports": [
|
||||
"Rcpp",
|
||||
"wk (>= 0.6.0)"
|
||||
],
|
||||
"Suggests": [
|
||||
"bit64",
|
||||
"testthat (>= 3.0.0)",
|
||||
"vctrs"
|
||||
],
|
||||
"URL": "https://r-spatial.github.io/s2/, https://github.com/r-spatial/s2, http://s2geometry.io/",
|
||||
"BugReports": "https://github.com/r-spatial/s2/issues",
|
||||
"Depends": [
|
||||
"R (>= 3.0.0)"
|
||||
],
|
||||
"Config/testthat/edition": "3",
|
||||
"NeedsCompilation": "yes",
|
||||
"Author": "Dewey Dunnington [aut] (ORCID: <https://orcid.org/0000-0002-9415-4582>), Edzer Pebesma [aut, cre] (ORCID: <https://orcid.org/0000-0001-8049-7069>), Ege Rubak [aut], Jeroen Ooms [ctb] (configure script), Google, Inc. [cph] (Original s2geometry.io source code)",
|
||||
"Maintainer": "Edzer Pebesma <edzer.pebesma@uni-muenster.de>",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"sass": {
|
||||
"Package": "sass",
|
||||
"Version": "0.4.10",
|
||||
@@ -1940,6 +2210,86 @@
|
||||
"Maintainer": "Thomas Lin Pedersen <thomas.pedersen@posit.co>",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"sf": {
|
||||
"Package": "sf",
|
||||
"Version": "1.0-21",
|
||||
"Source": "Repository",
|
||||
"Title": "Simple Features for R",
|
||||
"Authors@R": "c(person(given = \"Edzer\", family = \"Pebesma\", role = c(\"aut\", \"cre\"), email = \"edzer.pebesma@uni-muenster.de\", comment = c(ORCID = \"0000-0001-8049-7069\")), person(given = \"Roger\", family = \"Bivand\", role = \"ctb\", comment = c(ORCID = \"0000-0003-2392-6140\")), person(given = \"Etienne\", family = \"Racine\", role = \"ctb\"), person(given = \"Michael\", family = \"Sumner\", role = \"ctb\"), person(given = \"Ian\", family = \"Cook\", role = \"ctb\"), person(given = \"Tim\", family = \"Keitt\", role = \"ctb\"), person(given = \"Robin\", family = \"Lovelace\", role = \"ctb\"), person(given = \"Hadley\", family = \"Wickham\", role = \"ctb\"), person(given = \"Jeroen\", family = \"Ooms\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(given = \"Kirill\", family = \"M\\u00fcller\", role = \"ctb\"), person(given = \"Thomas Lin\", family = \"Pedersen\", role = \"ctb\"), person(given = \"Dan\", family = \"Baston\", role = \"ctb\"), person(given = \"Dewey\", family = \"Dunnington\", role = \"ctb\", comment = c(ORCID = \"0000-0002-9415-4582\")) )",
|
||||
"Description": "Support for simple feature access, a standardized way to encode and analyze spatial vector data. Binds to 'GDAL' <doi:10.5281/zenodo.5884351> for reading and writing data, to 'GEOS' <doi:10.5281/zenodo.11396894> for geometrical operations, and to 'PROJ' <doi:10.5281/zenodo.5884394> for projection conversions and datum transformations. Uses by default the 's2' package for geometry operations on geodetic (long/lat degree) coordinates.",
|
||||
"License": "GPL-2 | MIT + file LICENSE",
|
||||
"URL": "https://r-spatial.github.io/sf/, https://github.com/r-spatial/sf",
|
||||
"BugReports": "https://github.com/r-spatial/sf/issues",
|
||||
"Depends": [
|
||||
"methods",
|
||||
"R (>= 3.3.0)"
|
||||
],
|
||||
"Imports": [
|
||||
"classInt (>= 0.4-1)",
|
||||
"DBI (>= 0.8)",
|
||||
"graphics",
|
||||
"grDevices",
|
||||
"grid",
|
||||
"magrittr",
|
||||
"s2 (>= 1.1.0)",
|
||||
"stats",
|
||||
"tools",
|
||||
"units (>= 0.7-0)",
|
||||
"utils"
|
||||
],
|
||||
"Suggests": [
|
||||
"blob",
|
||||
"nanoarrow",
|
||||
"covr",
|
||||
"dplyr (>= 1.0.0)",
|
||||
"ggplot2",
|
||||
"knitr",
|
||||
"lwgeom (>= 0.2-14)",
|
||||
"maps",
|
||||
"mapview",
|
||||
"Matrix",
|
||||
"microbenchmark",
|
||||
"odbc",
|
||||
"pbapply",
|
||||
"pillar",
|
||||
"pool",
|
||||
"raster",
|
||||
"rlang",
|
||||
"rmarkdown",
|
||||
"RPostgres (>= 1.1.0)",
|
||||
"RPostgreSQL",
|
||||
"RSQLite",
|
||||
"sp (>= 1.2-4)",
|
||||
"spatstat (>= 2.0-1)",
|
||||
"spatstat.geom",
|
||||
"spatstat.random",
|
||||
"spatstat.linnet",
|
||||
"spatstat.utils",
|
||||
"stars (>= 0.6-0)",
|
||||
"terra",
|
||||
"testthat (>= 3.0.0)",
|
||||
"tibble (>= 1.4.1)",
|
||||
"tidyr (>= 1.2.0)",
|
||||
"tidyselect (>= 1.0.0)",
|
||||
"tmap (>= 2.0)",
|
||||
"vctrs",
|
||||
"wk (>= 0.9.0)"
|
||||
],
|
||||
"LinkingTo": [
|
||||
"Rcpp"
|
||||
],
|
||||
"VignetteBuilder": "knitr",
|
||||
"Encoding": "UTF-8",
|
||||
"RoxygenNote": "7.3.2",
|
||||
"Config/testthat/edition": "2",
|
||||
"Config/needs/coverage": "XML",
|
||||
"SystemRequirements": "GDAL (>= 2.0.1), GEOS (>= 3.4.0), PROJ (>= 4.8.0), sqlite3",
|
||||
"Collate": "'RcppExports.R' 'init.R' 'import-standalone-s3-register.R' 'crs.R' 'bbox.R' 'read.R' 'db.R' 'sfc.R' 'sfg.R' 'sf.R' 'bind.R' 'wkb.R' 'wkt.R' 'plot.R' 'geom-measures.R' 'geom-predicates.R' 'geom-transformers.R' 'transform.R' 'proj.R' 'sp.R' 'grid.R' 'arith.R' 'tidyverse.R' 'tidyverse-vctrs.R' 'cast_sfg.R' 'cast_sfc.R' 'graticule.R' 'datasets.R' 'aggregate.R' 'agr.R' 'maps.R' 'join.R' 'sample.R' 'valid.R' 'collection_extract.R' 'jitter.R' 'sgbp.R' 'spatstat.R' 'stars.R' 'crop.R' 'gdal_utils.R' 'nearest.R' 'normalize.R' 'sf-package.R' 'defunct.R' 'z_range.R' 'm_range.R' 'shift_longitude.R' 'make_grid.R' 's2.R' 'terra.R' 'geos-overlayng.R' 'break_antimeridian.R'",
|
||||
"NeedsCompilation": "yes",
|
||||
"Author": "Edzer Pebesma [aut, cre] (ORCID: <https://orcid.org/0000-0001-8049-7069>), Roger Bivand [ctb] (ORCID: <https://orcid.org/0000-0003-2392-6140>), Etienne Racine [ctb], Michael Sumner [ctb], Ian Cook [ctb], Tim Keitt [ctb], Robin Lovelace [ctb], Hadley Wickham [ctb], Jeroen Ooms [ctb] (ORCID: <https://orcid.org/0000-0002-4035-0289>), Kirill Müller [ctb], Thomas Lin Pedersen [ctb], Dan Baston [ctb], Dewey Dunnington [ctb] (ORCID: <https://orcid.org/0000-0002-9415-4582>)",
|
||||
"Maintainer": "Edzer Pebesma <edzer.pebesma@uni-muenster.de>",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"sp": {
|
||||
"Package": "sp",
|
||||
"Version": "2.2-0",
|
||||
@@ -2164,6 +2514,50 @@
|
||||
"Maintainer": "Yihui Xie <xie@yihui.name>",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"units": {
|
||||
"Package": "units",
|
||||
"Version": "1.0-0",
|
||||
"Source": "Repository",
|
||||
"Title": "Measurement Units for R Vectors",
|
||||
"Authors@R": "c(person(\"Edzer\", \"Pebesma\", role = c(\"aut\", \"cre\"), email = \"edzer.pebesma@uni-muenster.de\", comment = c(ORCID = \"0000-0001-8049-7069\")), person(\"Thomas\", \"Mailund\", role = \"aut\", email = \"mailund@birc.au.dk\"), person(\"Tomasz\", \"Kalinowski\", role = \"aut\"), person(\"James\", \"Hiebert\", role = \"ctb\"), person(\"Iñaki\", \"Ucar\", role = \"aut\", email = \"iucar@fedoraproject.org\", comment = c(ORCID = \"0000-0001-6403-5550\")), person(\"Thomas Lin\", \"Pedersen\", role = \"ctb\") )",
|
||||
"Depends": [
|
||||
"R (>= 3.5.0)"
|
||||
],
|
||||
"Imports": [
|
||||
"Rcpp"
|
||||
],
|
||||
"LinkingTo": [
|
||||
"Rcpp (>= 0.12.10)"
|
||||
],
|
||||
"Suggests": [
|
||||
"NISTunits",
|
||||
"measurements",
|
||||
"xml2",
|
||||
"magrittr",
|
||||
"pillar (>= 1.3.0)",
|
||||
"dplyr (>= 1.0.0)",
|
||||
"vctrs (>= 0.3.1)",
|
||||
"ggplot2 (> 3.2.1)",
|
||||
"testthat (>= 3.0.0)",
|
||||
"vdiffr",
|
||||
"knitr",
|
||||
"rvest",
|
||||
"rmarkdown"
|
||||
],
|
||||
"VignetteBuilder": "knitr",
|
||||
"Description": "Support for measurement units in R vectors, matrices and arrays: automatic propagation, conversion, derivation and simplification of units; raising errors in case of unit incompatibility. Compatible with the POSIXct, Date and difftime classes. Uses the UNIDATA udunits library and unit database for unit compatibility checking and conversion. Documentation about 'units' is provided in the paper by Pebesma, Mailund & Hiebert (2016, <doi:10.32614/RJ-2016-061>), included in this package as a vignette; see 'citation(\"units\")' for details.",
|
||||
"SystemRequirements": "udunits-2",
|
||||
"License": "GPL-2",
|
||||
"URL": "https://r-quantities.github.io/units/, https://github.com/r-quantities/units",
|
||||
"BugReports": "https://github.com/r-quantities/units/issues",
|
||||
"RoxygenNote": "7.3.3",
|
||||
"Encoding": "UTF-8",
|
||||
"Config/testthat/edition": "3",
|
||||
"NeedsCompilation": "yes",
|
||||
"Author": "Edzer Pebesma [aut, cre] (ORCID: <https://orcid.org/0000-0001-8049-7069>), Thomas Mailund [aut], Tomasz Kalinowski [aut], James Hiebert [ctb], Iñaki Ucar [aut] (ORCID: <https://orcid.org/0000-0001-6403-5550>), Thomas Lin Pedersen [ctb]",
|
||||
"Maintainer": "Edzer Pebesma <edzer.pebesma@uni-muenster.de>",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"vctrs": {
|
||||
"Package": "vctrs",
|
||||
"Version": "0.6.5",
|
||||
@@ -2277,6 +2671,35 @@
|
||||
"Maintainer": "Lionel Henry <lionel@posit.co>",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"wk": {
|
||||
"Package": "wk",
|
||||
"Version": "0.9.4",
|
||||
"Source": "Repository",
|
||||
"Title": "Lightweight Well-Known Geometry Parsing",
|
||||
"Authors@R": "c( person(given = \"Dewey\", family = \"Dunnington\", role = c(\"aut\", \"cre\"), email = \"dewey@fishandwhistle.net\", comment = c(ORCID = \"0000-0002-9415-4582\")), person(given = \"Edzer\", family = \"Pebesma\", role = c(\"aut\"), email = \"edzer.pebesma@uni-muenster.de\", comment = c(ORCID = \"0000-0001-8049-7069\")), person(given = \"Anthony\", family = \"North\", email = \"anthony.jl.north@gmail.com\", role = c(\"ctb\")) )",
|
||||
"Maintainer": "Dewey Dunnington <dewey@fishandwhistle.net>",
|
||||
"Description": "Provides a minimal R and C++ API for parsing well-known binary and well-known text representation of geometries to and from R-native formats. Well-known binary is compact and fast to parse; well-known text is human-readable and is useful for writing tests. These formats are useful in R only if the information they contain can be accessed in R, for which high-performance functions are provided here.",
|
||||
"License": "MIT + file LICENSE",
|
||||
"Encoding": "UTF-8",
|
||||
"RoxygenNote": "7.2.3",
|
||||
"Suggests": [
|
||||
"testthat (>= 3.0.0)",
|
||||
"vctrs (>= 0.3.0)",
|
||||
"sf",
|
||||
"tibble",
|
||||
"readr"
|
||||
],
|
||||
"URL": "https://paleolimbot.github.io/wk/, https://github.com/paleolimbot/wk",
|
||||
"BugReports": "https://github.com/paleolimbot/wk/issues",
|
||||
"Config/testthat/edition": "3",
|
||||
"Depends": [
|
||||
"R (>= 2.10)"
|
||||
],
|
||||
"LazyData": "true",
|
||||
"NeedsCompilation": "yes",
|
||||
"Author": "Dewey Dunnington [aut, cre] (<https://orcid.org/0000-0002-9415-4582>), Edzer Pebesma [aut] (<https://orcid.org/0000-0001-8049-7069>), Anthony North [ctb]",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"xfun": {
|
||||
"Package": "xfun",
|
||||
"Version": "0.53",
|
||||
|
||||
Reference in New Issue
Block a user