Download geemap object as raster tiff and shapefile #1793
-
I am new to geospatial analysis and geemap package. I am trying to add a couple of soil-climate data to geemap and with a boundary of Canada. Then I want to export the geemap object as a raster tiff image as well as shapefile. I have tried writing some, and the code works (although to my little understanding as a newbie). However, I don't seem to get the data export aspect correctly. I would appreciate any help to make this work. Thanks. Map = geemap.Map() PR = ee.FeatureCollection('projects/taiwo-2023/assets/CA_2016_digital_boundary_file') Add pH data to map4/1AfJohXnONRbC6gJpKvJhTmwL_bhWQWh-LP0BBz1c-pciH2FFyQZGP7XV4m4pH = ee.Image("OpenLandMap/SOL/SOL_PH-H2O_USDA-4C1A2A_M/v02") Add texture data to maptexture = ee.Image("OpenLandMap/SOL/SOL_TEXTURE-CLASS_USDA-TT_M/v02") Organic carbonoc = ee.Image("OpenLandMap/SOL/SOL_ORGANIC-CARBON_USDA-6A1C_M/v02") Bulk densitybulk = ee.Image("OpenLandMap/SOL/SOL_BULKDENS-FINEEARTH_USDA-4A1H_M/v02") Add Agriculture and Agri-Food Canada annual crop inventory#AAFC = ee.ImageCollection('AAFC/ACI') Precipitationprecipitation = ee.ImageCollection('NASA/GPM_L3/IMERG_MONTHLY_V06').filterDate('2010-01-01', '2010-12-31') Surface temperaturesurface_temp = ee.ImageCollection("LANDSAT/LC08/C02/T1_L2").filterDate('2013-06-01', '2013-08-31') Elevation: slope and aspectelevation = ee.ImageCollection('JAXA/ALOS/AW3D30/V3_2').select('DSM') Map.addLayer(slope.clip(PR), {}, "slope"); aspect = ee.Terrain.aspect(elevation.mosaic().setDefaultProjection(proj_slope)) Soil Water Contentsoil_water_content = ee.Image("OpenLandMap/SOL/SOL_WATERCONTENT-33KPA_USDA-4B1C_M/v01") Air Tempair_temp = ee.ImageCollection('NASA/GLDAS/V021/NOAH/G025/T3H').filterDate('2013-06-01', '2013-08-31') Humidityhumidity = ee.ImageCollection('NASA/GLDAS/V021/NOAH/G025/T3H').filterDate('2013-06-01', '2013-08-31') Soil Moisturesoil_moisture = ee.ImageCollection('NASA/GLDAS/V021/NOAH/G025/T3H').filterDate('2013-06-01', '2013-08-31') Map |
Beta Was this translation helpful? Give feedback.
See https://book.geemap.org/chapters/07_data_export.html