2014-11-06 61 views
2

我在Ubuntu 14 64位版本上使用R 3.1.1。我安裝了SAGA GIS 2.1.2和RSAGA 0.93-6。如何用RSAGA解決「錯誤:工具」?

到目前爲止似乎所有工作都很好。

rsaga.env()的作品,我用:

work_env <- rsaga.env(modules='/usr/lib/x86_64-linux-gnu/saga/') 

,因爲在64位的模塊位於其他地方。 獲取庫工程,以及:

> rsaga.get.libraries(path=work_env$modules) 
[1] "climate_tools"   "contrib_perego"   "db_odbc"     "db_pgsql"    
[5] "docs_html"    "docs_pdf"    "garden_3d_viewer"  "garden_fractals"   
[9] "garden_games"   "garden_learn_to_program" "garden_webservices"  "grid_analysis"   
[13] "grid_calculus_bsl"  "grid_calculus"   "grid_filter"    "grid_gridding"   
[17] "grid_spline"    "grid_tools"    "grid_visualisation"  "imagery_classification" 
[21] "imagery_rga"    "imagery_segmentation" "imagery_svm"    "imagery_tools"   
[25] "io_esri_e00"    "io_gdal"     "io_gps"     "io_grid_grib2"   
[29] "io_grid_image"   "io_grid"     "io_shapes_dxf"   "io_shapes"    
[33] "io_table"    "io_virtual"    "pj_georeference"   "pj_proj4"    
[37] "pointcloud_tools"  "pointcloud_viewer"  "shapes_grid"    "shapes_lines"   
[41] "shapes_points"   "shapes_polygons"   "shapes_tools"   "shapes_transect"   
[45] "sim_cellular_automata" "sim_ecosystems_hugget" "sim_erosion"    "sim_hydrology"   
[49] "sim_ihacres"    "statistics_grid"   "statistics_kriging"  "statistics_points"  
[53] "statistics_regression" "table_calculus"   "table_tools"    "ta_channels"    
[57] "ta_compound"    "ta_hydrology"   "ta_lighting"    "ta_morphometry"   
[61] "ta_preprocessor"   "ta_profiles"    "ta_slope_stability"  "tin_tools"    
[65] "tin_viewer" 

但是,當我試圖讓模塊或其他任何東西它提供了一個奇怪的錯誤:

> rsaga.get.modules("ta_preprocessor", env=work_env) 
Error: tool 
$ta_preprocessor 
NULL 

我發現rsaga官方不支持海格版本的SAGA GIS 2.1.0,但是當我嘗試2.1.0時,我得到另一個問題中描述的錯誤:https://gis.stackexchange.com/questions/109497/rsaga-saga-cmd-2-1-0-error-inconsistency

我應該如何解決這個錯誤?

回答