<?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: Python in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/python/m-p/1032809#M25249</link>
    <description>&lt;P&gt;&lt;SPAN&gt;I lacked understanding of the special join.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I got the answer I wanted.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm sorry and thank you very much.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 04 Mar 2021 11:41:35 GMT</pubDate>
    <dc:creator>KalSsin</dc:creator>
    <dc:date>2021-03-04T11:41:35Z</dc:date>
    <item>
      <title>Python</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python/m-p/1032365#M25238</link>
      <description>&lt;P&gt;Hi~~~&lt;/P&gt;&lt;P&gt;I want to fill in the Location field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I want to write the country name in "Europe_city" in a specific polygon.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Python Window, please~~~&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You~~~&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;import arcpy&lt;/P&gt;&lt;P&gt;arcpy.env.workspace = 'D:/Europe/Europe21.gdb'&lt;/P&gt;&lt;P&gt;feature_class = 'Europe_city'&lt;/P&gt;&lt;P&gt;feature_class = 'nation4'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gg.jpg" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/7398iF2925553F5A99FF5/image-size/large?v=v2&amp;amp;px=999" role="button" title="gg.jpg" alt="gg.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Mar 2021 11:52:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python/m-p/1032365#M25238</guid>
      <dc:creator>KalSsin</dc:creator>
      <dc:date>2021-03-03T11:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: Python</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python/m-p/1032367#M25239</link>
      <description>&lt;P&gt;&lt;SPAN&gt;What I'm trying to do is something else. It's hard to explain as an example, so I ask you a question on a European map.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Mar 2021 11:54:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python/m-p/1032367#M25239</guid>
      <dc:creator>KalSsin</dc:creator>
      <dc:date>2021-03-03T11:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Python</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python/m-p/1032378#M25240</link>
      <description>&lt;P&gt;I'm not sure this is a problem where Python is really the best way, unless you had some sort of existing table or dictionary where the cities were mapped against the country (I appreciate this is only an example you have provided for another problem).&lt;/P&gt;&lt;P&gt;I would suggest a Spatial Join to add a new field 'Country' or 'Location' to your cities FC, whereby if the Cities FC intersects a Country polygon, the name of that country is transferred from the Country FC to the Cities FC.&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/analysis/spatial-join.htm" target="_blank"&gt;Spatial Join (Analysis)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You would of-course need a Countries FC but that data is widely available.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Mar 2021 12:55:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python/m-p/1032378#M25240</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2021-03-03T12:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: Python</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python/m-p/1032399#M25244</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;However, it is a problem that cannot be solved with a special join.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What I'm doing is not the above.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It's just an example of Europe, which is easy to explain to find an answer.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Mar 2021 13:48:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python/m-p/1032399#M25244</guid>
      <dc:creator>KalSsin</dc:creator>
      <dc:date>2021-03-03T13:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: Python</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python/m-p/1032416#M25245</link>
      <description>&lt;P&gt;Probably best to attempt to explain the actual problem.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Mar 2021 14:39:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python/m-p/1032416#M25245</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2021-03-03T14:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: Python</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python/m-p/1032809#M25249</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I lacked understanding of the special join.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I got the answer I wanted.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm sorry and thank you very much.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Mar 2021 11:41:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python/m-p/1032809#M25249</guid>
      <dc:creator>KalSsin</dc:creator>
      <dc:date>2021-03-04T11:41:35Z</dc:date>
    </item>
  </channel>
</rss>

