2013-06-27

QGIS add Grass Create Watershed

3 step 

1. Import Raster
r.in.gdal -o input=G:/giswork/7thrmo/1850_b5km.tif output=1850

2. Create Watershed
r.watershed elevation=1850@wgs84 threshold=125 accumulation=9 drainage=10 stream=11 basin=12

3.raster to vector

r.to.vect input=12@wgs84 output=v1850 feature=area -s


 

Department of Civil Engineering 
National Taipei University of Technology
Jhih-Cyuan Shen

臺北科技大學土木工程系
沈志全
 

沒有留言:

張貼留言

QGIS Raster to Vector use Python console step2

資料處理步驟: 1.讀取 Raster 並計算 25 等級等值線級距 2.用 GDAL 產生等值線(Contour Lines) 3.Polygonize:Raster 轉等值面多邊形 4.將多邊形圖層載入 QGIS 5.為每個 polygon 計算其 VALUE 所屬級距(LE...