<?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: Changing Raster format and name with elif in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362818#M28669</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You cannot have just start with an elif statement. You must start with if statement, then have elif statement for subsequent queries, until you end with an else statement.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This would be much simpler if your output could be YYYYMMDD same as your input raster.&amp;nbsp; All you would have to do is take the ending from your input file, store is as string and concatenate it onto the end of your output raster.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Using that many elif statements just isn't a smart way to go about this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Apr 2014 17:01:43 GMT</pubDate>
    <dc:creator>IanMurray</dc:creator>
    <dc:date>2014-04-15T17:01:43Z</dc:date>
    <item>
      <title>Changing Raster format and name with elif</title>
      <link>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362815#M28666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello everyone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;my name is Giovanni and I am relatively new to ArcGIS and Python coding. I have a problem I haven't been able to solve: I have a large amount of .tif raster which I need to transform in .bil while at the same time changing their name. Both the input and output name have their own logic: input is equal to "australia_arcYYYYMMDD.tif" where YYYY is the year, MM the month and DD the day, output required is "rain_YYYYDDD.bil" where DDD is the Julian date, so that anyhow there will be a one-to-one relationship between the two.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I was trying something along the line of: &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;import arcpy 
arcpy.env.workspace = "e:/Pyton/prova/Tif" 
outLoc = ("e:/Pyton/prova/bil")
outDirectory = outLoc
datasetList = arcpy.ListDatasets("*", "Raster") 
for d in datasetList:
 tif = str(d)
 elif tif == "australia_arc20000101*":
&amp;nbsp; outRast = "rain_2000001.bil"
&amp;nbsp; outD = outDirectory + "/" + outRast
&amp;nbsp; arcpy.CopyRaster_management(tif,outD)
 elif tif == "australia_arc20000102*":
&amp;nbsp; outRast = "rain_2000002.bil"
&amp;nbsp; outD = outDirectory + "/" + outRast
&amp;nbsp; arcpy.CopyRaster_management(tif,outD)
 else:
&amp;nbsp; outRast = "rain_2000001.bil"
&amp;nbsp; outD = outDirectory + "/" + outRast
&amp;nbsp; arcpy.CopyRaster_management(tif,outD)&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;or otherwise&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;import arcpy 
arcpy.env.workspace = "E:/Pyton/Prova/Tif" 
outLoc = ("e:/Pyton/prova/bil")
outDirectory = outLoc
datasetList = arcpy.ListDatasets("*", "Raster") 
for d in datasetList:
 tif = str(d)
elif d in datasetlist == "australia_arc20000101*":
 outRast = "rain_2000001.bil"
 outD = outDirectory + "/" + outRast
 arcpy.CopyRaster_management(tif,outD)
elif d in datasetlist == "australia_arc20000102*":
 outRast = "rain_2000002.bil"
 outD = outDirectory + "/" + outRast
 arcpy.CopyRaster_management(tif,outD)
else:
 outRast = "rain_2000001.bil"
 outD = outDirectory + "/" + outRast
 arcpy.CopyRaster_management(tif,outD)&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;but neither of the two seems to work. As I've said I have little knowledge of the program (I'm a social scientist), so there might be some rookie error. The idea would be to write a long elif statement (365 elif + 1 else) once I got the proper way of doing it, is definitely not the most polished way of obtaining the result but the file are relatively small so that converting a year takes around ten minute. If anybody has any suggestion I am sure it will prove of invaluable help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Giovanni&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2014 16:22:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362815#M28666</guid>
      <dc:creator>GiovanniOcchiali</dc:creator>
      <dc:date>2014-04-15T16:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Raster format and name with elif</title>
      <link>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362816#M28667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You cannot have just start with an elif statement.&amp;nbsp; You must start with if statement, then have elif statement for subsequent queries, until you end with an else statement.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Btw your idea of that many elif statements is crazy.&amp;nbsp; There is an easier way to do this. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcpy &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.env.workspace = "e:/Pyton/prova/Tif" &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;outLoc = ("e:/Pyton/prova/bil")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;outDirectory = outLoc&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;datasetList = arcpy.ListDatasets("*", "Raster") &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;for d in datasetList:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tif = str(d)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; d = d.split("_")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; d = d[-1]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outRast = "rain_" + d + ".bil"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outD = outDirectory + "/" + outRast&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2014 16:48:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362816#M28667</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2014-04-15T16:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Raster format and name with elif</title>
      <link>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362817#M28668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You cannot have just start with an elif statement.&amp;nbsp; You must start with if statement, then have elif statement for subsequent queries, until you end with an else statement.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Btw your idea of that many elif statements is crazy.&amp;nbsp; There is an easier way to do this. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcpy &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.env.workspace = "e:/Pyton/prova/Tif" &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;outLoc = ("e:/Pyton/prova/bil")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;outDirectory = outLoc&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;datasetList = arcpy.ListDatasets("*", "Raster") &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#Looping through all rasters&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;for d in datasetList:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # storing input raster name&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tif = str(d)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; d = d.split("_")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; d = d[-1]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print d&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outRast = "rain_" + d + ".bil"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outD = outDirectory + "/" + outRast&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CopyRaster_management(tif,outD)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2014 16:50:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362817#M28668</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2014-04-15T16:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Raster format and name with elif</title>
      <link>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362818#M28669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You cannot have just start with an elif statement. You must start with if statement, then have elif statement for subsequent queries, until you end with an else statement.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This would be much simpler if your output could be YYYYMMDD same as your input raster.&amp;nbsp; All you would have to do is take the ending from your input file, store is as string and concatenate it onto the end of your output raster.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Using that many elif statements just isn't a smart way to go about this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2014 17:01:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362818#M28669</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2014-04-15T17:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Raster format and name with elif</title>
      <link>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362819#M28670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Giovanni,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You're off to a good start. I made a few changes:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import datetime
import arcpy

def getDateFromFile(f):
&amp;nbsp;&amp;nbsp;&amp;nbsp; return f.split('_arc')[1][:8] #gets the first 8 characters after "_arc"

def getJulian(d):
&amp;nbsp;&amp;nbsp;&amp;nbsp; dt = datetime.datetime.strptime(d, '%Y%m%d')
&amp;nbsp;&amp;nbsp;&amp;nbsp; return str(dt.timetuple().tm_yday).zfill(3)


arcpy.env.workspace = "e:/Pyton/prova/Tif" 
outDirectory = "e:/Pyton/prova/bil" #should not need the blackets
datasetList = arcpy.ListDatasets("*", "Raster") 
for tif in datasetList:
&amp;nbsp;&amp;nbsp;&amp;nbsp; date=getDateFromFile(tif) #calls on function defined above
&amp;nbsp;&amp;nbsp;&amp;nbsp; year=date[:4] #gets first 4 characters of date
&amp;nbsp;&amp;nbsp;&amp;nbsp; outRast = "rain_"+year+getJulian(date)+".bil"
&amp;nbsp;&amp;nbsp;&amp;nbsp; outBil = outDirectory + "/" + outRast
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Copying "+tif+" to "+outRast+"..."
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CopyRaster_management(tif,outBil)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For the future, you must start an if statement with "if", not "elif".&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know if it works for you or if you have any questions about it. Good luck!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;~Josh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:54:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362819#M28670</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2021-12-11T16:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Raster format and name with elif</title>
      <link>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362820#M28671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hello Giovanni,&lt;BR /&gt;&lt;BR /&gt;You're off to a good start. I made a few changes:&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import datetime
import arcpy

def getDateFromFile(f):
&amp;nbsp;&amp;nbsp;&amp;nbsp; return f.split('_arc')[1][:8] #gets the first 8 characters after "_arc"

def getJulian(d):
&amp;nbsp;&amp;nbsp;&amp;nbsp; dt = datetime.datetime.strptime(d, '%Y%m%d')
&amp;nbsp;&amp;nbsp;&amp;nbsp; return str(dt.timetuple().tm_yday).zfill(3)


arcpy.env.workspace = "e:/Pyton/prova/Tif" 
outDirectory = "e:/Pyton/prova/bil" #should not need the blackets
datasetList = arcpy.ListDatasets("*", "Raster") 
for tif in datasetList:
&amp;nbsp;&amp;nbsp;&amp;nbsp; date=getDateFromFile(tif) #calls on function defined above
&amp;nbsp;&amp;nbsp;&amp;nbsp; year=date[:4] #gets first 4 characters of date
&amp;nbsp;&amp;nbsp;&amp;nbsp; outRast = "rain_"+year+getJulian(date)+".bil"
&amp;nbsp;&amp;nbsp;&amp;nbsp; outBil = outDirectory + "/" + outRast
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Copying "+tif+" to "+outRast+"..."
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CopyRaster_management(tif,outBil)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;For the future, you must start an if statement with "if", not "elif".&lt;BR /&gt;Let me know if it works for you or if you have any questions about it. Good luck!&lt;BR /&gt;~Josh&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks Josh, I wasn't familiar enough with datetime to want to try to write that out for him.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I was in the middle of trying to do some painful if, elif statements to calculate Julian dates from the YYYYMMDD from those file names.&amp;nbsp; Especially when you have to consider leapyears, its a big pain.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:54:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362820#M28671</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2021-12-11T16:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Raster format and name with elif</title>
      <link>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362821#M28672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the shout out Ian (and up vote). I'm still learning the datetime module. I find it surprisingly challenging. Trying to code Julian day yourself would be very very hard indeed.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2014 17:44:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362821#M28672</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-04-15T17:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Raster format and name with elif</title>
      <link>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362822#M28673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you very much to the both of you (especially Josh), you made my life so much easier!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Never heard of datetime before, but I'm just making my acquaintance with Python for now!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Have a good Easter!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Best&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Giovanni&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2014 18:36:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/changing-raster-format-and-name-with-elif/m-p/362822#M28673</guid>
      <dc:creator>GiovanniOcchiali</dc:creator>
      <dc:date>2014-04-15T18:36:34Z</dc:date>
    </item>
  </channel>
</rss>

