<?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: Feature layer doesn't show in search results in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/feature-layer-doesn-t-show-in-search-results/m-p/821726#M2828</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To search outside your org, set the outside_org parameter to True, otherwise the search is confined to your org:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;my_gis.content.search('title:Ekal',item_type='Feature Layer', &lt;STRONG&gt;outside_org=True&lt;/STRONG&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Jan 2017 03:28:00 GMT</pubDate>
    <dc:creator>RohitSingh2</dc:creator>
    <dc:date>2017-01-05T03:28:00Z</dc:date>
    <item>
      <title>Feature layer doesn't show in search results</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/feature-layer-doesn-t-show-in-search-results/m-p/821725#M2827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to search a feature layer and add it to my map object in jupyter notebook.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the layer I tried searching -&amp;nbsp;&lt;A class="link-titled" href="http://www.arcgis.com/sharing/rest/content/items/9f2fd655aa624b8080299196d841ae54/data" title="http://www.arcgis.com/sharing/rest/content/items/9f2fd655aa624b8080299196d841ae54/data"&gt;http://www.arcgis.com/sharing/rest/content/items/9f2fd655aa624b8080299196d841ae54/data&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my_gis.content.search('title:Ekal',item_type='Feature Layer') returns empty list.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I missing something?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried searching&amp;nbsp;with full title -&amp;nbsp;my_gis.content.search('title:Ekal AP Bhag layer',item_type='Feature Layer')&lt;/P&gt;&lt;P&gt;Still no results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2017 18:34:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/feature-layer-doesn-t-show-in-search-results/m-p/821725#M2827</guid>
      <dc:creator>jp</dc:creator>
      <dc:date>2017-01-04T18:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layer doesn't show in search results</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/feature-layer-doesn-t-show-in-search-results/m-p/821726#M2828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To search outside your org, set the outside_org parameter to True, otherwise the search is confined to your org:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;my_gis.content.search('title:Ekal',item_type='Feature Layer', &lt;STRONG&gt;outside_org=True&lt;/STRONG&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2017 03:28:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/feature-layer-doesn-t-show-in-search-results/m-p/821726#M2828</guid>
      <dc:creator>RohitSingh2</dc:creator>
      <dc:date>2017-01-05T03:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layer doesn't show in search results</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/feature-layer-doesn-t-show-in-search-results/m-p/821727#M2829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The item type&amp;nbsp;for this item is Feature Collection, hence you need to search for item_type='Feature Collection', not 'Feature Layer'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, if you know the id, you can use gis.content.get('9f2fd655aa624b8080299196d841ae54') to get this item.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2017 03:54:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/feature-layer-doesn-t-show-in-search-results/m-p/821727#M2829</guid>
      <dc:creator>RohitSingh2</dc:creator>
      <dc:date>2017-01-10T03:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layer doesn't show in search results</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/feature-layer-doesn-t-show-in-search-results/m-p/821728#M2830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, that worked.&lt;/P&gt;&lt;P&gt;I was able to&amp;nbsp;search without item_type too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mygis.content.search('title:Bhag')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2017 15:04:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/feature-layer-doesn-t-show-in-search-results/m-p/821728#M2830</guid>
      <dc:creator>jp</dc:creator>
      <dc:date>2017-01-10T15:04:57Z</dc:date>
    </item>
  </channel>
</rss>

