mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-10-31 00:06:02 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			99 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			99 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding: utf-8 -*-
 | |
| 
 | |
| """
 | |
| ***************************************************************************
 | |
|     proximity.py
 | |
|     ---------------------
 | |
|     Date                 : August 2012
 | |
|     Copyright            : (C) 2012 by Victor Olaya
 | |
|     Email                : volayaf at gmail dot com
 | |
| ***************************************************************************
 | |
| *                                                                         *
 | |
| *   This program is free software; you can redistribute it and/or modify  *
 | |
| *   it under the terms of the GNU General Public License as published by  *
 | |
| *   the Free Software Foundation; either version 2 of the License, or     *
 | |
| *   (at your option) any later version.                                   *
 | |
| *                                                                         *
 | |
| ***************************************************************************
 | |
| """
 | |
| 
 | |
| __author__ = 'Victor Olaya'
 | |
| __date__ = 'August 2012'
 | |
| __copyright__ = '(C) 2012, Victor Olaya'
 | |
| # This will get replaced with a git SHA1 when you do a git archive
 | |
| __revision__ = '$Format:%H$'
 | |
| 
 | |
| #******************************************************************************
 | |
| #  Adapted from gdal_proximity.py, Copyright (c) 2008, Frank Warmerdam
 | |
| #******************************************************************************
 | |
| ##[GDAL] Analysis=group
 | |
| ##src_filename=raster
 | |
| ##dst_filename=output raster
 | |
| ##values=string
 | |
| ##maxdist=number 0
 | |
| ##nodata=number 0
 | |
| ##distunits=selection GEO;PIXEL
 | |
| ##fixed_buf_val=number 0
 | |
| from processing.gdal.GdalUtils import GdalUtils
 | |
| try:
 | |
|     from osgeo import gdal
 | |
| except ImportError:
 | |
|     import gdal
 | |
| 
 | |
| creation_options = []
 | |
| options = []
 | |
| src_band_n = 1
 | |
| dst_band_n = 1
 | |
| creation_type = 'Float32'
 | |
| 
 | |
| gdal.AllRegister()
 | |
| options.append( 'MAXDIST=' + str(maxdist))
 | |
| options.append( 'VALUES=' + values )
 | |
| options.append( 'DISTUNITS=' + str(distunits))
 | |
| options.append( 'NODATA=' + str(nodata))
 | |
| options.append( 'FIXED_BUF_VAL=' +str(fixed_buf_val))
 | |
| 
 | |
| src_ds = gdal.Open( src_filename )
 | |
| srcband = src_ds.GetRasterBand(src_band_n)
 | |
| 
 | |
| # =============================================================================
 | |
| #       Try opening the destination file as an existing file.
 | |
| # =============================================================================
 | |
| 
 | |
| try:
 | |
|     driver = gdal.IdentifyDriver( dst_filename )
 | |
|     if driver is not None:
 | |
|         dst_ds = gdal.Open( dst_filename, gdal.GA_Update )
 | |
|         dstband = dst_ds.GetRasterBand(dst_band_n)
 | |
|     else:
 | |
|         dst_ds = None
 | |
| except:
 | |
|     dst_ds = None
 | |
| 
 | |
| # =============================================================================
 | |
| #     Create output file.
 | |
| # =============================================================================
 | |
| if dst_ds is None:
 | |
|     drv = gdal.GetDriverByName(GdalUtils.getFormatShortNameFromFilename(dst_filename))
 | |
|     dst_ds = drv.Create( dst_filename,
 | |
|                          src_ds.RasterXSize, src_ds.RasterYSize, 1,
 | |
|                          gdal.GetDataTypeByName(creation_type) )
 | |
| 
 | |
|     dst_ds.SetGeoTransform( src_ds.GetGeoTransform() )
 | |
|     dst_ds.SetProjection( src_ds.GetProjectionRef() )
 | |
| 
 | |
|     dstband = dst_ds.GetRasterBand(1)
 | |
| 
 | |
| # =============================================================================
 | |
| #    Invoke algorithm.
 | |
| # =============================================================================
 | |
| 
 | |
| prog_func = gdal.TermProgress
 | |
| gdal.ComputeProximity( srcband, dstband, options,
 | |
|                        callback = prog_func )
 | |
| 
 | |
| srcband = None
 | |
| dstband = None
 | |
| src_ds = None
 | |
| dst_ds = None
 |