本文簡要介紹 python 語言中 arcgis.raster.functions.contour
的用法。
用法:
arcgis.raster.functions.contour(raster, adaptive_smoothing=2.5, contour_type='CONTOUR_LINES', z_base=0, number_of_contours=0, contour_interval=100, nth_contour_line_in_bold=5, z_factor=1)
返回:
應用了函數的輸出柵格。
等高線函數從輸入柵格創建等高線。
該函數的參數如下:
Parameter
Description
raster
所需輸入從 DEM 創建的
Raster
/ImageryLayer
對象。adaptive_smoothing
可選浮點數。應用於輪廓線的平滑量。默認值為 2.5。較低的值會產生具有更多粒度和較少平滑的輪廓線,而較高的值會產生具有較多平滑度且鋸齒較少的輪廓線。
contour_type
可選字符串。指定要創建的輪廓類型。可用值包括:
“CONTOUR_LINES” - 連接等高點以創建表示恒定高程的線。這是默認設置。
“CONTOUR_FILL” - 用量化的高程值填充每條等高線之間的區域。
“SMOOTH_SURFACE_ONLY” - 平滑輸入高程圖層但不產生等高線。
z_base
可選浮點數。基本輪廓值。根據需要在該值上方和下方生成等值線,以覆蓋輸入柵格的整個值範圍。默認值為 0。
number_of_contours
可選的整數。要在顯示屏中生成的輪廓數。這會動態調整等高線間隔以適應顯示中的地形,同時保持標準化間隔,例如 1、5、10 等。默認值為 0。
contour_interval
可選浮點數。等高線之間的高度差。默認值為 100。
nth_contour_line_in_bold
可選的整數。第 n 條輪廓線將以粗體呈現。默認值為5;因此,每 5 條輪廓線都是粗體。
z_factor
生成等高線時使用的單位轉換因子。默認值為 1。
例子:
# Usage Example 1: Displays 50 units spaced contours in the raster contour_op = contour(raster, contour_interval=50) # Usage Example 2: Smoothes the input elevation layer. Note that this does not produce contours. contour_op = contour(raster, contour_type="SMOOTH_SURFACE_ONLY")
相關用法
- Python ArcGIS connect_origins_to_destinations用法及代碼示例
- Python ArcGIS convert_feature_to_raster用法及代碼示例
- Python ArcGIS convert_raster_to_feature用法及代碼示例
- Python ArcGIS con用法及代碼示例
- Python ArcGIS compute_change_raster用法及代碼示例
- Python ArcGIS copy_raster用法及代碼示例
- Python ArcGIS compute_accuracy_for_object_detection用法及代碼示例
- Python ArcGIS copy_to_data_store用法及代碼示例
- Python ArcGIS colormap用法及代碼示例
- Python ArcGIS cosh用法及代碼示例
- Python ArcGIS cos用法及代碼示例
- Python ArcGIS colormap_to_rgb用法及代碼示例
- Python ArcGIS calculate_statistics用法及代碼示例
- Python ArcGIS create_space_time_cube用法及代碼示例
- Python ArcGIS classify用法及代碼示例
- Python ArcGIS ccdc_analysis用法及代碼示例
- Python ArcGIS create_viewshed用法及代碼示例
- Python ArcGIS create_route_layers用法及代碼示例
- Python ArcGIS create_drive_time_areas用法及代碼示例
- Python ArcGIS create_image_collection用法及代碼示例
- Python ArcGIS create_buffers用法及代碼示例
- Python ArcGIS create_watersheds用法及代碼示例
- Python arcgis.learn.classify_objects用法及代碼示例
- Python ArcGIS clip_layer用法及代碼示例
- Python arcgis.learn.classify_pixels用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.raster.functions.contour。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。