当前位置: 首页>>代码示例>>Python>>正文


Python gdal.GA_Update方法代码示例

本文整理汇总了Python中osgeo.gdal.GA_Update方法的典型用法代码示例。如果您正苦于以下问题:Python gdal.GA_Update方法的具体用法?Python gdal.GA_Update怎么用?Python gdal.GA_Update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在osgeo.gdal的用法示例。


在下文中一共展示了gdal.GA_Update方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: mask_raster

# 需要导入模块: from osgeo import gdal [as 别名]
# 或者: from osgeo.gdal import GA_Update [as 别名]
def mask_raster(fn, mask):
    """
    Masks a .tif raster using GDAL.
    
    Arguments:
    -----------
    fn: str
        filepath + filename of the .tif raster
    mask: np.array
        array of boolean where True indicates the pixels that are to be masked
        
    Returns:    
    -----------
    Overwrites the .tif file directly
        
    """ 
    
    # open raster
    raster = gdal.Open(fn, gdal.GA_Update)
    # mask raster
    for i in range(raster.RasterCount):
        out_band = raster.GetRasterBand(i+1)
        out_data = out_band.ReadAsArray()
        out_band.SetNoDataValue(0)
        no_data_value = out_band.GetNoDataValue()
        out_data[mask] = no_data_value
        out_band.WriteArray(out_data)
    # close dataset and flush cache
    raster = None


###################################################################################################
# UTILITIES
################################################################################################### 
开发者ID:kvos,项目名称:CoastSat,代码行数:36,代码来源:SDS_tools.py


注:本文中的osgeo.gdal.GA_Update方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。