<?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: Can you access feature layers without a map? If not, can you delete a map from a project or create a temporary map? in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/can-you-access-feature-layers-without-a-map-if-not/m-p/1091464#M7062</link>
    <description>&lt;P&gt;Hi...did you ever find a solution to this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm finding the same odd issue that isn't quite understood when trying to explain. I have an old .lyr file that was saved from a SQL server query (Query Layer).&amp;nbsp; I have since converted that to a lyrx file and I just want to use that lyrx file to search through the data...without adding it to a map.&amp;nbsp; In ArcObjects it was simple to get a FeatureLayer loaded from a lyr file.&amp;nbsp; Not only that, any set definition queries came along with it so you didn't have to wire that part up when searching the 'raw' feature class underlying the FeatureLayer.&lt;/P&gt;&lt;P&gt;Any ideas would be great!&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Mon, 23 Aug 2021 21:33:51 GMT</pubDate>
    <dc:creator>MichaelSnook</dc:creator>
    <dc:date>2021-08-23T21:33:51Z</dc:date>
    <item>
      <title>Can you access feature layers without a map? If not, can you delete a map from a project or create a temporary map?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/can-you-access-feature-layers-without-a-map-if-not/m-p/881578#M5689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to access the attributes from various feature classes and, to the best of my knowledge, you can only do this through a feature layer loaded into a map. I am currently trying to create a map object, run the needed processes, then delete that map object. Is there a way to do this "behind the scenes" or without having an active map? I cannot find anything on being able to delete that map object.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Aug 2019 20:55:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/can-you-access-feature-layers-without-a-map-if-not/m-p/881578#M5689</guid>
      <dc:creator>ufshall</dc:creator>
      <dc:date>2019-08-02T20:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: Can you access feature layers without a map? If not, can you delete a map from a project or create a temporary map?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/can-you-access-feature-layers-without-a-map-if-not/m-p/881579#M5690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Scott,&lt;/P&gt;&lt;P&gt;you don't necessarily have to load the feature class into a map. Take a look at this code snippet if you just want to interact with the feature class and don't need to render it.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/esri/arcgis-pro-sdk/wiki/ProSnippets-Geodatabase#opening-datasets-from-geodatabase"&gt;https://github.com/esri/arcgis-pro-sdk/wiki/ProSnippets-Geodatabase#opening-datasets-from-geodatabase&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Aug 2019 00:29:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/can-you-access-feature-layers-without-a-map-if-not/m-p/881579#M5690</guid>
      <dc:creator>ThomasEmge</dc:creator>
      <dc:date>2019-08-03T00:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Can you access feature layers without a map? If not, can you delete a map from a project or create a temporary map?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/can-you-access-feature-layers-without-a-map-if-not/m-p/881580#M5691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But to access the attributes of a feature class you have to use that class as a feature layer in a map and that feature layer is then loaded into an Inspector. Can you use a feature layer without a map? Or be able to delete a map after it is used as an object purely to load a feature layer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Aug 2019 17:42:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/can-you-access-feature-layers-without-a-map-if-not/m-p/881580#M5691</guid>
      <dc:creator>ufshall</dc:creator>
      <dc:date>2019-08-03T17:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: Can you access feature layers without a map? If not, can you delete a map from a project or create a temporary map?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/can-you-access-feature-layers-without-a-map-if-not/m-p/881581#M5692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Scott&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can query, search and get all values from FeatureClass, no need to make a FeatureLayer.&lt;/P&gt;&lt;P&gt;here is one example:&amp;nbsp;&lt;A href="https://github.com/esri/arcgis-pro-sdk/wiki/ProSnippets-Geodatabase#searching-a-featureclass-using-spatialqueryfilter"&gt;https://github.com/esri/arcgis-pro-sdk/wiki/ProSnippets-Geodatabase#searching-a-featureclass-using-spatialqueryfilter&lt;/A&gt;&amp;nbsp;but there are many more in the same page&lt;/P&gt;&lt;P&gt;Have Fun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Aug 2019 04:47:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/can-you-access-feature-layers-without-a-map-if-not/m-p/881581#M5692</guid>
      <dc:creator>ModyBuchbinder</dc:creator>
      <dc:date>2019-08-04T04:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Can you access feature layers without a map? If not, can you delete a map from a project or create a temporary map?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/can-you-access-feature-layers-without-a-map-if-not/m-p/881582#M5693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That method does not allow you to get to the attribute data associated with the feature. According to the SDK, that can only be done through an Inspector() loaded with a feature layer, &lt;A class="link-titled" href="https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Editing#feature-inspector-and-working-with-attributes" title="https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Editing#feature-inspector-and-working-with-attributes"&gt;ProConcepts Editing · Esri/arcgis-pro-sdk Wiki · GitHub&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2019 13:09:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/can-you-access-feature-layers-without-a-map-if-not/m-p/881582#M5693</guid>
      <dc:creator>ufshall</dc:creator>
      <dc:date>2019-08-06T13:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: Can you access feature layers without a map? If not, can you delete a map from a project or create a temporary map?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/can-you-access-feature-layers-without-a-map-if-not/m-p/881583#M5694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Scott,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you fetch an individual feature, you can certainly view and edit the attribute data. &amp;nbsp;Here is an example showing how to modify a row:&amp;nbsp;&lt;A class="link-titled" href="https://github.com/esri/arcgis-pro-sdk/wiki/ProSnippets-Geodatabase#modifying-a-row" title="https://github.com/esri/arcgis-pro-sdk/wiki/ProSnippets-Geodatabase#modifying-a-row"&gt;ProSnippets Geodatabase · Esri/arcgis-pro-sdk Wiki · GitHub&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--Rich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2019 15:18:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/can-you-access-feature-layers-without-a-map-if-not/m-p/881583#M5694</guid>
      <dc:creator>RichRuh</dc:creator>
      <dc:date>2019-08-06T15:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: Can you access feature layers without a map? If not, can you delete a map from a project or create a temporary map?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/can-you-access-feature-layers-without-a-map-if-not/m-p/1091464#M7062</link>
      <description>&lt;P&gt;Hi...did you ever find a solution to this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm finding the same odd issue that isn't quite understood when trying to explain. I have an old .lyr file that was saved from a SQL server query (Query Layer).&amp;nbsp; I have since converted that to a lyrx file and I just want to use that lyrx file to search through the data...without adding it to a map.&amp;nbsp; In ArcObjects it was simple to get a FeatureLayer loaded from a lyr file.&amp;nbsp; Not only that, any set definition queries came along with it so you didn't have to wire that part up when searching the 'raw' feature class underlying the FeatureLayer.&lt;/P&gt;&lt;P&gt;Any ideas would be great!&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 23 Aug 2021 21:33:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/can-you-access-feature-layers-without-a-map-if-not/m-p/1091464#M7062</guid>
      <dc:creator>MichaelSnook</dc:creator>
      <dc:date>2021-08-23T21:33:51Z</dc:date>
    </item>
  </channel>
</rss>

