不具合 ID 番号 |
BUG-000164997 |
送信されました | February 9, 2024 |
最終更新日 | June 5, 2024 |
適用対象 | ArcGIS Pro |
見つかったバージョン | 3.2 |
オペレーティング システム | Windows OS |
オペレーティング システムのバージョン | 10.0 64 Bit |
ステータス | As Designed
開発チームによる確認後に、この動作が設計どおりであると判断されました。 詳細については、「参考情報」セクションをご参照ください。
|
参考情報
By default, for the Buffer tool (all methods) and the Pairwise Buffer tool (geodesic method only), there are jumps in the deviation at certain distances, which explains what is being seen:
(meters)
if (distance <= 1.0)
return 0.001;
if (distance <= 1000.0)
return 0.1;
if (distance <= 10000.0)
return 1.0;
if (distance <= 100000.0)
return 5.0;
return 10.0;
For the Pairwise Buffer tool, set the Max Offset Deviation parameter value to control the output vertex count.
The Buffer (Analysis) tool would not be providing control over this.
The Pairwise Buffer tool documentation points to the Densify documentation, which gives additional information on max deviation. Refer to https://pro.arcgis.com/en/pro-app/latest/tool-reference/editing/densify.htm.
対処法
The Pairwise Buffer tool provides the Maximum Offset Deviation parameter to provide some control over this.
再現の手順