<?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: Matching regions across two shapefiles in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/matching-regions-across-two-shapefiles/m-p/463582#M15592</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The inconsistency in boundaries from different data sources may exist, even when the datasets are in the same coordinate system. So, instead of using the county polygons, you can try to use points that represent the polygons:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Use Feature To Point tool (Data Management toolbox - Features toolset) with the "Inside" option to get county_points from county_polygons. Each point carrries the county_polygons FID and attributes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Use Spatial Join tool to find INTERSECT matches between county_points and the division_polygons. Now the spatialJoined_county_points have division polygon attributes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Use Join Field to join county_polygons with the spatialJoined_county_points via the county_polygons FID to transfer the division attributes to county_polygons.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 May 2012 21:16:47 GMT</pubDate>
    <dc:creator>DanLee</dc:creator>
    <dc:date>2012-05-08T21:16:47Z</dc:date>
    <item>
      <title>Matching regions across two shapefiles</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/matching-regions-across-two-shapefiles/m-p/463579#M15589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have two shapefiles that I'm working with - one of US counties and one of US climate divisions (which are subsets of US states). I would like to match each county to the climate division that it is located in. The only common variable that the two shapefiles contain is "state". &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not sure which tool I should use to achieve this. I know I need to match counties to divisions based on geographic coordinates alone, but I have no idea how to do that. Any suggestions would be appreciated!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2012 21:16:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/matching-regions-across-two-shapefiles/m-p/463579#M15589</guid>
      <dc:creator>TatyanaDeryugina1</dc:creator>
      <dc:date>2012-05-07T21:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: Matching regions across two shapefiles</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/matching-regions-across-two-shapefiles/m-p/463580#M15590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can try Spatial Join tool (Analysis toolbox - Overlay toolset) with the INTERSECT match option.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2012 22:39:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/matching-regions-across-two-shapefiles/m-p/463580#M15590</guid>
      <dc:creator>DanLee</dc:creator>
      <dc:date>2012-05-07T22:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: Matching regions across two shapefiles</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/matching-regions-across-two-shapefiles/m-p/463581#M15591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you, Dan! That almost worked. My .shp files seem to be in different spatial coordinates (one is GSC_North_American_1983, the other is GSC_WGS_1984). I tried a few transformations, but there doesn't appear to be an exact one. As a result, some counties get matched to multiple divisions (I allowed, "one-to-many" match) because their borders spill over a tiny bit. I've tried "one-to-one" matching and that seems to work, but I'm not sure how it chooses which division to match to - would it be the one that matches best (that would be ideal)?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2012 20:49:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/matching-regions-across-two-shapefiles/m-p/463581#M15591</guid>
      <dc:creator>TatyanaDeryugina1</dc:creator>
      <dc:date>2012-05-08T20:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Matching regions across two shapefiles</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/matching-regions-across-two-shapefiles/m-p/463582#M15592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The inconsistency in boundaries from different data sources may exist, even when the datasets are in the same coordinate system. So, instead of using the county polygons, you can try to use points that represent the polygons:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Use Feature To Point tool (Data Management toolbox - Features toolset) with the "Inside" option to get county_points from county_polygons. Each point carrries the county_polygons FID and attributes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Use Spatial Join tool to find INTERSECT matches between county_points and the division_polygons. Now the spatialJoined_county_points have division polygon attributes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Use Join Field to join county_polygons with the spatialJoined_county_points via the county_polygons FID to transfer the division attributes to county_polygons.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2012 21:16:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/matching-regions-across-two-shapefiles/m-p/463582#M15592</guid>
      <dc:creator>DanLee</dc:creator>
      <dc:date>2012-05-08T21:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: Matching regions across two shapefiles</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/matching-regions-across-two-shapefiles/m-p/463583#M15593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That works perfectly, thank you!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2012 13:57:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/matching-regions-across-two-shapefiles/m-p/463583#M15593</guid>
      <dc:creator>TatyanaDeryugina1</dc:creator>
      <dc:date>2012-05-09T13:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: Matching regions across two shapefiles</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/matching-regions-across-two-shapefiles/m-p/463584#M15594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You are welcome! I am glad it worked for you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2012 16:03:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/matching-regions-across-two-shapefiles/m-p/463584#M15594</guid>
      <dc:creator>DanLee</dc:creator>
      <dc:date>2012-05-09T16:03:02Z</dc:date>
    </item>
  </channel>
</rss>

