<?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: Interactively Selecting Features as a Model Parameter in Model Builder in ModelBuilder Questions</title>
    <link>https://community.esri.com/t5/modelbuilder-questions/interactively-selecting-features-as-a-model/m-p/841882#M2328</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Once a geoprocessing tool starts, it is not normally interactive. Interactive tasks are normally programmed with .NET or Python plugins, not with the geoprocessing environment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Model Builder, you could direct your user to do the selection before starting the tool, and use Get Count to make sure less than N features are selected before doing your processing. That could easily be done with Model Builder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could use a feature set to have the user draw a selection box before the tool runs and use Select By Location using that feature set, again followed by Get Count to check whether anything got selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is one place where Python scripting is needed instead of Model Builder: using Python scripting&amp;nbsp;you can use parameter validation so that the dialog will not let you click OK and give you a warning message unless you have less than a defined number of features selected in the input layer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 19 Aug 2017 01:11:35 GMT</pubDate>
    <dc:creator>curtvprice</dc:creator>
    <dc:date>2017-08-19T01:11:35Z</dc:date>
    <item>
      <title>Interactively Selecting Features as a Model Parameter in Model Builder</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/interactively-selecting-features-as-a-model/m-p/841879#M2325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I feel like I am either over thinking this or I am missing something. &amp;nbsp;What I would like to do is have the user pick an input layer (feature class), set the field to dissolve on, and then finally select the parcels interactively using a tool or thee tool "Select Features" from the standard toolbar. &amp;nbsp;Is this possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2017 20:58:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/interactively-selecting-features-as-a-model/m-p/841879#M2325</guid>
      <dc:creator>DavidBuehler</dc:creator>
      <dc:date>2017-08-17T20:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: Interactively Selecting Features as a Model Parameter in Model Builder</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/interactively-selecting-features-as-a-model/m-p/841880#M2326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have not tried this option, but it might do what you are looking for:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/10.3/analyze/modelbuilder/using-the-interactive-feature-and-record-input-con.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/analyze/modelbuilder/using-the-interactive-feature-and-record-input-con.htm"&gt;Using the interactive feature and record input controls—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris Donohue, GISP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2017 21:27:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/interactively-selecting-features-as-a-model/m-p/841880#M2326</guid>
      <dc:creator>ChrisDonohue__GISP</dc:creator>
      <dc:date>2017-08-17T21:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Interactively Selecting Features as a Model Parameter in Model Builder</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/interactively-selecting-features-as-a-model/m-p/841881#M2327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I saw that link too. &amp;nbsp;I am not sure it is possible for what I want to do. &amp;nbsp;I want to select what is already there from one of three different parcel sets, and I don't need to add anything. &amp;nbsp;The features already exist. &amp;nbsp;I just need the user to select them and feed the model. &amp;nbsp;I guess one what I know it works is use the Select Feature tool on the particular feature class/layer and then load that as the parameter value in the model. &amp;nbsp;I was hoping that you open the model, the model says, "Hey select me a layer and some parcels", then proceed. &amp;nbsp;I guess there is going to have to be a disconnect.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2017 21:46:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/interactively-selecting-features-as-a-model/m-p/841881#M2327</guid>
      <dc:creator>DavidBuehler</dc:creator>
      <dc:date>2017-08-17T21:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Interactively Selecting Features as a Model Parameter in Model Builder</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/interactively-selecting-features-as-a-model/m-p/841882#M2328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Once a geoprocessing tool starts, it is not normally interactive. Interactive tasks are normally programmed with .NET or Python plugins, not with the geoprocessing environment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Model Builder, you could direct your user to do the selection before starting the tool, and use Get Count to make sure less than N features are selected before doing your processing. That could easily be done with Model Builder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could use a feature set to have the user draw a selection box before the tool runs and use Select By Location using that feature set, again followed by Get Count to check whether anything got selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is one place where Python scripting is needed instead of Model Builder: using Python scripting&amp;nbsp;you can use parameter validation so that the dialog will not let you click OK and give you a warning message unless you have less than a defined number of features selected in the input layer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Aug 2017 01:11:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/interactively-selecting-features-as-a-model/m-p/841882#M2328</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2017-08-19T01:11:35Z</dc:date>
    </item>
  </channel>
</rss>

