Hi, i have the following code:
<SPAN class="kwd" style="color: #8a4a0b; font-size: 12px;">import</SPAN><SPAN class="pln" style="color: #000000; font-size: 12px;"> arcgisscripting
gp </SPAN><SPAN class="pun" style="color: #145680; font-size: 12px;">=</SPAN><SPAN class="pln" style="color: #000000; font-size: 12px;"> arcgisscripting</SPAN><SPAN class="pun" style="color: #145680; font-size: 12px;">.</SPAN><SPAN class="pln" style="color: #000000; font-size: 12px;">create</SPAN><SPAN class="pun" style="color: #145680; font-size: 12px;">()</SPAN><SPAN class="pln" style="color: #000000; font-size: 12px;">
</SPAN><SPAN class="pln" style="color: #000000; font-size: 12px;">input </SPAN><SPAN class="pun" style="color: #145680; font-size: 12px;">=</SPAN><SPAN class="pln" style="color: #000000; font-size: 12px;"> </SPAN><SPAN style="color: #145680; font-size: 12px;">"c:/Borders/home.txt"</SPAN><SPAN class="pln" style="color: #000000; font-size: 12px;">
inSep </SPAN><SPAN class="pun" style="color: #145680; font-size: 12px;">=</SPAN><SPAN class="pln" style="color: #000000; font-size: 12px;"> </SPAN><SPAN class="str" style="color: #800000; font-size: 12px;">"."</SPAN><SPAN class="pln" style="color: #000000; font-size: 12px;">
output </SPAN><SPAN class="pun" style="color: #145680; font-size: 12px;">=</SPAN><SPAN class="pln" style="color: #000000; font-size: 12px;"> "c:/Borders/outtext.txt"</SPAN><SPAN class="pln" style="color: #000000; font-size: 12px;">
gp</SPAN><SPAN class="pun" style="color: #145680; font-size: 12px;">.</SPAN><SPAN class="typ" style="color: #2b91af; font-size: 12px;">CreateFeaturesFromTextFile</SPAN><SPAN class="pun" style="color: #145680; font-size: 12px;">(</SPAN><SPAN class="pln" style="color: #000000; font-size: 12px;">input</SPAN><SPAN class="pun" style="color: #145680; font-size: 12px;">,</SPAN><SPAN class="pln" style="color: #000000; font-size: 12px;"> inSep</SPAN><SPAN class="pun" style="color: #145680; font-size: 12px;">,</SPAN><SPAN class="pln" style="color: #000000; font-size: 12px;"> output</SPAN><SPAN class="pun" style="color: #145680; font-size: 12px;">,</SPAN><SPAN class="pln" style="color: #000000; font-size: 12px;"> </SPAN><SPAN class="str" style="color: #800000; font-size: 12px;">"#"</SPAN><SPAN class="pun" style="color: #145680; font-size: 12px;">)</SPAN>
And my point txt is in that form:
Point
<SPAN class="lit">0</SPAN><SPAN class="pln"> </SPAN><SPAN class="lit">8674596.8</SPAN><SPAN class="pln"> </SPAN><SPAN class="lit">9856351.9</SPAN><SPAN class="pln"> </SPAN><SPAN class="lit">100.967430980</SPAN>
End
But the point i am getting doesn't have the third column. Why is that happening?