<?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: Fill Attribute Table of a point shape from an Attribute Table of a polygon shape in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/fill-attribute-table-of-a-point-shape-from-an/m-p/633774#M9206</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here's an idea. There may be a tool that does this in one motion...&lt;/SPAN&gt;&lt;OL&gt;&lt;BR /&gt;&lt;LI&gt;Create a neighborhood field in the point layer.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Perform a spatial join between the polygon and the points.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Join the resulting point file with your data point file using the appropriate field.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Use field calculator to transfer the neighborhood value to your point layer.&lt;/LI&gt;&lt;BR /&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Apr 2013 17:53:26 GMT</pubDate>
    <dc:creator>MarkBoucher</dc:creator>
    <dc:date>2013-04-17T17:53:26Z</dc:date>
    <item>
      <title>Fill Attribute Table of a point shape from an Attribute Table of a polygon shape</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/fill-attribute-table-of-a-point-shape-from-an/m-p/633773#M9205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;First of all, sorry my bad English!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi, I need to fill an attribute table of a point shape with information from an attribute table of a polygon shape.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a shape of points and I need to fill a column of its attribute table with the name of the neighborhood it is located, I have other shape (polygon) with the neighborhoods and each polygon named on the attribute table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How can I automatically fill the attribute table of the first shape with values from the second shape?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I can´t do it manually because there are 200k points.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for your attention.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 14:31:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/fill-attribute-table-of-a-point-shape-from-an/m-p/633773#M9205</guid>
      <dc:creator>ThiagoVirgilio</dc:creator>
      <dc:date>2013-04-17T14:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: Fill Attribute Table of a point shape from an Attribute Table of a polygon shape</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/fill-attribute-table-of-a-point-shape-from-an/m-p/633774#M9206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here's an idea. There may be a tool that does this in one motion...&lt;/SPAN&gt;&lt;OL&gt;&lt;BR /&gt;&lt;LI&gt;Create a neighborhood field in the point layer.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Perform a spatial join between the polygon and the points.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Join the resulting point file with your data point file using the appropriate field.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Use field calculator to transfer the neighborhood value to your point layer.&lt;/LI&gt;&lt;BR /&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 17:53:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/fill-attribute-table-of-a-point-shape-from-an/m-p/633774#M9206</guid>
      <dc:creator>MarkBoucher</dc:creator>
      <dc:date>2013-04-17T17:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Fill Attribute Table of a point shape from an Attribute Table of a polygon shape</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/fill-attribute-table-of-a-point-shape-from-an/m-p/633775#M9207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;All you need to do is perform a spatial join.&amp;nbsp; When you join polygons to points, the points will get the attributes of the polygon it falls inside of or is closest to (your choice).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If there are a lot of fields in the polygons that you don't want transferred to the points, simply turn those fields off via the polygon properties &amp;gt; fields tab.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Steps:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Add both points and polygons to ArcMap.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Right click on points &amp;gt; Joins and Relates &amp;gt; Join&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Select "Join data from another layer based on spatial location" from the first dropdown.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Select your polygons as the layer to join to.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Specify output and run it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Eric&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 19:27:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/fill-attribute-table-of-a-point-shape-from-an/m-p/633775#M9207</guid>
      <dc:creator>EricRice</dc:creator>
      <dc:date>2013-04-17T19:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: Fill Attribute Table of a point shape from an Attribute Table of a polygon shape</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/fill-attribute-table-of-a-point-shape-from-an/m-p/633776#M9208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Eric - To get the values into his original points' table, doesn't he have to do my steps 3 and 4?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 19:49:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/fill-attribute-table-of-a-point-shape-from-an/m-p/633776#M9208</guid>
      <dc:creator>MarkBoucher</dc:creator>
      <dc:date>2013-04-17T19:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: Fill Attribute Table of a point shape from an Attribute Table of a polygon shape</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/fill-attribute-table-of-a-point-shape-from-an/m-p/633777#M9209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;People, thank you so much!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I didn't even know about the "Spatial Join".&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;And MBoucher21, when I do the Spatial Join a new temporary shape is created, so I just have to Export Data and create a new shape, saving it where I want.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you! &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 19:54:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/fill-attribute-table-of-a-point-shape-from-an/m-p/633777#M9209</guid>
      <dc:creator>ThiagoVirgilio</dc:creator>
      <dc:date>2013-04-17T19:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: Fill Attribute Table of a point shape from an Attribute Table of a polygon shape</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/fill-attribute-table-of-a-point-shape-from-an/m-p/633778#M9210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Eric - To get the values into his original points' table, doesn't he have to do my steps 3 and 4?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There isn't anything wrong with the workflow you provided since it was designed to keep/update the "original" point feature class.&amp;nbsp; However, the result of the Spatial Join would be the original point geometry and original attributes PLUS the desired attributes from the polygon layer.&amp;nbsp; Typically people discard/archive the original layer that lacks the necessary attributes and just move forward with the spatial join result which has everything.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Eric&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 14:58:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/fill-attribute-table-of-a-point-shape-from-an/m-p/633778#M9210</guid>
      <dc:creator>EricRice</dc:creator>
      <dc:date>2013-04-18T14:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: Fill Attribute Table of a point shape from an Attribute Table of a polygon shape</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/fill-attribute-table-of-a-point-shape-from-an/m-p/1511509#M12224</link>
      <description>&lt;P&gt;Did you got your answer?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 11:32:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/fill-attribute-table-of-a-point-shape-from-an/m-p/1511509#M12224</guid>
      <dc:creator>YashBanait</dc:creator>
      <dc:date>2024-07-29T11:32:11Z</dc:date>
    </item>
  </channel>
</rss>

