<?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: Extract data to multipoint in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/extract-data-to-multipoint/m-p/4305#M68</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Is there a way to specify which column you want to extract from your Raster layer? &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm assuming you're referring to the Extract Multi-Values To Point tool.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think by far the easiest way to do this is extract by the VALUE and then use the Join Field tool to copy over the field(s) you want from the input raster table. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Another option is to use the Sample tool inside the Raster Calculator tool. This allows you to use the Lookup tool to get those values for the inputs. This will probably take longer than the first approach.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;samps = Sample([Lookup("grid1","field1"), Lookup("grid1","field2")], &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "samp_points", "out_tbl")&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I discourage people from using raster attribute tables - there are both performance and data design reasons for this. Spatially complex data and attribute lookups can slow down overlays and complicate processing. Map algebra is much easier to read and write, and more powerful when the raster layers are just simple value grids with no attributes except VALUE and COUNT. If you need attributes, you can always join them back in when needed.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Jul 2013 18:04:11 GMT</pubDate>
    <dc:creator>curtvprice</dc:creator>
    <dc:date>2013-07-01T18:04:11Z</dc:date>
    <item>
      <title>Extract data to multipoint</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/extract-data-to-multipoint/m-p/4304#M67</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is there a way to specify which column you want to extract from your Raster layer? Currently it's just adding pixel values to my points which is pretty much useless? Yet if I extract to points individually, I can get multiple columns but for some raster files it just creates empty columns or half sentences or just random symbols.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help would be gratefully received.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jul 2013 13:54:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/extract-data-to-multipoint/m-p/4304#M67</guid>
      <dc:creator>CatherineThompson</dc:creator>
      <dc:date>2013-07-01T13:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: Extract data to multipoint</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/extract-data-to-multipoint/m-p/4305#M68</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Is there a way to specify which column you want to extract from your Raster layer? &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm assuming you're referring to the Extract Multi-Values To Point tool.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think by far the easiest way to do this is extract by the VALUE and then use the Join Field tool to copy over the field(s) you want from the input raster table. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Another option is to use the Sample tool inside the Raster Calculator tool. This allows you to use the Lookup tool to get those values for the inputs. This will probably take longer than the first approach.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;samps = Sample([Lookup("grid1","field1"), Lookup("grid1","field2")], &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "samp_points", "out_tbl")&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I discourage people from using raster attribute tables - there are both performance and data design reasons for this. Spatially complex data and attribute lookups can slow down overlays and complicate processing. Map algebra is much easier to read and write, and more powerful when the raster layers are just simple value grids with no attributes except VALUE and COUNT. If you need attributes, you can always join them back in when needed.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jul 2013 18:04:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/extract-data-to-multipoint/m-p/4305#M68</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2013-07-01T18:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: Extract data to multipoint</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/extract-data-to-multipoint/m-p/4306#M69</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hurrah! The Add Join function has totally solved my problems. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; Many thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So in this instance, I had created a number of rasters for each useful field from a multi field shape file so I could extract those values to a point. Is this a horribly crude way of doing this? I'm sure that there must be a way to extract the data for different fields from the original shape file, but I am not familiar with it? Maybe you'll be able to help me?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in anticipation.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jul 2013 11:48:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/extract-data-to-multipoint/m-p/4306#M69</guid>
      <dc:creator>CatherineThompson</dc:creator>
      <dc:date>2013-07-02T11:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: Extract data to multipoint</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/extract-data-to-multipoint/m-p/4307#M70</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&amp;nbsp; I'm sure that there must be a way to extract the data for different fields from the original shape file, but I am not familiar with it?&amp;nbsp; &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Either Join by Location or Identity (points against polygons) should create a new dataset with all the fields from the polygons added to the point input. In this case raster may not be faster.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jul 2013 17:19:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/extract-data-to-multipoint/m-p/4307#M70</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2013-07-02T17:19:22Z</dc:date>
    </item>
  </channel>
</rss>

