Skip to content

Commit

Permalink
BIODATA Tutorial: Visualización de datos espaciales en R
Browse files Browse the repository at this point in the history
  • Loading branch information
beeamerino committed Jun 3, 2024
1 parent c1750c7 commit 8e5d385
Show file tree
Hide file tree
Showing 3 changed files with 342 additions and 313 deletions.
23 changes: 20 additions & 3 deletions MappingR.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,30 @@ plot(chile)

------------------------------------------------------------------------

## Datos climáticos usando geodata
## Límites Administrativos usando **geodata**.

- **geodata** es una librería para descargar datos geográficos.
Facilita el acceso a datos de clima, elevación, suelo, cultivos,
presencia de especies y límites administrativos, y es un sucesor de
la función `getData()` del paquete **raster**.
presencia de especies y límites administrativos, y es un sucesor de la función `getData()` del paquete **raster**.

Buscar información sobre la función gadm

```{r}
?gadm
```

Descargar limites administrativos para **Chile**
```{r}
#chl <- gadm(country="Chile", level=1, path = ("data/layers"))
chl <- readRDS("data/layers/gadm/gadm41_CHL_1_pk.rds")
plot(chl)
```



## Datos ambientales usando geodata
### Worldclim. Temperatura Mínima usando geodata

- [WorldClim](https://worldclim.org/data/index.html) es una base de
Expand Down
632 changes: 322 additions & 310 deletions MappingR.html

Large diffs are not rendered by default.

Binary file added data/layers/gadm/gadm41_CHL_1_pk.rds
Binary file not shown.

0 comments on commit 8e5d385

Please sign in to comment.