<?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: Tool for generating Feature Class including field names/type... in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187824#M10591</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is certainly possible using Python. If you want to go in that direction, please post your starting script, or at least your Excel file as an example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Jul 2015 17:32:19 GMT</pubDate>
    <dc:creator>DarrenWiens2</dc:creator>
    <dc:date>2015-07-22T17:32:19Z</dc:date>
    <item>
      <title>Tool for generating Feature Class including field names/type...</title>
      <link>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187823#M10590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I am trying to build a tool that will generate a feature class and then populate the fields with the correct column name and format based off a Excel file.&amp;nbsp; Has anyone had any luck doing this before?&amp;nbsp; I'm looking for model or code examples if anyone happens to have anything similar.&amp;nbsp; Has anyone seen any tutoria documents online that do this type of request?&amp;nbsp; That could help also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2015 17:26:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187823#M10590</guid>
      <dc:creator>TravisLathrop1</dc:creator>
      <dc:date>2015-07-22T17:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Tool for generating Feature Class including field names/type...</title>
      <link>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187824#M10591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is certainly possible using Python. If you want to go in that direction, please post your starting script, or at least your Excel file as an example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2015 17:32:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187824#M10591</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-07-22T17:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: Tool for generating Feature Class including field names/type...</title>
      <link>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187825#M10592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the follow up Darren.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have no code to share as I've been working in model builder.&amp;nbsp; If you think the python route is the way to go I'm all ears.&amp;nbsp; Here is what my Excel file looks like.&amp;nbsp; I want column A to represent the fields in the new feature class and the values in column B should the the field type.&amp;nbsp; Is this doable?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="fields.jpg" class="image-1 jive-image" height="569" src="https://community.esri.com/legacyfs/online/118510_fields.jpg" style="width: 389px; height: 476px;" width="348" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2015 17:51:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187825#M10592</guid>
      <dc:creator>TravisLathrop1</dc:creator>
      <dc:date>2015-07-22T17:51:19Z</dc:date>
    </item>
    <item>
      <title>Re: Tool for generating Feature Class including field names/type...</title>
      <link>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187826#M10593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Step 1: convert Excel to CSV file. If you don't want to do that, you can work with Excel directly, but it's more complicated.&lt;/P&gt;&lt;P&gt;Step 2: run Python script. This will probably take some time to digest. Comments follow '#' (leave in or delete. They will be ignored).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, csv, os

fc = r'C:/junk/FILE_GDB.gdb/newEmptyFC' # point to where you want your FC
if arcpy.Exists(fc):
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Delete_management(fc) # delete FC if it exists
arcpy.CreateFeatureclass_management(os.path.dirname(fc),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; os.path.basename(fc)) # create FC

fieldtypes = {&amp;nbsp; 'char':'TEXT',
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'inte':'LONG'} # dictionary to translate from your listed data types to ArcGIS data types. You'll have to add more.

