<?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: help turning input into user input in arcgis in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407920#M32132</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;... and it would be good to mention the units for mass and velocity in the interface&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Nov 2017 21:33:15 GMT</pubDate>
    <dc:creator>XanderBakker</dc:creator>
    <dc:date>2017-11-10T21:33:15Z</dc:date>
    <item>
      <title>help turning input into user input in arcgis</title>
      <link>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407915#M32127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;velocity = float(input("Input asteroid velocity: "))&lt;BR /&gt;mass = float(input("Input asteroid mass: "))&lt;BR /&gt;ice = float(1.8)&lt;BR /&gt;iron = float(7.3)&lt;BR /&gt;rock = float(2.3)&lt;BR /&gt;comp = input("input 1 for ice, 2 for iron, or 3 for rock: ")&lt;BR /&gt;grav = float(0.16667)&lt;BR /&gt;const = float(0.007)&lt;BR /&gt;colrt = float(1.3)&lt;BR /&gt;soil = float(2.65)&lt;BR /&gt;power = (int(1)/float(3.4))&lt;BR /&gt;vel = (velocity * 1000)&lt;BR /&gt;kilotons = (4184000000000)&lt;BR /&gt;if comp == 1:&lt;BR /&gt; comp = ice&lt;BR /&gt;elif comp == 2:&lt;BR /&gt; comp = iron&lt;BR /&gt;elif comp == 3:&lt;BR /&gt; comp = rock&lt;BR /&gt;kinetic = (0.5 * mass * (vel * vel))&lt;BR /&gt;energy = (kinetic * kilotons)&lt;BR /&gt;part1 = (const * colrt * grav)&lt;BR /&gt;part2 = (comp / soil)&lt;BR /&gt;part3 = (energy * part2)&lt;BR /&gt;part4 = (part3 ** power)&lt;BR /&gt;crater = (part1 * part4)&lt;BR /&gt;final = (crater / int(1000))&lt;BR /&gt;print(final)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry for the length but i'm trying to take the velocity, mass, and comp and turn them into user input parameters that will be run through the equation and then have it spit out a diameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my problem is trying to set up the user input part to work with my script. i eventually want to take the script add it to model builder and do more with the output of this script.&amp;nbsp;&lt;/P&gt;&lt;P&gt;any help would be greatly accepted&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 20:28:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407915#M32127</guid>
      <dc:creator>bradbrewer</dc:creator>
      <dc:date>2017-11-10T20:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: help turning input into user input in arcgis</title>
      <link>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407916#M32128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please read the following&amp;nbsp;page:&amp;nbsp;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/10.3/analyze/creating-tools/setting-script-tool-parameters.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/analyze/creating-tools/setting-script-tool-parameters.htm"&gt;Setting script tool parameters—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will show you how to create a script tool with parameters that can be used in ModelBuilder&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 20:36:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407916#M32128</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2017-11-10T20:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: help turning input into user input in arcgis</title>
      <link>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407917#M32129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i can set up the parameters just fine but i cant seem to get them to run in my script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 20:38:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407917#M32129</guid>
      <dc:creator>bradbrewer</dc:creator>
      <dc:date>2017-11-10T20:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: help turning input into user input in arcgis</title>
      <link>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407918#M32130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you check to see the type of object that is returned by&amp;nbsp; 'input' in python? &amp;nbsp;&lt;/P&gt;&lt;P&gt;Have your reported the errors that your script returns?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 21:05:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407918#M32130</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-11-10T21:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: help turning input into user input in arcgis</title>
      <link>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407919#M32131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would have been good to read the help since it mentions exactly what you should do, but ok here goes a more compact explanation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create a new toolbox or use an existing one and add a script:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/383300_pastedImage_1.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will have to add the existing Python script (see further down below):&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/383301_pastedImage_2.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what you configure as parameters:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/383302_pastedImage_3.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the lower part the Filter "Value List" will contain the list of materials:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-4" src="https://community.esri.com/legacyfs/online/383303_pastedImage_4.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 4th parameters is the output and should have that "direction":&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-5 jive-image" src="https://community.esri.com/legacyfs/online/383304_pastedImage_5.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you execute the tool you can enter all the parameters:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-6 jive-image" src="https://community.esri.com/legacyfs/online/383305_pastedImage_6.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the result will be:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-7 jive-image" src="https://community.esri.com/legacyfs/online/383306_pastedImage_7.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you load the tool in modelbuilder (simply drag and drop) you will see that you can use it there:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-8" src="https://community.esri.com/legacyfs/online/383307_pastedImage_8.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Python script:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;def&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;main&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy

