Create range fan geometry(创建距离扇区几何图形(range fan geometry))¶
Supported in: Batch, Streaming
Approximates a range fan as a polygon, specifying the region of all points whose haversine distance to the origin point is between the minimum and maximum radii, and to which the bearing from the origin is contained with the angular range centered around the specified bearing parameter. The left and right sides of the range fan are drawn as geodesic lines computed along the surface of the WGS84 ellipsoid approximating the surface of the earth. Returns null if the range spans more than 180 degrees while also crossing the anti-meridian, or if the maximum radius spans more than half of the circumference of the earth.
Expression categories: Geospatial
Declared arguments¶
- Bearing: The bearing of the range fan relative to the north pole.
Expression\ - Maximum radius length: The length of the maximum radius of the ellipse. Must be greater than the minimum radius and less than half of the circumference of the earth.
Expression\ - Maximum radius length unit: The unit of the maximum radius.
Enum\ - Minimum radius length: The length of the minimum radius of the ellipse. Must be less than the maximum radius.
Expression\ - Minimum radius length unit: The unit of the minimum radius.
Enum\ - Origin: Longitude and latitude for the origin of the range fan.
Expression\ - Range: The angular range of the range fan, centered on its bearing. Must be greater than 0 degrees. Range fans which both span over 180 degrees and cross the anti-meridian are not yet supported and will return null.
Expression\ - optional Bearing angle unit: The unit of the bearing. Defaults to degrees.
Enum\ - optional Number of arc points: The number of points used to approximate arcs drawn on each side of the range fan.
Expression\ - optional Number of side points: The number of points used to approximate sides of the range fan.
Expression\ - optional Range angle unit: The unit of the range. Defaults to degrees.
Enum\
Output type: Geometry
中文翻译¶
创建距离扇区几何图形(range fan geometry)¶
支持:批处理(Batch)、流处理(Streaming)
将距离扇区近似为多边形,指定所有满足以下条件的点所构成的区域:这些点与原点的大圆距离(haversine distance)介于最小半径和最大半径之间,且从原点出发的方位角(bearing)包含在以指定方位参数为中心的角范围内。距离扇区的左右两侧以测地线(geodesic lines)绘制,该测地线沿近似地球表面的WGS84椭球面计算。如果距离扇区跨度超过180度且同时跨越对跖线(anti-meridian),或最大半径超过地球周长的一半,则返回空值(null)。
表达式类别: 地理空间(Geospatial)
声明参数¶
- 方位角(Bearing): 距离扇区相对于北极的方位角。
表达式\ - 最大半径长度(Maximum radius length): 椭圆最大半径的长度。必须大于最小半径且小于地球周长的一半。
表达式\ - 最大半径长度单位(Maximum radius length unit): 最大半径的单位。
枚举\<厘米(Centimeter)、数据英里(Data mile)、十米(Decameter)、分米(Decimeter)、英尺(Foot)、百米(Hectometer)、英寸(Inch)、千米(Kilometer)、米(Meter)、英里(Mile)等...> - 最小半径长度(Minimum radius length): 椭圆最小半径的长度。必须小于最大半径。
表达式\ - 最小半径长度单位(Minimum radius length unit): 最小半径的单位。
枚举\<厘米(Centimeter)、数据英里(Data mile)、十米(Decameter)、分米(Decimeter)、英尺(Foot)、百米(Hectometer)、英寸(Inch)、千米(Kilometer)、米(Meter)、英里(Mile)等...> - 原点(Origin): 距离扇区原点的经度和纬度。
表达式\ - 范围(Range): 距离扇区的角范围,以其方位角为中心。必须大于0度。跨度超过180度且同时跨越对跖线的距离扇区暂不支持,将返回空值。
表达式\ - 可选 方位角单位(Bearing angle unit): 方位角的单位。默认为度(degrees)。
枚举\<度(Degrees)、分(Minutes)、弧度(Radians)、秒(Seconds)> - 可选 弧点数量(Number of arc points): 用于近似绘制距离扇区两侧弧线的点数。
表达式\ - 可选 侧边点数量(Number of side points): 用于近似绘制距离扇区侧边的点数。
表达式\ - 可选 范围角单位(Range angle unit): 范围角的单位。默认为度。
枚举\<度(Degrees)、分(Minutes)、弧度(Radians)、秒(Seconds)>
输出类型: 几何图形(Geometry)