// Exportar vectores en Earth Engine //http://www.gisandbeers.com/exportar-shapefiles-google-earth-engine/ var AOI = ee.Geometry.Polygon( [[[-3.623554725544973, 41.03186089939956], [-3.903706092732473, 40.984190657911626], [-3.922932166951223, 40.88667033430143], [-3.697712440388723, 40.774448037065454], [-3.453266639607473, 40.859671214755586], [-3.486225623982473, 40.97797025791603]]]); var ArchivoSHP = ee.FeatureCollection([AOI]); // Exportacion por Drive Export.table.toDrive({ collection: ArchivoSHP, description: 'Limites_SHP', fileFormat: 'SHP'}); // Exportacion por URL y descarga directa var URLDescarga = ArchivoSHP.getDownloadURL({ format: 'SHP', filename: 'Limites_SHP'}); print ('>>ENLACE DE DESCARGA<<', URLDescarga);