<?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: Concatenate Julian Day + Year to get Date in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443401#M34724</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might try something like:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; datetime &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; datetime

dt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; datetime&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;strptime&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'6/1/2019'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'%m/%d/%Y'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
tt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; dt&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;timetuple&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"{}-{}"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;tt&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tm_yday&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; tt&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tm_year&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# prints:  152-2019‍‍‍‍‍‍‍‍‍‍‍‍&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;See also: &lt;A href="https://stackoverflow.com/questions/13943062/extract-day-of-year-and-julian-day-from-a-string-date" rel="nofollow noopener noreferrer" target="_blank"&gt;Extract day of year and Julian day from a string date&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 19:50:04 GMT</pubDate>
    <dc:creator>RandyBurton</dc:creator>
    <dc:date>2021-12-11T19:50:04Z</dc:date>
    <item>
      <title>Concatenate Julian Day + Year to get Date</title>
      <link>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443400#M34723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am looking for an Arcade or python code (for use in Calculate Value in ModelBuilder) to concatenate two fields of an attribute table:&lt;/P&gt;&lt;P&gt;-Julian Day (1-365)&lt;/P&gt;&lt;P&gt;-Year (YYYY)&lt;/P&gt;&lt;P&gt;to calculate a field with a date (mm/dd/yyyy)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried Convert time field and it just made all my dates January 1 2001.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help?&amp;nbsp;&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>Mon, 01 Jul 2019 19:59:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443400#M34723</guid>
      <dc:creator>AurelieShapiro</dc:creator>
      <dc:date>2019-07-01T19:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Julian Day + Year to get Date</title>
      <link>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443401#M34724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might try something like:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; datetime &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; datetime

dt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; datetime&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;strptime&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'6/1/2019'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'%m/%d/%Y'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
tt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; dt&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;timetuple&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"{}-{}"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;tt&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tm_yday&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; tt&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tm_year&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# prints:  152-2019‍‍‍‍‍‍‍‍‍‍‍‍&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;See also: &lt;A href="https://stackoverflow.com/questions/13943062/extract-day-of-year-and-julian-day-from-a-string-date" rel="nofollow noopener noreferrer" target="_blank"&gt;Extract day of year and Julian day from a string date&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:50:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443401#M34724</guid>
      <dc:creator>RandyBurton</dc:creator>
      <dc:date>2021-12-11T19:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Julian Day + Year to get Date</title>
      <link>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443402#M34725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks! Timetuple seems to be getting there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But my two field are Julian Date of the year (dd) and year (yyyy). How do I do the opposite of what you propose? (sorry I don’t know python, I am looking for a code to integrate my two variables: dd &amp;amp; yyyy = dd/mm/yyyy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;-a&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Von: Randy Burton &amp;lt;geonet@esri.com&amp;gt;&lt;/P&gt;&lt;P&gt;Gesendet: Montag, 1. Juli 2019 22:43&lt;/P&gt;&lt;P&gt;An: Shapiro, Aurelie &amp;lt;aurelie.shapiro@wwf.de&amp;gt;&lt;/P&gt;&lt;P&gt;Betreff: Re:  - Re: Concatenate Julian Day + Year to get Date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GeoNet, The Esri Community | GIS and Geospatial Professional Community &amp;lt;https://community.esri.com/?et=watches.email.thread&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Re: Concatenate Julian Day + Year to get Date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply from Randy Burton&amp;lt;https://community.esri.com/people/rvburton?et=watches.email.thread&amp;gt; in Python - View the full discussion&amp;lt;https://community.esri.com/message/861794-re-concatenate-julian-day-year-to-get-date?commentID=861794&amp;amp;et=watches.email.thread#comment-861794&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jul 2019 04:50:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443402#M34725</guid>
      <dc:creator>AurelieShapiro</dc:creator>
      <dc:date>2019-07-02T04:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Julian Day + Year to get Date</title>
      <link>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443403#M34726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/people/aurelies" target="_blank"&gt;aurelies&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could probably use something like this:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; datetime
jul_day &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;60&lt;/SPAN&gt;  &lt;SPAN class="comment token"&gt;# will point to your field value for Julian Day&lt;/SPAN&gt;
year &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2016&lt;/SPAN&gt;  &lt;SPAN class="comment token"&gt;# will point to your field value for Year&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; datetime&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;datetime&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;strptime&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'{}-{}'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;year&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; jul_day&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'%Y-%j'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;date&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:50:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443403#M34726</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T19:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Julian Day + Year to get Date</title>
      <link>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443404#M34727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do you know how to do this in Calculate field? It runs but outputs a null date...&lt;/P&gt;&lt;P&gt;Date_Def is my date field to output&lt;/P&gt;&lt;P&gt;Def_Year is the year&lt;/P&gt;&lt;P&gt;grid_code is the julian date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="/legacyfs/online/452144_Anmerkung 2019-07-02 155447.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jul 2019 13:55:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443404#M34727</guid>
      <dc:creator>AurelieShapiro</dc:creator>
      <dc:date>2019-07-02T13:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Julian Day + Year to get Date</title>
      <link>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443405#M34728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/people/aurelies"&gt;aurelies&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you share a screenshot of your data (the two fields involved?)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jul 2019 14:27:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443405#M34728</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-07-02T14:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Julian Day + Year to get Date</title>
      <link>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443406#M34729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/9456" target="_blank"&gt;Aurelie Shapiro&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would be the way you could use Arcade to get the date:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;// input data from feature attributes&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; year_value &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Def_Year&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; julian_day &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;grid_code&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; year_date &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Date&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;year_value&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; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;  &lt;SPAN class="comment token"&gt;// create date using first day of year&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; final_date &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;DateAdd&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;year_date&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; julian_day&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'days'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;  &lt;SPAN class="comment token"&gt;// add the julian days&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; final_date&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:50:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443406#M34729</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T19:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Julian Day + Year to get Date</title>
      <link>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443407#M34730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here are the fields: grid_code which is a number, and Def_Year is text (maybe that is the problem?)&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/452179_fields.jpg" /&gt;&lt;IMG alt="" class="image-2 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/452201_fields1.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jul 2019 20:30:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443407#M34730</guid>
      <dc:creator>AurelieShapiro</dc:creator>
      <dc:date>2019-07-02T20:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Julian Day + Year to get Date</title>
      <link>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443408#M34731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it worked! genius!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jul 2019 20:31:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443408#M34731</guid>
      <dc:creator>AurelieShapiro</dc:creator>
      <dc:date>2019-07-02T20:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Julian Day + Year to get Date</title>
      <link>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443409#M34732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/people/aurelies"&gt;aurelies&lt;/A&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm glad it works now. Indeed in some case it would have required casting the text to a value. Which solution did you finally use? Python or Arcade?&lt;/P&gt;&lt;P&gt;Can you mark the post with the correct answer so that others can find the answer more easily?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jul 2019 20:41:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/443409#M34732</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-07-02T20:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Julian Day + Year to get Date</title>
      <link>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/1051211#M60892</link>
      <description>&lt;P&gt;Can you please share same code in pyspak.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Apr 2021 07:39:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/concatenate-julian-day-year-to-get-date/m-p/1051211#M60892</guid>
      <dc:creator>vdsri55</dc:creator>
      <dc:date>2021-04-26T07:39:46Z</dc:date>
    </item>
  </channel>
</rss>

