1

I have lot of shapefiles to erase polygons with same attribute form them. It is usually an easy task when do manually, but how can I use SAGA-GIS command? Any help?

Tom
  • 11
  • 2
  • Is each saga_cmd an independent command? How can I join these two commands in one script? How to save modified shapefile? Can you write example? I cant't deal with that task:( – Tom Jan 26 '16 at 15:19

1 Answers1

1

Not a SAGA-GIS user but looking at the Module List, my guess would be to:

  1. Select your polygons by attribute

    saga_cmd shapes_tools 4 -INPUT [-FIELD ] [-EXPRESSION ] [-CASE ] [-COMPARE] 
    
  2. Delete selection from shapes layer

    saga_cmd shapes_tools 7 -INPUT
    
Joseph
  • 75,746
  • 7
  • 171
  • 282