with open(r'C:/junk/excel_test.csv', 'rb') as csvfile: # open CSV file
&amp;nbsp;&amp;nbsp;&amp;nbsp; reader = csv.reader(csvfile, dialect='excel') # make a CSV reader
&amp;nbsp;&amp;nbsp;&amp;nbsp; headers = reader.next() # skip header row
&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in reader: # read through rows
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if row[0] &amp;lt;&amp;gt; 'OBJECTID': # don't create OID field. Will be created automatically
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print fieldtypes[row[1][:4]] # convince yourself that it is using the dictionary properly
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddField_management(fc, row[0], fieldtypes[row[1][:4]]) # create field of appropriate data type, based on first 4 characters in CSV file&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 09:29:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187826#M10593</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2021-12-11T09:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Tool for generating Feature Class including field names/type...</title>
      <link>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187827#M10594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Darren-I've had more time to digest this and I had some simply syntax errors on the front end.&amp;nbsp; After I got those resolved it crashed out on me at the second to last line.&amp;nbsp; Any ideas on what i might change?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="codeimage.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/118576_codeimage.png" style="width: 620px; height: 242px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 14:20:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187827#M10594</guid>
      <dc:creator>TravisLathrop1</dc:creator>
      <dc:date>2015-07-23T14:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: Tool for generating Feature Class including field names/type...</title>
      <link>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187828#M10595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks like an indentation error you would need to set your print statements to be in your if statement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 14:23:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187828#M10595</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2015-07-23T14:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: Tool for generating Feature Class including field names/type...</title>
      <link>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187829#M10596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It runs but I get this error now....any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Traceback (most recent call last):&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; File "C:/Users/tlathrop/Desktop/TL GIS/EnterpriseGeoDatabase/TestScript.py", line 16, in &amp;lt;module&amp;gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print fieldtypes[row[1][:4]]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;KeyError: 'inte&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 14:30:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187829#M10596</guid>
      <dc:creator>TravisLathrop1</dc:creator>
      <dc:date>2015-07-23T14:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: Tool for generating Feature Class including field names/type...</title>
      <link>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187830#M10597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was being kind of lazy making the dictionary because I wasn't quite sure how your data looked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14376649149026394 jive_text_macro" data-renderedposition="50_8_912_16" jivemacro_uid="_14376649149026394"&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&lt;EM&gt;fieldtypes[row[1][:4]]&lt;/EM&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...means: take the first four letters of the value in row[1], find the dictionary key that matches that value, and return the value at that key in the dictionary. Since there is no such value in your dictionary, it returns an error. When I made the example dictionary, I shortened the dictionary keys to four letters ("integer" became "inte") so there would be matches.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 15:24:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187830#M10597</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-07-23T15:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: Tool for generating Feature Class including field names/type...</title>
      <link>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187831#M10598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I understand the dictionary (I think o_O). I think it loos correct it makes sense but I'm still getting errors.&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="finalcode.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/118662_finalcode.png" style="width: 620px; height: 259px;" /&gt;&lt;/P&gt;&lt;P&gt;Here is the error I get:&lt;IMG alt="errorcode.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/118664_errorcode.png" style="width: 620px; height: 76px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea what I need to change?&amp;nbsp; I appreciate your help too btw!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 16:16:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187831#M10598</guid>
      <dc:creator>TravisLathrop1</dc:creator>
      <dc:date>2015-07-23T16:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: Tool for generating Feature Class including field names/type...</title>
      <link>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187832#M10599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, this one's easy. Python is case sensitive - it should be &lt;A href="http://desktop.arcgis.com/en/desktop/latest/tools/data-management-toolbox/add-field.htm"&gt;AddField&lt;/A&gt;, not Addfield.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 16:22:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187832#M10599</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-07-23T16:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: Tool for generating Feature Class including field names/type...</title>
      <link>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187833#M10600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The script will run but its not generating the data the way I had hoped.&amp;nbsp; It doesn't look like any of the values in column A in the CSV file were added as column just the values for column B.&amp;nbsp; Here is what the attribute table for the new FC looks like after running the tool:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="FCStructure.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/118673_FCStructure.png" style="width: 620px; height: 138px;" /&gt;&lt;/P&gt;&lt;P&gt;I want the new FC to have columns based on the data in column A.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="FCColumns.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/118674_FCColumns.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;What do I need to change??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 17:36:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187833#M10600</guid>
      <dc:creator>TravisLathrop1</dc:creator>
      <dc:date>2015-07-23T17:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: Tool for generating Feature Class including field names/type...</title>
      <link>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187834#M10601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The arguments for AddField are, (in_table, field_name, field_type), in that order. Check syntax section &lt;A href="http://desktop.arcgis.com/en/desktop/latest/tools/data-management-toolbox/add-field.htm"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14376739687432407" data-renderedposition="50_8_912_16" jivemacro_uid="_14376739687432407"&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f6f6f6;"&gt;arcpy.AddField_management(fc, row[&lt;/SPAN&gt;&lt;SPAN class="number" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: green; background-color: #f6f6f6;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f6f6f6;"&gt;], fieldtypes[row[&lt;/SPAN&gt;&lt;SPAN class="number" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: green; background-color: #f6f6f6;"&gt;1&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f6f6f6;"&gt;][:&lt;/SPAN&gt;&lt;SPAN class="number" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: green; background-color: #f6f6f6;"&gt;4&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f6f6f6;"&gt;]])&lt;/SPAN&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f6f6f6;"&gt;fc = the input table&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f6f6f6;"&gt;row[0] = the field name (the first column in your spreadsheet. E.g. 'geodb_oid')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f6f6f6;"&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f6f6f6;"&gt;row[&lt;/SPAN&gt;&lt;SPAN class="number" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: green; background-color: #f6f6f6;"&gt;1&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f6f6f6;"&gt;][:&lt;/SPAN&gt;&lt;SPAN class="number" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: green; background-color: #f6f6f6;"&gt;4&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f6f6f6;"&gt;] = the first four characters of the second column in your spreadsheet (e.g. 'inte')&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6; color: #000000; font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f6f6f6;"&gt;fieldtypes[row[&lt;/SPAN&gt;&lt;SPAN class="number" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: green; background-color: #f6f6f6;"&gt;1&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f6f6f6;"&gt;][:&lt;/SPAN&gt;&lt;SPAN class="number" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: green; background-color: #f6f6f6;"&gt;4&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f6f6f6;"&gt;]] = the value associated with the key 'inte' (e.g. 'LONG')&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 17:52:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187834#M10601</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-07-23T17:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: Tool for generating Feature Class including field names/type...</title>
      <link>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187835#M10602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I created a small/quick/convenient model for myself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Model1.PNG" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/118676_Model1.PNG" style="width: 620px; height: 299px;" /&gt;&lt;/P&gt;&lt;P&gt;----&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Model2.PNG" class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/118677_Model2.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 18:32:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187835#M10602</guid>
      <dc:creator>AlexZhuk</dc:creator>
      <dc:date>2015-07-23T18:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Tool for generating Feature Class including field names/type...</title>
      <link>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187836#M10603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmmm. Is this in the right place?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 18:34:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187836#M10603</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-07-23T18:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Tool for generating Feature Class including field names/type...</title>
      <link>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187837#M10604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your help...almost have it now!&lt;BR /&gt;TL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 20:08:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/tool-for-generating-feature-class-including-field/m-p/187837#M10604</guid>
      <dc:creator>TravisLathrop1</dc:creator>
      <dc:date>2015-07-23T20:08:18Z</dc:date>
    </item>
  </channel>
</rss>

