r - Rsaga geoprocessor (Shapes to grid) -


i trying export raster file using "shapes grid" function in r, using rsaga package.

the script, made far, following:

rsaga.geoprocessor("grid_gridding", module = 0,                                 param = list(                                   grid = paste(getwd(),"/sig/mapas/rasterpre", sep = ""),                                   input = paste(getwd(),"/sig/mapas/","coorddatosdisco.shp", sep = ""),                                   field = 0,                                   target_type = 0,                                   user_cell_size = 0.01,                                   user_fit_extent = true,                                   user_x_extent_min =  -77,                                   user_x_extent_max =  -65,                                   user_y_extent_min =  -57,                                   user_y_extent_max =  -17,                                   user_grid_type = 3                                   )) 

the input point shapefile containing data , long/lat information. however, when want open output file (rasterpre) in saga - gis (using gdal:import raster module) software warns me following message : "module execution failed".

does know problem?

thanks in advance.

héctor m.

just in case needs it, solved problem updating saga gis 2.1.0 version ( using 2.0.4 version).

regards

h


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -