<?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: How are dates stored in SAS? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591291#M15183</link>
    <description>&lt;P&gt;SAS stores DATE values as the number of &lt;STRONG&gt;days&lt;/STRONG&gt; since 1960 and TIME values as the number of &lt;STRONG&gt;seconds&lt;/STRONG&gt; since midnight.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But it looks like you are interested in storing what SAS calls DATETIME values. Other languages might use the term TIMESTAMP such a value.&amp;nbsp; SAS stores DATETIME values as the number of &lt;STRONG&gt;seconds&lt;/STRONG&gt; since 1960.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use the DATEPART() function to get a date value from a DATETIME value.&amp;nbsp; You can use the TIMEPART() function to get the time of day for that date from the datetime value.&amp;nbsp; Or you could just use arithmetic and divide by the number of seconds in a day.&amp;nbsp; The integer value result is the date and the remainder is the time of day.&amp;nbsp; Note you can use '24:00't to represent the number of seconds in a day.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use the DHMS() function to generate a datetime value from Days,Hours,Minutes, and Seconds.&amp;nbsp; Note that the last three are not limited to values between 0 and 24 or 0 and 60.&amp;nbsp; So to create a datetime value from separate date and time values just use DHMS(date,0,0,time).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that today's date,&amp;nbsp;'24SEP2019'd, is day number 21,816.&amp;nbsp; Which when treated as a number of seconds is around 6 AM.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure why you are playing with macro code. Much easier to see how SAS works using normal SAS code instead.&lt;/P&gt;
&lt;PRE&gt;2209  data _null_;
2210   now=today();
2211   put 'Raw Number -&amp;gt; ' now= now=comma12. ;
2212   put 'As Date    -&amp;gt; ' now=date9. now=yymmdd10. now=mmddyy10. ;
2213   put 'As Time    -&amp;gt; ' now=time. ;
2214   put 'As Datetime-&amp;gt; ' now=datetime20.;
2215  run;

Raw Number -&amp;gt; now=21816 now=21,816
As Date    -&amp;gt; now=24SEP2019 now=2019-09-24 now=09/24/2019
As Time    -&amp;gt; now=6:03:36
As Datetime-&amp;gt; now=01JAN1960:06:03:36
&lt;/PRE&gt;
&lt;P&gt;Since you seem to just want to generate a string value (to the macro processor eveyrthing is character data).&amp;nbsp; You can just tack the zeros on to the end of your string.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let yymm=%sysfunc(putn(&amp;amp;mdate,date9)):00:00:00 ;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 24 Sep 2019 20:27:30 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2019-09-24T20:27:30Z</dc:date>
    <item>
      <title>How are dates stored in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591287#M15180</link>
      <description>&lt;P&gt;I am reading about SAS dates.&amp;nbsp; So SAS dates are stored as numbers, that I understand.&amp;nbsp; My initial thoughts also is that those stored values include time.&amp;nbsp; So if I have a date&amp;nbsp;'31DEC1996'd, I was expecting a stored value of '31DEC1996 00:00:00'dt, time 00:00:00 being implied.&amp;nbsp; It seems that is not the case.&amp;nbsp; It seems it only stores the date itself '31DEC1996'd.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I try to show the whole datetime value, it shows 01JAN1960 &amp;lt;time&amp;gt;.&amp;nbsp; So is SAS storing 2 values now, one for date and one for time, the time is the correct time of the present day with the date being 01JAN1960?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am just trying to understand.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is my code:&lt;/P&gt;&lt;P&gt;%let mdate = '31DEC1996'd;&lt;BR /&gt;%let yymm = %sysfunc(putn(%sysevalf(&amp;amp;mdate), datetime.));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%put &amp;amp;=yymm;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output is:&amp;nbsp;YYMM=&lt;STRONG&gt;01JAN60:03:45:14&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used mdate to show datetime, so why is it 01JAN1960?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 20:01:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591287#M15180</guid>
      <dc:creator>jffeudo86</dc:creator>
      <dc:date>2019-09-24T20:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: How are dates stored in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591290#M15182</link>
      <description>&lt;P&gt;Dates are stored as the number of days since 1/1/1960&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Date/time values (such as&amp;nbsp;&lt;SPAN&gt;31DEC1996 23:00:00) are stored as the number of seconds since midnight on 1/1/1960.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Time values are stored as the number of seconds since midnight.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Do not confuse date values with date/time values with time values, these are three distinct things. You can't use a datetime format with date values; you can't use a date format with date/time values; and so on.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Below is my code:&lt;/P&gt;
