<?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: Batch Field Extraction from a Point Feature Class: in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/batch-field-extraction-from-a-point-feature-class/m-p/664214#M9589</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jake!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It worked, although I am unearthing additional issues within the data.&amp;nbsp; For instance, 'no data' is represented as -999.&amp;nbsp; Is there a method to convert all -999 in the point storm surge dataset to NULL?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;M-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Aug 2014 16:18:47 GMT</pubDate>
    <dc:creator>MarkEnglish</dc:creator>
    <dc:date>2014-08-25T16:18:47Z</dc:date>
    <item>
      <title>Batch Field Extraction from a Point Feature Class:</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/batch-field-extraction-from-a-point-feature-class/m-p/664211#M9586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello:&amp;nbsp; I have a point dataset which has 20+ fields indicating different storm surge elevations.&amp;nbsp; For instance, one field indicates storm 1, and contains 200 water surface elevation records.&amp;nbsp; The second field indicates storm 2, with also 200 water surface records, and so on.&amp;nbsp; The returns for each storm are present on the same record/point, just different values.&amp;nbsp; I want to generate 20+ point feature classes, one for each storm by extracting each field into its own dataset.&amp;nbsp; Following this process, I'd like to run a batch process for each storm point file that generates a raster for each storm scenario.&amp;nbsp; I know how to do this manually, but it would take a lot of time considering the number of steps involved.&amp;nbsp; Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;-Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2014 11:42:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/batch-field-extraction-from-a-point-feature-class/m-p/664211#M9586</guid>
      <dc:creator>MarkEnglish</dc:creator>
      <dc:date>2014-08-20T11:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Field Extraction from a Point Feature Class:</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/batch-field-extraction-from-a-point-feature-class/m-p/664212#M9587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You wouldn't have to create a separate feature class for each field.&amp;nbsp; You could iterate through each field and create a raster using the &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//009z0000006m000000"&gt;IDW&lt;/A&gt; tool.&amp;nbsp; Below is an example that iterates through a point feature class called 'pt' and creates a File Geodatabase Raster Dataset using the IDW tool.&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_14085366819541286" jivemacro_uid="_14085366819541286"&gt;
&lt;P&gt;import arcpy&lt;/P&gt;
&lt;P&gt;arcpy.CheckOutExtension("spatial")&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;from arcpy import env&lt;/P&gt;
&lt;P&gt;from arcpy.sa import *&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;env.workspace = r"C:\temp\python\test.gdb"&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;fc = "pt"&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;for field in arcpy.ListFields(fc):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if field.name not in ('OBJECTID', "SHAPE"):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outIDW = Idw("pt", field.name, "2", "2", "VARIABLE 12")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outIDW.save("pt_" + field.name)&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2014 12:11:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/batch-field-extraction-from-a-point-feature-class/m-p/664212#M9587</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2014-08-20T12:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Field Extraction from a Point Feature Class:</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/batch-field-extraction-from-a-point-feature-class/m-p/664213#M9588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can specify the cell size (i.e. 10 Meters) by updating the 3rd parameter in the Idw function.&amp;nbsp; Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14089784543078865 jive_text_macro" jivemacro_uid="_14089784543078865"&gt;
&lt;P&gt;outIDW = Idw(&lt;SPAN class="string"&gt;"pt", field.name, &lt;SPAN class="string"&gt;"10"&lt;/SPAN&gt;, &lt;SPAN class="string"&gt;"2"&lt;/SPAN&gt;, &lt;SPAN class="string"&gt;"VARIABLE 12"&lt;/SPAN&gt;) &lt;/SPAN&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;SPAN class="string"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="string"&gt;You can see a description of each parameter from the below link:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="string"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="string"&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//009z0000006m000000" title="http://resources.arcgis.com/en/help/main/10.2/index.html#//009z0000006m000000"&gt;ArcGIS Help (10.2, 10.2.1, and 10.2.2)&lt;/A&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2014 14:54:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/batch-field-extraction-from-a-point-feature-class/m-p/664213#M9588</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2014-08-25T14:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Field Extraction from a Point Feature Class:</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/batch-field-extraction-from-a-point-feature-class/m-p/664214#M9589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jake!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It worked, although I am unearthing additional issues within the data.&amp;nbsp; For instance, 'no data' is represented as -999.&amp;nbsp; Is there a method to convert all -999 in the point storm surge dataset to NULL?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;M-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2014 16:18:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/batch-field-extraction-from-a-point-feature-class/m-p/664214#M9589</guid>
      <dc:creator>MarkEnglish</dc:creator>
      <dc:date>2014-08-25T16:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Field Extraction from a Point Feature Class:</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/batch-field-extraction-from-a-point-feature-class/m-p/664215#M9590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you can use the &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//009z00000007000000"&gt;Set Null &lt;/A&gt;tool to do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2014 17:24:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/batch-field-extraction-from-a-point-feature-class/m-p/664215#M9590</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2014-08-25T17:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Field Extraction from a Point Feature Class:</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/batch-field-extraction-from-a-point-feature-class/m-p/664216#M9591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, but that would have to be performed on all of the raster outputs.&amp;nbsp; Is there a way to locate all -999 records within a single point dataset and change them to NULL?&amp;nbsp; Or batch each field at a time?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2014 17:50:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/batch-field-extraction-from-a-point-feature-class/m-p/664216#M9591</guid>
      <dc:creator>MarkEnglish</dc:creator>
      <dc:date>2014-08-25T17:50:47Z</dc:date>
    </item>
  </channel>
</rss>

