Publications by DataIntelligence

puntos_002

21.04.2021

1. Cargamos y analizamos el shapefile de glaciares Leemos el shp: mask_1 <- st_read("Lim_glaciares.shp") ## Reading layer `Lim_glaciares' from data source `C:\Users\usuario\Desktop\ds\ds_rgee\puntos\Lim_glaciares.shp' using driver `ESRI Shapefile' ## Simple feature collection with 2085 features and 1 field ## Geometry type: POLYGON ## Dimensio...

2330 sym R (6366 sym/34 pcs) 2 img

puntos_003

22.04.2021

1. Gráfica del shape de la región de los lagos Tenemos una función que grafica inmediatamente la forma de un shape: # leemos el shp: mask <- st_read("region_los_lagos.shp", quiet = TRUE) %>% sf_as_ee() # convertimos el shp en geometria: region <- mask$geometry() Map$setCenter(lon = -73.079, lat = -42.611, zoom = 7) Map$a...

4471 sym R (12134 sym/58 pcs) 3 img

cart_004

03.05.2021

Índice 1 Primer conjunto de muestras 2 Segundo conjunto de muestras 3 Random Forest Primer conjunto de muestras (volver al índice) Extraemos la imagen satelital Sentinel filtrada por la region de los lagos mask <- st_read("region_los_lagos.shp", quiet = TRUE) %>% sf_as_ee() # convertimos el shp en geometria: region <-...

3487 sym R (7163 sym/41 pcs) 2 tbl

ejemplo_mapa

04.05.2021

...

6 sym

cart_006

10.05.2021

Índice 0 El proceso y la automatización 1 El proceso de generación de rasters 1.1 rasters interiores 1.1.1 automatización sobre fechas de rasters interiores 1.2 rasters exteriores 1.3 generación de muestras 1.4 generación de imágenes clasificadas con RF 1.5 generación de datos de series de tiempo 2 Análisis de series de tiempo d...

3906 sym R (22423 sym/61 pcs)

rgee_003

13.05.2021

Índice I Introduccion II Datos espacio-temporales I: vectorial 1 Los paquetes sp y rgdal 2 Importacion 3 Visualizacion 4 Proyecciones y coordenadas 5 Acceso a las variables 6 Añadir y eliminar atributos 7 Funciones de analisis espacial I Introducccion 1 Proyecciones Todos los objetos espaciales tanto en R como en cualquier GIS necesi...

18906 sym R (96682 sym/204 pcs) 26 img

analisis_archivos_vectoriales_14_05_21

14.05.2021

# library(rgee) # ee_Initialize() Lecturas SHP 1 Vamos a leer el shp de conguillio y lo vamos a graficar congui <- read_sf("1/conguillio.shp") congui2 <-congui congui2 <- dplyr::select(congui2[-c(1:29)]) congui2 ## Simple feature collection with 1 feature and 0 fields ## Geometry type: POLYGON ## Dimension: XY ## Bounding box: xmi...

3034 sym R (10472 sym/46 pcs) 5 img 8 tbl

primera_proyecto_glaciar

26.05.2021

library(rgee) ee_Initialize() ## -- rgee 1.0.9 --------------------------------------- earthengine-api 0.1.259 -- ## v email: not_defined ## v Initializing Google Earth Engine: v Initializing Google Earth Engine: DONE! ## v Earth Engine user: users/tarredwall ## ----------------------------------------------------------------------...

3601 sym R (10137 sym/30 pcs)

automatizacion_en_la_extraccion_de_areas

27.05.2021

library(rgee) ee_Initialize("tarredwall@gmail.com", drive = TRUE) ## -- rgee 1.0.9 --------------------------------------- earthengine-api 0.1.259 -- ## v email: tarredwall@gmail.com ## v Google Drive credentials: v Google Drive credentials: FOUND ## v Initializing Google Earth Engine: v Initializing Google Earth Engine: DONE! ## ...

3623 sym R (10117 sym/38 pcs) 2 img 1 tbl

Analisis_de_archivos_raster

31.05.2021

Primera parte: Introducción a SIG y Teledetección en R 1 Conceptos básicos 2 Leyendo rasters library(raster) # file.choose() lulc <- raster("rasterscurso/1/lulc.tif") lulc ## class : RasterLayer ## dimensions : 208, 178, 37024 (nrow, ncol, ncell) ## resolution : 10, 10 (x, y) ## extent : 359560, 361340, 6314590, 6316670 (x...

3445 sym R (40332 sym/91 pcs) 19 img