<?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: Speeding up a large spatial join in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/speeding-up-a-large-spatial-join/m-p/560374#M31783</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you should be able to do this if you have a Spatial Analyst license available.&lt;/P&gt;&lt;P&gt;More details in the Help topic on "&lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//009z0000002t000000"&gt;Extract Values to Points (Spatial Analyst)&lt;/A&gt;"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Aug 2014 15:24:39 GMT</pubDate>
    <dc:creator>XanderBakker</dc:creator>
    <dc:date>2014-08-12T15:24:39Z</dc:date>
    <item>
      <title>Speeding up a large spatial join</title>
      <link>https://community.esri.com/t5/data-management-questions/speeding-up-a-large-spatial-join/m-p/560371#M31780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to join a layer of elevation points (~47 million of them for this given county) to a layer of features (~1700) that I want to know the elevation of. Is there a way to speed this process up or just generally make it less awful? My machine has 8gb of ram and 3+ ghz of processing power and it got through less than 1/6 of the points in about an hour. Do I just need to brute force it and let it run for a day?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Tom&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2014 12:26:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/speeding-up-a-large-spatial-join/m-p/560371#M31780</guid>
      <dc:creator>ThomasCaruso</dc:creator>
      <dc:date>2014-08-12T12:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: Speeding up a large spatial join</title>
      <link>https://community.esri.com/t5/data-management-questions/speeding-up-a-large-spatial-join/m-p/560372#M31781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wouldn't join those 47 million points with your 1700 features. For these types of analysis it is custom to convert your elevation points to a Digital Elevation Model (DEM). Use Spatial Analyst of 3D Analyst for this purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Depending the type of geometry of your features you can do various things:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;For polygons perform a zonal statistics (as table), using your polygons as zones and the DEM as value raster. This will yield statistics (min, max, mean, etc) for each polygon &lt;EM&gt;(Spatial Analyst required)&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;In case of points you can use the Extract Values to Points tool that will retrieve a single elevation for each point &lt;EM&gt;(Spatial Analyst required)&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;For lines I would probably convert them to raster using a unique identifier and do the Zonal Statistics &lt;EM&gt;(Spatial Analyst required)&lt;/EM&gt;. &lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case you don't have 3D Analyst and/or Spatial Analyst, select relevant features by a select by location, using a small buffer. Export that selection to a separate layer and perform the join...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards, Xander&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2014 12:39:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/speeding-up-a-large-spatial-join/m-p/560372#M31781</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2014-08-12T12:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: Speeding up a large spatial join</title>
      <link>https://community.esri.com/t5/data-management-questions/speeding-up-a-large-spatial-join/m-p/560373#M31782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Xander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I actually already have DEM's of the county in question. I am rather new to GIS and was unsure of how to go about this. I downloaded the DEM's online, converted them to raster and then did a raster to point shapefile. Currently I also have a full raster image (converted from the ~30 DEM's I downloaded and mosaic'd together) of the county. Can I perform the extract values to points on that raster image?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your advice,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2014 12:56:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/speeding-up-a-large-spatial-join/m-p/560373#M31782</guid>
      <dc:creator>ThomasCaruso</dc:creator>
      <dc:date>2014-08-12T12:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Speeding up a large spatial join</title>
      <link>https://community.esri.com/t5/data-management-questions/speeding-up-a-large-spatial-join/m-p/560374#M31783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you should be able to do this if you have a Spatial Analyst license available.&lt;/P&gt;&lt;P&gt;More details in the Help topic on "&lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//009z0000002t000000"&gt;Extract Values to Points (Spatial Analyst)&lt;/A&gt;"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2014 15:24:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/speeding-up-a-large-spatial-join/m-p/560374#M31783</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2014-08-12T15:24:39Z</dc:date>
    </item>
  </channel>
</rss>

