<?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 Jupyter Lab spatial.plot local gdb multiple feature classes in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/jupyter-lab-spatial-plot-local-gdb-multiple/m-p/860479#M4168</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Fellow GISers,&lt;/P&gt;&lt;P&gt;I have created a simple spatial.plot in Jupyter&amp;nbsp;Lab notebook&amp;nbsp;of a single local feature class.&amp;nbsp; See image below for code and output.&amp;nbsp; What I'm struggling with is adding another feature class to the same output (same map widget).&amp;nbsp; I would prefer to keep it simple like below and not open a connection to ArcGIS online, especially since my feature classes are local.&amp;nbsp; Any ideas?&amp;nbsp; Thank you.&lt;/P&gt;&lt;P&gt;Tyler&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/510695_spatial.plot.JPG" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Oct 2020 18:42:39 GMT</pubDate>
    <dc:creator>TylerTownes</dc:creator>
    <dc:date>2020-10-09T18:42:39Z</dc:date>
    <item>
      <title>Jupyter Lab spatial.plot local gdb multiple feature classes</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/jupyter-lab-spatial-plot-local-gdb-multiple/m-p/860479#M4168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Fellow GISers,&lt;/P&gt;&lt;P&gt;I have created a simple spatial.plot in Jupyter&amp;nbsp;Lab notebook&amp;nbsp;of a single local feature class.&amp;nbsp; See image below for code and output.&amp;nbsp; What I'm struggling with is adding another feature class to the same output (same map widget).&amp;nbsp; I would prefer to keep it simple like below and not open a connection to ArcGIS online, especially since my feature classes are local.&amp;nbsp; Any ideas?&amp;nbsp; Thank you.&lt;/P&gt;&lt;P&gt;Tyler&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/510695_spatial.plot.JPG" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Oct 2020 18:42:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/jupyter-lab-spatial-plot-local-gdb-multiple/m-p/860479#M4168</guid>
      <dc:creator>TylerTownes</dc:creator>
      <dc:date>2020-10-09T18:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: Jupyter Lab spatial.plot local gdb multiple feature classes</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/jupyter-lab-spatial-plot-local-gdb-multiple/m-p/860480#M4169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/400376" target="_blank"&gt;Tyler Townes&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;you can create another spatial dataframe and plot it to the same map widget:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;df1 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; pd&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;DataFrame&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;spatial&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;from_featureclass&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;path to feature class1&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
df2 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; pd&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;DataFrame&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;spatial&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;from_featureclass&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;path to feature class2&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

mp &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; gis&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;map&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'area of interest'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
mp

df1&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;spatial&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;plot&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;map_widget &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; mp&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; renderer_type &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'u'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; col &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; xxxx&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;‍‍‍
df2&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;spatial&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;plot&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;map_widget &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; mp&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; renderer_type &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'u'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; col &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; xxxx&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:40:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/jupyter-lab-spatial-plot-local-gdb-multiple/m-p/860480#M4169</guid>
      <dc:creator>MehdiPira1</dc:creator>
      <dc:date>2021-12-12T10:40:10Z</dc:date>
    </item>
  </channel>
</rss>

