本文简要介绍 python 语言中 arcgis.raster.functions.slope
的用法。
用法:
arcgis.raster.functions.slope(dem, z_factor=None, slope_type=None, ps_power=None, psz_factor=None, remove_edge_effect=None, astype=None)
返回:
输出栅格
斜率表示每个像素的高程变化率。有关详细信息,请参阅 slope function 和 How slope works 。
斜率函数的参数如下:
Parameter
Description
dem
所需输入从 DEM 创建的
Raster
/ImageryLayer
对象。z_factor
可选浮点数。用于转换高程值的比例因子有两个目的:
将高程单位(例如米或英尺)转换为数据集的水平坐标单位,可以是英尺、米或度。
为视觉效果添加垂直夸张。
Default is 0.3.
slope_type
(10.2 新增)可选浮点数。可用的选项是 -
1=学位
2=百分比
3=缩放。
默认值为 1。
ps_power
(10.2 新增)可选浮点数。当查看器在Map显示上放大和缩小时,像素大小功率考虑了海拔变化(或比例)。与 SCALED 斜坡类型一起使用。
psz_factor
(10.2 新增)可选浮点数。像素尺寸因子控制 z_factor 变化的速率。
remove_edge_effect
(10.2 新增)可选布尔值。使用此选项将避免沿栅格边可能出现的任何重采样伪影。可选的布尔值。
False - 将统一应用双线性重采样以重采样输出。
True - 双线性重采样将用于对输出进行重采样,但沿栅格边或 NoData 像素旁边的情况除外。
astype
可选字符串。指定输出像素类型。可用选项是 - “C128” | “C64” | “F32” | “F64” | “S16” | “S32” | “S8” | “U1” | “U16” | “U2” | “U32” | “U4” | “U8”。默认为无。
例子:
# Usage Example 1: Applies the slope function to a raster with edge resampling artifact removal. slope_op = slope(raster, remove_edge_effect=True)
相关用法
- Python ArcGIS sum用法及代码示例
- Python ArcGIS sample用法及代码示例
- Python ArcGIS summarize_elevation用法及代码示例
- Python ArcGIS square用法及代码示例
- Python ArcGIS sqrt用法及代码示例
- Python ArcGIS summarize_nearby用法及代码示例
- Python ArcGIS summarize_categorical_raster用法及代码示例
- Python ArcGIS summarize_raster_within用法及代码示例
- Python ArcGIS subset_multidimensional_raster用法及代码示例
- Python ArcGIS segment_mean_shift用法及代码示例
- Python ArcGIS summarize_center_and_dispersion用法及代码示例
- Python ArcGIS summarize_attributes用法及代码示例
- Python ArcGIS summarize_within用法及代码示例
- Python ArcGIS suggest用法及代码示例
- Python ArcGIS set_null用法及代码示例
- Python ArcGIS std用法及代码示例
- Python ArcGIS sinh用法及代码示例
- Python ArcGIS segment用法及代码示例
- Python ArcGIS sin用法及代码示例
- Python ArcGIS power用法及代码示例
- Python ArcGIS APIKeyManager.get用法及代码示例
- Python ArcGIS KnowledgeGraph.named_object_type_delete用法及代码示例
- Python ArcGIS ContentManager.unshare_items用法及代码示例
- Python ArcGIS ImageryLayer.thumbnail用法及代码示例
- Python ArcGIS FormFieldElement用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.raster.functions.slope。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。