&lt;P&gt;%let mdate = '31DEC1996'd;&lt;BR /&gt;%let yymm = %sysfunc(putn(%sysevalf(&amp;amp;mdate), datetime.));&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%put &amp;amp;=yymm;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let mdate = 31DEC1996;
%let yymm = %sysfunc(putn("&amp;amp;mdate"d,date.));
%put &amp;amp;=yymm;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Although this is pointless, except as a learning exercise, you could just use &amp;amp;MDATE and not &amp;amp;YYMM.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Similarly if you want a datetime, use a datetime.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let mdate = 31DEC1996:00:00:00;
%let datetime = %sysfunc(putn("&amp;amp;mdate"dt,datetime.));
%put &amp;amp;=datetime;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Again, pointless, except as a learning exercise.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Lastly, if you want to convert a date to a datetime, use the proper function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let mdate=31DEC1996;
%let mdatetime=%sysfunc(dhms("&amp;amp;mdate"d,0,0,0));
%put %sysfunc(putn(&amp;amp;mdatetime,datetime.));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;All of this might be easier done in a data step, then you don't need %SYSFUNC().&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 20:15:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591290#M15182</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-09-24T20:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: How are dates stored in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591291#M15183</link>
      <description>&lt;P&gt;SAS stores DATE values as the number of &lt;STRONG&gt;days&lt;/STRONG&gt; since 1960 and TIME values as the number of &lt;STRONG&gt;seconds&lt;/STRONG&gt; since midnight.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But it looks like you are interested in storing what SAS calls DATETIME values. Other languages might use the term TIMESTAMP such a value.&amp;nbsp; SAS stores DATETIME values as the number of &lt;STRONG&gt;seconds&lt;/STRONG&gt; since 1960.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use the DATEPART() function to get a date value from a DATETIME value.&amp;nbsp; You can use the TIMEPART() function to get the time of day for that date from the datetime value.&amp;nbsp; Or you could just use arithmetic and divide by the number of seconds in a day.&amp;nbsp; The integer value result is the date and the remainder is the time of day.&amp;nbsp; Note you can use '24:00't to represent the number of seconds in a day.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use the DHMS() function to generate a datetime value from Days,Hours,Minutes, and Seconds.&amp;nbsp; Note that the last three are not limited to values between 0 and 24 or 0 and 60.&amp;nbsp; So to create a datetime value from separate date and time values just use DHMS(date,0,0,time).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that today's date,&amp;nbsp;'24SEP2019'd, is day number 21,816.&amp;nbsp; Which when treated as a number of seconds is around 6 AM.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure why you are playing with macro code. Much easier to see how SAS works using normal SAS code instead.&lt;/P&gt;
&lt;PRE&gt;2209  data _null_;
2210   now=today();
2211   put 'Raw Number -&amp;gt; ' now= now=comma12. ;
2212   put 'As Date    -&amp;gt; ' now=date9. now=yymmdd10. now=mmddyy10. ;
2213   put 'As Time    -&amp;gt; ' now=time. ;
2214   put 'As Datetime-&amp;gt; ' now=datetime20.;
2215  run;

