Changes between Version 1 and Version 2 of Processing/VecToRast
- Timestamp:
- Nov 30, 2007, 3:37:01 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Processing/VecToRast
v1 v2 41 41 }}} 42 42 43 5. Convert to raster map using v.to.rast. Note this converts for the current region only at the current resolution, so be sure that region and resolution are set as desired43 6. Convert to raster map using v.to.rast. Note this converts for the current region only at the current resolution, so be sure that region and resolution are set as desired 44 44 {{{ 45 45 v.to.rast input=patched_map_name output=raster_map_name use=val value=100 --overwrite 46 46 }}} 47 47 48 6. Convert to 8-bit GeoTiff using r.out.gdal48 7. Convert to 8-bit GeoTiff using r.out.gdal 49 49 {{{ 50 50 r.out.gdal input=raster_map_name type=Byte output=Geotiff_file_name.tif