<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Creating shp. from txt in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/creating-shp-from-txt/m-p/1399502#M80801</link>
    <description>&lt;P&gt;I'll try this though&lt;/P&gt;</description>
    <pubDate>Fri, 22 Mar 2024 00:36:30 GMT</pubDate>
    <dc:creator>anxiousvole214</dc:creator>
    <dc:date>2024-03-22T00:36:30Z</dc:date>
    <item>
      <title>Creating shp. from txt</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/creating-shp-from-txt/m-p/1399456#M80793</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I'm having trouble creating a shapefile from a starting txt file. I've opened the table for the file and have added the fields of latitude and longitude (Float) but the problem is that, when I try to enter the instructed fields in the Calculate Field dialogue box, I get an error message.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Input table: PlotXY&lt;/P&gt;&lt;P&gt;Field name: latitude1&lt;/P&gt;&lt;P&gt;Expression type: Python 3&lt;/P&gt;&lt;P&gt;lat: !latitude!/3600&lt;/P&gt;&lt;P&gt;I've tried doing this for both latitude and longitude, but I keep getting a null field in both of them, and an error message pops up saying I have invalid fields.&lt;/P&gt;&lt;P&gt;I've spent days trying to figure out what's wrong and I've scoured forums and various help sites but nothing works.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2024 23:48:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/creating-shp-from-txt/m-p/1399456#M80793</guid>
      <dc:creator>anxiousvole214</dc:creator>
      <dc:date>2024-03-21T23:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Creating shp. from txt</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/creating-shp-from-txt/m-p/1399488#M80795</link>
      <description>&lt;P&gt;why are you dividing latitude by 3600?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Decimal degree values are expected for latitude and longitude and the field should be a Double type, from there you can create geometry objects&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2024 00:09:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/creating-shp-from-txt/m-p/1399488#M80795</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2024-03-22T00:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: Creating shp. from txt</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/creating-shp-from-txt/m-p/1399489#M80796</link>
      <description>&lt;P&gt;So I succeeded in getting past this last step. The fields of latitude and longitude now say 0 instead of null. In the contents pane, there is now a "Plot_XYTableToPoint" with a little green dot under it. How do I get this to a shapefile?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2024 00:10:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/creating-shp-from-txt/m-p/1399489#M80796</guid>
      <dc:creator>anxiousvole214</dc:creator>
      <dc:date>2024-03-22T00:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: Creating shp. from txt</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/creating-shp-from-txt/m-p/1399501#M80800</link>
      <description>&lt;P&gt;Those were the instructions in the document. Float type, divide by 3600&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2024 00:36:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/creating-shp-from-txt/m-p/1399501#M80800</guid>
      <dc:creator>anxiousvole214</dc:creator>
      <dc:date>2024-03-22T00:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Creating shp. from txt</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/creating-shp-from-txt/m-p/1399502#M80801</link>
      <description>&lt;P&gt;I'll try this though&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2024 00:36:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/creating-shp-from-txt/m-p/1399502#M80801</guid>
      <dc:creator>anxiousvole214</dc:creator>
      <dc:date>2024-03-22T00:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Creating shp. from txt</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/creating-shp-from-txt/m-p/1399508#M80806</link>
      <description>&lt;P&gt;There's always the &lt;A href="https://pro.arcgis.com/en/pro-app/3.1/tool-reference/data-management/xy-table-to-point.htm" target="_self"&gt;XY Table To Point&lt;/A&gt; geoprocessing tool, but won't do you much good if your lat/long's are all zero.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just spit balling here: What are the data types of your fields?&amp;nbsp; I'm thinking your input fields are text?&amp;nbsp; If so, try this expression:&lt;/P&gt;&lt;PRE&gt; float(!latitude!)/3600.0&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;If your longitude field is text, add another field of type double and calculate that field using float() as well.&lt;/P&gt;&lt;P&gt;I've no clue what the little green dot means -- never seen it.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2024 01:02:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/creating-shp-from-txt/m-p/1399508#M80806</guid>
      <dc:creator>Dale_Honeycutt</dc:creator>
      <dc:date>2024-03-22T01:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: Creating shp. from txt</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/creating-shp-from-txt/m-p/1399620#M80812</link>
      <description>&lt;P&gt;I will try this, thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2024 13:30:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/creating-shp-from-txt/m-p/1399620#M80812</guid>
      <dc:creator>anxiousvole214</dc:creator>
      <dc:date>2024-03-22T13:30:55Z</dc:date>
    </item>
  </channel>
</rss>

