├── .gitignore ├── EXTRA ├── extra_PCA.ipynb └── extra_joins.ipynb ├── LICENSE ├── README.md ├── _config.yml ├── module01 └── 01_introcolab.ipynb ├── module02 ├── 01_tipodedatos.ipynb ├── 02_estructuradedatos.ipynb ├── 03_Operadoresdecomparación.ipynb ├── 04_if_else_elif.ipynb ├── 05_Ciclosfor.ipynb ├── 06_Funciones.ipynb ├── 07_Lambda.ipynb └── 08_Modulos_y_Paquetes.ipynb ├── module03 ├── 01_wkt_geojson.ipynb └── nc.zip ├── module04 ├── 01_EDGEE.ipynb ├── 02_EDGEE.ipynb ├── 03_EDGEE.ipynb └── 04_EDGEE.ipynb ├── module05 ├── 01_metadatos_I.ipynb ├── 02_metadatos_II.ipynb ├── 03_reducer.ipynb ├── 04_Ejercicio_01.ipynb └── 05_Ejercicio_02.ipynb ├── module06 ├── 01_composites.ipynb ├── 02_ICviz.ipynb ├── 03_class.ipynb ├── 04_RUSLE.ipynb ├── prop01_PP_ETP.ipynb └── prop01_PP_ETP_resuelto.ipynb ├── snippets.ipynb └── tarea ├── Indices.ipynb ├── PROP_01_RUSLE.ipynb ├── Respuesta.ipynb ├── ejercicio_01.docx ├── ejercicio_01.pdf ├── ejercicio_02.docx └── ejercicio_02.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/.gitignore -------------------------------------------------------------------------------- /EXTRA/extra_PCA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/EXTRA/extra_PCA.ipynb -------------------------------------------------------------------------------- /EXTRA/extra_joins.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/EXTRA/extra_joins.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/_config.yml -------------------------------------------------------------------------------- /module01/01_introcolab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module01/01_introcolab.ipynb -------------------------------------------------------------------------------- /module02/01_tipodedatos.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module02/01_tipodedatos.ipynb -------------------------------------------------------------------------------- /module02/02_estructuradedatos.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module02/02_estructuradedatos.ipynb -------------------------------------------------------------------------------- /module02/03_Operadoresdecomparación.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module02/03_Operadoresdecomparación.ipynb -------------------------------------------------------------------------------- /module02/04_if_else_elif.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module02/04_if_else_elif.ipynb -------------------------------------------------------------------------------- /module02/05_Ciclosfor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module02/05_Ciclosfor.ipynb -------------------------------------------------------------------------------- /module02/06_Funciones.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module02/06_Funciones.ipynb -------------------------------------------------------------------------------- /module02/07_Lambda.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module02/07_Lambda.ipynb -------------------------------------------------------------------------------- /module02/08_Modulos_y_Paquetes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module02/08_Modulos_y_Paquetes.ipynb -------------------------------------------------------------------------------- /module03/01_wkt_geojson.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module03/01_wkt_geojson.ipynb -------------------------------------------------------------------------------- /module03/nc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module03/nc.zip -------------------------------------------------------------------------------- /module04/01_EDGEE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module04/01_EDGEE.ipynb -------------------------------------------------------------------------------- /module04/02_EDGEE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module04/02_EDGEE.ipynb -------------------------------------------------------------------------------- /module04/03_EDGEE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module04/03_EDGEE.ipynb -------------------------------------------------------------------------------- /module04/04_EDGEE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module04/04_EDGEE.ipynb -------------------------------------------------------------------------------- /module05/01_metadatos_I.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module05/01_metadatos_I.ipynb -------------------------------------------------------------------------------- /module05/02_metadatos_II.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module05/02_metadatos_II.ipynb -------------------------------------------------------------------------------- /module05/03_reducer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module05/03_reducer.ipynb -------------------------------------------------------------------------------- /module05/04_Ejercicio_01.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module05/04_Ejercicio_01.ipynb -------------------------------------------------------------------------------- /module05/05_Ejercicio_02.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module05/05_Ejercicio_02.ipynb -------------------------------------------------------------------------------- /module06/01_composites.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module06/01_composites.ipynb -------------------------------------------------------------------------------- /module06/02_ICviz.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module06/02_ICviz.ipynb -------------------------------------------------------------------------------- /module06/03_class.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module06/03_class.ipynb -------------------------------------------------------------------------------- /module06/04_RUSLE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module06/04_RUSLE.ipynb -------------------------------------------------------------------------------- /module06/prop01_PP_ETP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module06/prop01_PP_ETP.ipynb -------------------------------------------------------------------------------- /module06/prop01_PP_ETP_resuelto.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/module06/prop01_PP_ETP_resuelto.ipynb -------------------------------------------------------------------------------- /snippets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/snippets.ipynb -------------------------------------------------------------------------------- /tarea/Indices.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/tarea/Indices.ipynb -------------------------------------------------------------------------------- /tarea/PROP_01_RUSLE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/tarea/PROP_01_RUSLE.ipynb -------------------------------------------------------------------------------- /tarea/Respuesta.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/tarea/Respuesta.ipynb -------------------------------------------------------------------------------- /tarea/ejercicio_01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/tarea/ejercicio_01.docx -------------------------------------------------------------------------------- /tarea/ejercicio_01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/tarea/ejercicio_01.pdf -------------------------------------------------------------------------------- /tarea/ejercicio_02.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/tarea/ejercicio_02.docx -------------------------------------------------------------------------------- /tarea/ejercicio_02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csaybar/EarthEngineMasterGIS/HEAD/tarea/ejercicio_02.pdf --------------------------------------------------------------------------------