Raw Number -&amp;gt; now=21816 now=21,816
As Date    -&amp;gt; now=24SEP2019 now=2019-09-24 now=09/24/2019
As Time    -&amp;gt; now=6:03:36
As Datetime-&amp;gt; now=01JAN1960:06:03:36
&lt;/PRE&gt;
&lt;P&gt;Since you seem to just want to generate a string value (to the macro processor eveyrthing is character data).&amp;nbsp; You can just tack the zeros on to the end of your string.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let yymm=%sysfunc(putn(&amp;amp;mdate,date9)):00:00:00 ;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 Sep 2019 20:27:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591291#M15183</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-09-24T20:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: How are dates stored in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591298#M15186</link>
      <description>&lt;P&gt;I got it now through further reading.&amp;nbsp; I've been used to dealing with dates with implied time 00:00:00.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"&lt;STRONG&gt;THE PROBLEM&lt;/STRONG&gt;&lt;BR /&gt;&lt;EM&gt;Dates stored on databases and even EXCEL spreadsheets are&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;typically stored as datetime values. It is quite often the case that&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;minutes and seconds are not relevant or useful as they are often&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;stored as a default value of midnight. (Something to do with glass&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;slippers and carriages, no doubt.) Like SAS date values, EXCEL&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;date values are stored as numbers. However, SAS dates are the&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;number of days elapsed since Jan 1, 1960, and Excel dates are&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;the number of days starting at Jan 1, 1900. For example, Day 1 in&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;SAS is Jan 2, 1960, Day 0 is Jan1, 1960. Day 1 in Excel is Jan 1,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;19001&lt;/EM&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So there is also a time value in SAS.&amp;nbsp; I don't see yet why would i use/store only time it it's not tied to a date.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 20:38:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591298#M15186</guid>
      <dc:creator>jffeudo86</dc:creator>
      <dc:date>2019-09-24T20:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: How are dates stored in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591300#M15187</link>
      <description>&lt;P&gt;I'm using macro because that's where I would likely use it.&amp;nbsp; Pass a date to a macro and perform transformation and use it.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 20:44:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591300#M15187</guid>
      <dc:creator>jffeudo86</dc:creator>
      <dc:date>2019-09-24T20:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: How are dates stored in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591302#M15188</link>
      <description>Thank you! It is merely as a learning exercise. I'm using macro since I would most likely use it, pass a date to a macro and use that date inside the macro.</description>
      <pubDate>Tue, 24 Sep 2019 20:46:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591302#M15188</guid>
      <dc:creator>jffeudo86</dc:creator>
      <dc:date>2019-09-24T20:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: How are dates stored in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591304#M15190</link>
      <description>&lt;P&gt;FYI - Here's a great, but longer and in depth, reference for dates and times in SAS&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/Working-with-Dates-and-Times-in-SAS-Tutorial/ta-p/424354" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/Working-with-Dates-and-Times-in-SAS-Tutorial/ta-p/424354&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 20:55:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591304#M15190</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-24T20:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: How are dates stored in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591306#M15191</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/271494"&gt;@jffeudo86&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I got it now through further reading.&amp;nbsp; I've been used to dealing with dates with implied time 00:00:00.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"&lt;STRONG&gt;THE PROBLEM&lt;/STRONG&gt;&lt;BR /&gt;&lt;EM&gt;Dates stored on databases and even EXCEL spreadsheets are&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;typically stored as datetime values. It is quite often the case that&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;minutes and seconds are not relevant or useful as they are often&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;stored as a default value of midnight. (Something to do with glass&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;slippers and carriages, no doubt.) Like SAS date values, EXCEL&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;date values are stored as numbers. However, SAS dates are the&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;number of days elapsed since Jan 1, 1960, and Excel dates are&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;the number of days starting at Jan 1, 1900. For example, Day 1 in&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;SAS is Jan 2, 1960, Day 0 is Jan1, 1960. Day 1 in Excel is Jan 1,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;19001&lt;/EM&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So there is also a time value in SAS.&amp;nbsp; I don't see yet why would i use/store only time it it's not tied to a date.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Also note that Excel has other issues with the way it stores dates. It thinks 1900 was a leap year for example. Also since it stores time of the day as a fraction of day getting time of day right can be difficult because of the limitations of storing decimal fractions in binary floating point representation.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 20:57:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591306#M15191</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-09-24T20:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: How are dates stored in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591307#M15192</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/271494"&gt;@jffeudo86&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I don't see yet why would i use/store only time it it's not tied to a date.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Imagine wanting to know the number of accidents happening between 9am and 10am. Datetimes only complicate that. With tools like MDDB's you go even further, you dissect timestamps into years/months/days/hours/minutes/seconds, so you can build a dimensional hierarchy.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 21:01:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591307#M15192</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-09-24T21:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: How are dates stored in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591312#M15194</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/271494"&gt;@jffeudo86&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I'm using macro because that's where I would likely use it.&amp;nbsp; Pass a date to a macro and perform transformation and use it.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;you can do the calculations in a data step, and in that same data step, create a macro variable.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 21:30:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-are-dates-stored-in-SAS/m-p/591312#M15194</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-09-24T21:30:10Z</dc:date>
    </item>
  </channel>
</rss>

