<?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: Human Movement in Spatial Data Science Questions</title>
    <link>https://community.esri.com/t5/spatial-data-science-questions/human-movement/m-p/627580#M1418</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Darren may be on to something... try to see your regional settings and look for the 'decimal_point' separator option.&amp;nbsp; In this example, you will see that a period is used in Canada&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; import locale
&amp;gt;&amp;gt;&amp;gt; loc = locale.getlocale()
&amp;gt;&amp;gt;&amp;gt; loc
(None, None)
&amp;gt;&amp;gt;&amp;gt; locale.localeconv()
{'mon_thousands_sep': '', 'mon_grouping': [], 'decimal_point': '.', 'p_sep_by_space': 127, 'int_curr_symbol': '', 'n_cs_precedes': 127, 'positive_sign': '', 'p_sign_posn': 127, 'n_sep_by_space': 127, 'p_cs_precedes': 127, 'thousands_sep': '', 'negative_sign': '', 'frac_digits': 127, 'n_sign_posn': 127, 'currency_symbol': '', 'mon_decimal_point': '', 'int_frac_digits': 127, 'grouping': []}&lt;/PRE&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 02:44:08 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2021-12-12T02:44:08Z</dc:date>
    <item>
      <title>Human Movement</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/human-movement/m-p/627577#M1415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can someone help me out? I'm trying to use &lt;SPAN style="color: #3d3d3d;"&gt;&lt;STRONG&gt;Distributive Flow Lines Tool&lt;/STRONG&gt;&lt;/SPAN&gt; for Human Movement&amp;nbsp; Analysis, but unfortunately I keep on getting this Error Message:&lt;EM&gt;&lt;STRONG style="color: #3d3d3d;"&gt; Traceback(most recent call last); File “&amp;lt;string&amp;gt;”, line 136, in updateParameters ValueError: invalid literal for float(): 1009529,06119841. &lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN style="color: #3d3d3d;"&gt;Can someone help me out?&amp;nbsp; Does ArcGis provide any other tool for that purpose?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 14:27:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/human-movement/m-p/627577#M1415</guid>
      <dc:creator>BaffourAwuah</dc:creator>
      <dc:date>2016-02-04T14:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: Human Movement</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/human-movement/m-p/627578#M1416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since that is not a part of the esri suite of extensions...perhaps you could elaborate as to where this might be obtained... but based on &lt;STRONG&gt;&lt;EM&gt;1009529,06119841&amp;nbsp; &lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt;​could you post the code if you have it...if it is in python&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 17:13:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/human-movement/m-p/627578#M1416</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-02-04T17:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: Human Movement</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/human-movement/m-p/627579#M1417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is to do with using a comma separator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; myString = '10000,02837'
&amp;gt;&amp;gt;&amp;gt; float(myString) # it doesn't work
Runtime error
Traceback (most recent call last):
&amp;nbsp; File "&amp;lt;string&amp;gt;", line 1, in &amp;lt;module&amp;gt;
ValueError: invalid literal for float(): 10000,02837
&amp;gt;&amp;gt;&amp;gt; myString = '10000.02837'
&amp;gt;&amp;gt;&amp;gt; float(myString)
10000.02837 # it works!&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try changing all the commas in that field to periods.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:44:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/human-movement/m-p/627579#M1417</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2021-12-12T02:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: Human Movement</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/human-movement/m-p/627580#M1418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Darren may be on to something... try to see your regional settings and look for the 'decimal_point' separator option.&amp;nbsp; In this example, you will see that a period is used in Canada&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; import locale
&amp;gt;&amp;gt;&amp;gt; loc = locale.getlocale()
&amp;gt;&amp;gt;&amp;gt; loc
(None, None)
&amp;gt;&amp;gt;&amp;gt; locale.localeconv()
{'mon_thousands_sep': '', 'mon_grouping': [], 'decimal_point': '.', 'p_sep_by_space': 127, 'int_curr_symbol': '', 'n_cs_precedes': 127, 'positive_sign': '', 'p_sign_posn': 127, 'n_sep_by_space': 127, 'p_cs_precedes': 127, 'thousands_sep': '', 'negative_sign': '', 'frac_digits': 127, 'n_sign_posn': 127, 'currency_symbol': '', 'mon_decimal_point': '', 'int_frac_digits': 127, 'grouping': []}&lt;/PRE&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:44:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/human-movement/m-p/627580#M1418</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-12T02:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: Human Movement</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/human-movement/m-p/627581#M1419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan and Darren, thanks for your suggestions. I need to talk to our administrator before changing the local settings, right?&amp;nbsp; I downloaded this program from: &lt;A href="https://blogs.esri.com/esri/apl/2013/08/26/flow-map-version-2/" title="https://blogs.esri.com/esri/apl/2013/08/26/flow-map-version-2/"&gt;Distributive Flow Maps – More Raster, More Faster | Applications Prototype Lab.&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 22:33:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/human-movement/m-p/627581#M1419</guid>
      <dc:creator>BaffourAwuah</dc:creator>
      <dc:date>2016-02-04T22:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: Human Movement</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/human-movement/m-p/627582#M1420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is absolutely Perfect. It worked like Magic. Thanks, once again, Dan and Darren!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Feb 2016 10:13:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/human-movement/m-p/627582#M1420</guid>
      <dc:creator>BaffourAwuah</dc:creator>
      <dc:date>2016-02-05T10:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: Human Movement</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/human-movement/m-p/627583#M1421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/149243"&gt;Baffour Awuah&lt;/A&gt; I unmarked your own post as the correct answer. Could you mark the thread that answered your question as the correct one?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Feb 2016 12:20:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/human-movement/m-p/627583#M1421</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2016-02-05T12:20:20Z</dc:date>
    </item>
  </channel>
</rss>

