Краткая информация
Визуализирует информацию о направлении и величине потока в растре с помощью векторных символов.
Обсуждение
Указанный набор растровых данных является временным для растрового объекта. Чтобы сделать его постоянным, вы можете вызвать метод растрового объекта save.
Синтаксис
VectorFieldRenderer (raster, {is_uv_components}, {reference_system}, {mass_flow_angle_representation}, {calculation_method}, {symbology_name})
Параметр | Описание | Тип данных |
raster | The input raster. | Raster |
is_uv_components | Specifies whether the input components represent U-V, or magnitude and direction.
(Значение по умолчанию — None) | Boolean |
reference_system | Specifies how the direction component is measured.
(Значение по умолчанию — 2) | Integer |
mass_flow_angle_representation | Specifies the angle of mass flow.
(Значение по умолчанию — From) | Integer |
calculation_method [calculation_method,...] | Specifies the thinning method to be used to calculate the magnitude and direction value of a tile.
(Значение по умолчанию — Vector Average) | String |
symbology_name [symbology_name,...] | Specifies the name of the symbol depicting direction and magnitude.
(Значение по умолчанию — Single Arrow) | String |
Тип данных | Описание |
Raster | Выходной растр показывается в соответствии с вашими параметрами отображения. |
Пример кода
Визуализирует информацию о направлении и величине потока в растре с помощью векторных символов.
import arcpy
VectorFieldRenderer_raster = arcpy.sa.VectorFieldRenderer(out_vector_field_raster,
is_uv_components=False, reference_system='Geographic',
mass_flow_angle_representation='from')