<SPAN class=""><IMG __jive_id="357236" alt="" class="image-1 jive-image j-img-original" src="https://us.v-cdn.net/6038851/uploads/legacyfs/online/357236_example.png" style="width: 620px; height: 134px;" />
</SPAN><SPAN class="">from</SPAN> <SPAN class="">arcpy</SPAN> <SPAN class="">import</SPAN> <SPAN class="">env</SPAN><SPAN class="">env</SPAN><SPAN class="">.</SPAN><SPAN class="">workspace</SPAN><SPAN class="">=</SPAN><SPAN class="">"C:/data/project.gdb"</SPAN><SPAN class="">inFeatures</SPAN><SPAN class="">=</SPAN><SPAN class="">"streams"</SPAN><SPAN class="">arcpy</SPAN><SPAN class="">.</SPAN><SPAN class="">FlipLine_edit</SPAN><SPAN class="">(</SPAN><SPAN class="">inFeatures</SPAN><SPAN class="">)
</SPAN><SPAN class="">I have a shapefile with street centerlines with about 1600 segments that are flipped the wrong way.
I ran the Python code below and it worked but I need a way so that the address attributes do not
get flipped when the line is flipped. In the screen shot below you can see an example.
I need the centerline for Dee Ave to be flipped so that the red (to) and the green (from) swap
positions, which this script below did. The problem is that I do not want the address
attributes (1914,1915,1802,1803) to be flipped since they will then be in the wrong position,
I would need them to stay the way they are.
</SPAN>
<SPAN class="">I appreciate anyone's help! Thank you!</SPAN>