<?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: ArcGIS Hub Data to fgdb in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-hub-data-to-fgdb/m-p/829106#M3096</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for the non-helpful comment, but I saw ArcGIS Hub and all I could think about was &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/angry.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Jun 2020 01:34:58 GMT</pubDate>
    <dc:creator>JoshuaBixby</dc:creator>
    <dc:date>2020-06-16T01:34:58Z</dc:date>
    <item>
      <title>ArcGIS Hub Data to fgdb</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-hub-data-to-fgdb/m-p/829105#M3095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to download data from the city's ArcGIS Hub with python and save it in a fgdb to then be loaded into sde. I have started with this tutorial -&amp;nbsp;&lt;A class="link-titled" href="https://hub.arcgis.com/pages/a0db1c6905934fb5a522137f0fec6c7b" title="https://hub.arcgis.com/pages/a0db1c6905934fb5a522137f0fec6c7b" rel="nofollow noopener noreferrer" target="_blank"&gt;ArcGIS Hub&lt;/A&gt;. While I can get the feature layer with python I am having a hard time understanding how to save it to a gdb. (I have used arcpy a fair bit but I am new to this arcgis API)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #cc7832;"&gt;from &lt;/SPAN&gt;arcgis.features &lt;SPAN style="color: #cc7832;"&gt;import &lt;/SPAN&gt;FeatureLayer

shoreliness_url = \
    &lt;SPAN style="color: #6a8759;"&gt;'https://services2.arcgis.com/Ce3DhLRthdwbHlfF/arcgis/rest/services/Shorelines_Hosted/FeatureServer/0'
&lt;/SPAN&gt;shoreliness = FeatureLayer(shoreliness_url)
# ???&lt;/PRE&gt;&lt;P&gt;Suggestions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:00:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-hub-data-to-fgdb/m-p/829105#M3095</guid>
      <dc:creator>forestknutsen1</dc:creator>
      <dc:date>2021-12-12T10:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Hub Data to fgdb</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-hub-data-to-fgdb/m-p/829106#M3096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for the non-helpful comment, but I saw ArcGIS Hub and all I could think about was &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/angry.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2020 01:34:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-hub-data-to-fgdb/m-p/829106#M3096</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2020-06-16T01:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Hub Data to fgdb</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-hub-data-to-fgdb/m-p/829107#M3097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;lol - you are not exactly&amp;nbsp;filling me with confidence....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2020 01:45:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-hub-data-to-fgdb/m-p/829107#M3097</guid>
      <dc:creator>forestknutsen1</dc:creator>
      <dc:date>2020-06-16T01:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Hub Data to fgdb</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-hub-data-to-fgdb/m-p/829108#M3098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;url &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"https://services2.arcgis.com/Ce3DhLRthdwbHlfF/arcgis/rest/services/Shorelines_Hosted/FeatureServer/0"&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcgis&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;features &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; FeatureLayer

shoreliness &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; FeatureLayer&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;url&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; f &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; shoreliness&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;properties&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;fields&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;f&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'name'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    
OBJECTID
PRJCTID
FID_MARINE_SELECT
SHORETYPE
MAPSOURCE
MAPACURACY
MAPDATE
QCSTATUS
NOTES
GLOBALID
MARINE_ID
HGUID
MAPAUTH
Shape__Length&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;/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;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;P&gt;&lt;/P&gt;&lt;P&gt;hmmmm something amiss with your setup?&lt;/P&gt;&lt;P&gt;ArcGIS Pro 2.6 Beta 1 (sorry, no 2.5)&lt;/P&gt;&lt;P&gt;arcgis module installed in the base installation (ie, no clone)&lt;/P&gt;&lt;P&gt;numpy, pandas and the rest are already installed.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't install geopandas, so I can't help you with the geometry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:00:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-hub-data-to-fgdb/m-p/829108#M3098</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-12-12T10:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Hub Data to fgdb</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-hub-data-to-fgdb/m-p/829109#M3099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My issues are with the back-end configuration and management for organizations, particularly around caching.&amp;nbsp; I won't get into the details here, but Hub had a perfectly workable, user-defined/initiated caching scheme that Esri threw out the window a while back because, well, I don't know exactly.&amp;nbsp; Every "explanation" I have heard simply becomes white noise once I get a sense the product team think they know my needs better than myself.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2020 02:00:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-hub-data-to-fgdb/m-p/829109#M3099</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2020-06-16T02:00:41Z</dc:date>
    </item>
  </channel>
</rss>