&amp;nbsp;&amp;nbsp;&amp;nbsp; velocity &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GetParameter&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; mass &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GetParameter&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; component &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GetParameterAsText&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp; dct_mat &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'ice'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1.8&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'iron'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;7.3&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'rock'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2.3&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; comp &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; dct_mat&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;component&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; grav &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0.16667&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; const &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0.007&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; colrt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1.3&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; soil &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2.65&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; power &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1.0&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;3.4&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; vel &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; velocity &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1000.0&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; kilotons &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;4184000000000.0&lt;/SPAN&gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp; kinetic &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0.5&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; mass &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; vel&lt;SPAN class="operator token"&gt;**&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; energy &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;kinetic &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; kilotons&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; part1 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;const &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; colrt &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; grav&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; part2 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;comp &lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt; soil&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; part3 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;energy &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; part2&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; part4 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;part3&lt;SPAN class="operator token"&gt;**&lt;/SPAN&gt;power&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; crater &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;part1 &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; part4&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; final &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;crater &lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt; int&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1000&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SetParameter&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;3&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; final&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;AddMessage&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Final: {}"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;final&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; __name__ &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'__main__'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; main&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&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;/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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:33:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407919#M32131</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T18:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: help turning input into user input in arcgis</title>
      <link>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407920#M32132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;... and it would be good to mention the units for mass and velocity in the interface&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 21:33:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407920#M32132</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2017-11-10T21:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: help turning input into user input in arcgis</title>
      <link>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407921#M32133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Love the folder title &lt;A href="https://community.esri.com/people/xander_bakker"&gt;xander_bakker&lt;/A&gt;‌.. but where is the map? &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 21:34:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407921#M32133</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-11-10T21:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: help turning input into user input in arcgis</title>
      <link>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407922#M32134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is an extremely big help thank you so much. this is my first time trying to bring python to arcgis.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 21:47:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407922#M32134</guid>
      <dc:creator>bradbrewer</dc:creator>
      <dc:date>2017-11-10T21:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: help turning input into user input in arcgis</title>
      <link>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407923#M32135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brad... you have some catching up to do... the &lt;A _jive_internal="true" href="https://community.esri.com/blogs/dan_patterson/2016/05/09/the-links"&gt;&lt;STRONG&gt;Py links ....&lt;/STRONG&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 21:50:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407923#M32135</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-11-10T21:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: help turning input into user input in arcgis</title>
      <link>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407924#M32136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i'm a student at Illinois state and none of my professors know anything about python or how it works with arcgis. Thanks for the links i will be sure to start looking into them.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 21:53:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407924#M32136</guid>
      <dc:creator>bradbrewer</dc:creator>
      <dc:date>2017-11-10T21:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: help turning input into user input in arcgis</title>
      <link>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407925#M32137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sadly... only a few of my students know about python or how it works with ArcGIS. &amp;nbsp; &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 21:56:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407925#M32137</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-11-10T21:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: help turning input into user input in arcgis</title>
      <link>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407926#M32138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i wish we had a class that focused on using python to create models in arcgis. I think i may propose it to our department though so that other students don't get stuck like i did.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 22:06:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407926#M32138</guid>
      <dc:creator>bradbrewer</dc:creator>
      <dc:date>2017-11-10T22:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: help turning input into user input in arcgis</title>
      <link>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407927#M32139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;About the folder title, I thought let´s keep it small...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 22:14:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407927#M32139</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2017-11-10T22:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: help turning input into user input in arcgis</title>
      <link>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407928#M32140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That would be great! Hope they will accept it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 22:15:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407928#M32140</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2017-11-10T22:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: help turning input into user input in arcgis</title>
      <link>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407929#M32141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might get a kick out of a couple of my blog posts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.esri.com/blogs/dan_patterson/2016/08/31/you-are-not-allowed-to-use-modelbuilder-when-instructors-need-to-get-smarter"&gt;you-are-not-allowed-to-use-modelbuilder-when-instructors-need-to-get-smarter&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.esri.com/blogs/dan_patterson/2016/08/31/you-are-not-allowed-to-use-geoprocessing-results-the-students-get-smarter"&gt;you-are-not-allowed-to-use-geoprocessing-results-the-students-get-smarter&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 22:19:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-turning-input-into-user-input-in-arcgis/m-p/407929#M32141</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-11-10T22:19:37Z</dc:date>
    </item>
  </channel>
</rss>

