-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
85 lines (61 loc) · 1.93 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# whipala
<img src="https://raw.githubusercontent.com/liibre/pkg_logos/master/figs/logo_whipala.png" align="right" alt="" width="120" />
<!-- badges: start -->
<!-- badges: end -->
El objetivo de __whipala__ es crear una paleta con los colores de la whipala andina, y disponibilizarla para su uso en R.
## Instalación
Puede instalar __whipala__ desde su repositorio en GitHub con el paquete __remotes__ :
```{r, eval = FALSE}
remotes::install_github("liibre/whipala")
```
## Ejemplo
```{r, echo = F}
devtools::load_all()
```
```{r, eval = FALSE}
library(whipala)
```
```{r example, eval = TRUE}
## basic example code
whipala()
whipala(ncol = 13)
```
```{r mapa-brasil}
if (!dir.exists("outputs")) {dir.create("outputs")}
br <- raster::getData(name = "alt", country = "BRA", path = "outputs")
br <- raster::aggregate(br, 200)
whipala_map(br)
```
La Whipala es propiedad de la nación originaria, es decir de los Qhishwa-Aymaras, Guaraníes y de todo el pueblo.
Viva Bolivia, viva la Minga en Colombia, no al Marco Temporal en Brasil y no al genocidio de los pueblos indígenas en toda Sudamérica.
Si desea recrear el hermoso logotipo del paquete, use los siguientes comandos:
```{r hexsticker, eval = FALSE}
library(hexSticker)
# Creando y guardando la bandera de whipala
if (!dir.exists("figs")) {dir.create("figs")}
png(filename = "figs/whipala_flag.png", bg = "transparent")
whipala(axes = FALSE, box = FALSE)
dev.off()
# Definición la url de la imagen
imgurl <- "figs/whipala_flag.png"
sticker(imgurl,
package = "",
s_x = 1.05,
s_y = .95,
s_width = 1.4,
h_color = "black",
white_around_sticker = TRUE,
filename = "figs/whipala_logo.png")
```