I am working with a new taxlot dataset that requires building the fabric from just polygons (which is new to me). I am following the documented recommendation to use "SimplifyByStraightLinesAndCircularArcs" (without it I end up creating WAY to many lines). In some cases the conversion converts lines to curves that I do not think should be converted and it is a problem. I have changed the parameters for max_offset, max_arc_angle_step, min_arc_angle, and min_vertex_count to MANY alternatives. Some of the silly (see below) and some push the options to extremes. But the changes do not seem to impact the outcome. For example, you would think a max offset of .01 would mean lines would not deviate from the original by more the .01 (or so). But that is not the case and it appears I get offsets close to .1.
arcpy.edit.SimplifyByStraightLinesAndCircularArcs(
in_features=OutClassTxLtPly,
max_offset="0.01 Feet",
fitting_type="FIT_TO_VERTICES",
circular_arcs="CREATE",
max_arc_angle_step=2,
min_vertex_count=4,
min_radius=None,
max_radius=None,
min_arc_angle=2,
closed_ends="PRESERVE",
anchor_points=None
)
The taxlot dataset I am converting is pretty typical and contains rural and urban maps.
My question is...
Is there a best practice or are there recommended options (besides using the defaults) for running this tool on parcels to create an optimal result ???